        :root {
            --primary: #6c63ff;
            --secondary: #4d44db;
            --accent: #00cfc8;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --success: #28a745;
            --warning: #ffc107;
            --danger: #dc3545;
            --glass: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
        }
        
          :root {
    --primary-color: #1f1f1f;
    --accent-color: #00ffc3;
    --bg-glass: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.15);
    --font-main: 'Segoe UI', sans-serif;
  }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 600;
            letter-spacing: 1px;
        }

     

        /* pre loader */
      
        /* Preloader Styles */
        /* .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0f0f1a;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            flex-direction: column;
        }

        .orbital-ring {
            position: absolute;
            width: 300px;
            height: 300px;
            border: 2px solid rgba(0, 255, 255, 0.2);
            border-radius: 50%;
            animation: spin 8s linear infinite;
        }

        .orbital-ring:nth-child(2) {
            width: 240px;
            height: 240px;
            border-color: rgba(0, 200, 255, 0.3);
            animation-direction: reverse;
        }

        .orbital-ring:nth-child(3) {
            width: 180px;
            height: 180px;
            border-color: rgba(100, 150, 255, 0.4);
        }

        .core {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #00ffff, #0088ff);
            border-radius: 50%;
            box-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff, 0 0 60px #00ffff;
            position: relative;
            z-index: 10;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: pulse 2s ease-in-out infinite alternate;
        }

        .particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: #00ffff;
            border-radius: 50%;
            box-shadow: 0 0 10px #00ffff;
            animation: float 4s infinite ease-in-out;
        }

        .loading-text {
            margin-top: 40px;
            color: #00ffff;
            font-size: 18px;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 0 0 10px #00ffff;
            font-family: 'Orbitron', sans-serif;
        }

        .progress-bar {
            width: 200px;
            height: 4px;
            background: rgba(0, 255, 255, 0.1);
            margin-top: 20px;
            border-radius: 2px;
            overflow: hidden;
            position: relative;
        }

        .progress-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #00ffff, #0088ff);
            box-shadow: 0 0 10px #00ffff;
            transition: width 0.3s ease;
            position: relative;
        }

        .progress-fill::after {
            content: '';
            position: absolute;
            top: -2px;
            right: 0;
            width: 8px;
            height: 8px;
            background: #00ffff;
            border-radius: 50%;
            box-shadow: 0 0 10px #00ffff;
        }

        .percentage {
            position: absolute;
            right: -40px;
            color: #00ffff;
            font-size: 14px;
            font-family: 'Orbitron', sans-serif;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff, 0 0 60px #00ffff; }
            100% { transform: scale(1.1); box-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff, 0 0 90px #00ffff; }
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(10px, -10px); }
            50% { transform: translate(-10px, 10px); }
            75% { transform: translate(10px, 10px); }
        }

        /* Hide content until preloader completes */
      /*  body.loaded .main-content {
            opacity: 1;
            visibility: visible;
        }
        
        .main-content {
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        } */
    



        /* Navbar */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            background: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--glass-border);
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo img {
            height: 70px;
            filter: drop-shadow(0 0 5px var(--accent));
            animation: pulse 2s infinite;
        }
        
        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

     
/* Student login dropdown styling */
.user-profile {
    position: relative;
    display: inline-block;
}

.profile-info {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.profile-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
}

.user-name {
    font-weight: 500;
    color: #333;
}

.profile-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 999;
    min-width: 160px;
    margin-top: 8px;
}

.profile-menu.show {
    display: block;
}

