  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(to right top, #fdfbfb, #ebedee);
      color: #20303C;
      overflow-x: hidden;
    }

    .blurred-bg,
    .blurred-bg2 {
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      filter: blur(120px);
      z-index: 0;
    }

    .blurred-bg {
      top: 80px;
      left: -150px;
      background: radial-gradient(circle, #0e49a9 0%, transparent 70%);
    }

    .blurred-bg2 {
      bottom: 0;
      right: 10px;
      background: radial-gradient(circle, #0e49a9 0%, transparent 90%);
    }

    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 40px;
      background: rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
      z-index: 99;
      flex-wrap: wrap;
    }

    .navbar .logo {
      font-size: 24px;
      font-weight: 700;
      color: #116DFF;
      animation: pulse 3s infinite;
    }

    .logo i {
      margin-right: 8px;
    }

    .logo span {
      color: #000000;
    }

    .navbar nav a {
      margin-left: 20px;
      color: #20303C;
      text-decoration: none;
      font-weight: 500;
      display: inline-block;
      transition: color 0.3s;
    }

    .navbar nav a:hover {
      color: #116DFF;
    }

    /* 📧 Contact Section */
    .contact-section {
      position: relative;
      z-index: 1;
      padding: 100px 20px 160px;
      background: linear-gradient(135deg, #ffffff, #f1f7fd);
      overflow: hidden;
    }

    /* 🎨 Wave Background */
    .contact-section::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 700px;
      height: 700px;
      background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg"><path fill="%23004080" d="M0,320 C150,200 450,400 600,300 L600,600 L0,600 Z"/></svg>') no-repeat;
      background-size: contain;
      opacity: 0.07;
      transform: rotate(20deg);
      z-index: 0;
    }

    .contact-container {
      max-width: 1100px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .contact-info {
      flex: 1 1 400px;
    }

    .contact-info h2 {
      font-size: 32px;
      color: #004080;
      margin-bottom: 15px;
    }

    .contact-info p {
      font-size: 15px;
      color: #555;
      margin-bottom: 20px;
    }

    .info-item {
      margin-bottom: 12px;
      font-size: 15px;
      color: #333;
    }

    .info-item i {
      color: #004080;
      margin-right: 10px;
    }

    .contact-form {
      flex: 1 1 420px;
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      animation: fadeInUp 1s ease-in-out;
    }

    .contact-form h3 {
      font-size: 22px;
      color: #004080;
      margin-bottom: 20px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px 15px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
      transition: 0.3s;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: #004080;
      outline: none;
    }

    .contact-form button {
      background-color: #004080;
      color: white;
      padding: 12px 25px;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      font-size: 15px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .contact-form button:hover {
      background-color: #002d5e;
    }


    .site-footer {
      background: #1a1a2e;
      color: #f1f1f1;
      padding: 60px 30px 20px;
      font-family: 'Poppins', sans-serif;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      gap: 40px;
      max-width: 100%;
      margin: auto;
    }

    .footer-about,
    .footer-links,
    .footer-social {
      flex: 1;
      text-align: center;
    }

    .footer-about h3 {
      font-size: 24px;
      color: #00aaff;
      margin-bottom: 15px;
    }

    .footer-about p {
      line-height: 1.6;
      font-size: 14px;
      color: #ccc;
    }

    .footer-links h4,
    .footer-social h4 {
      font-size: 18px;
      color: #ffffff;
      margin-bottom: 10px;
    }

    .footer-links ul {
      list-style: none;
      padding: 0px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .footer-links li {
      margin: 8px 0;
    }

    .footer-links a {
      text-decoration: none;
      color: #ddd;
      font-size: 14px;
      transition: 0.3s;
    }

    .footer-links a:hover {
      color: #00aaff;
    }

    .footer-social .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 10px;
      justify-content: center;
    }

    .footer-social .social-icons a {
      color: #ffffff;
      font-size: 25px;
      transition: 0.3s;
    }

    .footer-social .social-icons a:hover {
      color: #00aaff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
      padding-top: 15px;
      margin-top: 30px;
      font-size: 14px;
      color: #aaa;
    }

    .footer-bottom a {
      color: #00aaff;
      text-decoration: none;
    }

    .footer-bottom a:hover {
      text-decoration: underline;
    }


    @media (max-width: 768px) {
      .contact-container {
        flex-direction: column;
        text-align: center;
      }

      .contact-form,
      .contact-info {
        width: 100%;
      }
    }

    @keyframes fadeInUp {
      from {
        transform: translateY(20px);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }