/* ========== ROOT VARIABLES ========== */
:root {
    --green-primary: #00B86A;
    --green-glow: rgba(0, 210, 106, 0.4);
    --black: #000000;
    --white: #ffffff;
    --gray-light: #e5e5e5;
    --gray-mid: #666666;
}

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

@font-face {
  font-family: 'Satoshi-Regular';
  src: url('font/Satoshi-Regular.woff') format('woff');
       
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi-Bold';
  src: url('font/Satoshi-Bold.woff') format('woff');
     
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

h1,h2,h3,h4 {
    font-family: 'Satoshi-Bold'; 
}

p {
    font-family: 'Satoshi-Regular'; 
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Satoshi-Bold';
    background: var(--black);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ========== NAVIGATION ========== */
nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
}

#mobileNav {
    width: 60%;
    min-width: 25px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: auto;
    width: 200px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links .contact-btn {
    display: block;
    padding: 0;
    background: none;
}

.nav-links .contact-btn img {
    height: 52px;
    width: auto;
    transition: transform 0.2s;
}

.nav-links .contact-btn:hover img {
    transform: scale(1.03);
}

/* ========== MOBILE MENU ========== */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: var(--black);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 1001;
    min-width: 200px;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
}

.menu-arrow {
    width: 20px;
    height: 20px;
}

#mobileAbout {
width: 15px;
}

#mobileServices{
width: 15px;
}

#mobileCareers{
width: 15px!important;
}

#mobileContact{
width: 15px;
}

.menu-arrow-orange {
    stroke: #FF6B35;
}

.menu-arrow-purple {
    stroke: #A855F7;
}

.menu-arrow-cyan {
    stroke: #22D3EE;
}

/* ========== BACK BUTTON ========== */
.back-btn {
    position: fixed;
    top: 32px;
    left: 40px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.back-btn:hover {
    opacity: 0.7;
}

.back-btn svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
    stroke-width: 2;
    fill: none;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 48px 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--black), transparent);
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.hero h1 {
    font-family: 'Satoshi-Bold';
    font-size: 80px;
    font-weight: 700;
    line-height: 1.02;
    max-width: 1000px;
    color: #ffffffd6;
    margin-bottom: 44px;
    text-shadow: 0 4px 40px rgb(0 0 0 / 67%);
}

.hero-cta {
    display: inline-block;
    transition: transform 0.2s;
}

.hero-cta img {
    height: 50px;
    width: auto;
}

.hero-cta:hover {
    transform: scale(1.05);
}

.hero-tagline {
    position: absolute;
    bottom: 48px;
    left: 48px;
    font-size: 26px;
    line-height: 1.5;
    text-align: left;
    z-index: 1;
}

/* ========== ABOUT SECTION ========== */
.about {
    background: var(--black);
    padding: 100px 48px 100px;
    position: relative;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.about-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 60px;
}

.about-text {
    width: 45%;
    max-width: 550px;
}

.about-text h2 {
    font-family: 'Satoshi-Bold';
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-light);
}

.about-visual {
    position: relative;
    width: 45%;
    display: flex;
    justify-content: flex-end;
    min-height: 320px;
}

.about-gradient-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 24px;
}

.about-3d-icon {
    position: absolute;
    top: -40px;
    left: 80px;
    width: 120px;
    height: auto;
    z-index: 2;
}

.about-topo-img {
    width: 100%;
    max-width: 1400px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.about-crt-img {
    position: absolute;
    bottom: 5px;
    right: 80px;
    width: 280px;
    height: auto;
    border-radius: 20px;
    z-index: 3;
}

/* ========== SERVICES SECTION (Homepage Carousel) ========== */
.services {
    background: var(--black);
    padding: 100px 48px 80px;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.services-header-text {
    max-width: 600px;
}

.services-header h2 {
    font-family: 'Satoshi-Bold';
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.services-header p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-light);
}

.services-nav {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.services-nav button {
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-nav button img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.services-nav button:hover img {
    opacity: 1;
}

.services-carousel-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
}

.services-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    border-radius: 24px;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-mid);
    transition: background 0.2s;
    cursor: pointer;
}

.carousel-dots span.active {
    background: var(--white);
}

/* ========== SERVICE PAGE (Individual Service) ========== */
.service-page {
    padding: 100px 60px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.service-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.service-text {
    text-align: right;
}

.service-text h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    text-align: left;
}

