  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            overflow-x: hidden;
            font-family: 'unbounded', Arial, sans-serif;
            padding-top: 80px;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: #fff;
        }


h2
{font-family: 'Unbounded', sans-serif;
            font-weight: 500;
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: black;
            }

        .logo {
            height: 40px;
            width: auto;
        }

        /* Navigation styles remain unchanged */
        .desktop-nav {
            display: flex;
            gap: 20px;
        }

        .desktop-nav a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-family: 'Sora', sans-serif;
        }

        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            z-index: 1001;
            transition: transform 0.3s ease;
        }

        .mobile-nav-btn.active {
            transform: rotate(90deg);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            height: 100vh;
            background-color: white;
            transition: right 0.3s ease;
            padding: 80px 20px 20px;
            z-index: 1000;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav a {
            display: block;
            padding: 15px 0;
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-family: 'Sora', sans-serif;
            border-bottom: 1px solid #eee;
        }

        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 999;
        }

        .overlay.active {
            display: block;
        }

        /* Hero Section */
        .hero-section {
            display: flex;
            height: calc(100vh - 80px);
        }

        .left-section, .right-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .left-section {
            background-color: #ffd600;
        }

        .right-section {
            background-color: #8e44ad;
        }

        .text-line {
            display: flex;
            margin: 10px 0;
            width: 100%;
        }

        .first-word {
            text-align: right;
            color: black;
            width: 100%;
            padding-right: 5px;
            font-size: 3rem;
            font-weight: 700;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s, transform 1s;
        }

        .second-word {
            text-align: left;
            color: #ffd600;
            width: 100%;
            padding-left: 5px;
            font-size: 3rem;
            font-weight: 700;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s, transform 1s;
        }

        /* Mobile Hero */
        .mobile-hero {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: calc(100vh - 80px);
            background-color: #ffd600;
            text-align: center;
            padding: 20px;
        }

        .mobile-hero-line {
            font-size: 2.5rem;
            font-weight: 700;
            color: black;
            opacity: 0;
            transform: translateY(20px);
            margin: 10px 0;
            transition: opacity 1s, transform 1s;
        }

        /* New Two-Column Section */
        .two-column-section {
            display: flex;
            height: 100vh;
            position: relative;

        }

        .column {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px 40px 0 40px;
            position: relative;

        }

        .left-column {
            background-color: #ffd600;
              
        }

        .right-column {

            background-color: #8e44ad;

        }

        .column-content {
            width: 100%;
            max-width: 500px;
            height: 100%;
            display: flex;
            margin-top: 10vh;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
         
        }

        .column h3 {
            font-family: 'Unbounded', sans-serif;
            font-weight: 500;
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: black;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s, transform 1s;
        }
         .column h3.on {
       
            opacity: 1;
            
        }

        .right-column h3 {
            color: white;
        }

        .column-button, .column-button-on {
            padding: 15px 30px;
            font-family: 'unbounded', sans-serif;
            font-weight: 500;
            text-transform: uppercase;
            font-size: .85rem;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            margin-bottom: 40px;
            transition: transform 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s, transform 1s, background-color 0.3s;
        }

.column-button-on
{opacity: 1;}


        .left-column .column-button, .right-column .column-button, .column-button-on {
            background-color: black;
            color: white;
        }

        

        .column-button:hover {
            transform: translateY(-3px) !important;
        }

        .column-image, .column-image-on {
            width: 100%;
            max-width: 400px;
            margin-top: auto;
            align-self: center;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s, transform 1s;
        }


.column-image-on {
          max-width: 500px;
            opacity: 1;
            margin-bottom: 20px;

            
        }

        .column-image img, .column-image-on img  {
            width: 100%;
            height: auto;
            display: block;
        }


 /* PROB - Two Column Structure */



        .prob-section {
            display: flex;
            width: 100%;
            height: 100vh;
            padding-top: 100px;
            padding-left: 5%;
             padding-right: 5%;
            flex-direction: row;
            background-color: #F5F5F6;
        }
        
        .prob-column {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: left;
            font-size: 2rem;
            font-weight: bold;
            padding-right: 5%;
            padding-left: 5%;
        }
        



        .prob-left h2{color: #DDA200;
            margin-bottom: 2rem;
            
            
        }
        
        .prob-right h2 { color: #8E44AD;
                      
        }



