/* =========================================================
   ABOUT PAGE — PAGE HEADER BANNER (base styles)
   Everything else on this page reuses style.css + responsive.css
========================================================= */
.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:200px;      /* apne hisaab se */
    height:50px;
    display:block;
}
.page-header {
    position: relative;
    overflow: hidden;
    padding: 20px 5% 58px;
    color: #fff;
    text-align: center;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(700px 380px at 88% -20%, rgba(255, 122, 41, .32), transparent 60%),
        linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-800) 100%);
}

.page-header-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: auto;
}

.page-header .eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--amber-500);
    margin-bottom: 14px;
}

.page-header h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 16px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--slate-300);
}

.breadcrumb a {
    color: var(--slate-300);
    font-weight: 600;
    transition: .2s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb i {
    font-size: 10px;
    color: var(--amber-500);
}

.breadcrumb span {
    color: #fff;
    font-weight: 700;
}
.industry-section{
    width:100%;
    padding:20px 5%;
}
.about-visual{
    /* background:url("images/workshop.png") no-repeat center center / cover;
     */
     color:#fff
}


.navbar-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.navbar {
    max-width: 1280px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 5%;
}

.logo{
    display:flex;
    align-items:center;
}

/* .logo img{
    width:220px;      /* apne hisaab se */
    /* height:auto;
    display:block; */
 */

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-links>li>a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink-900);
    transition: .2s;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
    background: rgba(54, 84, 255, .08);
    color: var(--indigo-600);
}

.nav-links>li>a i {
    font-size: 10px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    width: 230px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .25s ease;
    border-top: 3px solid var(--indigo-600);
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-900);
}

.dropdown-menu li a:hover {
    background: var(--cream-50);
    color: var(--indigo-600);
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--navy-900);
    color: #fff;
    padding: 11px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    transition: .25s;
    white-space: nowrap;
}

.call-btn:hover {
    background: var(--indigo-600);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--navy-900);
    cursor: pointer;
}



/* =========================================================
   CONTACT
========================================================= */
.contact-section {
    padding: 20px 5%;
    background: var(--cream-50);
}

.contact-container {
    max-width: 1280px;
    margin: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 44px;
    display: grid;
    grid-template-columns: 270px 1fr 320px;
    gap: 44px;
}

.contact-title,
.contact-form-title,
.contact-location-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 22px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    flex-shrink: 0;
    background: rgba(54, 84, 255, .1);
    color: var(--indigo-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: .25s;
}

.contact-item:hover .contact-icon {
    background: var(--indigo-600);
    color: #fff;
}

.contact-text span {
    font-size: 14.5px;
    color: var(--slate-500);
    line-height: 1.5;
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.contact-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--cream-50);
    border: 1px solid var(--line);
    color: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: .25s;
}

.contact-social a:hover {
    background: var(--indigo-600);
    border-color: var(--indigo-600);
    color: #fff;
    transform: translateY(-3px);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-input,
.contact-select {
    width: 100%;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0 16px;
    font-size: 14.5px;
    font-family: inherit;
    background: var(--cream-50);
    outline: none;
    transition: .25s;
}

.contact-textarea {
    width: 100%;
    min-height: 120px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 14.5px;
    font-family: inherit;
    background: var(--cream-50);
    outline: none;
    resize: vertical;
    margin-bottom: 18px;
    transition: .25s;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
    border-color: var(--indigo-600);
    background: #fff;
}

.contact-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 100px;
    background: var(--indigo-600);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s;
}

.contact-btn:hover {
    background: var(--amber-500);
    transform: translateY(-2px);
}

.contact-map {
    position: relative;
    width: 100%;
    height: 190px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-location-card {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    width: 88%;
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 16px;
    box-shadow: var(--shadow-pop);
}

.contact-location-card h3 {
    font-size: 14px;
    color: var(--navy-900);
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-location-card p {
    font-size: 12.5px;
    color: var(--slate-500);
    line-height: 1.5;
}


/* =========================================================
   FOOTER
========================================================= */
.footer {
    background: var(--navy-950);
    color: #cfd6ee;
    padding-top: 50px;
}

.footer .logo-text {
    color: #fff;
}

.footer .logo-text em {
    color: var(--slate-300);
}

.footer-container {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.4fr;
    gap: 40px;
    padding: 0 5% 50px;
}

.footer-about p {
    font-size: 14.5px;
    color: var(--slate-300);
    margin: 18px 0 20px;
    max-width: 340px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .25s;
}

.footer-socials a:hover {
    background: var(--amber-500);
}

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--amber-500);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    font-size: 14.5px;
    color: #cfd6ee;
    transition: .2s;
}

.footer-col ul a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-info i {
    color: var(--amber-500);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    max-width: 1280px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 22px 5%;
    font-size: 13px;
    color: var(--slate-300);
}

.footer-policy {
    display: flex;
    gap: 12px;
}

