
    :root {
      --accent: #1a61b2;
      --accent-600: #1a61b2;
      --dark: #071133;
      --muted: #6b7280;
      --bg: #f8fafc;
      --card: #ffffff;
      --container-max: 1200px;
      --radius: 12px;
      --glass: rgba(255, 255, 255, 0.75);
      --gradient: linear-gradient(135deg, var(--accent), #6c4cff);
      --ease: cubic-bezier(.2, .9, .2, 1);
      --shadow-1: 0 10px 30px rgba(2, 6, 23, .06);
      --shadow-2: 0 14px 40px rgba(2, 6, 23, .08);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: white;
      background: linear-gradient(rgba(7, 17, 51, 0.75), rgba(7, 17, 51, 0.75)),
        url('../image/2.webp') no-repeat center/cover;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }


    .hamburgerBtn{
      border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 3px 8px;
     display: none;
    }
    .navMenuMobile{
      display: none;
    }
    /* Navbar container */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.97);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
      z-index: 999;
    }

    /* Logo */
    nav .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    nav .logo span {
      font-size: 1.8rem;
      font-weight: 700;
      color: #1a61b2;
    }

    /* Nav links */
    nav ul {
      display: flex;
      list-style: none;
      gap: 25px;
    }

    nav ul li {
      position: relative;
    }

    nav ul li a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      padding: 8px 10px;
      transition: all 0.3s ease;
    }

    /* Hover effect */
    nav ul li a::after {
      content: "";
      display: block;
      height: 2px;
      width: 0;
      background: #1a61b2;
      margin-top: 4px;
      transition: width 0.3s ease;
    }

    nav ul li a:hover::after {
      width: 100%;
    }

    nav ul li a:hover {
      color: #1a61b2;
      transform: translateY(-2px);
    }

    /* Dropdown */
    .has-dropdown .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      display: none;
      flex-direction: column;
      min-width: 180px;
      opacity: 0;
      transform: translateY(15px);
      transition: all 0.4s ease;
    }

    .has-dropdown:hover .dropdown {
      display: flex;
      opacity: 1;
      transform: translateY(0);
    }

    .dropdown a {
      padding: 12px 18px;
      color: #333;
      font-size: 0.95rem;
      transition: all 0.3s ease;
    }

    .dropdown a:hover {
      background: #f3f7ff;
      color: #1a61b2;
      padding-left: 24px;
    }

    /* Hamburger menu */
    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      color: #1a61b2;
      cursor: pointer;
    }

    @media(max-width: 850px) {
      nav ul {
        position: absolute;
        top: 70px;
        right: 0;
        flex-direction: column;
        align-items: center;
        gap: 1px;
        background: white;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
      }

      nav ul.active {
        max-height: 300px;
        padding: 20px 0;
      }

      .menu-toggle {
        display: block;
      }

      /* Mobile dropdown inside menu */
      .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        display: none;
        transform: none;
        box-shadow: none;
      }

      .has-dropdown.active .dropdown {
        display: flex;
      }
    }

    /* MAIN CONTENT */
    main {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 4rem 2rem;
    }

    .contact-form {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      max-width: 600px;
      width: 100%;
      padding: 3rem 2.5rem;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
      text-align: center;
      animation: fadeInUp 0.8s ease;
      margin-top: 80px;
    }

    .contact-form h1 {
      color: #fff;
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .contact-form p {
      color: #e6e6e6;
      font-size: 1rem;
      margin-bottom: 2rem;
    }

    .form-group {
      margin-bottom: 1.3rem;
      text-align: left;
    }

    .form-group label {
      display: block;
      font-weight: 600;
      margin-bottom: 0.4rem;
      color: #f0f0f0;
      font-size: 0.95rem;
    }

    input,
    textarea {
      width: 100%;
      padding: 0.9rem 1rem;
      border: 1.5px solid rgba(255, 255, 255, 0.3);
      background: rgba(255, 255, 255, 0.15);
      color: white;
      border-radius: 10px;
      font-family: inherit;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    input::placeholder,
    textarea::placeholder {
      color: #ddd;
    }

    input:focus,
    textarea:focus {
      outline: none;
      border-color:rgb(73, 190, 249);
      background: rgba(255, 255, 255, 0.25);
      box-shadow: 0 0 0 3px rgba(11, 99, 255, 0.2);
    }

    textarea {
      min-height: 140px;
      resize: vertical;
    }

    button {
      background: var(--accent-600);
      color: white;
      border: none;
      padding: 1rem 1.5rem;
      border-radius: 10px;
      cursor: pointer;
      font-size: 1.1rem;
      font-weight: 600;
      margin-top: 1rem;
      width: 100%;
      transition: 0.3s ease;
    }

    button:hover {
      background: rgb(150, 107, 245);
    }


    /* Footer */
    footer {
      background-color: #333;
      background: var(--dark);
      color: #f3f6fa;
      padding: 36px 24px
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 18px;
      max-width: var(--container-max);
      margin: 0 auto
    }

    footer a {
      color: #cbd5e1;
      display: block;
      margin: 6px 0
    }

    /* Back to top */
    .backtop {
      position: fixed;
      right: 20px;
      bottom: 20px;
      background: var(--accent);
      color: #fff;
      border-radius: 999px;
      padding: 12px;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 40px rgba(11, 99, 255, .18);
      cursor: pointer;
      z-index: 1400;
      opacity: 0;
      transform: translateY(8px) scale(.98);
      transition: opacity .28s var(--ease), transform .28s var(--ease);
    }

    .backtop.show {
      opacity: 1;
      transform: translateY(0) scale(1)
    }

    a {
      text-decoration: none;
      text-align: left;
    }

    /* Footer links hover effect */
    footer a {
      color: #f2f4f8;
      /* Default link color */
      text-decoration: none;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    footer a:hover {
      color: #1a61b2;
      /* Change color on hover */
      transform: translateX(5px);
      /* Optional slight slide effect */
    }

    .piaddress p {

      letter-spacing: -.5px;
      position: relative;
      display: flex;
      flex-flow: row nowrap;
      gap: 10px;
      margin: 0 0;
      color: #ffff;
    }

    footer h4 {
      margin-bottom: 20px;
      /* space below the h4 */
    }

    hr {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      margin-top: 20px;
      /* translucent white */
    }

    /* ANIMATION */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      header {
        flex-direction: column;
        padding: 1rem 2rem;
      }

      nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1px;
        margin-top: 1rem;
      }

      main {
        padding: 2rem 1rem;
      }

      .contact-form {
        padding: 2rem 1.5rem;
      }

      .contact-form h1 {
        font-size: 1.8rem;
      }
    }
  @media screen and (min-width: 320px) and (max-width: 767px){
/*** Mobile Menu Starts**/
   .hamburgerBtn{
    display: block;
    width: auto;
   }
   .navMenuDesktop{
    display: none;
   }
   .navMenuMobile.show {
        display: flex;
        position: absolute;
        background: #ddd;
        z-index: 999999;
        flex-direction: column;
        max-height: none;
                padding: 10px;
}
   .navMenuMobile.show  .has-dropdown .dropdown {
               position: static;
        opacity: 1;
        display: block;
        transform: none;
        box-shadow: none;
        width: 100%;
        text-align: left;
        background: transparent;
        padding-left: 20px;
}

   ul.navMenuMobile.show  li {
    text-align: center;
    padding: 1px 0;
    display: flex;
    flex-flow: column wrap;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
}
   ul.navMenuMobile.show  li a{
    display: block;
   }
 ul.navMenuMobile.show li a::after {
    content: none;
}

/*** Mobile Menu Ends**/



}