.profile-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.profile-menu a:hover {
    background-color: #f0f0f0;
}
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .auth-buttons .btn {
            margin-left: 1rem;
        }
        
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }
      


        /* ----------------------------------------------------------------------------------------------------------------Hero Section----------------- */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 5%;
            margin-top: -80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 600px;
            z-index: 2;
           /* margin-top: 26%; */
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(to right, var(--light), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: slideInLeft 1s ease;
        }
        
        .hero p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: slideInLeft 1.2s ease;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            animation: slideInLeft 1.4s ease;
        }
        
        .hero-image {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            width: 50%;
            max-width: 700px;
            z-index: 1;
            animation: float 6s ease-in-out infinite;
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 0 20px rgba(108, 99, 255, 0.5));
        }

        
        /* Particles Background */
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 4px 15px rgba(108, 99, 255, 0.4);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(108, 99, 255, 0.6);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--light);
            border: 2px solid var(--glass-border);
            backdrop-filter: blur(5px);
        }
        
        .btn-secondary:hover {
            background: var(--glass);
            border-color: var(--accent);
            color: var(--accent);
        }
        
        .btn-accent {
            background: var(--accent);
            color: var(--dark);
            font-weight: 700;
        }
        
        .btn-accent:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 207, 200, 0.4);
        }
        
        /* Features Section */
        .features {
            padding: 6rem 5%;
            background: linear-gradient(to bottom, var(--dark), #0f0c29);
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(to right, var(--light), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.8;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background: var(--glass);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid var(--glass-border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(108, 99, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
            z-index: -1;
        }
        
        .feature-card:hover::before {
            transform: translateX(100%);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: var(--accent);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(0, 207, 200, 0.1));
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .feature-card h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        /* How It Works Section */
        .how-it-works {
            padding: 6rem 5%;
            background: linear-gradient(to bottom, #0f0c29, var(--dark));
            position: relative;
        }
        
        .steps-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .steps-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
            transform: translateX(-50%);
            z-index: 1;
        }
        
        .steps {
            display: flex;
            flex-direction: column;
            gap: 4rem;
            position: relative;
            z-index: 2;
        }
        
        .step {
            display: flex;
            align-items: center;
            gap: 2rem;
            background: var(--glass);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid var(--glass-border);
            transition: all 0.3s ease;
        }
        
        .step:nth-child(even) {
            flex-direction: row-reverse;
            margin-left: auto;
            width: calc(50% - 2rem);
        }
        
        .step:nth-child(odd) {
            margin-right: auto;
            width: calc(50% - 2rem);
        }
        
        .step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            border-color: var(--accent);
        }
        
        .step-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            min-width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(0, 207, 200, 0.1));
            border: 2px solid var(--accent);
        }
        
        .step-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }
        
        /* Stats Section */
        .stats {
            padding: 5rem 5%;
            background: url('../image/download.avif') no-repeat center center/cover;
            position: relative;
            text-align: center;
        }
        
        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 26, 46, 0.9);
        }
        
        .stats-content {
            position: relative;
            z-index: 1;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .stat-item {
            background: var(--glass);
            backdrop-filter: blur(5px);
            border-radius: 10px;
            padding: 2rem 1rem;
            border: 1px solid var(--glass-border);
            transition: all 0.3s ease;
        }
        
        .stat-item:hover {
            transform: scale(1.05);
            border-color: var(--accent);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            font-family: 'Orbitron', sans-serif;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Companies Section */
        .companies {
            padding: 5rem 5%;
            background: linear-gradient(to bottom, #0f0c29, var(--dark));
        }
        
        .companies-slider {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 3rem;
            padding: 2rem 0;
        }
        
        .company-logo {
            flex: 1;
            min-width: 150px;
            max-width: 200px;
            filter: grayscale(100%) brightness(2);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .company-logo:hover {
            filter: grayscale(0) brightness(1);
            opacity: 1;
            transform: scale(1.1);
        }
        
        .company-logo img {
            width: 100%;
            height: auto;
        }
        
        /* Testimonials */
       /* Testimonials */
.testimonials {
  padding: 6rem 5%;
  background: var(--dark);
}

.testimonial-slider {
  max-width: 1000px;
  margin: 3rem auto 0;
  position: relative;
}

.testimonial-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2.5rem;
  border: 1px solid var(--glass-border);
  margin: 0 1rem;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(108, 99, 255, 0.05), transparent);
  z-index: -1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--accent);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--accent);
  object-fit: cover;
  display: block;
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 1rem;
}

.testimonial-quote::before,
.testimonial-quote::after {
  content: '"';
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
}