.feature-card {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
}

.icon-card {
  width: 80px;
  height: 80px;
  background-color: #f7EFC5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin-right: 20px;
  flex-shrink: 0;
}

.prob-right .icon-card
{background-color: #E6DBEB;}


.icon-card img {
  width: 30px;
  height: 30px;
}

.feature-text {
  font-family: 'Sora', sans-serif;
}

.feature-text h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 300;
}

.feature-text p {
  font-size: 0.8rem;
  line-height: 1.5;
    font-weight: 300;
}










  /* Two Column Section Styles */
    .two-column-section {
        display: flex;
        width: 100%;
        min-height: 600px;
    }
    
    .column2 {
        flex: 1;
        position: relative;
        padding: 2rem;
        display: flex;
        align-items: center;
    }
    
    .left-column-sol {
       background-color: #FFE8D9;
        background-image: url('../images/left-image.png');
        background-position: left bottom;
        background-repeat: no-repeat;
        background-size: auto 90%;
    }
    
    .right-column-sol {
      background-color: #FFE8D9;
        background-image: url('../images/right-image.png');
        background-position: right bottom;
        background-repeat: no-repeat;
        background-size: auto 90%;
    }
    
    .cards-container {
        width: 80%;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .right-aligned {
        margin-left: auto;
     display: flex;
    flex-direction: column;
    
    align-items: flex-end; /* Right-aligns child cards */
    gap: 1rem; /* Adds spacing between cards */
    }

 .right-aligned2 {
        margin-left: auto;
     display: flex;
    flex-direction: column;
    padding-left: 10vw;
    align-items: flex-end; /* Right-aligns child cards */
    gap: 1rem; /* Adds spacing between cards */
    color: #fff;
    }
    
    .right-aligned2 h2 {
   
    color: #fff;
    }
    

    
    .left-aligned {
        margin-right: auto;
    }
    
    .glass-card {
        display: flex;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        width:80%;
        max-width: 500px;
        transition: transform 0.3s ease;

    }
    
    .glass-card:hover {
        transform: translateY(-5px);
    }
    
    .card-number {
        background: rgba(255, 255, 255, 0.3);
        padding: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 60px;
    }
    
    .card-number h2 {
        margin: 0;
        color:#8E44AD ;
        font-size: 2rem;
    }
    
.right-aligned .card-number h2, .right-aligned .card-content h3 {
        
        color:#DDA200 ;
        
    }

    .card-content {
        padding: 1.5rem;
        flex-grow: 1;
    }
    
    .card-content h3 {
        margin: 0;
        color: #8E44AD ;
        font-size: 1.2rem;
    }
    












.left-column-end {
       background-color: #FFD600;
        background-image: url('../images/shake-candidate.png');
        background-position: right bottom;
        background-repeat: no-repeat;
        background-size: auto 70%;
    }
    
    .right-column-end {
      background-color: #8E44AD;
        background-image: url('../images/shake-recruiter.png');
        background-position: left bottom;
        background-repeat: no-repeat;
        background-size: auto 70%;
    }












/* PROB - Two Column Base Structure */


        .show {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .logo {
                width: 50%;
                height: auto;
            }


              .prob-section {
    flex-direction: column; /* ← CHANGED FROM COLUMN TO ROW */
    height: auto;
    min-height: auto;
  }
  .prob-column {
    min-height: 50vh; /* Each column takes at least half screen */
    height: auto;
    margin-bottom: 7vh;
  }


            .desktop-nav {
                display: none;
            }

            .mobile-nav-btn {
                display: block;
            }

            /* Hide desktop hero on mobile */
            .left-section, .right-section {
                display: none;
            }

            /* Show mobile hero */
            .mobile-hero {
                display: flex;
            }

            .hero-section {
                flex-direction: column;
            }

            /* Mobile styles for new section */
            .two-column-section {
                flex-direction: column;
                height: auto;
            }

            .column {
                padding: 30px;
                
            }

           h3 {
                font-size: 1.8rem;
                margin-bottom: 20px;
            }

            .column-button {
                margin-bottom: 30px;
            }
        
   
           

  







        }