*{
    box-sizing: border-box;
    margin:0;
    padding:0;
}

html,body {
    margin: 0;
      font-family: 'Montserrat';
    width: 100%;
    overflow-x: hidden;
}


/* top-section */


.color{
  color:#c83063;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    

    height: 57px;
    padding: 0 27px;

    background-color: #1F2F5D;
    
}


.top-bar-left-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar img {
  
    padding-right: 11.25px;
    border-right: 1.13px solid #FFFFFF;
}

.top-bar-text {
    font-size: 16px;
    letter-spacing: 0.11em;
    color: #FFFFFF;
    text-decoration:none;
   
}

.uder-line{
  text-decoration:none;
  color:#ffffff;
  font-weight:500;
}

.top-bar-right-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-link {
    font-size: 16px;
    letter-spacing: 0.11em;
    color: #FFFFFF;
    text-decoration: none;
}

.top-bar-right-dot {
    width: 4.5px;
    height: 4.5px;
    background-color: #FFFFFF;
    border-radius: 50%;
}


.navbar-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position:relative;
    width: 100%;
    
   
    
    z-index: 1000;
    padding: 18px 27px;
    

    background-color: #FFFFFF;
}
.navbar-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.top-bar,
.navbar-section {
    width: 100%;
    max-width: 100%;
}


.navbar-left,
.navbar-right {
    display: flex;
    gap: 20px;
}

.navbar-left-right-links {
   font-size:15.75px;
    letter-spacing: 0.11em;
    color: #1F2F5D;
    text-decoration: none;
}

.navbar-logo img {
    width: 78px;
    height: auto;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: #1F2F5D;
}


.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 24px;
    background-color: #FFFFFF;
    border-top: 1px solid #ddd;

     position: fixed;         
    top: 62px;        
                
    left: 0;                   
    width: 100%;               
    z-index: 999;              
}

.mobile-menu a {
    padding: 12px 0;
    font-size: 14px;
   
    color: #1F2F5D;
    text-decoration: none;
    font-family: 'Montserrat';
}

.mobile-menu hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 16px 0;
}

.mobile-menu.active {
    display: flex;
}


