/* =========================================================
   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);
}

/* On mobile: move scroll-top to the LEFT so it doesn't overlap the
   floating contact buttons anchored to the RIGHT */
@media (max-width: 868px) {
    .scroll-top {
        right: auto;
        left: 16px;
        bottom: 16px;
    }
}

/* =========================================================
   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;
    }
}

/* =========================================================================
   CLIENT TESTIMONIALS & SUCCESS STORIES
   Scoped design system — does not touch the light-theme site tokens.
   Drop this file in after about.css.
========================================================================= */

.testimonials-section {
    --tt-bg: #EEF1FB;
    --tt-bg-soft: #E7ECFB;
    --tt-card: #FFFFFF;
    --tt-card-hover: #F5F7FF;
    --tt-border: var(--line);
    --tt-border-strong: rgba(23, 40, 90, .16);
    --tt-royal: var(--indigo-600);
    --tt-royal-soft: rgba(54, 84, 255, .22);
    --tt-gold: var(--amber-500);
    --tt-gold-soft: rgba(255, 122, 41, .30);
    --tt-green: #1D9E63;
    --tt-text: var(--navy-900);
    --tt-text-dim: var(--slate-500);
    --tt-text-mute: #7C88A6;
    --tt-radius-lg: 24px;
    --tt-radius-md: 20px;
    --tt-radius-sm: 14px;

    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 100px 5% 110px;
    background:
        radial-gradient(1000px 480px at 92% -8%, rgba(54, 84, 255, .10), transparent 60%),
        radial-gradient(760px 420px at 4% 108%, rgba(255, 122, 41, .12), transparent 60%),
        linear-gradient(180deg, #EEF1FB 0%, #E7ECFB 55%, #EEF1FB 100%);
    color: var(--tt-text);
    font-family: 'Manrope', sans-serif;
}

.testimonials-section * {
    box-sizing: border-box;
}

/* ambient floating glow orbs */
.tt-orb {
    opacity: .35;
}

.tt-orb-1 {
    background: rgba(54, 84, 255, .18);
}

.tt-orb-2 {
    background: rgba(255, 122, 41, .16);
}

.tt-orb-1 {
    width: 320px;
    height: 320px;
    top: -80px;
    right: 6%;
    background: rgba(59, 91, 255, .25);
}

.tt-orb-2 {
    width: 260px;
    height: 260px;
    bottom: -60px;
    left: 4%;
    background: rgba(240, 180, 87, .18);
    animation-delay: -6s;
}

@keyframes ttFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-24px) translateX(14px);
    }
}

.tt-container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
}

/* reveal-on-scroll utility */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.16, .8, .28, 1), transform .8s cubic-bezier(.16, .8, .28, 1);
}

[data-reveal].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------------------------
   HEADER
--------------------------------------------------------------------- */
.tt-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.tt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--indigo-600);
    margin-bottom: 20px;
}

.tt-eyebrow .tt-stars {
    color: var(--tt-gold);
    letter-spacing: 2px;
    font-size: 12px;
}

.tt-eyebrow .tt-rule {
    display: inline-block;
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tt-gold-soft));
}

.tt-eyebrow .tt-rule.right {
    background: linear-gradient(90deg, var(--tt-gold-soft), transparent);
}

.tt-heading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(30px, 4.4vw, 48px);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 20px;
}

.tt-heading .tt-num {
    background: linear-gradient(120deg, var(--tt-gold) 0%, #FFE1A8 50%, var(--tt-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tt-subheading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 600;
    color: var(--tt-text);
    opacity: .9;
    margin-bottom: 16px;
}

.tt-description {
    font-size: 15px;
    line-height: 1.75;
    color: var(--tt-text-dim);
    max-width: 620px;
    margin: 0 auto;
}

/* ---------------------------------------------------------------------
   STATS ROW
--------------------------------------------------------------------- */
.tt-stats-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 22px;
    margin-bottom: 70px;
}

.tt-google-card {
    position: relative;
    background: var(--tt-card);
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-radius-lg);
    padding: 26px 24px;
    backdrop-filter: blur(14px);
    transition: .35s ease;
}

.tt-google-card:hover {
    border-color: var(--tt-border-strong);
    transform: translateY(-4px);
}

.tt-google-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--tt-text);
    margin-bottom: 18px;
}

.tt-google-brand svg {
    width: 20px;
    height: 20px;
}

.tt-google-rating {
    font-family: 'Sora', sans-serif;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 6px;
}

.tt-stars-row {
    color: var(--tt-gold);
    font-size: 15px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.tt-google-count {
    font-size: 13.5px;
    color: var(--tt-text-mute);
    margin-bottom: 18px;
}

.tt-verified-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--tt-green);
    background: rgba(51, 217, 131, .1);
    border: 1px solid rgba(51, 217, 131, .25);
    padding: 7px 14px;
    border-radius: 100px;
}

