:root {
    --bg-main: #020b19;
    --bg-navbar: rgba(4, 17, 37, 0.95);
    --primary-cyan: #00f0ff;
    --text-white: #ffffff;
    --text-muted: #a0aec0;
    --anim-speed: cubic-bezier(0.4, 0, 0.2, 1);
    /* নতুন লাইট ব্লু ভেরিয়েবল যোগ করা হলো */
    --primary-light-blue: #1ab6ff;
     --neon-blue: #45f3ff;
            --neon-blue-glow: rgba(0, 240, 255, 0.2);
             --bg-dark: #0a0f1d;
  
   
    --primary-blue: #0070f3;
  
    --text-gray: #a0aec0;

     
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-white);
    padding-top: 80px;
    /* To prevent overlap with fixed navbar */
}

/* Header & Navbar Wrapper */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-navbar);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.15);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 7px 20px 2px 20px;
}

.neon-logo {
    height: 75px;
    width: 78px;
}

/* CSS Styling & Animation */
.logo-container {
    background-color: #0b0f19;
    /* padding: 40px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.neon-logo {
    filter: drop-shadow(0 0 10px rgba(0, 204, 255, 0.6)) drop-shadow(0 0 20px rgba(0, 195, 255, 0.4));
    animation: neonFlicker 3s infinite alternate, floatAnimation 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes neonFlicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        opacity: 1;
    }

    20%,
    24%,
    55% {
        opacity: 0.7;
    }
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.logo-main {
    color: var(--text-white);
}

.logo-sub {
    color: var(--primary-cyan);
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
}

/* Language and Select Settings */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher select {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-white);
    border: 1px solid #1ab6ff81;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.lang-switcher select:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    background-color: rgba(4, 17, 37, 0.95);
}

/* Mobile First Layout: Mobile Links Configuration */
.nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 55%;
    height: 100vh;
    background: rgb(2, 11, 25);
    padding: 110px 40px;
    gap: 30px;
    list-style: none;
    transition: right 0.4s var(--anim-speed);
    border-left: 1px solid rgba(0, 240, 255, 0.1);
}

.nav-links.active {
    right: 0;
}

.nav-item {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 20px;
    font-weight: 500;
    display: block;
    transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary-light-blue);
    text-shadow: 0 0 8px rgba(26, 144, 255, 0.6);
}

/* Hamburger Trigger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 19px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: all 0.4s var(--anim-speed);
}

/* Aesthetic Hamburger Transformations */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary-cyan);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
    background-color: var(--primary-cyan);
}

/* 💻 Medium and Large Screens (Tablet & PC) Setup */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-links {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        padding: 0;
        background: transparent;
        border-left: none;
        gap: 35px;
    }

    .nav-item {
        font-size: 16px;
        position: relative;
        padding: 6px 0;
    }

    .nav-item:hover {
        padding-left: 0;
    }

    .nav-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-light-blue);
        box-shadow: 0 0 8px var(--primary-light-blue);
        transition: width 0.3s var(--anim-speed);
    }

    .nav-item:hover::after,
    .nav-item.active::after {
        width: 100%;
        color: var(--primary-light-blue);
        text-shadow: 0 0 8px rgba(26, 144, 255, 0.6);
    }
    
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0b0f19; /* Deep Black/Dark Blue background */
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
}

