  @import url('satoshi.css');
  @import url('styles.css');
  /* === Style For Desktop=== */

.navbar {
    width: 100%;
    display: flex;
    height: 103px;
    justify-content: space-between;
    align-items: center;
    padding: 24px 72px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-bottom: 2px solid var(--gray_700);
    background-color: var(--black_solid);
    z-index: 10;
    position: relative;
}


.logo img { height: 23px;
    width: 150px;
    object-fit: contain;
}
.nav-links { display: flex; gap: 40px; }
.nav-links a {
    text-decoration: none;
    font-size: var(--text-15);
    font-family: 'Satoshi-Medium';
    color: var(--white_100);
    line-height: 15px;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--yellow_100); position: static;}
.menu-icon {
    height: 24px;
    display: none;
    font-size: var(--text-24);
    color: var(--white_100);
    cursor: pointer;
}

.menu-overlay{ display: none; }

/* Hover wrapper styling */
.hover-wrapper {
    position: static;
    display: inline-block;
}

.hover-card {
    display: flex;
    width: 1296px;
    height: 317px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 20px);
    background-color: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}
.hover-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
}


/* Show hover-card when hovering Skilldyn or card itself */
.hover-wrapper:hover .hover-card {
    opacity: 1;
    visibility: visible;
}

/* Left Section Styling */
.left-section {
    background-color: #F6F2E6;
    width: 287px;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.left-section .left-title {
    margin: 0;
    margin-top: 30px;
    font-size: var(--text-20);
    font-family: 'Satoshi-Bold';
    color: var(--black_100);
    line-height: 130%;
}

.left-section .highlight { 
    color: var(--yellow_600);  
}

.left-section .left-desc {
    margin: 0;
    font-size: var(--text-12);
    font-family: 'Satoshi-Regular';
    color: var(--black_100);
    line-height: 15px;
}

/* Right Section Styling */
.right-section {
    width: 939px;
    height: 100%;
    padding: 28px 35px;
    background-color: var(--white_700);
    display: flex;
    flex-direction: column;  
}

.menu-heading {
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: var(--text-18);
    font-family: 'Satoshi-Bold';
    color: var(--black_100);
    line-height: 27px;
    border-bottom: 1px solid var(--gray_1200);
}

.menu-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.menu-item { 
    flex: 1 1 calc(50% - 10px); 
}
.menu-item.single { 
    flex: 1 1 100%;  
}

.menu-link {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.menu-link:hover { 
    transform: translateX(5px); 
}

.icons { 
    margin-top: 5px;  
    margin-right: 5px;  
}

.right-title {
    margin: 0;
    font-size: var(--text-16);
    font-family: 'Satoshi-Bold';
    color: var(--black_100);
    line-height: 27px;
}

.right-desc {
    margin: 0;
    margin-top: 5px;
    font-size: var(--text-14);
    font-family: 'Satoshi-Regular';
    color: var(--black_100);
    line-height: 21px;
}

/* Hover wrapper styling for Careers Card */
.careers-card-hover { position: static;  display: inline-block; }
.careers-card {
    display: flex;
    width: 1296px;
    height: 194px;
    background-color: #fff;
    border-radius: 24px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 20px);
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 5;
  }
  .hover-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
}
  .careers-card-hover:hover .careers-card {
    opacity: 1;
    visibility: visible;
  }
  .careers-card-left-section {
    background-color: #F6F2E6;
    width: 287px;
    height: 100%;
    padding: 39px 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    color: var(--black_100);
  }

  .careers-card-left-heading {
  margin: 0;
  font-size: var(--text-20);
  font-family: 'Satoshi-Bold';
  color: var(--yellow_600);
  line-height: 130%;
}

.careers-card-left-heading .highlight { color: var(--black_1000); }