.tt-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.tt-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--tt-card);
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-radius-md);
    padding: 22px 22px;
    backdrop-filter: blur(14px);
    transition: .35s ease;
}

.tt-stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--tt-border-strong);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.tt-stat-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.tt-stat-icon.blue {
    background: linear-gradient(135deg, #3B5BFF, #1531c9);
}

.tt-stat-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #5a2fe0);
}

.tt-stat-icon.green {
    background: linear-gradient(135deg, #22c98e, #0c7d72);
}

.tt-stat-icon.gold {
    background: linear-gradient(135deg, #F0B457, #c98a2c);
}

.tt-stat-value {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.tt-stat-label {
    font-size: 13px;
    color: var(--tt-text-dim);
    margin-top: 2px;
}

/* ---------------------------------------------------------------------
   SLIDER — shared
--------------------------------------------------------------------- */
.tt-slider-block {
    margin-bottom: 60px;
}

.tt-slider-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.tt-slider-title {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.tt-slider-title span {
    color: var(--tt-text-dim);
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-top: 4px;
}

.tt-slider-arrows {
    display: flex;
    gap: 10px;
}

.tt-arrow-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .25s;
}

.tt-arrow-btn:hover {
    background: var(--indigo-600);
    border-color: var(--indigo-600);
    color: #fff;
}

.tt-track-viewport {
    overflow: hidden;
    cursor: grab;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.tt-track-viewport.dragging {
    cursor: grabbing;
}

.tt-track {
    display: flex;
    gap: 22px;
    width: max-content;
    will-change: transform;
}

/* ---------------------------------------------------------------------
   TESTIMONIAL CARD
--------------------------------------------------------------------- */
.tt-card {
    position: relative;
    flex: 0 0 320px;
    width: 320px;
    padding: 28px 26px;
    border-radius: var(--tt-radius-lg);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 26px rgba(23, 40, 90, .06);
    backdrop-filter: none;
    backdrop-filter: blur(16px);
    transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
    user-select: none;
}

.tt-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--tt-royal-soft), transparent 40%, var(--tt-gold-soft));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.tt-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .35), 0 0 0 1px rgba(255, 255, 255, .02);
}

.tt-card:hover::before {
    opacity: 1;
}

.tt-card-quote-mark {
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: 34px;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, .08);
    line-height: 1;
}

.tt-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.tt-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, .12);
    flex-shrink: 0;
}

.tt-avatar.tt-init {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    letter-spacing: .02em;
}

.tt-init-1 {
    background: linear-gradient(135deg, #3B5BFF, #1531c9);
}

.tt-init-2 {
    background: linear-gradient(135deg, #8b5cf6, #5a2fe0);
}

.tt-init-3 {
    background: linear-gradient(135deg, #F0B457, #c98a2c);
}

.tt-init-4 {
    background: linear-gradient(135deg, #22c98e, #0c7d72);
}

.tt-init-5 {
    background: linear-gradient(135deg, #ec6f8e, #a5325a);
}

.tt-init-6 {
    background: linear-gradient(135deg, #4bb8e6, #1a6fa8);
}

.tt-card-name {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.tt-card-role {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--tt-gold);
    margin-top: 1px;
}

.tt-card-loc {
    font-size: 12px;
    color: var(--tt-text-mute);
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tt-card-stars {
    color: var(--tt-gold);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.tt-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--tt-text-dim);
    margin-bottom: 18px;
    min-height: 122px;
}

.tt-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 100px;
}

.tt-badge.candidate {
    color: var(--tt-green);
    background: rgba(51, 217, 131, .1);
    border: 1px solid rgba(51, 217, 131, .25);
}

.tt-badge.employer {
    color: #6C9BFF;
    background: rgba(59, 91, 255, .12);
    border: 1px solid rgba(59, 91, 255, .3);
}

/* employer cards slightly more compact */
.tt-card.tt-card-employer {
    flex-basis: 300px;
    width: 300px;
}

/* ---------------------------------------------------------------------
   TRUSTED COMPANIES
--------------------------------------------------------------------- */
.tt-companies {
    margin-bottom: 70px;
}

.tt-companies-heading {
    text-align: center;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--tt-text-mute);
    margin-bottom: 30px;
}

.tt-logo-viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.tt-logo-track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: ttLogoScroll 28s linear infinite;
}

.tt-logo-viewport:hover .tt-logo-track {
    animation-play-state: paused;
}

@keyframes ttLogoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.tt-logo-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--tt-text-mute);
    white-space: nowrap;
    opacity: .75;
    filter: grayscale(1);
    transition: .3s;
}

.tt-logo-item:hover {
    opacity: 1;
    color: var(--tt-text);
}

.tt-logo-item i {
    font-size: 15px;
    color: var(--tt-gold);
    opacity: .8;
}

/* ---------------------------------------------------------------------
   WHY CHOOSE US
--------------------------------------------------------------------- */
.tt-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 70px;
}

