/* =========================================================
   AURA TECHS
   PREMIUM M₹₹₹AIN + APPLY PAGE STYLE
   Clean • Luxury • Responsive
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&display=swap');

/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #050505;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;

    /* PREMIUM TECH BACKGROUND */
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.30),
            rgba(0, 0, 0, 0.30)
        ),
        url("images/background.png");

    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

    font-size: 16px;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(212, 175, 55, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(212, 175, 55, 0.04),
            transparent 30%
        );
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================================
   COMMON
========================================================= */

.section {
    width: 100%;
    padding: 120px 7%;
    position: relative;
    background: transparent;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 65px;
    text-align: center;
}

.section-label {
    display: inline-block;
    color: #d4af37;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
}

.section-heading h2,
.about-content h2,
.contact-info h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -2px;
    font-weight: 800;
}

.section-heading h2 span,
.about-content h2 span,
.contact-info h2 span {
    color: #d4af37;
}

.section-heading p {
    color: #858585;
    font-size: 17px;
    line-height: 1.7;
    margin-top: 20px;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(5, 5, 5, 0.72);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition: 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.94);
    border-bottom-color: rgba(255, 255, 255, 0.07);
}

.nav-container {
    width: min(1180px, 92%);
    min-height: 78px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.brand-text strong {
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.brand-text span {
    color: #777;
    font-size: 9px;
    letter-spacing: 1.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: #a0a0a0;
    font-size: 15px;
    font-weight: 500;
    transition: 0.25s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-cta {
    padding: 12px 22px;
    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 8px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s ease;
}

.nav-cta:hover {
    background: #d4af37;
    color: #080808;
}

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid #292929;
    border-radius: 9px;

    background: #111;
    color: #ffffff;

    font-size: 21px;
    cursor: pointer;
}

/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;

    padding: 150px 7% 100px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.22),
            rgba(0, 0, 0, 0.22)
        );
}

.hero-container {
    width: min(1180px, 100%);
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 0.9fr;

    align-items: center;
    gap: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-block;

    padding: 9px 14px;

    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50px;

    color: #d4af37;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 25px;
}

.hero h1 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(52px, 7vw, 90px);
    line-height: 0.98;

    letter-spacing: -4px;
    font-weight: 800;
}

.hero h1 span {
    color: #d4af37;
}

.hero-description {
    max-width: 550px;
    margin-top: 28px;

    color: #8c8c8c;

    font-size: 18px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-top: 35px;
}

.btn {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 0 23px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.25s ease;
}

.btn-primary {
    background: #d4af37;
    color: #080808;
}

.btn-primary:hover {
    background: #e5c653;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid #303030;
    color: #ffffff;
    background: rgba(12, 12, 12, 0.75);
}

