/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
  }
  
  body {
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #ffffff;
  }
  
  /* Navbar Styles */
  .navbar {
    width: 100%;
    background-color: rgb(255, 255, 255);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
  }
  
  .navbar.scrolled {
    background-color: #5f0979;
  }
  
  .navbar .updatescontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 25px;
  }
  
  .nav-logo {
    color: rgb(7, 3, 100);
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 0;
  }
  
  .logo-image {
    width: 80px;
    height: 80px;
    margin-right: 25px;
    margin-left: 40px;
  }
  
  /* Navigation Menu */
  .nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  .nav-menu li {
    display: inline;
  }
  
  .nav-menu a {
    text-decoration: none;
    background-color: #2e029d;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 100px;
    font-size: 16px;
    transition: color 0.3s, transform 0.3s;
  }
  
  .nav-menu a:hover {
    color: #00d4ff;
    transform: scale(1.1);
  }
  
  /* Hamburger Menu Styles */
  .hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
  }
  
  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #2e029d;
    margin: 5px 0;
    transition: all 0.3s ease;
  }
  
  /* Spinner for Form Submission */
  .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-left: 8px;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  /* Form & Image Sections */
  .container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    padding-top: 100px;
    gap: 50px;
    align-items: center;
  }
  
  .form-section {
    flex: 1;
    max-width: 500px;
  }
  
  .image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .image-section img {
    max-width: 100%;
    height: auto;
  }
  
  /* Basic Form Styles */
  h1 {
    font-size: 38px;
    margin-bottom: 8px;
    color: #333;
  }
  
  p {
    color: #666;
    margin-bottom: 30px;
  }
  
  .input-group {
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
    color: #666;
    font-size: 14px;
  }
  
  input,
  textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
  }
  
  input:focus,
  textarea:focus {
    outline: none;
    border-color: #2d31fa;
  }
  
  textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  button {
    width: 100%;
    padding: 14px;
    background-color: #2d31fa;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #1f22b3;
  }
  
  /* Error Message */
  .error {
    color: red;
    font-size: 0.8em;
    margin-top: 5px;
    display: block;
  }
  
  input:invalid,
  textarea:invalid {
    border-color: #111111;
  }
  
  /* Responsive Styles */
  @media screen and (max-width: 768px) {
    /* Background image for mobile (hexshape) */
    body {
      background-image: url('https://i.ibb.co/5X3MyzFy/ex-removebg-preview.png');
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      background-attachment: fixed;
    }
  
    /* Hide image section and make form full width */
    .image-section {
      display: none;
    }
    .form-section {
      width: 100%;
    }
  
    /* Show hamburger menu */
    .hamburger {
      display: block;
      position: absolute;
      top: 20px;
      right: 20px;
      z-index: 101;
    }
  
    /* Hide desktop nav-menu and set up mobile nav-menu */
    .nav-menu {
      position: fixed;
      right: -100%;
      top: 100px;
      width: 80%;
      max-width: 300px;
      height: 100vh;
      background: white;
      padding: 60px 20px;
      transition: 0.3s ease;
      z-index: 100;
      box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
      flex-direction: column;
      align-items: center;
      /* Reset list styles */
      list-style: none;
      margin: 0;
      padding: 0;
    }
  
    .nav-menu.active {
      right: 0;
    }
  
    .nav-menu li {
      margin: 15px 0;
      display: block;
      width: 100%;
      text-align: center;
    }
  
    .nav-menu a {
      display: block;
      width: 100%;
      padding: 15px 20px;
      margin: 8px 0;
    }
  
    /* Ensure navbar container adjusts on mobile */
    .navbar .updatescontainer {
      padding: 10px 15px;
    }
  
    .nav-logo {
      font-size: 18px;
      margin-right: 0;
    }
  
    .logo-image {
      margin-left: 0;
    }
  }
  
  /* Footer Styles remain unchanged ... */
  /* (Include your footer CSS as needed) */
  

        /*******************FOOTER*********************/

:root {
    --footer-bg: #f8f9fa;
    --footer-text: #9f9fa5;
    --footer-link: #4a5568;
    --footer-link-hover: #0066ff;
    --footer-border: #e2e8f0;
    --bottom-bar-bg: #ffffff;
}

.footer {
     /* gearicon */
    background-image: url("./media/Gear\ icon.jpg");
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footerContent {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
  }
  
.brandSection {
    flex: 1;
    max-width: 400px;
}

.logoContainer {
    margin-bottom: 1.5rem;
}

.logo {
    height: 9rem;
    width: auto;
    object-fit: contain;
}

.brandDescription {
    color: var(--footer-text);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.linksContainer {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
}

.linkSection {
    display: flex;
    flex-direction: column;
}

.linkTitle {
    color: var(--footer-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.linkTitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 30px;
    height: 2px;
    background-color: var(--footer-link-hover);
}

.linkList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.linkList li {
    margin-bottom: 0.8rem;
}

.privacy {
    padding-left: 5rem;
    color:#bfcfe2;
}
.socialLinks {
    list-style: none;
    padding: 0;
    margin: 0;
  }

.socialLink {
    color:#8e9297;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
  }
  
  .socialLink:hover {
    color: var(--footer-link-hover);
    transform: translateX(5px);
  }
  
  .icon {
    font-family: 'Material Symbols Outlined';
    font-size: 1.2rem;
  }

.link {
    color:#8e9297;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--footer-link-hover);
    transition: width 0.3s ease;
}

.link:hover {
    color: var(--footer-link-hover);
}

.link:hover::after {
    width: 100%;
}

.bottomBar {
    margin-top: 4rem;
    padding: 1.5rem 0;
    justify-items: center;
}

.copyright {
    color:#8e9297;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .footerContent {
        flex-direction: column;
        gap: 3rem;
    }

    .brandSection {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .footerContent {
        padding: 0 1.5rem;
    }

    .linksContainer {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .linksContainer {
        grid-template-columns: 1fr;
    }
}


