
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            /* display: flex; */
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #ffffff;
        }
        .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;
          }
          
          .nav-menu  {
            list-style: none;
            display: flex;
            /* background-color: #5f0979; */
            border-radius: 20px;
            gap: 20px;
            margin: 0;
            padding: 0;
            display: block;
            list-style-type: disc;
            margin-block-start: 1em;
            margin-block-end: 1em;
            margin-inline-start: 0px;
            margin-inline-end: 0px;
            padding-inline-start: 40px;
            unicode-bidi: isolate;
          }
          
          .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 li {
            display: inline;
          }
          
          .nav-menu a:hover {
            color: #00d4ff;
            transform: scale(1.1); 
          }
          
           .navbar .updatescontainer menu{
            justify-content: right;
           }
           /* Hamburger Menu Styles */
        .hamburger {
            display: none;
            cursor: pointer;
          }
          
          .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px;
            background-color: #2e029d;
            transition: all 0.3s ease;
          }
          
          .nav-close {
            display: none;
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 30px;
            cursor: pointer;
            color: #2e029d;
          }

          .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        .popup-overlay.show {
          display: flex;
        }
        
        .popup-content {
            position: relative;
            background-color: #fff;
            border-radius: 10px;
            width: 90%;
            max-width: 1000px;
            height: 75vh;
            max-height: 800px;
        }
        
        .popup-content iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        .close-popup {
            position: absolute;
            right: 10px;
            top: 5px;
            font-size: 24px;
            cursor: pointer;
            color: #333;
            z-index: 1001;
        }
        
        
        .close-popup:hover {
            color: #666;
        }
          
          /* Responsive Design */
          @media screen and (max-width: 768px) {
            .hamburger {
              display: block;
              z-index: 101;
            }
          
            .nav-menu {
              position: fixed;
              right: -100%;
              top: 0;
              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);
              display: flex;
              flex-direction: column;
              align-items: center;
            }
          
            .nav-menu.active {
              right: 0;
            }
          
            .nav-close {
              display: block;
            }
          
            .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;
            }
        
            /* Reset any existing horizontal layout styles */
            .nav-menu {
              padding-inline-start: 0;
              margin-block-start: 0;
              margin-block-end: 0;
              margin-inline-start: 0;
              margin-inline-end: 0;
            }
          
            /* Hamburger Animation */
            .hamburger.active span:nth-child(1) {
              transform: rotate(45deg) translate(5px, 5px);
            }
          
            .hamburger.active span:nth-child(2) {
              opacity: 0;
            }
          
            .hamburger.active span:nth-child(3) {
              transform: rotate(-45deg) translate(7px, -6px);
            }
        }
        .container {
            display: flex;
            width: 100%;
            max-width: 1200px;
            padding-top: 40px;
            gap: 40px;
            align-items: center;
            justify-content: center;

        }


        



        .form-section {
            max-width: 400px;
            width: 100%;
        }

        /* .illustration-section {
            background-color: #f1f5ff;
            padding: 40px;
            border-radius: 20px;
            text-align: left;  /* Changed from center to left */
            /* max-width: 400px;
        } */ 

        .illustration-section {
          background-color: #f1f5ff;
          padding: 28px;
          border-radius: 20px;
          text-align: left;
          max-width: 300px;
          /* padding-top: 20px; */
          margin-bottom: 91px;
          /* margin-top: 91px; */
      }
        
        .illustration-section img {
            max-width: 100%;
            height: auto;
            display: block;   /* Added to keep image centered */
            margin: 0 auto;   /* Added to keep image centered */
        }
        
        .illustration-section h2 {
            margin-top: 20px;
            font-size: 24px;
            color: #333;
            text-align: left;  /* Added to ensure heading is left-aligned */
        }
        
        .illustration-section p {
            color: #666;
            margin-top: 10px;
            text-align: left;  /* Added to ensure paragraph is left-aligned */
        }

        h1 {
            font-size: 41px;
            margin-bottom: 8px;
            color: #333;
        }

        .subtitle {
            color: #666;
            margin-bottom: 5px;
            font-size: 14px;
        }

        .login-link {
            color: #2d31fa;
            text-decoration: none;
            font-weight: bold;
        }

        .input-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #666;
            font-size: 14px;
        }

        input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            background-color: #fff;
        }

        input:focus {
            outline: none;
            border-color: #2d31fa;
        }

        button {
            width: 100%;
            padding: 14px;
            background-color: #2d31fa;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            margin-top: 10px;
        }

        button:hover {
            background-color: #1f22b3;
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                gap: 20px;
            }

            .illustration-section {
                display: none;
            }

            .form-section {
                padding: 20px;
            }
        }
       /*******************FOOTER*********************/

       :root {
        --footer-bg: #f8f9fa;
        --footer-text: #9f9fa5;
        --footer-link: #4a5568;
        --footer-link-hover: #0066ff;
        --footer-border: #e2e8f0;
        --bottom-bar-bg: #ffffff;
    }
    
    .footer {
        /*******************gear icon*********************/
        background-image: url("https://i.ibb.co/D9K9gLx/Whats-App-Image-2025-01-23-at-10-15-49.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;
        }
    }
    
    
    