.btn-outline:hover {
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 45px;
    margin-top: 55px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat strong {
    font-family: "Manrope", sans-serif;
    font-size: 28px;
}

.stat span {
    color: #666;
    font-size: 12px;
}

/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.visual-orbit {
    position: absolute;

    border: 1px solid rgba(212, 175, 55, 0.09);
    border-radius: 50%;
}

.orbit-one {
    width: 450px;
    height: 450px;
}

.orbit-two {
    width: 330px;
    height: 330px;
}

.tech-card {
    width: 350px;

    padding: 25px;

    position: relative;
    z-index: 2;

    border: 1px solid #282828;
    border-radius: 15px;

    background: rgba(12, 12, 12, 0.88);

    box-shadow: 0 30px 80px rgba(0,0,0,0.55);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.card-top {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #777;
    font-size: 10px;
    letter-spacing: 1.5px;
}

.status-dot {
    width: 7px;
    height: 7px;

    background: #d4af37;
    border-radius: 50%;
}

.code-window {
    margin-top: 30px;
    padding: 23px;

    border-radius: 10px;

    background: #080808;
    color: #999;

    font-family: monospace;
    font-size: 14px;
    line-height: 1.5;
}

.code-purple {
    color: #9a7cff;
}

.code-gold {
    color: #d4af37;
}

.code-white {
    color: #e7e7e7;
}

.card-footer {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.card-footer span {
    padding: 6px 9px;

    border: 1px solid #292929;
    border-radius: 5px;

    color: #777;
    font-size: 9px;
}

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 12px 15px;

    background: rgba(17, 17, 17, 0.9);
    border: 1px solid #282828;

    border-radius: 9px;

    z-index: 4;

    box-shadow: 0 15px 40px rgba(0,0,0,0.4);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.floating-card strong {
    display: block;
    font-size: 12px;
}

.floating-card small {
    display: block;

    margin-top: 3px;

    color: #666;
    font-size: 9px;
}

.float-icon {
    color: #d4af37;
}

.floating-one {
    top: 80px;
    left: 0;
}

.floating-two {
    right: 0;
    bottom: 75px;
}

/* =========================================================
   SERVICES
========================================================= */

.services {
    background: rgba(8, 8, 8, 0.82);
}

.services-grid {
    width: min(1180px, 100%);
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.service-card {
    min-height: 310px;

    padding: 28px;

    background: rgba(13, 13, 13, 0.88);

    border: 1px solid #202020;
    border-radius: 13px;

    position: relative;

    transition: 0.3s ease;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212,175,55,0.4);
}

.service-number {
    color: #555;
    font-size: 11px;
    letter-spacing: 1px;
}

.service-icon {
    margin-top: 55px;
    font-size: 32px;
}

.service-card h3 {
    margin-top: 20px;

    font-family: "Manrope", sans-serif;
    font-size: 20px;
}

.service-card p {
    margin-top: 12px;

    color: #707070;
    font-size: 14px;
    line-height: 1.65;
}

.service-line {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 25px;

    height: 1px;
    background: #222;
}

/* =========================================================
   ABOUT
========================================================= */

.about {
    background: rgba(5, 5, 5, 0.78);
}

.about-grid {
    width: min(1180px, 100%);
    margin: auto;

    display: grid;
    grid-template-columns: 0.9fr 1fr;

    gap: 100px;
    align-items: center;
}

.about-content p {
    max-width: 570px;

    margin-top: 22px;

    color: #808080;

    font-size: 16px;
    line-height: 1.8;
}

.about-content .btn {
    margin-top: 28px;
}

.about-visual {
    min-height: 500px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-ring {
    position: absolute;

    border: 1px solid rgba(212,175,55,0.13);
    border-radius: 50%;
}

.ring-one {
    width: 350px;
    height: 350px;
}

.ring-two {
    width: 240px;
    height: 240px;
}

.about-center {
    width: 150px;
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;

    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 50%;

    background: rgba(13, 13, 13, 0.92);

    position: relative;
    z-index: 2;
}

.about-center span {
    color: #d4af37;

    font-family: "Manrope";
    font-size: 35px;
    font-weight: 800;
}

.about-center strong {
    font-size: 14px;
    letter-spacing: 3px;
}

.about-center small {
    margin-top: 5px;

    color: #666;
    font-size: 8px;
    letter-spacing: 2px;
}

.value-card {
    position: absolute;

    width: 210px;
    padding: 16px;

    background: rgba(14, 14, 14, 0.92);

    border: 1px solid #242424;
    border-radius: 10px;

    backdrop-filter: blur(8px);
}

.value-card strong {
    font-size: 13px;
}

.value-card p {
    margin-top: 7px;

    color: #666;
    font-size: 10px;
    line-height: 1.5;
}

.value-one {
    top: 25px;
    left: 0;
}

.value-two {
    right: 0;
    top: 190px;
}

.value-three {
    left: 35px;
    bottom: 20px;
}
/* =========================================================
   PORTFOLIO
========================================================= */

.portfolio {
    background: rgba(8, 8, 8, 0.82);
}

.portfolio-grid {
    width: min(1100px, 100%);
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.project-card {
    overflow: hidden;

    background: rgba(13, 13, 13, 0.90);

    border: 1px solid #222;
    border-radius: 13px;

    transition: 0.3s ease;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212,175,55,0.35);
}

.project-media {
    height: 220px;

    position: relative;
    overflow: hidden;

    background: #050505;
}

.project-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-badge {
    position: absolute;

    top: 13px;
    left: 13px;

    padding: 6px 9px;

    background: rgba(5,5,5,0.85);

    border: 1px solid #333;
    border-radius: 5px;

    color: #d4af37;

    font-size: 9px;
    letter-spacing: 1px;
}

.project-content {
    padding: 23px;
}

.project-category {
    color: #d4af37;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.project-content h3 {
    margin-top: 9px;

    font-family: "Manrope";
    font-size: 21px;
}

.project-content p {
    margin-top: 10px;

    color: #6f6f6f;

    font-size: 13px;
    line-height: 1.65;
}

.project-content a {
    display: inline-flex;

    gap: 9px;
    margin-top: 20px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;
}

.project-content a:hover {
    color: #d4af37;
}


/* =========================================================
   INTERNSHIP
========================================================= */

.internship {
    background: rgba(5, 5, 5, 0.82);
}

.internship-grid {
    width: min(1100px, 100%);
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.internship-card {
    padding: 27px;

    min-height: 300px;

    background: rgba(12, 12, 12, 0.90);

    border: 1px solid #222;
    border-radius: 13px;

    transition: 0.3s ease;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.internship-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212,175,55,0.4);
}

.course-number {
    color: #555;
    font-size: 11px;
}

.course-icon {
    width: 52px;
    height: 52px;

    margin-top: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 10px;

    color: #d4af37;

    font-family: monospace;
    font-weight: 700;

    font-size: 17px;
}

.internship-card h3 {
    margin-top: 20px;

    font-family: "Manrope";
    font-size: 19px;
}

.internship-card p {
    margin-top: 10px;

    color: #707070;

    font-size: 13px;
    line-height: 1.65;
}

.course-duration {
    display: inline-block;

    margin-top: 18px;

    color: #d4af37;

    font-size: 10px;
    font-weight: 600;
}

.internship-action {
    text-align: center;
    margin-top: 45px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    background: rgba(8, 8, 8, 0.84);
}

.contact-container {
    width: min(1100px, 100%);
    margin: auto;

    display: grid;
    grid-template-columns: 0.8fr 1fr;

    gap: 90px;

    align-items: start;
}

.contact-info p {
    margin-top: 22px;

    max-width: 450px;

    color: #777;

    font-size: 16px;
    line-height: 1.7;
}

.contact-details {
    margin-top: 35px;

    display: flex;
    flex-direction: column;

    gap: 22px;
}

.contact-item {
    display: flex;
    align-items: center;

    gap: 14px;
}

.contact-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #292929;
    border-radius: 8px;

    color: #d4af37;

    flex-shrink: 0;
}

.contact-item small {
    display: block;

    color: #555;

    font-size: 10px;

    margin-bottom: 4px;
}

.contact-item strong {
    font-size: 13px;
    font-weight: 500;
}

.contact-form {
    padding: 30px;

    background: rgba(13, 13, 13, 0.92);

    border: 1px solid #242424;
    border-radius: 13px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #858585;

    font-size: 11px;
}

.form-group input,
.form-group textarea {
    width: 100%;

    border: 1px solid #292929;
    outline: none;

    background: #080808;
    color: #ffffff;

    border-radius: 8px;

    padding: 13px;

    font-size: 14px;

    transition: 0.2s ease;
}

.form-group input {
    height: 48px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #444;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #d4af37;

    box-shadow:
        0 0 0 3px rgba(212,175,55,0.05);
}

.form-submit {
    width: 100%;

    height: 50px;

    border: none;
    border-radius: 8px;

    background: #d4af37;
    color: #080808;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.25s ease;
}

.form-submit:hover {
    background: #e5c653;

    transform: translateY(-1px);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: rgba(3, 3, 3, 0.94);

    border-top: 1px solid #181818;

    padding: 70px 7% 25px;
}

.footer-container {
    width: min(1180px, 100%);
    margin: auto;

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;

    gap: 10px;
}

.footer-logo img {
    width: 35px;
    height: 35px;

    object-fit: contain;
}

.footer-logo strong {
    font-family: "Manrope";
    font-size: 18px;
}

.footer-brand p {
    margin-top: 13px;

    color: #d4af37;
    font-size: 12px;
}

.footer-brand > span {
    display: block;

    max-width: 250px;

    margin-top: 9px;

    color: #555;

    font-size: 11px;
    line-height: 1.6;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 7px;
    font-size: 12px;
}

.footer-column a {
    color: #5f5f5f;

    font-size: 11px;

    transition: 0.2s ease;
}

.footer-column a:hover {
    color: #d4af37;
}

.footer-bottom {
    width: min(1180px, 100%);
    margin: 55px auto 0;

    padding-top: 20px;

    border-top: 1px solid #181818;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #444;

    font-size: 10px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-btn {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 12px 16px;

    background: rgba(17,17,17,0.92);

    border: 1px solid #292929;

    border-radius: 50px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.4);

    transition: 0.25s ease;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.whatsapp-btn span {
    font-size: 16px;
}

.whatsapp-btn strong {
    font-size: 11px;
}

.whatsapp-btn:hover {
    border-color: #d4af37;
    transform: translateY(-2px);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   APPLY PAGE
========================================================= */

.apply-page {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 100px 20px 60px;

    background:
        linear-gradient(
            rgba(0,0,0,0.25),
            rgba(0,0,0,0.25)
        ),
        radial-gradient(
            circle at 50% 20%,
            rgba(212,175,55,0.07),
            transparent 35%
        );
}

.apply-box {
    width: min(580px, 100%);

    padding: 48px;

    background: rgba(13,13,13,0.94);

    border: 1px solid #242424;

    border-radius: 16px;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.55);

    position: relative;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.apply-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 75px;
    height: 3px;

    transform: translateX(-50%);

    background: #d4af37;

    border-radius: 0 0 5px 5px;
}

.apply-box h1 {
    font-family: "Manrope", sans-serif;

    text-align: center;

    font-size: 36px;

    line-height: 1.15;

    letter-spacing: -1px;

    margin-bottom: 12px;
}

.apply-box p {
    max-width: 420px;

    margin: 0 auto 32px;

    text-align: center;

    color: #777;

    font-size: 14px;
    line-height: 1.6;
}

#applicationForm {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

#applicationForm input,
#applicationForm select,
#applicationForm textarea {
    width: 100%;

    border: 1px solid #292929;

    outline: none;

    background: #080808;
    color: #ffffff;

    border-radius: 8px;

    font-size: 14px;

    transition: 0.2s ease;
}

#applicationForm input,
#applicationForm select {
    height: 52px;
    padding: 0 15px;
}

#applicationForm textarea {
    min-height: 120px;

    padding: 14px 15px;

    resize: vertical;

    line-height: 1.6;
}

#applicationForm input::placeholder,
#applicationForm textarea::placeholder {
    color: #444;
}

