 /* Geometric Shapes */
 .geometric-shapes {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
     pointer-events: none;
 }

 .shape {
     position: absolute;
     opacity: 0.1;
     animation: float 8s ease-in-out infinite;
 }

 .shape-1 {
     width: 300px;
     height: 300px;
     background: linear-gradient(45deg, #4ade80, #22c55e);
     border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
     top: 10%;
     right: 10%;
     animation-delay: 0s;
 }

 .shape-2 {
     width: 200px;
     height: 200px;
     background: linear-gradient(45deg, #10b981, #059669);
     border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
     bottom: 20%;
     left: 15%;
     animation-delay: 2s;
 }

 .shape-3 {
     width: 150px;
     height: 150px;
     background: linear-gradient(45deg, #34d399, #10b981);
     border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
     top: 60%;
     right: 30%;
     animation-delay: 4s;
 }

 .shape-4 {
     width: 250px;
     height: 250px;
     background: linear-gradient(45deg, #6ee7b7, #34d399);
     border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
     top: 30%;
     left: 20%;
     animation-delay: 1s;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px) rotate(0deg);
     }

     50% {
         transform: translateY(-20px) rotate(10deg);
     }
 }

 /* Navigation */
 .navbar {
     position: sticky;
     top: 0;
     left: 0;
     width: 100%;
     padding: 20px 50px;
     z-index: 1000;
     backdrop-filter: blur(10px);
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .nav-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
 }

 .nav-links {
     display: flex;
     list-style: none;
     gap: 30px;
 }

 .nav-links a {
     color: white;
     text-decoration: none;
     font-weight: 500;
     padding: 8px 16px;
     border-radius: 8px;
     transition: all 0.3s ease;
 }

.nav-links a:hover {
    color: #84cc16;
    border: 0;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(to right, #84cc16, #04785D) 1;
    border-image-slice: 1;
}

 .navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.2); /* light glass */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* optional for extra glassy edge */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  
  }

 .burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    border: none;
    background: transparent;
    gap: 5px;
    z-index: 3;
}

.burger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color:#9ec9bc;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 10;
    pointer-events: none; 
}

.mobile-menu.active {
    max-height: 500px; 
    opacity: 1;
    padding: 1rem;   
    pointer-events: auto;
}
/* .mobile-menu.scrolled {
    background-color: #047857;
  } */