.careers-card-left-desc {
  margin: 0;
  font-size: var(--text-12);
  font-family: 'Satoshi-Regular';
  color: var(--black_100);
  line-height: 15px;
}
  .careers-card-right-section {
    width: 939px;
    height: 100%;
    padding: 40px 35px;
    background-color: var(--white_700);
    display: flex;
    flex-direction: column;
  }

  .careers-card-right-heading {
    font-size: var(--text-18);
    font-family: 'Satoshi-Bold';
    color: var(--black_100);
    line-height: 27px;
    border-bottom: 1px solid var(--gray_1200);
  }

  .careers-card-menu-grid {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }

  .careers-card-menu-item {
    display: flex;
    align-items: flex-start;
    flex: 1;
    text-decoration: none;
    color: inherit;
    flex-direction: column;
    transition: transform 0.3s ease;
  }
  .careers-card-menu-text{
    display: flex;
    flex-direction: row;
    margin-top: 20px;
  }
  .careers-card-menu-item:hover {  transform: translateY(-5px);}
  .careers-card-right-title {
    margin: 0;
    margin-left: 5px;
    font-size: var(--text-16);
    font-family: 'Satoshi-Bold';
    color: var(--black_100);
    line-height: 27px;
}
  .careers-card-right-desc {
    margin: 0;
    font-size: var(--text-14);
    font-family: 'Satoshi-Regular';
    color: var(--black_100);
    line-height: 21px;
}


@media (min-width:744px) and (max-width: 1024px) {
    .navbar   { height: 72px; padding: 18px 20px;  }
    .logo img { height: 18px; width: 79px;  }

    .nav-links {  display: none; }
    .menu-icon {  display: block; cursor: pointer;  }
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 844px;
        background-color: var(--black_solid);
        padding: 70px 40px 70px 40px;
        box-sizing: border-box;
        z-index: 999;
        flex-direction: column;
        gap: 20px;
      }

      .menu-overlay.show { display: flex; }

      .menu-overlay a,
      .menu-overlay-item {
        color: var(--white_100);
        text-decoration: none;
        font-size: var(--text-24);
        font-family: 'Satoshi-Medium';
        line-height: 36px;
        padding-top: -10px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--gray_700);
        cursor: pointer;
      }

      .menu-overlay a:hover { color: var(--yellow_100); }
      .menu-overlay-item span { float: right; }
      .submenu {
        display: none;
        flex-direction: column;
        padding-left: 10px;
        background-color: var(--black_solid);
      }

      .submenu a {
        padding: 8px 0 8px 10px;
        font-size: 24px;
        font-family: 'Satoshi-Regular';
        color: var(--white_100);
        border: none;
        line-height: 36px;
      }
      .submenu a:hover { color: var(--yellow_100); }
      .submenu.show { display: flex; }
      .close-icon {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 30px;
        color: var(--close_icon);
        cursor: pointer;
      }
}

/* Mobile View (390px) */
@media (min-width: 320px) and (max-width: 744px) {
    .navbar   { height: 72px; padding: 18px 20px;  }
    .logo img { height: 12px; width: 79px;  }

    .nav-links {  display: none; }
    .menu-icon {  display: block; cursor: pointer;  }
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 844px;
        background-color: var(--black_solid);
        padding: 70px 40px 70px 40px;
        box-sizing: border-box;
        z-index: 999;
        flex-direction: column;
        gap: 20px;
      }

      .menu-overlay.show { display: flex; }

      .menu-overlay a,
      .menu-overlay-item {
        color: var(--white_100);
        text-decoration: none;
        font-size: var(--text-24);
        font-family: 'Satoshi-Medium';
        line-height: 36px;
        padding-top: -10px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--gray_700);
        cursor: pointer;
      }
      .menu-overlay a:hover { color: var(--yellow_100); }
      .menu-overlay-item span { float: right; }
      .submenu {
        display: none;
        flex-direction: column;
        padding-left: 10px;
        background-color: var(--black_solid);
      }

      .submenu a {
        padding: 8px 0 8px 10px;
        font-size: 24px;
        font-family: 'Satoshi-Regular';
        color: var(--white_100);
        border: none;
        line-height: 36px;
      }

      .submenu a:hover { color: var(--yellow_100); }
      .submenu.show { display: flex; }
      .close-icon {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 30px;
        color: var(--close_icon);
        cursor: pointer;
      }
}