#applicationForm input:focus,
#applicationForm select:focus,
#applicationForm textarea:focus {
    border-color: #d4af37;

    background: #0b0b0b;

    box-shadow:
        0 0 0 3px rgba(212,175,55,0.05);
}

#applicationForm select {
    cursor: pointer;

    appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #777 50%),
        linear-gradient(135deg, #777 50%, transparent 50%);

    background-position:
        calc(100% - 18px) 22px,
        calc(100% - 13px) 22px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}

#applicationForm select option {
    background: #101010;
    color: #ffffff;
}

#applicationForm button {
    width: 100%;

    height: 52px;

    margin-top: 5px;

    border: none;
    border-radius: 8px;

    background: #d4af37;
    color: #080808;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.25s ease;
}

#applicationForm button:hover {
    background: #e5c653;

    transform: translateY(-1px);

    box-shadow:
        0 10px 25px rgba(212,175,55,0.12);
}

#applicationForm button:disabled {
    opacity: 0.6;

    cursor: not-allowed;

    transform: none;

    box-shadow: none;
}

/* =========================================================
   AURA TECHS — FINAL RESPONSIVE SYSTEM
   Tablet • Mobile • Small Phone
========================================================= */


/* =========================================================
   TABLET — 1024px
========================================================= */

@media (max-width: 1024px) {

    body {
        background-attachment: scroll;
    }

    /* NAVBAR */
    .nav-container {
        width: 92%;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    /* HERO */
    .hero {
        padding: 130px 5% 80px;
    }

    .hero-container {
        grid-template-columns: 1fr 0.8fr;
        gap: 45px;
    }

    .hero h1 {
        font-size: clamp(48px, 7vw, 72px);
        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 16px;
    }

    /* HERO VISUAL */
    .hero-visual {
        min-height: 430px;
    }

    .orbit-one {
        width: 390px;
        height: 390px;
    }

    .orbit-two {
        width: 290px;
        height: 290px;
    }

    .tech-card {
        width: 310px;
    }

    .floating-one {
        left: -10px;
    }

    .floating-two {
        right: -10px;
    }

    /* COMMON SECTIONS */
    .section {
        padding: 90px 5%;
    }

    .section-heading {
        margin-bottom: 50px;
    }

    .section-heading h2,
    .about-content h2,
    .contact-info h2 {
        font-size: clamp(38px, 5vw, 55px);
    }

    /* SERVICES */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ABOUT */
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 55px;
    }

    .about-visual {
        min-height: 430px;
    }

    /* PORTFOLIO */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* INTERNSHIP */
    .internship-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CONTACT */
    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    /* FOOTER */
    .footer {
        padding: 60px 5% 25px;
    }

    .footer-container {
        grid-template-columns: 1.3fr 1fr 1fr;
        gap: 35px;
    }

    /* APPLY */
    .apply-page {
        padding: 110px 25px 50px;
    }

    .apply-box {
        width: min(560px, 100%);
        padding: 42px;
    }
}