@media (max-width: 768px) {

    .top-bar {
        display: none;
    }

    .navbar-section {
        width: 100%;
        padding: 16px 20px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .top-bar {
        display: none;
    }

    .navbar-section {
        width: 100%;
        padding: 16px 24px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    
    .hamburger {
        display: flex;
    }
}
 

 
/* main section container */


.main-wrapper {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
}

.content-side {
  flex: 1;
  padding: 80px 10%;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visual-side {
  flex: 1;
  min-width: 400px;
  background: linear-gradient(135deg, #4c4c9d 0%, #a445b2 50%, #fa4264 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
}

/* Left Side Typography */
.badge {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #a445b2;
  border: 1px solid #eee;
  padding: 8px 16px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 30px;
}

.main-title {
  font-size: 84px;
  line-height: 0.9;
  font-family: serif;
  margin-bottom: 24px;
}

.main-title span {
  border-bottom: 4px solid #ffcad4;
}

.description {
  font-size: 18px;
  color: #666;
  max-width: 400px;
  line-height: 1.6;
}

/* Stats */
.stats-container {
  display: flex;
  gap: 20px;
  margin: 40px 0;
}

.stat-card {
  padding: 20px;
  border-radius: 15px;
  background: #fcfcfc;
  flex: 1;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.stat-num {
  display: block;
  font-size: 32px;
  font-weight: 800;
}

.pink { color: #ff5e78; display: flex; justify-content:center; align-items: center; }
.green-alt { color: #64b6ac; }
.lime { color: #a4c639; }

.stat-label {
  font-size: 12px;
  color: #999;
}

/* Button & Avatars */
.btn-primary {
  background: #1a234e;
  color: white;
  padding: 18px 40px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  max-width: 320px;
  font-weight: 600;
}

.hiring-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.avatar-group {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
  display: flex;
  justify-content: center;
  align-items:center;
}

.avatar.count {
  background: #a4c639;
  color: white;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glassmorphism Right Side */
.glass-grid {
  position: relative;
  width: 100%;
  height: 600px;
}

.glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 20px;
  color: white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.join-card {
  width: 240px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 40px 20px;
  z-index: 2;
}

.top-left { top: 10%; left: 5%; width: 200px; }
.top-right { top: 25%; right: 5%; width: 200px; }
.bottom-left { bottom: 15%; left: 10%; width: 200px; }
.bottom-right { bottom: 10%; right: 10%; width: 200px; }

.glass-card .icon {
  background: rgba(255,255,255,0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* Responsive Fixes */
@media (max-width: 576px) {
  .main-title { font-size: 60px; }
  .visual-side { min-height: 600px; }
  .glass-grid { transform: scale(0.8); }
}

.main-wrapper {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
}

.content-side {
  flex: 1;
  padding: 80px 10%;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visual-side {
  flex: 1;
  min-width: 400px;
  background: linear-gradient(135deg, #4c4c9d 0%, #a445b2 50%, #fa4264 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
}

/* Left Side Typography */
/* Container Basics */
.main-wrapper {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  background: #fff;
}

.content-side {
  flex: 1;
  padding: 60px 5%;
  min-width: 450px;
}

.visual-side {
  flex: 1.2;
  min-width: 450px;
  background: linear-gradient(180deg, #303f9f 0%, #7b1fa2 40%, #ff4081 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Glass Card Global Style */

.glass-grid {
  position: relative;
  width: 100%;
  height: 80vh;
  max-width: 600px;
}

.glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 15px;
  color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.glass-card strong { display: block; font-size: 15px; }
.glass-card p { font-size: 11px; margin: 0; opacity: 0.8; }
.glass-card .icon {
  width: 32px; height: 32px; background: rgba(255,255,255,0.2);
  border-radius: 8px; display: flex; align-items: center; 
  justify-content: center; margin-bottom: 8px;
}



.card-pay { top: 5%; left: 5%; width: 200px; z-index: 3; }


.card-stats-overlay { top: 15%; right: 10%; width: 180px; z-index: 2; padding: 20px; }
.overlay-flex { display: flex; align-items: center; justify-content: space-around; text-align: center; }
.divider { width: 1px; height: 30px; background: rgba(255,255,255,0.3); }


.card-hybrid { top: 30%; right: 2%; width: 180px; z-index: 1; }


.join-card { 
  top: 50%; left: 50%; transform: translate(-50%, -50%); 
  width: 240px; padding: 40px 20px; text-align: center; z-index: 5;
  background: rgba(255, 255, 255, 0.18);
}
.join-card h2 { margin: 10px 0 5px; font-size: 28px; }


.card-learning { bottom: 15%; left: 10%; width: 190px; z-index: 4; }


.card-health { bottom: 10%; right: 5%; width: 180px; z-index: 3; }


.card-offices { bottom: 8%; right: 35%; width: 130px; z-index: 6; padding: 10px; }


@media (max-width: 992px) {
  .main-wrapper { flex-direction: column; }
  .content-side, .visual-side { width: 100%; min-width: 100%; }
  .visual-side { height: 700px; }
  .glass-grid { transform: scale(0.85); }
}

@media (max-width: 500px) {
  .glass-grid { transform: scale(0.65); }
  .main-title { font-size: 50px; }
}

/* jobs section */

.jobs{
    max-width:1100px;
    margin:auto;
    padding:70px 24px 80px;
}

.jobs-head{
    position:relative;
    margin-bottom:40px;
}

.jobs-tag{
    font-size:12px;
    letter-spacing:2px;
    color:#7aa5a5;
}

.jobs-head h2{
    font-size:56px;
    margin:10px 0 0;
}

.jobs-filters{
    position:absolute;
    right:0;
    top:0;
    display:flex;
    gap:12px;
}

.jobs-filters button{
    padding:10px 18px;
    border-radius:999px;
    border:1px solid #d8dbe6;
    background:#fff;
    font-family:'Playfair Display',serif;
}

.jobs-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.job-card{
    background:#fff;
    border-radius:20px;
    padding:26px;
    border:1px solid #e5e7f0;
}

.featured{
    border:2px solid #1f2a44;
}

.job-badge{
    font-size:11px;
    padding:6px 12px;
    border-radius:999px;
    display:inline-block;
    margin-bottom:14px;
}

.pink{background:#ffe4ea;color:#ff3b6b;}
.teal{background:#e0f5f3;color:#2daaa2;}
.green{background:#eef6e2;color:#8aa63c;}
.purple{background:#ece7ff;color:#6b63c7;}

.job-card h3{
    margin:0 0 8px;
    font-size:22px;
}

.job-card p{
    font-size:14px;
    color:#666;
    line-height:1.6;
}

.meta{
    font-size:13px;
    color:#888;
    margin:12px 0 20px;
}

.apply{
    display:block;
    text-align:center;
    background:#24345a;
    color:#fff;
    padding:12px;
    border-radius:999px;
    text-decoration:none;
}

.jobs-footer{
    text-align:center;
    margin-top:60px;
}

.general{
    display:inline-block;
    margin-top:14px;
    padding:12px 26px;
    border-radius:999px;
    border:1px solid #24345a;
    color:#24345a;
    text-decoration:none;
}

@media(max-width:576px){

    .jobs-head h2{
        font-size:36px;
    }

    .jobs-filters{
        position:static;
        margin-top:14px;
    }

    .jobs-grid{
        grid-template-columns:1fr;
    }
}

/*bottom section */

.mark-cta{
    font-family:'Playfair Display',serif;
    background:linear-gradient(135deg,#2b3f73 0%, #6a63c7 100%);
    color:#ffffff;
    text-align:center;
    padding:110px 20px;
}

.mark-cta h2{
    font-size:56px;
    line-height:1.1;
    margin:0 0 18px;
    font-weight:600;
}

.mark-cta p{
    font-size:18px;
    line-height:1.7;
    max-width:640px;
    margin:0 auto 36px;
    opacity:.9;
}

.mark-actions{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.mark-btn{
    padding:14px 34px;
    border-radius:40px;
    font-size:14px;
    text-decoration:none;
    font-weight:600;
    display:inline-block;
}

.mark-btn.primary{
    background:#ffffff;
    color:#2b3f73;
}

.mark-btn.outline{
    border:1.5px solid #ffffff;
    color:#ffffff;
}

@media(max-width:576px){
    .mark-cta{
        padding:80px 20px;
    }

    .mark-cta h2{
        font-size:36px;
    }

    .mark-cta p{
        font-size:16px;
    }

    .mark-cta p br{
        display:none;
    }

    .mark-actions{
        flex-direction:column;
        align-items:center;
    }

    .mark-btn{
        width:200px;
        text-align:center;
    }
}


/* Footer Section */

.footer {
  width: 100%;

  padding: 15px 32px;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: flex;
  justify-content: center;
  border-bottom: 0.45px solid #e5e7eb;
  padding-bottom: 24px;
  gap: 180px;
}

.footer-column {
  width: 182px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column li {
  font-size: 18px;
  color: #374151;
  font-family: "Montserrat";
}

.footer-middle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 180px;
  padding-top:20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  width: 80px;
}

.footer-tagline {
  font-size: 14px;
  color: #6b7280;
}

.footer-subscribe {
  position: relative;
  width: 260px;
}

.footer-subscribe input {
  width: 100%;
  height: 42px;
  padding: 0 90px 0 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

.footer-subscribe button {
  position: absolute;
  right: 4px;
  top: 4px;
  height: 34px;
  padding: 0 14px;
  border-radius: 6px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

.footer-description {
  width: 377px;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social h4 {
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 18px 0;
  font-size: 13px;
  color: #6b7280;
  gap: 400px;
}

.footer-bottom p {
  font-size: 17px;
}

@media (max-width: 767px) {
  .footer {
    width: 100%;
    padding: 24px 16px;
    gap: 36px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    width: 100%;
    align-items: center;
  }

  .footer-column ul {
    align-items: center;
  }

  .footer-middle {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer-description {
    width: 100%;
    font-size: 18px;
    line-height: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer {
    width: 100%;
    padding: 40px 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    column-gap: 64px;
    row-gap: 32px;
    text-align: left;
  }

  .footer-column {
    width: 100%;
  }

  .footer-middle {
    gap: 24px;
  }

  .footer-description {
    width: 100%;
    max-width: 360px;
    font-size: 22px;
    line-height: 32px;
  }
}