.mobile-menu .nav-links,
.mobile-menu .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.mobile-menu .nav-actions .btn-primary {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-center,
    .nav-actions {
        display: none; /* hide desktop nav in mobile */
    }

    .burger-menu {
        display: flex;
    }

    .nav-links{
        display: none;
    }

    .navbar.scrolled {
    background-color:#047857;
    }
}

 /* Hero Section */
 .hero {
     padding-bottom: 50px !important;
     align-items: center;
     padding: 20px 50px;
     min-height: 400px;
     text-align: center;
 }

 .hero h1 {
     font-size: 3.5rem;
     font-weight: 800;
     line-height: 1.1;
     margin-bottom: 25px;
     color: #fff;
 }

 /* .main-content {
     margin-top: 1rem;
 } */

 .hero-text {
     z-index: 10;
 }

 .hero h1 .highlight {
     background: linear-gradient(to right, #a3e635, #22d3ee, #14b8a6);
     -webkit-background-clip: text;
     color: transparent;
     font-weight: 800;
 }

 .hero p {
     font-size: 1.2rem;
     opacity: 0.8;
     line-height: 1.6;
     margin-bottom: 40px;
 }

 .btn-primary {
     background: linear-gradient(to right, #84cc16, #047857);
     color: white;
     padding: 1rem 2.5rem;
     border-radius: 40px 10px 40px 10px;
     font-weight: 600;
     letter-spacing: 0.05em;
     border: none;
     cursor: pointer;
     transition: transform 0.2s;
 }

 .btn-primary-sm {
     background: linear-gradient(to right, #84cc16, #047857);
     color: white;
     padding: 0.5rem 1rem;
     border-radius: 40px 10px 40px 10px;
     font-weight: 600;
     letter-spacing: 0.05em;
     border: none;
     cursor: pointer;
     transition: transform 0.2s;
 }

 .btn-primary:hover {
     transform: scale(1.05);
 }

 .btn-secondary {
     border: 1px solid rgba(255, 255, 255, 0.2);
     color: white;
     padding: 1rem 2.5rem;
     border-radius: 10px 40px 10px 40px;
     background: transparent;
     font-weight: 300;
     letter-spacing: 0.05em;
     cursor: pointer;
 }

 .btn-secondary:hover {
     background: rgba(255, 255, 255, 0.05);
 }

 /* Search Section */
 .search-section {
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 15px;
     padding: 40px;
 }

 .search-title {
     font-size: 1.5rem;
     font-weight: 700;
     margin-bottom: 20px;
     text-align: center;
 }

 .search-input {
     width: 100%;
     padding: 15px 50px 15px 20px;
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 10px 40px 10px 40px;
     background: rgba(255, 255, 255, 0.1);
     color: white;
     font-size: 16px;
     backdrop-filter: blur(10px);
     margin-bottom: 1rem;
 }

 .search-input::placeholder {
     color: rgba(255, 255, 255, 0.6);
 }

 .search-input:focus {
     outline: none;
     border-color: #22c55e;
     background: rgba(255, 255, 255, 0.15);
 }

 /* Features Section */
 .features {
     padding: 100px 50px;
     /* background: rgba(0, 0, 0, 0.2); */
 }

 .features-container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .section-title {
     font-weight: 800;
     font-size: 3rem;
     background: linear-gradient(to right, #a3e635, #22d3ee, #14b8a6);
     -webkit-background-clip: text;
     color: transparent;
     text-align: center;
 }

 .section-title h2 {
     font-size: 2.5rem;
     font-weight: 800;
     margin-bottom: 15px;
 }

 .section-title p {
     font-size: 1.1rem;
     opacity: 0.8;
     max-width: 600px;
     margin: 0 auto;
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 40px;
 }

 .feature-card {
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 15px;
     padding: 30px;
     text-align: center;
     transition: all 0.3s ease;
 }

 .feature-card:hover {
     transform: translateY(-5px);
     background: rgba(255, 255, 255, 0.1);
 }

 .feature-icon {
     width: 60px;
     height: 60px;
     background: linear-gradient(45deg, #22c55e, #4ade80);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     font-size: 24px;
 }

 .feature-card h3 {
     font-size: 1.3rem;
     font-weight: 700;
     margin-bottom: 15px;
 }

 .feature-card p {
     opacity: 0.8;
     line-height: 1.6;
 }

 /* Footer */
 .footer {
     background: rgba(0, 0, 0, 0.3);
     padding: 60px 50px 10px;
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
 }

  .footer-body {
    display: flex;
    justify-content:space-between;
    gap: 2rem
 }

 .footer-brand h3 {
     font-size: 1.5rem;
     font-weight: 800;
     margin-bottom: 15px;
 }

 .footer-brand p {
     opacity: 0.8;
     line-height: 1.6;
     margin-bottom: 20px;
 }

 .footer-links a {
     color: white;
     text-decoration: none;
     opacity: 0.8;
     transition: all 0.3s ease;
 }

 .footer-links a:hover {
     opacity: 1;
     color: #4ade80;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 20px;
     text-align: center;
     margin-top: 1rem;
     opacity: 0.6;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .hero {
         padding: 20px;
     }

     .hero h1 {
         font-size: 2.5rem;
     }

     .features {
         padding: 60px 20px;
     }

     .featured-jobs {
         padding: 60px 20px !important;
     }

     .footer {
         padding: 40px 20px 20px;
     }

    .footer-body{
        flex-direction: column;
    }

    .footer-links {
    flex-direction: column ;
    align-items: center;
    }
 }

 .job-card-3 {
     background: rgba(255, 255, 255, 0.08);
     border-radius: 20px;
     padding: 30px;
     transition: all 0.3s ease;
     border: 1px solid rgba(255, 255, 255, 0.1);
     position: relative;
 }

 .job-card-3:hover {
     background: rgba(255, 255, 255, 0.15);
     transform: scale(1.02);
 }

 .featured-badge {
     position: absolute;
     top: 20px;
     right: 20px;
     padding: 8px 16px;
     background: rgba(34, 197, 94, 0.2);
     border: 1px solid rgba(34, 197, 94, 0.3);
     border-radius: 20px;
     font-size: 14px;
     font-weight: 600;
     margin-bottom: 30px;
     color: #4ade80;
 }

 .job-details {
     display: flex;
     gap: 20px;
     font-size: 0.9rem;
     color: rgba(255, 255, 255, 0.8);
 }

 .job-detail-item{
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

 .detail-item {
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .featured-jobs {
     background: rgba(0, 0, 0, 0.2);
     padding: 20px 50px;
 }

 .feature-btn {
    display: flex;
    align-items:end;
    justify-content:end;
 }

 .section-header {
     text-align: center;
     margin-bottom: 50px;
 }


 .section-subtitle {
     font-size: 1.1rem;
     color: rgba(255, 255, 255, 0.8);
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .jobs-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
     gap: 30px;
     margin-bottom: 50px;
 }

 .companies-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-bottom: 50px;
 }


 .top-companies {
     padding: 20px 50px;
 }

 .top-locations {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 50px;
}

 .company-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .job-count {
     color: rgba(255, 255, 255, 0.7);
     font-size: 0.9rem;
 }


 /* Design 1: Glass Card with Logo */
 .company-card-1 {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(15px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 20px;
     padding: 30px;
     text-align: center;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .company-card-1::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, #4CAF50, #81C784);
 }

 .company-card-1:hover {
     transform: translateY(-10px);
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
     background: rgba(255, 255, 255, 0.15);
 }

 .company-logo-1 {
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px auto;
     font-size: 2rem;
     color: white;
     transition: all 0.3s ease;
 }

 .company-card-1:hover .company-logo-1 {
     transform: scale(1.1) rotate(5deg);
 }

 .company-name-1 {
     font-size: 1.4rem;
     font-weight: 700;
     margin-bottom: 10px;
     color: white;
 }

 .company-info {
     display: flex;
     gap: 1rem;
     align-items: center;
 }


 .logo {
     width: 70px;
     height: 70px;
     border-radius: 10px;
 }

 .categories-section {
     max-width: 1200px;
     margin: 0 auto;
 }


 /* Popular Categories Grid */
 .popular-categories {
     padding: 20px 50px;
 }

 .popular-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 20px;
 }


 @media (max-width: 768px) {
     .jobs-grid {
         grid-template-columns: 1fr !important;
     }

     .companies-grid {
         grid-template-columns: 1fr !important;
     }

     .popular-grid {
         grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
     }

     .section-title {
         font-size: 2rem;
     }
     .feature-btn{
        justify-content: center;
        margin-top: 1rem;
     }
 }

 @media (max-width: 480px) {
     .popular-grid {
         grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
     }
 }


 .category-btn-5 {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 10px;
     padding: 25px 20px;
     text-align: center;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     color: white;
     display: block;
 }

 .category-btn-5:hover {
     background: rgba(255, 255, 255, 0.1);
     border-color: rgba(76, 175, 80, 0.5);
     transform: translateY(-3px);
 }

 .category-name-5 p {
     font-size: 1rem;
     font-weight: 600;
     margin-bottom: 6px;
 }

 .input-icon-badges {
     width: 15px;
     height: 15px;
     color: #4ade80;
     margin-right: 5px;
 }

 .alert-error {
     background: #ffebee;
     border-left: 6px solid #c62828;
     color: #555;
     transition: all 0.3s ease;
 }

 .alert {
     padding: 12px 16px;
     border-radius: 6px;
     margin-bottom: 20px;
     font-size: 0.95rem;
     line-height: 1.4;
     display: flex;
     gap: 1rem;
 }

 .alert-success {
    background: #e6ffed;
    color: #2e7d32;
    border: 1px solid #b2dfdb;
}


.white{
    color: white !important;
}