@font-face {
    font-family: 'Brutal Type Extra Bold';
    src: url('../fonts/BrutalTypeExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Brutal Type Medium';
    src: url('../fonts/BrutalTypeMedium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir LT W01 45 Book';
    src: url('../fonts/AvenirBook.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Brutal Type W00 Black';
    src: url('../fonts/BrutalTypeBlack.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Brutal Type W00 Regular';
    src: url('../fonts/BrutalTypeRegular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ============================================================
   BASE & RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { 
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: "Avenir LT W01 45 Book";
    background: #fff;
    color: #000;
    overflow-x: hidden;
    width:100%;
}




/* ============================================================
   NAVBAR
   ============================================================ */
.site-navbar {
    background-color:#00000070 !important;
    height: auto;
    padding: 0 50px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-width='2' stroke-linecap='round' d='M6 6L24 24M6 24L24 6'/%3e%3c/svg%3e") !important;
}

.logo-text {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 500;
    font-size: 17px;
    color: #598aec !important;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.gap-nav {
    gap: 34px !important;
}

.site-navbar .nav-link {
    font-family: 'Brutal Type Extra Bold', sans-serif;
    font-weight: 600;
    font-size: max(1.125rem, min(0.999rem + 0.423vw, 1.5rem));
    color: rgba(255,255,255,0.9) !important;
    padding: 0 !important;
    transition: color 0.2s;
    white-space: nowrap;
}

.site-navbar .nav-link:hover, .site-navbar .nav-link.active {
    color: #78A747 !important;
}
.btn-join-us {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding:12px 30px;
    background: #78A747;
    color: #fff;
    font-family: 'Brutal Type Medium';
    font-weight: 800;
    font-size: 17px;
    padding: 10px 20px;
    text-decoration: none;
    white-space: nowrap;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    width: 100%;
    aspect-ratio: 21/7;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade 32s infinite, heroZoom 32s linear infinite;
    z-index: 0;
}

.hero-bg-slide:nth-child(1) {
    animation-delay: 0s, 0s;
}

.hero-bg-slide:nth-child(2) {
    animation-delay: 8s, 8s;
}

.hero-bg-slide:nth-child(3) {
    animation-delay: 16s, 16s;
}

.hero-bg-slide:nth-child(4) {
    animation-delay: 24s, 24s;
}

@keyframes heroFade {
    0% { opacity: 0; }
    6.25% { opacity: 1; }
    25% { opacity: 1; }
    31.25% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes heroZoom {
    0% { transform: scale(1.05) translateX(0); }
    100% { transform: scale(1.15) translateX(-2%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:linear-gradient(to right, rgb(0 0 0 / 20%) 100%, rgb(0 0 0 / 64%) 10%, rgba(0, 0, 0, 0));
}

.hero-content {
    position: absolute;
    bottom: 4rem;
    left: 50px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.hero-subtitle-text {
    font-family: 'Brutal Type W00 Regular', 'Brutal Type', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 1;
    color: #fff;
    margin: 0;
}

.hero-title {
    font-family: 'Brutal Type W00 Black', sans-serif;
    font-weight: 800;
    font-size: max(2.375rem, min(1.099rem + 4.085vw, 6rem));
    line-height: 1.1;
    color: #fff;
    margin: 0;
}

.hero-desc {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

/* Ticker Bar */
.ticker-bar {
    background: #659142;
    height: 42px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
    height: 100%;
    align-items: center;
}

.ticker-text {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.45px;
    text-transform: uppercase;
    color: #fff;
    padding-right: 50px;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT US SECTION
   ============================================================ */
.about-section {
    background: #ffffff;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.about-section .container-fluid {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 50px;
    gap: 60px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 55%;
    max-width: 674px;
    padding: 3.25rem 0;
}

.about-title {
    font-family: 'Brutal Type Extra Bold', sans-serif;
    font-weight: 500;
    font-size: 64px;
    line-height: 1.1;
    background: #77AB40;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.about-desc {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 400;
    font-size:max(1.25rem, min(1.03rem + 0.704vw, 1.875rem));
    line-height: inherit;
    color: #000;
    margin: 0;
}

.about-desc span {
    color: rgba(0,0,0,0.58);
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #78A747;
    color: #fff;
    font-family: 'Brutal Type Medium';
    font-weight: 800;
    font-size: 17px;
    padding: 10px 16px;
    text-decoration: none;
    width: 196px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-img-wrap {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 2,25rem 0;
}

.about-img-wrap img {
    max-width: 100%;
    object-fit: cover;
}

/* ============================================================
   WHAT WE DO SECTION
   ============================================================ */
.whatwedo-section {
    background: #78A747;
    width: 100%;
    overflow: hidden;
}

.whatwedo-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 3.5rem 50px 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-label {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 600;
    font-size: 17px;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
}

.whatwedo-title {
    font-family: 'Brutal Type Extra Bold', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 70px;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    max-width: 770px;
    margin: 0 auto 25px;
}

.whatwedo-desc {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 400;
    font-size: max(1.25rem, min(1.03rem + 0.704vw, 1.875rem));
    line-height: inherit;
    color: #fff;
    text-align: center;
    margin: 0 auto 25px;
}
.info-value:hover {
    color: #555 !important;   /* light black */
}
.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #78A747;
    color: #fff;
    font-family: 'Brutal Type Medium';
    font-weight: 800;
    font-size: 17px;
    padding: 10px 16px;
    text-decoration: none;
    width: 244px;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ─── Service Headings Strip ─── */
.cards-row {
    display: flex;
    align-items: stretch;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0px;
}

.service-card {
    position: relative;
    flex: 1;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:30px;
    cursor: pointer;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.4s ease;
}

.service-card:last-child {
    border-right: none;
}

.service-card:hover {
    background: rgba(0, 0, 0, 0.08);
}

/* nth-child overrides */
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3) {
    background-image: none;
}

.card-label {
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Number badge above each title */
.card-num {
    font-family: "Avenir LT W01 45 Book", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: rgb(255 255 255 / 78%);
    letter-spacing: 3px;
    display: block;
}

.card-label p {
    font-family: 'Brutal Type Extra Bold', sans-serif;
    font-weight: 800;
    font-size:clamp(15px, 2vw, 28px);
    color: #ffffff;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    position: relative;
    padding-bottom: 6px;
}

/* Animated underline */
.card-label p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: #ffffff;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .card-label p::after {
    width: 100%;
    left: 0%;
}

/* Disable per-letter wave — keep it clean */
.card-label p span {
    display: inline-block;
    transition: none;
}

.service-card:hover .card-label p span {
    transform: none;
}


/* ============================================================
   TEAM STATS SECTION
   ============================================================ */
.stats-section {
    background: #78A747;
    width: 100%;
    overflow: hidden;
}

.stats-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 50px 50px;
    position: relative;
}


.stats-heading {
    font-family: 'Brutal Type Extra Bold', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 1.15;
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
}



.stats-desc {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
}

.stats-numbers-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 60px 0 0 0;
    position: relative;
    max-width: 100%;
    width: 100%;
}

.stat-item {
    flex: 1;
    padding: 0 20px;
    position: relative;
    border-left: 2px solid rgba(255, 255, 255, 0.4);
}

.desktop-spacer {
    flex: 0 0 20%;
    border-left: none !important;
    padding: 0 !important;
}

.stat-number {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: flex-start;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number .big {
    font-size: 85.868px;
    line-height: 1;
}

.stat-prefix {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 500;
    font-size: 85.868px;
    color: #fff;
    line-height: 1;
}

.stat-number .sup {
    font-size: 37.369px;
    line-height: 1;
    margin-top: 10px;
}

.stat-desc {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 400;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    max-width: 290px;
}

/* ============================================================
   FULL WIDTH IMAGE SECTION
   ============================================================ */
.section-fullimg {
    width: 100%;
    height: 588px;
    overflow: hidden;
}

.section-fullimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================================
   CAREERS SECTION
   ============================================================ */
.careers-section {
    width: 100%;
    padding: 3.5rem 50px 3.5rem;
    background: #fff;
}

.careers-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    gap: 37px;
    align-items: center;
    justify-content: center;
}

.careers-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    max-width: 100%;
}

.careers-label {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 600;
    font-size: 17px;
    color: #000;
    letter-spacing: 0.02em;
}

.careers-title {
    font-family: 'Brutal Type Extra Bold', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 70px;
    background: #77AB40;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 100%;
    margin: 0;
}

.careers-desc {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 400;
    font-size: max(1.25rem, min(1.03rem + 0.704vw, 1.875rem));
    line-height: inherit;
    color: #000;
    margin: 0;
}

.careers-btns {
    display: flex;
    gap: 7px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-students {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #78A747;
    color: #fff;
    font-family: 'Brutal Type Medium';
    font-size: 17px;
    padding: 10px 16px;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-professionals {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #000;
    font-family: 'Brutal Type Medium';
    font-size: 17px;
    padding: 10px 16px;
    text-decoration: none;
    white-space: nowrap;
    border:1px solid #78A747;
    width: 311px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.careers-img-wrap {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.careers-img-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 656 / 470;
    object-fit: cover;
    display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #000;
    width: 100%;
    padding: 3.5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 250px;
    flex-shrink: 0;
}

.footer-logo {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 500;
    font-size: 36.429px;
    color: #fff;
    line-height: 1;
}

.footer-tagline {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

.btn-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #78A747;
    color: #fff;
    font-family: 'Brutal Type Medium';
    font-size: 17px;
    padding: 10px 16px;
    text-decoration: none;
    justify-content: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 200px;
}

.footer-col-title {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 600;
    font-size: 19px;
    color: #fff;
    margin: 0;
}

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

.footer-link-list a {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 500;
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    position: relative;
    padding-left: 14px;
    margin-left: -14px;
    display: inline-block;
    transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-link-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 6px;
    height: 6px;
    background-color: #77AB40;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-link-list a:hover {
    color: #77AB40 !important;
    transform: translateX(14px);
}

.footer-link-list a:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.footer-links-wrapper {
    display: flex;
    margin-left: auto;
}

.footer-img-col {
    flex: 0 0 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    padding-bottom: 10px;
}

/* Footer Social Icons & Styling */
.footer-social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.social-link:hover {
    background-color: #77AB40;
    color: #fff;
    transform: scale(1.15) translateY(-3px);
}

/* ============================================================
   BUTTON HOVER SHIMMER & SLIDE-IN EFFECT
   ============================================================ */
.btn-join-us::before, .btn-more::before, .btn-explore::before, .btn-students::before, .btn-subscribe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-join-us:hover::before, .btn-more:hover::before, .btn-explore:hover::before, .btn-students:hover::before, .btn-subscribe:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-join-us:hover, .btn-more:hover, .btn-explore:hover, .btn-students:hover, .btn-subscribe:hover {
    color: #fff !important;
}

.btn-join-us svg, .btn-more svg, .btn-explore svg, .btn-students svg, .btn-subscribe svg {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-join-us:hover svg, .btn-students:hover svg, .btn-subscribe:hover svg {
    transform: translate(3px, -3px);
}

.btn-more:hover svg, .btn-explore:hover svg {
    transform: translateX(5px);
}

/* Experienced Professionals Button Hover */
.btn-professionals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #77AB40;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-professionals:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-professionals:hover {
    color: #fff !important;
    border-color: #77AB40 !important;
}

.btn-professionals svg {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-professionals svg path {
    stroke: currentColor;
    fill: currentColor;
    transition: fill 0.3s ease, stroke 0.3s ease;
}

.btn-professionals:hover svg {
    transform: translateX(5px);
}

/* Contact Submit Button Hover Style */
.btn-contact-submit {
    background: #0751e2;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-family: 'Brutal Type Medium';
    font-weight: 500;
    font-size: 17px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-contact-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-contact-submit:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-contact-submit:hover {
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(7, 81, 226, 0.25);
}

.btn-contact-submit svg {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-contact-submit:hover svg {
    transform: translateX(5px);
}

.footer-divider {
    max-width: 1440px;
    margin: 25px auto 0;
    padding: 0 50px;
}

.footer-divider::after {
    content: '';
    display: block;
    height: 1px;
    background: #d9d9d9;
    width: 100%;
}

.footer-bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    margin: 0;
    white-space: nowrap;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.footer-legal-links a {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: #77AB40;
}

/* ============================================================
   UTILITY BUTTONS SVG
   ============================================================ */
.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.navbar-cta {
    padding-top:0px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
   @media (min-width: 1400px) {
   .gallery-img {
       height: 400px !important;
   }}

@media (max-width: 1200px) {
    .site-navbar { padding: 0 50px; }
    .hero-content { left: 50px; }
    .about-section .container-fluid { flex-direction: column; }
    .about-content { padding: 60px 0 30px; width: 100%; align-items: center; text-align: center; }
    
    .about-img-wrap { padding: 0 0 60px; justify-content: center; width: 100%; }
    .about-img-wrap img { width: 100%; max-width: 600px; height: auto; }
    .whatwedo-inner { padding: 83px 50px 60px; }
    .stats-inner { padding: 80px 50px 40px; }
    .careers-section { padding: 80px 50px; }
    .stats-numbers-row { flex-wrap: wrap; gap: 40px 20px; }
    .desktop-spacer { display: none !important; }
    .stat-item { padding: 0 2.25rem; border-left: none; flex: 1 1 calc(33.333% - 2.25rem); min-width: 200px; }
    .footer-inner { padding: 0 50px; }
    .footer-divider { padding: 0 50px; }
    .footer-bottom { padding: 20px }
}

@media (max-width: 991px) {
    .btn-explore {
        margin-bottom: 50px;
    }
    .site-navbar { height: auto;  padding: 10px 2.25rem; }
    .site-navbar:has(#navbarContent.show),
    .site-navbar:has(#navbarContent.collapsing) {
        background-color: #000 !important;
        height: 100vh !important;
        align-items: flex-start;
        overflow-y: auto;
    }
    #custom-nav-toggler {
        border: none;
        outline: none;
        background-color: #78A747;
        padding: 8px 12px;
        transition: background-color 0.3s ease;
        border-radius: 0px;
    }
    #custom-nav-toggler .nav-state-closed,
    #custom-nav-toggler .nav-state-open {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    #custom-nav-toggler span {
        color: white;
        font-family: "Avenir LT W01 45 Book";
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
    }
    #custom-nav-toggler .nav-state-open { display: none; }
    
    #custom-nav-toggler[aria-expanded="true"] { background-color: transparent; }
    #custom-nav-toggler[aria-expanded="true"] .nav-state-closed { display: none; }
    #custom-nav-toggler[aria-expanded="true"] .nav-state-open { display: flex; }
    .hero-section { display: flex; align-items: center; justify-content: center; height: 60vh; min-height: 400px; padding-bottom: 0; }
    .hero-content { position: relative; bottom:2rem; left: auto; width: 100%; padding: 2.25rem 2.25rem;  }
    .hero-subtitle-text { font-size:max(2rem, min(1.384rem + 1.972vw, 3.75rem)); }
    .hero-title { font-size: max(2.375rem, min(1.099rem + 4.085vw, 6rem)); }
    .hero-desc { font-size: 16px; }
    .about-section .container-fluid { padding: 0 40px; }
    .about-content { width: 100%;}
    .about-title { font-size: 42px; }
    .about-img-wrap { padding: 20px 0 40px; }
    .whatwedo-inner { padding: 2.25rem 2.25rem }
    .whatwedo-title { font-size: 36px; line-height: 1.3; }
    .cards-row { gap: 20px; }
    .service-card { width: 100%; max-width: 100%; height: 180px; aspect-ratio: auto; }
    .stats-inner { padding: 2.25rem 2.25rem; }
    .stats-heading { font-size: 36px; line-height: 1.3; text-align: center; }
    .stats-right { padding-left: 0; margin-top: 20px; text-align: center; }
    .stat-number { justify-content: center; }
    .stat-number .big { font-size: 60px; }
    .stat-prefix { font-size: 60px; }
    .stat-desc { text-align: center; margin: 0 auto; }
    .careers-section { padding: 2.25rem 2.25rem; }
    .careers-inner { flex-direction: column; text-align: center; }
    .careers-content { width: 100%; align-items: start; }
    .careers-title { font-size: 36px; line-height: 1.3; }
    .careers-btns { justify-content: center; }
    .careers-img-wrap img { width: 100%; height: auto; max-height: 400px; }
    .footer-inner { padding: 0 2.25rem; gap: 40px; text-align: center; justify-content: center; }
    .footer-brand-col { align-items: center; margin: 0 auto; }
    .footer-links-wrapper { margin: 0 auto; gap: 40px; }
    .footer-links-col { text-align: left; }
    .footer-divider { padding: 0 2.25rem; }
    .footer-bottom { padding: 20px 2.25rem; justify-content: center; flex-direction: column; }
    .footer-img-col { display: none; }
}
#margint {
    margin-top:15px;
}
#footer-logo {
    height:45px;
}
#header-logo {
    height:45px;
}

#navbarContent {
    margin:1rem 0 !important;
    gap:34px;
}
#ApplyNowbtn {
    font-size: 34px !important;
    padding: 6px 20px;
}
@media (max-width: 767px) {
    .btn-contact-submit-new {
        width: auto !important;
        padding: 8px 15px !important;
        height:40px !important;
    }
    .btn-subscribe {
        width: auto !important;
    }
       #ApplyNowbtn svg {
        width: 20px !important;
    }
    #ApplyNowbtn {
    font-size: 20px !important;
    padding: 6px 15px !important;
}
    #navbarContent {
    margin:1.5rem 0 !important;
}
        .footer-bottom {
            padding: 12px 2.25rem !important;
        }
    .footer-copy {
        font-size: 12px !important;
    }
    
    .careers-desc {
        text-align: start !important;
    }
    .careers-title {
        text-align: start !important;
    }
    .about-content {
                 align-items: start !important; 
         text-align: start !important;
    }
    .footer-link-list a {
font-size: 16px !important;
}
    .card-label p {
font-size: 17px !important;
}
.card-label {
height:45px !important;
}
.whatwedo-inner {
    align-items: start !important;
}
    .whatwedo-desc {
        text-align: start !important;
font-size:16px !important;
font-weight: 400 !important;
}
    .btn-join-us {
        padding:8px 10px !important;
        font-weight: 400 !important;
        font-size:16px !important;
    }
    #header-logo {
    height:35px;
}
    #footer-logo {
    height:50px !important;
}
    .culture-desc {
        text-align: start !important;
        font-size:16px !important;
        
    }
    #margint {
    margin-top:10px;
}
    .footer-tagline {
        text-align: start;
    }
        .footer-brand-col {
        align-items: flex-start;
        margin: 0 auto;
        width: 100%;
    }
    .navbar-cta {
    padding-top:20px;
}

    .site-footer {
        padding: 2.25rem 2.25rem 0px;
    }
    .about-section .container-fluid{
        gap:35px;
    }
    .hero-subtitle-text { font-size:max(2rem, min(1.384rem + 1.972vw, 3.75rem)); }
    .hero-title { font-size: max(2.375rem, min(1.099rem + 4.085vw, 6rem)); }
    .about-title { font-size: 32px; }
    .about-section .container-fluid { padding: 2.25rem 2.25rem; }
    .about-content { padding: 0px 0 0px; }
    .about-desc { font-size: 16px;  text-align:start !important;}
    .about-img-wrap { padding: 0 }
    .whatwedo-title { font-size: 28px; line-height: 1.2; }
    .stats-numbers-row { flex-direction: column; gap: 40px; }
    .stat-item { flex: 0 0 100%; width: 100%; }
    .stats-heading { font-size: 28px; }
    .careers-title { font-size: 28px; }
    .footer-inner { flex-direction: column; align-items: center; }
    .footer-links-wrapper { flex-direction: column; align-items: flex-start; gap: 30px; width: 100%; max-width: 100%; margin: 0 auto; }
    .footer-legal-links { flex-wrap: wrap; gap: 16px; justify-content: center; }
    .careers-btns { flex-direction: column; width: 100%; }
    .btn-students, .btn-professionals { width: 100%; max-width: 320px; }
    .gap-nav { gap: 16px !important; }

    /* Service headings: stack vertically on mobile */
    .cards-row {
        flex-direction: column;
        border-top: none;
    }
    .service-card {
        border-right: none !important;
        border-top: none !important;
        border-bottom: none !important;
        padding: 25px 20px;
    }
    .service-card:nth-child(1),
    .service-card:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    }
    .card-label {
        height: auto !important;
        align-items: flex-start;
    }
    .card-label p {
        font-size: clamp(18px, 5vw, 24px) !important;
        white-space: normal;
        text-align: left;
    }
    .card-num {
        font-size: 14px;
    }

    .service-card:last-child {
        border-bottom: none;
    }
    .card-label {
        height: auto !important;
        align-items: flex-start;
    }
    .card-label p {
        font-size: clamp(18px, 5vw, 24px) !important;
        white-space: normal;
        text-align: left;
    }
    .card-num {
        font-size: 14px;
    }

}


@media (max-width: 480px) {
    .hero-subtitle-text { font-size: max(2rem, min(1.384rem + 1.972vw, 3.75rem)); }
    .hero-title { font-size: max(2.375rem, min(1.099rem + 4.085vw, 6rem)); }
    .about-title { font-size: 42px; }
    .about-desc { font-size: 16px; }
    .section-fullimg { height: 300px; }
    .stat-number .big { font-size: 48px; }
    .stat-prefix { font-size: 50px; }
    .stat-number .sup { font-size: 24px; }
}

/* ============================================================
   CONTACT US PAGE DESIGN
   ============================================================ */
.contact-section {
    background-color: #fff;
    color: #000;
    padding: 160px 50px 80px;
    min-height: 100vh;
}

.contact-container {
    max-width: 1326px;
    margin: 0 auto;
}

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.contact-title {
    font-family: 'Brutal Type Extra Bold', sans-serif;
    font-weight: 500;
    font-size: 64px;
    line-height: 68px;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}

.contact-subtitle {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 500;
    font-size: max(1.125rem, min(0.999rem + 0.423vw, 1.5rem));
    line-height: inherit;
    color: #000;
    margin: 0;
    width: 300px;
}

.contact-banner-wrap {
    width: 100%;
    height: 595px;
    overflow: hidden;
    margin-bottom: 60px;
}

.contact-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 295px 1fr;
    gap: 71px;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-label {
    font-family: 'Brutal Type Extra Bold', sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: #000;
}

.info-value {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 700;
    font-size: 22px;
    color: #000;
    text-decoration: none;
    line-height: 1.4;
    display: block;
}

.contact-form-col {
    width: 100%;
}

.contact-form-form {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.form-row {
    display: flex;
    gap: 45px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.half {
    width: calc(50% - 22.5px);
}

.form-group.full {
    width: 100%;
}

.form-label {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 600;
    font-size: 22px;
    color: #000000;
    letter-spacing: 0.05em;
}

.form-input, .form-select, .form-textarea {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 300;
    font-size: 20px;
    color: #000;
    background: transparent;
    border: none;
    outline: none;
    padding: 8px 0;
    width: 100%;
}

.form-select {
    appearance: none;
    cursor: pointer;
}

.form-textarea {
    resize: none;
}

.input-line {
    height: 1px;
    background-color: #d9d9d9;
    width: 100%;
    transition: background-color 0.3s ease;
}

.form-input:focus ~ .input-line, 
.form-select:focus ~ .input-line, 
.form-textarea:focus ~ .input-line {
    background-color: #78a747;
    height: 2px;
}

.btn-contact-submit-new {
    background-color: #78a747;
    color: #ffffff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 24px;
    width: 151px;
    height: 48px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-contact-submit-new .btn-text {
    font-family: 'Brutal Type Medium';
    font-weight: 800;
    font-size: 17px;
    color: #fff;
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

.btn-contact-submit-new svg {
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-contact-submit-new svg path {
    stroke: currentColor;
    fill: currentColor;
    transition: fill 0.3s ease, stroke 0.3s ease;
}

.btn-contact-submit-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-contact-submit-new:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}



.btn-contact-submit-new:hover svg {
    transform: translate(3px, -3px);
}

/* Alert Boxes */
.contact-alert {
    padding: 16px 24px;
    font-family: "Avenir LT W01 45 Book";
    font-size: 16px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.contact-alert.success {
    background-color: #78a747;
    color: #fff;
}

.contact-alert.error {
    background-color: #e74c3c;
    color: #fff;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .contact-section {
        padding: 140px 40px 80px;
    }
}

@media (max-width: 991px) {
    .contact-section {
        padding: 120px 40px 60px;
    }
    .contact-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        margin-bottom: 30px;
    }
    .contact-title {
        width: 100%;
        font-size: 48px;
        line-height: 52px;
        text-align: center;
    }
    .contact-subtitle {
        width: 100%;
        font-size: 16px;
        text-align: center;
    }
    .contact-banner-wrap {
        height: 380px;
        margin-bottom: 40px;
    }
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-info-col {
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    .info-value {
        text-align: center;
        width: 100%;
    }
    .form-label {
        font-size: 17px;
    }
    .form-input, .form-select, .form-textarea {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
        .contact-header {
margin-bottom: 15px !important;
}
    .info-value {
        text-align: start !important;
font-size:16px !important;
}
.contact-info-item {
gap:10px !important;
}
    .contact-info-col {
gap:20px !important;
}
    .contact-subtitle {
        text-align: start !important;
    }
        .contact-info-col {
        align-items: start !important;
        text-align: start !important;
        }
    .careers-content {
        gap:15px !important;
    }
    .culture-content {
        gap:15px !important;
        text-align: center !important;
    }
    .whatwedo-title {
text-align: start !important; 
    margin: 0 auto 15px !important;
}


    .contact-section {
        padding: 100px 2.25rem 40px;
    }
    .contact-title {
        font-size: 32px;
        line-height: 36px;
        text-align: start !important;
    }
    .contact-banner-wrap {
        height: 220px;
        margin-bottom: 30px;
    }
    .form-row {
        flex-direction: column;
        gap: 30px;
    }
    .form-group.half {
        width: 100%;
    }
    .btn-contact-submit-new {
        margin: 0 auto;
    }
}

/* ============================================================
   GLOBAL HOMEPAGE SECTION SPACING
   ============================================================ */
.site-navbar,
.hero-section,
.about-section,
.whatwedo-section,
.stats-section,
.careers-section,
.site-footer {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

.hero-inner,
.about-section .container-fluid,
.whatwedo-inner,
.stats-inner,
.careers-inner,
.footer-inner,
.footer-divider,
.footer-bottom {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.hero-inner {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    position: relative;
}

@media (min-width: 992px) {
    .hero-content {
        left: 0 !important;
    }
}

@media (max-width: 991px) {
    .site-navbar,
    .hero-section,
    .about-section,
    .whatwedo-section,
    .stats-section,
    .careers-section,
    .site-footer {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    .hero-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media (max-width: 767px) {
    .hero-inner {
        display: flex !important;
        justify-content: center;
        align-items: center;
    }
    .info-label {
        font-size:17px !important;
    }
        .hero-content {
            margin-top: 40% !important;
        }
    .careers-desc {
        font-size: 16px !important;
    }
        .about-title {
        font-size: 28px !important;
    }
    .about-content {
        gap:8px !important;
    }
    .culture-title {
        font-size:28px !important;
        text-align: start !important;
}
     .culture-section {
        padding:2.25rem 2.25rem 0 !important;
    }
    .culture-inner {
        gap:37px !important;
    }
    .site-navbar,
    .hero-section,
    .about-section,
    .whatwedo-section,
    .stats-section,
    .careers-section,
    .site-footer {
        padding-left: 2.25rem !important;
        padding-right: 2.25rem !important;
    }
}



/* ============================================================
   CULTURE SECTION
   ============================================================ */
.culture-section {
    width: 100%;
    padding: 3.5rem 50px 0;
    background: #fff;
}

.culture-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.culture-content {
    display: flex;
    flex-direction: column;
    gap: 21px;
    flex: 1;
    max-width: 100%;
}

.culture-title {
    font-family: 'Brutal Type Extra Bold', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 1.1;
    background: #78A747;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 100%;
    margin: 0;
    text-transform: uppercase;
}

.culture-desc {
    font-family: "Avenir LT W01 45 Book";
    font-weight: 500;
    font-size: max(1.25rem, min(1.03rem + 0.704vw, 1.875rem));
    line-height: inherit;
    color: #000;
    margin: 0;
}

.culture-img-wrap {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.culture-img-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 656 / 470;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .culture-inner {
        flex-direction: column;
    }
}

/* ============================================================
   DESKTOP BUTTON SIZES (min-width: 992px)
   ============================================================ */
@media (min-width: 992px) {
    /* index.php buttons */
    .btn-join-us,
    .btn-more,
    .btn-explore,
    .btn-students,
    .btn-professionals,
    .btn-subscribe,
    /* careers.php buttons */
    .btn-career,
    .btn-career-early,
    .btn-career-professional,
    .btn-apply-now,
    .btn-careers-search-submit,
    .btn-sidebar-resume,
    .btn-create-alert,
    /* contact page button */
    .btn-contact-submit-new,
    /* about page buttons */
    .btn-contact-us,
    .au-btn--solid,
    .au-btn--outline {
        font-size: 20px !important;
        padding: 8px 16px !important;
        font-weight: 500 !important;
    }
    .btn-contact-submit-new .btn-text {
        font-weight: 500 !important;
        font-size: 20px !important;
    }
}


/* ============================================================
   CONTACT FORM – BOXED & COMPACT
   ============================================================ */
.contact-form-col {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-top: 3px solid #78a747;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    padding: 28px 32px 32px;
    width: 100%;
    max-width: 720px;
    justify-self: end;
}

@media (max-width: 991px) {
    .contact-form-col {
        justify-self: center;
    }
}

.contact-form-col .contact-form-form {
    gap: 22px;
}

.contact-form-col .form-row {
    gap: 28px;
}

.contact-form-col .form-group {
    gap: 6px;
}

.contact-form-col .form-group.half {
    width: calc(50% - 14px);
}

.contact-form-col .form-label {
    font-size: 15px;
}

.contact-form-col .form-input,
.contact-form-col .form-select,
.contact-form-col .form-textarea {
    font-size: 17px;
    padding: 6px 0;
}

.contact-form-col .contact-alert {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .contact-form-col {
        padding: 24px 20px 28px;
    }
    .contact-form-col .form-row {
        flex-direction: column;
        gap: 22px;
    }
    .contact-form-col .form-group.half {
        width: 100%;
    }
    .contact-form-col .form-label {
        font-size: 14px;
    }
    .contact-form-col .form-input,
    .contact-form-col .form-select,
    .contact-form-col .form-textarea {
        font-size: 16px;
    }
}