.service-intro {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-light);
    margin-bottom: 28px;
}

.service-point {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.service-list {
    padding-top: 20px;
}

.service-item {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-mid);
}

.service-item:first-child {
    padding-top: 0;
}

.service-hero-image {
    width: 100%;
    margin-top: 60px;
}

.service-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== CTA BUTTONS ========== */
.service-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green-primary);
    color: var(--black);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: scale(1.03);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--green-primary);
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-icon:hover {
    transform: scale(1.05);
}

.btn-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--black);
    stroke-width: 2.5;
    fill: none;
}

/* ========== CAREERS SECTION ========== */
.careers {
    background: var(--black);
    padding: 100px 48px 80px;
}

.careers-header {
    max-width: 1400px;
    margin: 0 auto 50px;
}

.careers-header h2 {
    font-family: 'Satoshi-Bold';
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.careers-header p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-light);
    max-width: 600px;
}

.careers-carousel-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
}

.careers-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.careers-carousel::-webkit-scrollbar {
    display: none;
}

.career-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 280px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-mid);
    border-radius: 4px;
    padding: 28px;
    height: 420px;
    cursor: pointer;
    scroll-snap-align: start;
    transition: border-color 0.2s, transform 0.2s;
}

.career-card:hover {
    border-color: var(--green-primary);
    transform: translateY(-4px);
}

.career-card-inner {
    flex: 1;
    overflow-y: auto;
    padding-right: 8px;
    margin-bottom: 20px;
}

.career-card-inner::-webkit-scrollbar {
    width: 4px;
}

.career-card-inner::-webkit-scrollbar-track {
    background: transparent;
}

.career-card-inner::-webkit-scrollbar-thumb {
    background: var(--gray-mid);
    border-radius: 2px;
}

.career-card-inner::-webkit-scrollbar-thumb:hover {
    background: var(--green-primary);
}

.careers-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.careers-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-mid);
    transition: background 0.2s;
    cursor: pointer;
}

.careers-dots span.active {
    background: var(--white);
}

.career-title {
    font-family: 'Satoshi-Bold';
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 8px;
}

.career-company {
    font-size: 14px;
    color: var(--green-primary);
    margin-bottom: 16px;
}

.career-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-light);
}

.career-description p {
    margin-bottom: 12px;
}

.career-description h4 {
    font-family: 'Satoshi-Bold';
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-top: 20px;
    margin-bottom: 10px;
}

.career-description ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.career-description li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
}

.career-description li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--green-primary);
}

.career-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.career-location {
    font-size: 16px;
    color: var(--gray-light);
}

.career-arrow {
    width: 28px;
    height: 28px;
    color: var(--green-primary);
}

/* ========== CAREERS MODAL ========== */
.careers-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.careers-modal.active {
    opacity: 1;
    visibility: visible;
}

.careers-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.careers-modal-content {
    position: relative;
    background: var(--black);
    border: 1px solid var(--gray-mid);
    border-radius: 16px;
    padding: 48px;
    max-width: 560px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.careers-modal.active .careers-modal-content {
    transform: translateY(0);
}

.careers-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--gray-mid);
    transition: color 0.2s;
}

.careers-modal-close:hover {
    color: var(--white);
}

.careers-modal-close svg {
    width: 24px;
    height: 24px;
}

.careers-modal-content h2 {
    font-family: 'Satoshi-Bold';
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
}

.careers-modal-content .form-group input[readonly] {
    color: var(--green-primary);
    border-color: var(--green-primary);
    cursor: default;
}

.file-upload {
    position: relative;
    border: 1px dashed var(--gray-mid);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: border-color 0.2s;
    cursor: pointer;
}

.file-upload:hover {
    border-color: var(--green-primary);
}

.file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-text {
    color: var(--gray-mid);
    font-size: 15px;
}

.careers-modal-content textarea {
    width: 100%;
    background: #d9d9d9;
    border: none;
    border-radius: 16px;
    padding: 24px;
    font-size: 16px;
    color: var(--black);
    resize: none;
    height: 120px;
    outline: none;
    font-family: inherit;
    margin-top: 12px;
}

.careers-modal-content textarea::placeholder {
    color: var(--gray-mid);
}