/* Hero Section with Text Animation */
/* Hero Section with Particle/Constellation Theme Feel */
.hero-section {
    padding: 100px 0 80px 0;
    text-align: center; /* Image er moto left-aligned layout deep black theme */
    background-color: #050811;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(0, 198, 255, 0.08) 0%, transparent 50%),
        linear-gradient(to bottom, #050811, #0b0f19);
    border-bottom: 1px solid rgba(0, 114, 255, 0.2);
    position: relative;
}

.hero-content {
    max-width: 900px;
    
}

/* Big text matched with your image spacing */
.animated-text {
    font-size: 4rem; /* Boro size visual layout */
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

/* Cyan Blue accent color matching your 'Warr' text color */
.cyan-glow {
    color: #00f0ff;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    background: linear-gradient(to right, #00f0ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Blinking Cursor line effect just like your website */
.typing-cursor {
    color: #00f0ff;
    margin-left: 5px;
    animation: blink 0.8s infinite alternate;
}

@keyframes blink {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Small subtext layout format */
.subtitle {
    color: #94a3b8;
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.8;
}

/* Responsive adjustment for phones */
@media (max-width: 768px) {
    .animated-text { font-size: 2.6rem; }
    .hero-section { padding: 60px 0; text-align: center;}
}

/* Job Listings Grid */


.job-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #e8eeef;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

/* Job Cards */
.job-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.2);
}

.job-type {
    background: rgba(0, 198, 255, 0.1);
    color: #00c6ff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.job-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.job-loc, .job-salary {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.view-btn {
    width: 100%;
    background: transparent;
    color: #00c6ff;
    border: 1px solid #00c6ff;
    padding: 10px;
    border-radius: 6px;
    margin-top: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.job-card:hover .view-btn {
    background: var(--primary-cyan);
    color: #fff;
    border-color: #0072ff;
}

/* Modal Popup Window */
.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
  

}

.modal-content {
    background: #111827;
    border: 2px solid #0072ff;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlide 0.4s ease;
}

@keyframes modalSlide {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #94a3b8;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #ff4a4a;
}

/* Form Styles */
.modal-divider {
    border: 0;
    height: 1px;
    background: #1f2937;
    margin: 25px 0;
}

.apply-form h3 {
    margin-bottom: 20px;
    color: #00c6ff;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="tel"] {
    width: 100%;
    background: #1f2937;
    border: 1px solid #374151;
    padding: 12px;
    border-radius: 6px;
    color: #fff;
    outline: none;
}

.apply-form input:focus {
    border-color: #0072ff;
}

.file-upload {
    width: 100%;
}

.file-upload label {
    display: block;
    background: #1f2937;
    border: 1px dashed #00c6ff;
    padding: 11px;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    color: #00c6ff;
    font-size: 0.9rem;
}

.file-upload input[type="file"] {
    display: none;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

.submit-btn:hover {
    opacity: 0.9;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .animated-text { font-size: 2.5rem; }
    .form-group { flex-direction: column; gap: 15px; }
    .modal-content { padding: 25px; }
}
















/* ---- Footer Styling ---- */
.main-footer {
    background-color: #050507; /* Extemely Dark Black */
    color: var(--text-white);
    padding: 70px 20px 25px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand h3, .footer-links h4, .footer-contact h4 {
    margin-bottom: 20px;
    color: var(--text-white);
    font-size: 20px;
    letter-spacing: 0.5px;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

/* ফুটার লিংকে হোভার করলে নিয়ন কালার হবে */
.footer-links ul li a:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 8px var(--neon-blue-glow);
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    color: #525866;
    font-size: 14px;
}

/* ---- Responsive Design (Mobile Fix) ---- */
@media (max-width: 768px) {
    .location-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .map-responsive {
        height: 280px;
    }
}
/* ---- Neon Social Icons Styling (Footer-এর জন্য নতুন) ---- */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--primary-cyan);
    border-radius: 50%;
    color: var(--primary-cyan);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* সোশ্যাল আইকনে মাউস নিলে নিয়ন ব্লু গ্লো করবে */
.footer-socials a:hover {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    background-color: transparent;
    box-shadow: 0 0 15px var(--neon-blue-glow);
    transform: translateY(-3px);
}

/* কন্টাক্ট ইনফোর আইকনগুলোর জন্য গ্লো এফেক্ট */
.footer-contact p i {
    color: var(--neon-blue);
    margin-right: 10px;
    width: 20px;
    text-shadow: 0 0 5px var(--neon-blue-glow);
}