.footer-credit i {
    color: var(--amber-500);
}

.scroll-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--amber-500);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 200;
}

.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    background: var(--indigo-600);
}

/* =========================================================
   GALLERY
========================================================= */
.gallery-section {
    width: 100%;
    padding: 80px 5%;
    background: #fff;
    max-width: 1280px;
    margin: auto;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 44px;
}

.gallery-card {
    position: relative;
    height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: .3s;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-pop);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(8, 24, 51, .92), transparent);
    padding: 30px 18px 14px;
}

.gallery-card-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.gallery-info-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gallery-info-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--cream-50);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    transition: .3s;
}

.gallery-info-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    background: #fff;
}

.gallery-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(54, 84, 255, .1);
    color: var(--indigo-600);
}

.gallery-info-title {
    font-size: 16px;
    color: var(--navy-900);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
}

.gallery-info-text {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.55;
    margin-bottom: 14px;
}

.gallery-info-btn {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 13.5px;
    color: var(--indigo-600);
    border-bottom: 2px solid transparent;
    transition: .25s;
}

.gallery-info-btn:hover {
    border-color: var(--indigo-600);
    color: var(--amber-500);
}

/* =========================================================
   CONTACT
========================================================= */
.contact-section {
    width: 100%;
    padding: 80px 5%;
    background: var(--cream-50);
}

.contact-container {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
}

.contact-info,
.contact-form,
.contact-location {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(54, 84, 255, .1);
    color: var(--indigo-600);
    font-size: 16px;
}

.contact-text span {
    font-size: 14.5px;
    color: var(--ink-900);
    line-height: 1.5;
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 26px;
}

.contact-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--cream-50);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    transition: .25s;
}

.contact-social a:hover {
    background: var(--indigo-600);
    color: #fff;
    border-color: var(--indigo-600);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-input,
.contact-select,
.contact-textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 14.5px;
    font-family: var(--font-body);
    outline: none;
    transition: .25s;
    background: var(--cream-50);
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
    border-color: var(--indigo-600);
    background: #fff;
}

.contact-textarea {
    min-height: 110px;
    resize: vertical;
    margin-bottom: 18px;
}

.contact-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 100px;
    background: var(--amber-500);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: .25s;
}

.contact-btn:hover {
    background: var(--amber-600);
    transform: translateY(-2px);
}

.contact-map {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.contact-location-card {
    margin-top: 16px;
    background: var(--cream-50);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 16px;
}

.contact-location-card h3 {
    font-size: 14.5px;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.contact-location-card p {
    font-size: 13.5px;
    color: var(--slate-500);
    line-height: 1.6;
}
.logo{
    display: flex;
    align-items: center;
}

/* .logo img{
    width: 280px;   /* Logo ka size */
    /* height: auto;
    display: block;
  */

/* =========================================================
   INFO CARDS SECTION — Address / Call Us / Email Us
   (dark navy band, sits directly under .contact-section)
========================================================= */
.info-cards-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 64px 5% 76px;
    background:
        radial-gradient(900px 420px at 90% -10%, rgba(255, 122, 41, .16), transparent 60%),
        radial-gradient(700px 380px at 6% 110%, rgba(54, 84, 255, .14), transparent 60%),
        linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-950) 100%);
}

.info-cards-grid {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.info-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    backdrop-filter: blur(6px);
    transition: .3s;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 122, 41, .35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.info-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    background: rgba(54, 84, 255, .18);
    border: 1px solid rgba(120, 150, 255, .4);
    margin-bottom: 18px;
}

.info-card-title {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

/* address card plain text block */
.info-card-plain {
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin-bottom: 18px;
}

.info-card-plain span {
    font-size: 14px;
    line-height: 1.55;
    color: var(--slate-300);
}

/* map */
.info-map-wrap {
    position: relative;
    height: 170px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.info-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(.9);
}

.info-map-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .95);
    color: var(--navy-900);
    font-weight: 700;
    font-size: 12.5px;
    padding: 6px 12px;
    border-radius: 100px;
    box-shadow: var(--shadow-soft);
}

.info-map-badge i {
    font-size: 10px;
    color: var(--amber-500);
}

.info-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    border-radius: 100px;
    background: var(--indigo-600);
    color: #fff;
    font-weight: 700;
    font-size: 14.5px;
    transition: .25s;
}

.info-card-btn:hover {
    background: var(--amber-500);
    transform: translateY(-2px);
}

/* call / email rows */
.info-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-row:first-of-type {
    padding-top: 0;
}

.info-row-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--slate-300);
    opacity: .65;
}

.info-row a {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    transition: .2s;
    word-break: break-word;
}

.info-row a:hover {
    color: var(--amber-500);
}