.tt-why-card {
    background: var(--tt-card);
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-radius-md);
    padding: 28px 24px;
    transition: .35s ease;
}

.tt-why-card:hover {
    transform: translateY(-6px);
    border-color: var(--tt-gold-soft);
    background: var(--tt-card-hover);
}

.tt-why-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: var(--tt-gold);
    background: rgba(240, 180, 87, .1);
    border: 1px solid rgba(240, 180, 87, .25);
    margin-bottom: 18px;
}

.tt-why-title {
    font-family: 'Sora', sans-serif;
    font-size: 16.5px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tt-why-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--tt-text-dim);
}

/* ---------------------------------------------------------------------
   CTA BANNER
--------------------------------------------------------------------- */
.tt-cta {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: var(--tt-radius-lg);
    padding: 52px 56px;
    background:
        radial-gradient(600px 260px at 90% 10%, rgba(255, 122, 41, .18), transparent 65%),
        linear-gradient(120deg, var(--navy-950) 0%, var(--navy-900) 60%, var(--navy-800) 100%);
    border: none;
}

.tt-cta-heading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.tt-cta-text {
    font-size: 14.5px;
    color: var(--slate-300);
    max-width: 420px;
    margin-bottom: 26px;
    line-height: 1.6;
}

.tt-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(120deg, var(--tt-gold), #d99a3a);
    color: #1b1204;
    font-weight: 800;
    font-size: 14.5px;
    padding: 15px 28px;
    border-radius: 100px;
    transition: .3s;
    box-shadow: 0 14px 30px rgba(240, 180, 87, .25);
}

.tt-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(240, 180, 87, .4);
}

.tt-cta-btn i {
    transition: .3s;
}

.tt-cta-btn:hover i {
    transform: translateX(4px);
}

.tt-cta-trophy {
    flex-shrink: 0;
    width: 190px;
}

.tt-cta-trophy svg {
    width: 100%;
    height: auto;
    animation: ttTrophyFloat 5s ease-in-out infinite;
}

@keyframes ttTrophyFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ---------------------------------------------------------------------
   FOOT NOTE STRIP
--------------------------------------------------------------------- */
.tt-footnote {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 34px;
    margin-top: 46px;
    padding-top: 30px;
     border-top: 1px solid var(--line);
}

.tt-footnote-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
   color: var(--slate-500);
    font-weight: 600;
}

.tt-footnote-item i {
    color: var(--tt-gold);
    font-size: 12px;
}

/* =========================================================================
   RESPONSIVE
========================================================================= */
@media (max-width: 1100px) {
    .tt-stats-row {
        grid-template-columns: 1fr;
    }

    .tt-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .tt-cta {
        flex-direction: column;
        text-align: center;
        padding: 42px 30px;
    }

    .tt-cta-text {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .testimonials-section {
        padding: 70px 6% 80px;
    }

    .tt-stat-grid {
        grid-template-columns: 1fr;
    }

    .tt-why-grid {
        grid-template-columns: 1fr;
    }

    .tt-card {
        flex-basis: 270px;
        width: 270px;
    }

    .tt-slider-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .tt-arrow-btn {
        width: 38px;
        height: 38px;
    }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .tt-logo-track {
        animation: none;
    }

    .tt-orb {
        animation: none;
    }

    .tt-cta-trophy svg {
        animation: none;
    }

    [data-reveal] {
        transition: none;
        opacity: 1;
        transform: none;
    }
}
/* =========================================================
   SCROLL REVEAL — fade-in + slide-up on scroll
   Reusable on ANY page. Just link this file + reveal.js.
========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
    will-change: opacity, transform;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.apply-modal-overlay {
    display: none;
}

.apply-modal-overlay.active {
    display: flex;
}
.apply-franchise-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--amber-500);
    color: #fff;
    padding: 20px 26px;
    border-radius: 28px;
    font-weight: 600;
    font-size: 12.5px;
    text-decoration: none;
    white-space: nowrap;
    transition: .25s;
}

.apply-franchise-btn i {
    font-size: 12px;
}

.apply-franchise-btn:hover {
    background: #fff;
    color: var(--navy-950);
}

@media (max-width: 768px) {
    .left-info {
        display: none;
    }

    .top-bar {
        justify-content: center;
    }
}
/* Mobile view me top bar hide */
@media (max-width: 768px) {
    .top-bar {
        display: none !important;
    }
}