.testimonial-quote::before {
  top: -20px;
  left: 0;
}

.testimonial-quote::after {
  bottom: -30px;
  right: 0;
}

.testimonial-author {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.testimonial-role {
  color: var(--accent);
  font-size: 0.9rem;
  font-style: italic;
}


/* Container Styling */
.slick-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 15px 0;
  list-style: none;
}

/* Dot Button Styling */
.slick-dots li button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  outline: none;
  transition: background-color 0.3s, transform 0.3s;
  cursor: pointer;
  padding: 0;
}

/* On Hover */
.slick-dots li button:hover {
  background-color: #888;
  transform: scale(1.2);
}

/* Active Dot */
.slick-dots li.slick-active button {
  background-color: #007bff; /* Modern blue */
  transform: scale(1.3);
}


        /* CTA Section */
        .cta {
            padding: 6rem 5%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 15s linear infinite;
            z-index: 0;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .cta p {
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Footer */
        .footer {
            background: #0f0c29;
            padding: 5rem 5% 2rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--accent);
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--glass);
            color: var(--light);
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--glass-border);
            opacity: 0.7;
            font-size: 0.9rem;
        }
        
        /* Animations */
        @keyframes float {
            0% { transform: translateY(-50%) translateX(0); }
            50% { transform: translateY(-50%) translateX(-10px); }
            100% { transform: translateY(-50%) translateX(0); }
        }
        
        @keyframes slideInLeft {
            from { transform: translateX(-50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes slideInRight {
            from { transform: translateX(50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes pulse {
            0% { filter: drop-shadow(0 0 5px var(--accent)); }
            50% { filter: drop-shadow(0 0 15px var(--accent)); }
            100% { filter: drop-shadow(0 0 5px var(--accent)); }
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero-image {
                width: 45%;
            }
        }
        
        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding-top: 120px;
                height: auto;
                min-height: 100vh;
            }
            
            .hero-content {
                max-width: 100%;
                margin-bottom: 3rem;
                margin-top: 20%;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-image {
                display: none;
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                width: 80%;
                margin: 0 auto;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--dark);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 3rem;
                transition: all 0.5s ease;
                z-index: 999;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .auth-buttons {
                display: none;
            }
            
            /* How It Works Responsive */
            .steps-line {
                display: none;
            }
            
            .step, .step:nth-child(even), .step:nth-child(odd) {
                width: 100%;
                flex-direction: column;
                text-align: center;
            }
            
            .step-number {
                margin-bottom: 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .feature-card {
                padding: 1.5rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonial-card {
                padding: 1.5rem;
            }
            
            .cta h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .company-logo {
                min-width: 120px;
            }
        }
   
                /* Contact Form Section */
        .contact-form-section {
            padding: 6rem 5%;
            background: linear-gradient(to bottom, var(--dark), #0f0c29);
        }
        
        .contact-form-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            align-items: center;
        }
        
        .contact-form {
            background: var(--glass);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid var(--glass-border);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem 1rem 0.8rem 2.5rem;
            border-radius: 8px;
            border: 1px solid var(--glass-border);
            background: rgba(255, 255, 255, 0.05);
            color: var(--light);
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }
        
        .form-group textarea {
            padding: 0.8rem 1rem;
            resize: vertical;
        }
        
        .form-group i {
            position: absolute;
            left: 1rem;
            top: 3.1rem;
            color: var(--accent);
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.2);
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        
        .info-card {
            background: var(--glass);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid var(--glass-border);
            transition: all 0.3s ease;
        }
        
        .info-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
        }
        
        .info-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(0, 207, 200, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: var(--accent);
            font-size: 1.2rem;
        }
        
        .info-content h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--accent);
        }
        
        .info-content p {
            margin-bottom: 0.3rem;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .btn-text {
            margin-right: 0.5rem;
        }
        
        @media (max-width: 768px) {
            .contact-form {
                padding: 1.5rem;
            }
            
            .form-group i {
                top: 2.3rem;
            }
        }
    
/* Registration Form CSS */
.registration-container {
  position: relative;
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.registration-glass {
  background: rgba(26, 26, 46, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(108, 99, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.registration-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.registration-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: #00cfc8;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.registration-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.form-section {
  margin-bottom: 2rem;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-header h3 {
  font-size: 1.3rem;
  color: #6c63ff;
  font-weight: 600;
}

.section-header i {
  color: #00cfc8;
  font-size: 1.2rem;
}

.glow-bar {
  height: 2px;
  background: linear-gradient(90deg, #6c63ff, #00cfc8);
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  opacity: 0.5;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-group input, 
.input-group select {
  width: 100%;
  padding: 1rem 1rem 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(108, 99, 255, 0.3);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-group input:focus, 
.input-group select:focus {
  outline: none;
  border-color: #00cfc8;
  box-shadow: 0 0 0 2px rgba(0, 207, 200, 0.2);
}

.input-group label {
  position: absolute;
  left: 2.5rem;
  top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  pointer-events: none;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group select:valid + label {
  transform: translateY(-1.5rem) scale(0.9);
  color: #00cfc8;
}

.input-group i {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #6c63ff;
}

/* Skills Section */
.skills-container {
  margin-top: 1rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.skill-tag {
  background: rgba(108, 99, 255, 0.2);
  color: #00cfc8;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(108, 99, 255, 0.5);
}

.skill-tag i {
  cursor: pointer;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.skill-tag i:hover {
  color: #ff4d4d;
}

.skill-input {
  position: relative;
}

.skill-input input {
  padding-right: 2.5rem !important;
}

.skill-input i {
  left: auto !important;
  right: 1rem;
  cursor: pointer;
  color: #00cfc8 !important;
}

/* File Upload */
.file-upload-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.upload-box {
  text-align: center;
}

.upload-box label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 120px;
  background: rgba(108, 99, 255, 0.1);
  border: 2px dashed rgba(108, 99, 255, 0.5);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-box label:hover {
  background: rgba(108, 99, 255, 0.2);
  border-color: #00cfc8;
}

.upload-box i {
  font-size: 2rem;
  color: #6c63ff;
  margin-bottom: 0.5rem;
}

.upload-box span {
  color: rgba(255, 255, 255, 0.8);
}



  .preview-section {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .preview-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 20px;
    width: 300px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 195, 0.15);
    transition: transform 0.3s ease;
  }

  .preview-item:hover {
    transform: scale(1.02);
  }

  .preview-item h4 {
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
  }

  .image-preview {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .image-preview img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px;
  }

  .default-icon {
    font-size: 4rem;
    color: #777;
  }

  .file-preview {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
  }

  .file-preview iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 12px;
  }

  .file-name {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    color: #aaa;
    text-align: center;
  }
/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(45deg, #6c63ff, #4d44db);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(108, 99, 255, 0.4);
}

.btn-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(0, 207, 200, 0.3), 
    transparent);
  top: 0;
  left: -100%;
  transition: left 0.7s ease;
}

.submit-btn:hover .btn-glow {
  left: 100%;
}

/* Decorative Elements */
.form-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.deco-circle-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.deco-circle-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 207, 200, 0.1) 0%, transparent 70%);
  bottom: -50px;
  right: -50px;
}

.deco-line {
  position: absolute;
  height: 100%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #6c63ff, transparent);
  right: 50px;
  top: 0;
  opacity: 0.2;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .registration-container {
    padding: 1rem;
  }
  
  .registration-glass {
    padding: 1.5rem;
  }
  
  .registration-header h2 {
    font-size: 1.5rem;
  }
  
  .section-header h3 {
    font-size: 1.1rem;
  }
}
select:focus {
    background-color: black; /* background when open/focused */
    color: white; /* change text color for contrast */
    outline: none;
}
        /* -------------------------------------Login-------------------------------------------- */
/* Login Form Specific Styles */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
}

.remember-me {
  display: flex;
  align-items: center;
}

.remember-me input {
  margin-right: 0.5rem;
  accent-color: #6c63ff;
}

.remember-me label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.forgot-password {
  color: #00cfc8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.forgot-password:hover {
  color: #6c63ff;
}

.register-link {
  text-align: center;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.register-link a {
  color: #00cfc8;
  text-decoration: none;
  transition: color 0.2s;
}

.register-link a:hover {
  color: #6c63ff;
}

/* Adjust form grid for login */
.login-form .form-grid {
  grid-template-columns: 1fr;
}

/* Updated Profile Started code  */



       /* Profile Page CSS with Custom Namespace */
.profile-theme {
    --primary: #6c63ff;
    --secondary: #4d44db;
    --accent: #00cfc8;
    --dark: #1a1a2e;
    --light: #1a1a2e;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* Container Styles */
.profile-theme .profile-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Header Styles */
.profile-theme .profile-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.profile-theme .profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.profile-theme .profile-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.profile-theme .profile-id {
    background-color: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.profile-theme .profile-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.profile-theme .status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.profile-theme .status-verified {
    background-color: rgba(40, 167, 69, 0.2);
    color: var(--success);
}

.profile-theme .status-pending {
    background-color: rgba(255, 193, 7, 0.2);
    color: var(--warning);
}

.profile-theme .profile-bio {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #6c757d;
}

/* Grid Layout */
.profile-theme .profile-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .profile-theme .profile-grid {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Styles */
.profile-theme .profile-sidebar {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    height: fit-content;
}

.profile-theme .sidebar-section {
    margin-bottom: 1.5rem;
}

.profile-theme .sidebar-section:last-child {
    margin-bottom: 0;
}

.profile-theme .section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-theme .section-title i {
    color: var(--primary);
}

/* Contact Info Styles */
.profile-theme .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.profile-theme .contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.profile-theme .contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(108, 99, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.profile-theme .contact-details {
    flex: 1;
    color: black;
}

.profile-theme .contact-label {
    font-size: 0.8rem;
    color: #6c757d;
}

.profile-theme .contact-value {
    font-weight: 500;
    word-break: break-all;
}

/* Skills Styles */
.profile-theme .skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.profile-theme .skill-tag {
    background-color: rgba(108, 99, 255, 0.1);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Documents Styles */
.profile-theme .documents-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.profile-theme .document-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.profile-theme .document-item:hover {
    background-color: #f8f9fa;
}

.profile-theme .document-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(108, 99, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.profile-theme .document-name {
    flex: 1;
    font-weight: 500;
    font-size: 0.9rem;
    color: black;
}

.profile-theme .document-action {
    color: var(--primary);
    cursor: pointer;
}

/* Content Area Styles */
.profile-theme .profile-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.profile-theme .content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.profile-theme .content-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
}

/* Alert Styles */
.profile-theme .alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.profile-theme .alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    color: var(--success);
    border-left: 4px solid var(--success);
}

.profile-theme .alert-error {
    background-color: rgba(220, 53, 69, 0.2);
    color: var(--danger);
    border-left: 4px solid var(--danger);
}

/* Form Styles */
.profile-theme .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.profile-theme .form-group {
    margin-bottom: 1rem;
    color: black;
}

.profile-theme .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--light);
}

.profile-theme .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.profile-theme .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.profile-theme .form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* File Upload Styles */
.profile-theme .file-upload {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-theme .file-upload-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.profile-theme .file-upload-box {
    flex: 1;
    min-width: 200px;
}

.profile-theme .file-upload-label {
    display: block;
    padding: 1.5rem;
    border: 2px dashed #ced4da;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-theme .file-upload-label:hover {
    border-color: var(--primary);
    background-color: rgba(108, 99, 255, 0.05);
}

.profile-theme .file-upload-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.profile-theme .file-upload-text {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.profile-theme .file-upload-hint {
    font-size: 0.8rem;
    color: #6c757d;
}

.profile-theme .file-preview-img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.profile-theme .file-preview-name {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
    color: #6c757d;
    word-break: break-all;
}

/* Button Styles */
.profile-theme .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.profile-theme .btn-primary {
    background-color: var(--primary);
    color: white;
}

.profile-theme .btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.2);
}

.profile-theme .btn-block {
    display: flex;
    width: 100%;
}

/* Edit Toggle Styles */
.profile-theme .edit-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    cursor: pointer;
    font-weight: 500;
}

.profile-theme .hidden {
    display: none;
}

/* Skill Tags Input */
.profile-theme .skills-input-container {
    margin-top: 1rem;
}

.profile-theme .skill-tags-input {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    min-height: 50px;
    align-items: center;
}

.profile-theme .skill-tag-input {
    background-color: rgba(108, 99, 255, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.profile-theme .skill-tag-remove {
    cursor: pointer;
    font-size: 0.7rem;
}

.profile-theme .skill-input-field {
    flex: 1;
    min-width: 100px;
    border: none;
    outline: none;
    padding: 0.5rem;
}
input{
    color:black;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .profile-theme .profile-name {
        font-size: 1.5rem;
    }
    
    .profile-theme .form-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-theme .file-upload-group {
        flex-direction: column;
    }
}
    




/* ----------------------------Job Posting Css Started ----------------------------------------------- */
 
    .job-form-container {
      width: 100%;
      /* max-width: 800px; */
    }

    .job-form-header {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .job-form-header h2 {
      font-size: 1.75rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .job-form-header p {
      color: var(--gray-dark);
      font-size: 0.9rem;
    }

    .job-form {
      background: var(--white);
      padding: 2rem;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.25rem;
      margin-bottom: 1.25rem;
    }

    .form-group {
      margin-bottom: 1.25rem;
    }

    .form-group label {
      display: block;
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
      color: #f3f3f3;
    }

    .form-group label.required::after {
      content: " *";
      color: var(--danger);
    }

    .form-control {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #d1d5db;
      border-radius: var(--border-radius);
      font-size: 0.875rem;
      font-family: 'Inter', sans-serif;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .form-control:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
    }

    textarea.form-control {
      min-height: 120px;
      resize: vertical;
    }

    select.form-control {
      appearance: none;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      background-size: 1rem;
    }

    .file-upload {
      position: relative;
      overflow: hidden;
      display: inline-block;
      width: 100%;
    }

    .file-upload-input {
      position: absolute;
      left: 0;
      top: 0;
      opacity: 0;
      width: 100%;
      height: 100%;
      cursor: pointer;
    }

    .file-upload-label {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      border: 2px dashed #d1d5db;
      border-radius: var(--border-radius);
      background-color: #f9fafb;
      cursor: pointer;
      transition: border-color 0.2s;
      text-align: center;
      flex-direction: column;
      gap: 0.5rem;
    }

    .file-upload-label:hover {
      border-color: var(--primary);
    }

    .file-upload-icon {
      color: var(--primary);
      font-size: 1.5rem;
    }

    .file-upload-text {
      font-size: 0.875rem;
      color: var(--gray-dark);
    }

    .file-upload-text strong {
      color: var(--primary);
      font-weight: 500;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      background-color: var(--primary);
      color: var(--white);
      border: none;
      border-radius: var(--border-radius);
      font-size: 0.875rem;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.2s;
      width: 100%;
    }

    .btn:hover {
      background-color: var(--primary-dark);
    }

    .btn i {
      font-size: 1rem;
    }

    @media (max-width: 768px) {
      body {
        padding: 1rem;
      }
      
      .job-form {
        padding: 1.5rem;
      }
      
      .form-grid {
        grid-template-columns: 1fr;
      }
    }
  /* ----------------------------Job Posting Css Ended ----------------------------------------------- */

  /*------------------ Job applying from -------------------------------------------- */



   .apply-container {
        max-width: 800px;
        margin: 2rem auto;
        padding: 1.5rem;
        background: var(--white);
        border-radius: 10px;
        box-shadow: var(--shadow);
    }
    
    @media (max-width: 768px) {
        .apply-container {
            margin: 1rem;
            padding: 1rem;
        }
    }
    
    .apply-header {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--gray-light);
    }
    
    .apply-title {
        font-size: 1.8rem;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 0.5rem;
    }
    
    .job-applying-for {
        font-size: 1.1rem;
        color: var(--primary);
        margin-bottom: 1rem;
    }
    
    .apply-form {
        display: grid;
        gap: 1.5rem;
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-label {
        font-weight: 500;
        color: var(--white);
    }
    
    .form-control {
        padding: 0.75rem 1rem;
        border: 1px solid var(--gray-light);
        border-radius: 5px;
        font-size: 1rem;
        transition: var(--transition);
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-control:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
    }
    
    textarea.form-control {
        min-height: 150px;
        resize: vertical;
    }
    
    .file-upload {
        position: relative;
        margin-bottom: 1rem;
    }
    
    .file-upload-input {
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }
    
    .file-upload-label {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
        border: 2px dashed var(--gray-light);
        border-radius: 5px;
        text-align: center;
        transition: var(--transition);
    }
    
    @media (max-width: 480px) {
        .file-upload-label {
            padding: 1rem;
        }
    }
    
    .file-upload-label:hover {
        border-color: var(--primary);
    }
    
    .file-upload-icon {
        font-size: 2rem;
        color: var(--primary);
        margin-bottom: 1rem;
    }
    
    .file-upload-text {
        font-size: 0.9rem;
        color: var(--gray-dark);
    }
    
    .file-upload-text strong {
        color: var(--primary);
    }
    
    .file-upload-preview {
        margin-top: 1rem;
        display: none;
    }
    
    .submit-btn {
        padding: 0.75rem 1.5rem;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
    }
    
    @media (min-width: 480px) {
        .submit-btn {
            width: auto;
        }
    }
    
    .submit-btn:hover {
        background: var(--primary-dark);
    }
    
    .back-link {
        display: inline-block;
        margin-top: 1rem;
        color: var(--secondary);
        text-decoration: none;
        transition: var(--transition);
    }
    
    .back-link:hover {
        color: var(--primary);
    }
    
    .required-field::after {
        content: " *";
        color: var(--danger);
    }

    .preview-container {
        border: 1px solid var(--gray-light);
        border-radius: 5px;
        padding: 1rem;
        background: var(--gray-light);
        margin-top: 1rem;
    }

    .preview-container object {
        background: white;
        padding: 1rem;
        width: 100%;
        height: 300px;
    }

    @media (max-width: 480px) {
        .preview-container object {
            height: 200px;
        }
    }

    .file-upload-label {
        transition: all 0.3s ease;
    }

    .file-upload-label.dragover {
        border-color: var(--primary) !important;
        background-color: rgba(67, 97, 238, 0.1) !important;
    }
    
    #existingResume {
        margin: 1rem 0;
        padding: 0.75rem;
        background: var(--gray-light);
        border-radius: 5px;
    }
    
    #existingResume a {
        color: var(--primary);
        text-decoration: none;
    }
    
    #existingResume a:hover {
        text-decoration: underline;
    }



    /* --------------------------------------Job Opening Card Started From Here------------------------------------ */


    .jobs-container {
        padding: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .jobs-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .jobs-title {
        font-size: 1.8rem;
        font-weight: 600;
        color: var(--dark);
    }
    
    .job-cards {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 1.5rem;
    }
    
    .job-card {
        background: var(--light);
        border-radius: 10px;
        box-shadow: var(--shadow);
        overflow: hidden;
        transition: var(--transition);
        border: 1px solid var(--gray-light);
    }
    
    .job-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .job-card-header {
        padding: 1.5rem;
        border-bottom: 1px solid var(--gray-light);
        position: relative;
    }
    
    .job-card-image {
        width: 60px;
        height: 60px;
        object-fit: contain;
        border-radius: 8px;
        margin-bottom: 1rem;
        border: 1px solid var(--gray-light);
        background: var(--white);
    }
    
    .job-card-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 0.5rem;
    }
    
    .job-card-type {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        background: var(--primary-light);
        color: var(--primary);
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    .job-card-body {
        padding: 1.5rem;
    }
    
    .job-card-details {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
        color: var(--dark);
    }
    
    .job-card-detail {
        display: flex;
        align-items: center;
        font-size: 0.9rem;
        color: var(--dark);
    }
    
    .job-card-detail i {
        margin-right: 0.5rem;
        color: var(--primary);
    }
    
    .job-card-footer {
        padding: 1rem 1.5rem;
        border-top: 1px solid var(--gray-light);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .job-card-deadline {
        font-size: 0.85rem;
        color: var(--dark);
    }
    
    .job-card-deadline.past {
        color: var(--danger);
    }
    
    .job-card-actions {
        display: flex;
        gap: 0.5rem;
    }
    
    .job-card-button {
        padding: 0.5rem 1rem;
        border-radius: 5px;
        cursor: pointer;
        transition: var(--transition);
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
    }
    
    .view-button {
        background: var(--primary);
        color: white;
        border: none;
    }
    
    .view-button:hover {
        background: var(--primary-dark);
    }
    
    .apply-button {
        background: var(--success);
        color: white;
        border: none;
    }
    
    .apply-button:hover {
        background: #218838;
    }
    
    .no-jobs {
        text-align: center;
        padding: 3rem;
        color: var(--secondary);
        font-size: 1.1rem;
    }
    
    .filter-container {
        margin-bottom: 2rem;
        display: flex;
        gap: 1rem;
        align-items: center;
    }
    
    .filter-label {
        font-weight: 500;
        color: var(--dark);
    }
    
    .filter-select {
        padding: 0.5rem 1rem;
        border-radius: 5px;
        border: 1px solid var(--gray-light);
        background: var(--white);
    }
    
    .status-badge {
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    .status-active {
        background: #e6f7ee;
        color: #28a745;
    }
    
    .status-expired {
        background: #feeaea;
        color: #dc3545;
    }

/* --------------------------------------- Job Detail --------------------- */


 .job-detail-container {
        max-width: 1000px;
        margin: 2rem auto;
        padding: 2rem;
        background: var(--white);
        border-radius: 10px;
        box-shadow: var(--shadow);
    }
    
    .job-detail-header {
        display: flex;
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--gray-light);
    }
    
    .job-image-container {
        flex: 0 0 120px;
    }
    
    .job-image {
        width: 100%;
        height: 120px;
        object-fit: contain;
        border-radius: 8px;
        border: 1px solid var(--gray-light);
        background: var(--white);
        padding: 10px;
    }
    
    .job-title-container {
        flex: 1;
    }
    
    .job-title {
        font-size: 1.8rem;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 0.5rem;
    }
    
    .job-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .job-meta-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--gray-dark);
    }
    
    .job-meta-item i {
        color: var(--primary);
    }
    
    .job-status {
        display: inline-block;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        font-weight: 500;
        margin-top: 0.5rem;
    }
    
    .status-active {
        background: #e6f7ee;
        color: #28a745;
    }
    
    .status-expired {
        background: #feeaea;
        color: #dc3545;
    }
    
    .job-detail-section {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--light);
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid var(--gray-light);
    }
    
    .job-description {
        line-height: 1.6;
        color: var(--gray-dark);
    }
    
    .detail-list {
        list-style-type: none;
        padding-left: 0;
    }
    
    .detail-list li {
        padding: 0.5rem 0;
        border-bottom: 1px dashed var(--gray-light);
        display: flex;
    }
    
    .detail-list li:last-child {
        border-bottom: none;
    }
    
    .detail-list li::before {
        content: "•";
        color: var(--primary);
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-right: 0.5rem;
    }
    
    .job-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid var(--gray-light);
    }
    
    .back-button {
        padding: 0.5rem 1rem;
        background: var(--secondary);
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: var(--transition);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .back-button:hover {
        background: #5a6268;
        color: white;
    }
    
    .deadline {
        font-size: 0.9rem;
        color: var(--gray-dark);
    }
    
    .deadline-expired {
        color: var(--danger);
    }
    
    @media (max-width: 768px) {
        .job-detail-header {
            flex-direction: column;
            gap: 1rem;
        }
        
        .job-image-container {
            flex: 0 0 auto;
            text-align: center;
        }
        
        .job-image {
            width: 100px;
            height: 100px;
        }
    }