/* =========================================================
   RESPONSIVE — INFO CARDS
========================================================= */
@media (max-width: 767px) {
    .info-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .info-card:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .info-cards-section {
        padding: 48px 6% 56px;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .info-card:first-child {
        grid-column: auto;
    }
}

/* =========================================================
   MEET THE EXPERTS — TEAM SECTION
   (replaces old CTA banner on about.html)
========================================================= */
.team-section {
    width: 100%;
    padding: 84px 5% 100px;
    background: linear-gradient(180deg, #eef1fb 0%, #e7ecfb 100%);
}

.team-heading {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}

.team-heading .tag {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--indigo-600);
    background: rgba(54, 84, 255, .1);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.team-heading h2 {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 14px;
}

.team-heading h2 span {
    color: var(--indigo-600);
}

.team-heading p {
    font-size: 16px;
    color: var(--slate-500);
}

.team-grid {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    align-items: start;
}

.team-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(23, 40, 90, .07);
    transition: .35s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-pop);
}

.team-card-top {
    position: relative;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #dfe5fa 0%, #eef1fb 100%);
}

.team-avatar {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-display, inherit);
    box-shadow: 0 14px 30px rgba(23, 40, 90, .22);
}

.avatar-blue    { background: linear-gradient(135deg, #2f6bff, #1531c9); }
.avatar-purple  { background: linear-gradient(135deg, #7b5cff, #5a2fe0); }
.avatar-teal    { background: linear-gradient(135deg, #16c2ac, #0c7d72); }
.avatar-maroon  { background: linear-gradient(135deg, #8a2e46, #2c2350); }

.team-social {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--indigo-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 8px 18px rgba(23, 40, 90, .18);
    transition: .2s;
}

.team-social a:hover {
    background: var(--indigo-600);
    color: #fff;
}

.team-card-bottom {
    padding: 40px 22px 26px;
    text-align: center;
}

.team-card-bottom h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 6px;
}

.team-role {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--indigo-600);
    margin-bottom: 12px;
}

.team-card-bottom p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--slate-500);
}

/* featured card sits slightly raised, like the reference layout */
.team-card.featured {
    transform: translateY(-26px);
    box-shadow: 0 20px 44px rgba(23, 40, 90, .16);
}

.team-card.featured:hover {
    transform: translateY(-34px);
}

.team-card.featured .team-card-bottom {
    padding-top: 46px;
}

/* =========================================================
   RESPONSIVE — TEAM SECTION
========================================================= */
@media (max-width: 767px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }

    .team-card.featured {
        transform: none;
    }

    .team-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 767px) {
    .team-section {
        padding: 60px 6% 70px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* =========================================================
   APPLY MODAL — popup form (screenshot style)
========================================================= */
.apply-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(8, 24, 51, .55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.apply-modal-overlay.active {
    display: flex;
}

.apply-modal {
    position: relative;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    background: #E3F2FD;
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 30px 70px rgba(0,0,0,.35);
    animation: applyModalPop .25s ease;
}

@keyframes applyModalPop {
    from { transform: scale(.92); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.apply-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 10px;
    background: var(--indigo-600);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}

.apply-modal-close:hover {
    background: var(--navy-900);
}

.apply-modal-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.apply-modal-logo img {
    width: 220px;
    height: auto;
}

.apply-modal-subtitle {
    text-align: center;
    font-size: 19px;
    color: var(--navy-900);
    font-weight: 500;
    margin-bottom: 26px;
}

.apply-modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.apply-modal-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.apply-modal-field {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 100px;
    padding: 14px 22px;
}

.apply-modal-field i {
    color: var(--indigo-600);
    font-size: 16px;
    flex-shrink: 0;
}

.apply-modal-field input,
.apply-modal-field select {
    border: none;
    outline: none;
    width: 100%;
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink-900);
}

.apply-modal-message {
    border-radius: 20px;
    align-items: flex-start;
    padding: 16px 22px;
}

.apply-modal-message i {
    margin-top: 3px;
}

.apply-modal-message textarea {
    border: none;
    outline: none;
    width: 100%;
    resize: vertical;
    min-height: 24px;
    max-height: 140px;
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink-900);
}

.apply-modal-agree {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--ink-900);
    cursor: pointer;
}

.apply-modal-agree input {
    display: none;
}

.apply-modal-checkbox {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    flex-shrink: 0;
    position: relative;
}

.apply-modal-agree input:checked + .apply-modal-checkbox::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: var(--indigo-600);
}

.apply-modal-agree a {
    color: var(--indigo-600);
    font-weight: 600;
}

.apply-modal-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    background: var(--indigo-600);
    color: #fff;
    padding: 16px;
    border-radius: 100px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s;
}

.apply-modal-submit:hover {
    background: var(--navy-900);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 600px) {
    .apply-modal {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .apply-modal-row {
        grid-template-columns: 1fr;
    }

    .apply-modal-logo img {
        width: 170px;
    }

    .apply-modal-subtitle {
        font-size: 16px;
    }

    .apply-modal-field,
    .apply-modal-message {
        padding: 12px 18px;
    }
}