/* =========================================================
   MOBILE — 768px
========================================================= */

@media (max-width: 768px) {

    html {
        font-size: 15px;
    }

    body {
        background-attachment: scroll;
        background-position: center top;
        background-size: cover;
    }


    /* =====================================================
       NAVBAR
    ===================================================== */

    .navbar {
        background: rgba(5, 5, 5, 0.92);
    }

    .nav-container {
        width: 92%;
        min-height: 68px;
    }

    .brand img {
        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: 18px;
    }

    .brand-text span {
        font-size: 8px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .hero {
        min-height: auto;
        padding: 115px 20px 70px;
        text-align: center;
    }

    .hero-container {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-content {
        width: 100%;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 1.5px;
        padding: 8px 12px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: clamp(40px, 11vw, 58px);
        line-height: 1;
        letter-spacing: -2.5px;
    }

    .hero-description {
        max-width: 500px;
        margin: 22px auto 0;
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-buttons {
        width: 100%;
        max-width: 390px;
        margin: 28px auto 0;

        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
    }

    .stat strong {
        font-size: 23px;
    }

    .stat span {
        font-size: 10px;
    }


    /* =====================================================
       HERO VISUAL
    ===================================================== */

    .hero-visual {
        min-height: 360px;
        width: 100%;
    }

    .orbit-one {
        width: 320px;
        height: 320px;
    }

    .orbit-two {
        width: 240px;
        height: 240px;
    }

    .tech-card {
        width: min(320px, 90%);
        padding: 20px;
    }

    .code-window {
        margin-top: 22px;
        padding: 18px;
        font-size: 12px;
    }

    .floating-card {
        padding: 10px 12px;
    }

    .floating-one {
        top: 25px;
        left: 0;
    }

    .floating-two {
        right: 0;
        bottom: 25px;
    }


    /* =====================================================
       COMMON SECTION
    ===================================================== */

    .section {
        padding: 75px 20px;
    }

    .section-heading {
        max-width: 600px;
        margin-bottom: 42px;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }

    .section-heading h2,
    .about-content h2,
    .contact-info h2 {
        font-size: clamp(32px, 9vw, 46px);
        line-height: 1.08;
        letter-spacing: -1.5px;
    }

    .section-heading p {
        font-size: 14px;
        line-height: 1.7;
        margin-top: 15px;
    }


    /* =====================================================
       SERVICES
    ===================================================== */

    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card {
        min-height: 270px;
        padding: 24px;
    }

    .service-icon {
        margin-top: 42px;
    }

    .service-card h3 {
        font-size: 19px;
    }

    .service-card p {
        font-size: 13px;
    }


    /* =====================================================
       ABOUT
    ===================================================== */

    .about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-content {
        text-align: center;
    }

    .about-content p {
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
        font-size: 14px;
    }

    .about-visual {
        min-height: 400px;
    }

    .about-center {
        width: 130px;
        height: 130px;
    }

    .about-center span {
        font-size: 30px;
    }

    .value-card {
        width: 180px;
        padding: 13px;
    }

    .value-one {
        left: 0;
        top: 20px;
    }

    .value-two {
        right: 0;
        top: 165px;
    }

    .value-three {
        left: 20px;
        bottom: 15px;
    }


    /* =====================================================
       PORTFOLIO
    ===================================================== */

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .project-media {
        height: 210px;
    }

    .project-content {
        padding: 20px;
    }


    /* =====================================================
       INTERNSHIP
    ===================================================== */

    .internship-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .internship-card {
        min-height: 270px;
        padding: 24px;
    }

    .course-icon {
        margin-top: 38px;
    }


    /* =====================================================
       CONTACT
    ===================================================== */

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info p {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        font-size: 14px;
    }

    .contact-details {
        align-items: center;
    }

    .contact-item {
        width: min(400px, 100%);
        text-align: left;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer {
        padding: 55px 20px 22px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-brand > span {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-column {
        text-align: center;
    }

    .footer-bottom {
        margin-top: 40px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }


    /* =====================================================
       WHATSAPP
    ===================================================== */

    .whatsapp-btn {
        right: 15px;
        bottom: 15px;
        padding: 11px 14px;
    }


    /* =====================================================
       APPLY PAGE
    ===================================================== */

    .apply-page {
        min-height: 100vh;
        padding: 95px 16px 40px;
        align-items: flex-start;
    }

    .apply-box {
        width: 100%;
        padding: 35px 22px;
        border-radius: 14px;
    }

    .apply-box h1 {
        font-size: 30px;
    }

    .apply-box p {
        font-size: 13px;
        margin-bottom: 25px;
    }

    #applicationForm {
        gap: 12px;
    }

    #applicationForm input,
    #applicationForm select {
        height: 50px;
        font-size: 16px;
    }

    #applicationForm textarea {
        min-height: 110px;
        font-size: 16px;
    }
}


/* =========================================================
   SMALL PHONE — 480px
========================================================= */

@media (max-width: 480px) {

    html {
        font-size: 14px;
    }

    /* NAV */
    .nav-container {
        width: 94%;
    }

    .brand {
        gap: 8px;
    }

    .brand img {
        width: 34px;
        height: 34px;
    }

    .brand-text strong {
        font-size: 17px;
    }

    .brand-text span {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 19px;
    }


    /* HERO */
    .hero {
        padding: 105px 16px 55px;
    }

    .hero-container {
        gap: 40px;
    }

    .hero h1 {
        font-size: clamp(34px, 12vw, 48px);
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-buttons {
        max-width: 100%;
    }

    .btn {
        min-height: 48px;
        font-size: 13px;
        padding: 0 18px;
    }

    .hero-stats {
        gap: 20px;
        margin-top: 35px;
    }

    .stat strong {
        font-size: 20px;
    }

    .stat span {
        font-size: 9px;
    }


    /* HERO VISUAL */
    .hero-visual {
        min-height: 310px;
    }

    .orbit-one {
        width: 280px;
        height: 280px;
    }

    .orbit-two {
        width: 210px;
        height: 210px;
    }

    .tech-card {
        width: min(290px, 92%);
        padding: 17px;
    }

    .code-window {
        padding: 15px;
        font-size: 10px;
    }

    .floating-card {
        padding: 8px 10px;
    }

    .floating-card strong {
        font-size: 10px;
    }

    .floating-card small {
        font-size: 8px;
    }

    .floating-one {
        left: -3px;
        top: 15px;
    }

    .floating-two {
        right: -3px;
        bottom: 15px;
    }


    /* SECTION */
    .section {
        padding: 60px 16px;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .section-heading p {
        font-size: 13px;
    }


    /* SERVICES */
    .service-card {
        min-height: 250px;
        padding: 21px;
    }

    .service-icon {
        margin-top: 35px;
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 12.5px;
    }


    /* ABOUT */
    .about-grid {
        gap: 30px;
    }

    .about-content p {
        font-size: 13px;
    }

    .about-visual {
        min-height: 340px;
    }

    .ring-one {
        width: 270px;
        height: 270px;
    }

    .ring-two {
        width: 190px;
        height: 190px;
    }

    .about-center {
        width: 115px;
        height: 115px;
    }

    .about-center span {
        font-size: 26px;
    }

    .about-center strong {
        font-size: 12px;
    }

    .value-card {
        width: 145px;
        padding: 11px;
    }

    .value-card strong {
        font-size: 11px;
    }

    .value-card p {
        font-size: 8px;
    }

    .value-one {
        top: 0;
    }

    .value-two {
        top: 130px;
    }

    .value-three {
        bottom: 0;
        left: 5px;
    }


    /* PORTFOLIO */
    .project-media {
        height: 190px;
    }

    .project-content {
        padding: 18px;
    }

    .project-content h3 {
        font-size: 19px;
    }

    .project-content p {
        font-size: 12px;
    }


    /* INTERNSHIP */
    .internship-card {
        min-height: 250px;
        padding: 21px;
    }

    .internship-card h3 {
        font-size: 18px;
    }

    .internship-card p {
        font-size: 12px;
    }


    /* CONTACT */
    .contact-form {
        padding: 20px 16px;
    }

    .contact-info p {
        font-size: 13px;
    }

    .contact-item strong {
        font-size: 12px;
    }


    /* FOOTER */
    .footer {
        padding: 45px 16px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-column {
        gap: 9px;
    }

    .footer-bottom {
        font-size: 9px;
    }


    /* WHATSAPP */
    .whatsapp-btn {
        right: 12px;
        bottom: 12px;
        padding: 10px 12px;
    }

    .whatsapp-btn strong {
        font-size: 10px;
    }


    /* APPLY */
    .apply-page {
        padding: 90px 12px 30px;
    }

    .apply-box {
        padding: 30px 17px;
    }

    .apply-box h1 {
        font-size: 27px;
    }

    .apply-box p {
        font-size: 12px;
    }
}


/* =========================================================
   VERY SMALL PHONE — 360px
========================================================= */

@media (max-width: 360px) {

    .hero {
        padding-top: 95px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-stats {
        gap: 14px;
    }

    .stat strong {
        font-size: 18px;
    }

    .stat span {
        font-size: 8px;
    }

    .hero-visual {
        min-height: 280px;
    }

    .orbit-one {
        width: 245px;
        height: 245px;
    }

    .orbit-two {
        width: 185px;
        height: 185px;
    }

    .tech-card {
        width: 265px;
    }

    .floating-card {
        transform: scale(0.85);
    }

    .section {
        padding: 50px 14px;
    }

    .section-heading h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 27px;
    }

    .service-card,
    .internship-card {
        padding: 18px;
    }

    .project-content {
        padding: 16px;
    }

    .apply-page {
        padding-left: 10px;
        padding-right: 10px;
    }

    .apply-box {
        padding: 27px 14px;
    }

    .apply-box h1 {
        font-size: 25px;
    }
}


/* =========================================================
   IMPORTANT — KEEP YOUR REAL BACKGROUND PATH
========================================================= */

body {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.30),
            rgba(0, 0, 0, 0.30)
        ),
        url("images/background.png");

    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}


/* MOBILE BACKGROUND */
@media (max-width: 768px) {

    body {
        background-image:
            linear-gradient(
                rgba(0, 0, 0, 0.22),
                rgba(0, 0, 0, 0.22)
            ),
            url("images/background.png");

        background-position: center top;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
}


/* =========================================================
   PREVENT ANY HORIZONTAL OVERFLOW
========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
}

input,
textarea,
select,
button {
    max-width: 100%;
}