/* ========== CONTACT SECTION ========== */
.contact {
    background: var(--black);
    padding: 100px 48px 120px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.contact-form h2 {
    font-family: 'Satoshi-Bold';
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-form h2 img {
    height: 26px;
    width: auto;
}

.form-group {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: var(--white);
}

.form-group input,
.form-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-mid);
    padding: 16px 0;
    font-size: 16px;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--green-primary);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("assets/DropDownArrow.png");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 20px auto;
}

.form-group select option {
    background: var(--black);
    color: var(--white);
}

.form-group textarea {
    width: 100%;
    background: #d9d9d9;
    border: none;
    border-radius: 16px;
    padding: 24px;
    font-size: 16px;
    color: var(--black);
    resize: none;
    height: 160px;
    outline: none;
    font-family: inherit;
    margin-top: 12px;
}

.submit-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s;
    margin-top: 16px;
}

.submit-btn img {
    width: 100%;
    height: auto;
}

.submit-btn:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.contact-visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.contact-visual img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* ========== FOOTER ========== */
footer {
    display: grid;
    justify-content: center;
    align-items: center;
    height: 100px;
}

footer p {
    color: #494949;
}

footer span {
    color: #00B86A;
}

/* ========== RESPONSIVE - LARGE DESKTOP (max-width: 1300px) ========== */
@media (max-width: 1300px) {
    .about-content {
        grid-template-columns: 380px 1fr;
        gap: 60px;
    }

    .about-gradient-img {
        
    }

    .about-3d-icon {
        left: 80px;
        width: 85px;
    }
}

/* ========== RESPONSIVE - TABLET (max-width: 1100px) ========== */
@media (max-width: 1100px) {
    nav {
        padding: 20px 32px;
    }

    .nav-links .contact-btn img {
        height: 46px;
    }

    .hero {
        padding: 100px 32px 80px;
    }

    .about,
    .services,
    .careers,
    .contact {
        padding: 80px 32px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text {
        max-width: 500px;
    }

    .about-visual {
        
        max-width: 600px;
    }

    .about-gradient-img {
      
    }

    .about-3d-icon {
        left: -20px;
        
        width: 75px;
    }

    .about-topo-img {
        top: 140px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-visual {
        order: -1;
    }

    .contact-visual img {
        max-height: 450px;
    }

    /* Service Page */
    .service-page {
        padding: 80px 40px 0;
    }

    .service-content {
        gap: 50px;
    }

    .service-text h1 {
        font-size: 44px;
    }
}

/* ========== RESPONSIVE - TABLET SMALL (max-width: 900px) ========== */
@media (max-width: 900px) {
    .hero h1 {
        font-size: clamp(36px, 6vw, 60px);
    }

    .hero-tagline {
        position: relative;
        bottom: auto;
        left: auto;
        text-align: center;
        margin-top: 50px;
    }

    .about-text h2,
    .services-header h2,
    .careers-header h2,
    .contact-form h2 {
        font-size: 40px;
    }

    .services-header {
        flex-direction: column;
        gap: 24px;
    }

    .service-card {
        flex: 0 0 290px;
    }

    .career-card {
        flex: 0 0 calc((100% - 24px) / 2);
        height: 380px;
    }

    .career-title {
        font-size: 22px;
    }

    .career-description {
        font-size: 13px;
    }

    /* Service Page */
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-text {
        text-align: left;
    }

    .service-text h1 {
        font-size: 38px;
    }

    .service-list {
        padding-top: 0;
    }
}

/* ========== RESPONSIVE - MOBILE (max-width: 768px) ========== */
@media (max-width: 768px) {
    nav {
        padding: 16px 20px;
    }

    .nav-links {
        display: none;
    }

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

    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: clamp(30px, 8vw, 44px);
        margin-bottom: 32px;
    }

    .hero-cta img {
        height: 44px;
    }

    .hero-tagline {
        font-size: 17px;
        margin-top: 40px;
    }

    .about,
    .services,
    .careers,
    .contact {
        padding: 60px 20px;
    }

    .about {
        padding-bottom: 40px;
    }
    
    .about-content {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .about-text {
        width: 100%;
    }

    .about-visual {
        width: 100%;
        margin-top: 40px;
        justify-content: center;
        min-height: auto;
    }

    .about-text h2,
    .services-header h2,
    .careers-header h2,
    .contact-form h2 {
        font-size: 32px;
    }

    .about-text p,
    .services-header p,
    .careers-header p {
        font-size: 16px;
    }

    .about-gradient-img {
        max-width: 100%;
    }

    .about-3d-icon {
        width: 75px;
        top: -45px;
        left: -135px;
        transform: translateX(120px);
    }

    .about-topo-img {
        width: 100%;
    }

   

    .services-nav {
        display: none;
    }

    .service-card {
        flex: 0 0 260px;
    }

    .carousel-dots span {
        width: 8px;
        height: 8px;
    }

    .career-card {
        flex: 0 0 85%;
        height: 340px;
        padding: 24px;
    }

    .career-title {
        font-size: 20px;
    }

    .career-company {
        font-size: 13px;
    }

    .career-description {
        font-size: 13px;
    }

    .career-description h4 {
        font-size: 14px;
    }

    .careers-dots span {
        width: 8px;
        height: 8px;
    }

    .contact-form h2 {
        flex-wrap: wrap;
        gap: 14px;
    }

    .contact-form h2 img {
        height: 20px;
    }

    .contact-visual {
        display: none;
    }

    /* Back Button */
    .back-btn {
        top: 20px;
        left: 20px;
        width: 36px;
        height: 36px;
    }

    .back-btn svg {
        width: 24px;
        height: 24px;
    }

    /* Service Page */
    .service-page {
        padding: 70px 24px 0;
    }

    .service-text h1 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .service-intro,
    .service-point {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .service-item {
        font-size: 16px;
        padding: 16px 0;
    }

    .service-cta {
        margin-top: 24px;
    }

    .btn-primary {
        font-size: 15px;
        padding: 12px 28px;
    }

    .btn-icon {
        width: 40px;
        height: 40px;
    }

    .service-hero-image {
        margin-top: 40px;
    }
}

/* ========== RESPONSIVE - SMALL MOBILE (max-width: 480px) ========== */
@media (max-width: 480px) {
    nav {
        padding: 14px 16px;
    }

    .nav-links .contact-btn img {
        height: 36px;
    }

    .hero {
        padding: 90px 16px 50px;
        display: grid;
    }

    .hero-bg{
    left: -375px;
    }

    .hero-content {
    align-self: end;
    margin-top: 160px;
     }

    .hero h1 {
        font-size: clamp(26px, 7.5vw, 36px);
    }

    .hero-cta img {
        height: 40px;
    }

    .hero-tagline {
        font-size: 25px;
        align-self: end;
    }

    .about,
    .services,
    .careers,
    .contact {
        padding: 50px 16px;
    }

    .about {
        padding-bottom: 30px;
    }

    .about-text h2,
    .services-header h2,
    .careers-header h2,
    .contact-form h2 {
        font-size: 28px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text {
        width: 100%;
    }

    .about-visual {
        width: 100%;
        min-height: auto;
    }

    .about-gradient-img {
        width: 100%;
    }

    .about-3d-icon {
        width: 70px;
        top: -40px;
        right: 50%;
        transform: translateX(110px);
    }

    .about-topo-img {
        width: 100%;
    }

    .service-card {
        flex: 0 0 240px;
    }

    .career-card {
        flex: 0 0 90%;
        height: 320px;
        padding: 20px;
    }

    .career-title {
        font-size: 18px;
    }

    .career-company {
        font-size: 12px;
    }

    .career-description {
        font-size: 12px;
    }

    .career-description h4 {
        font-size: 13px;
    }

    .career-location {
        font-size: 14px;
    }

    .career-arrow {
        width: 24px;
        height: 24px;
    }

    /* Modal responsive */
    .careers-modal-content {
        padding: 32px 24px;
        width: 95%;
        max-height: 85vh;
    }

    .careers-modal-content h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .careers-modal-content textarea {
        height: 100px;
        padding: 18px;
    }

    .file-upload {
        padding: 18px;
    }

    .form-group {
        margin-bottom: 24px;
    }

    .form-group textarea {
        height: 130px;
        padding: 18px;
    }

    /* Service Page */
    .service-page {
        padding: 60px 20px 0;
    }

    .service-text h1 {
        font-size: 28px;
    }

    .service-intro,
    .service-point {
        font-size: 14px;
    }

    .service-item {
        font-size: 14px;
        letter-spacing: 0.3px;
    }
}