:root {
    --primary: #071b33;
    --secondary: #0b2b4c;
    --deep: #020b24;
    --accent: #ffc107;
    --white: #ffffff;
    --light: #f8fafc;
    --text: #475569;
    --border: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

/* NAVBAR */

.site-header {
    width: 100%;
    background: var(--deep);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-container {
    width: min(1180px, 92%);
    min-height: 86px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    text-decoration: none;
    color: var(--white);
    line-height: 1.1;
}

.brand-name {
    display: block;
    font-size: 24px;
    font-weight: 900;
}

.brand-name b {
    color: var(--accent);
}

.brand-role {
    display: block;
    color: #cbd5e1;
    font-size: 14px;
    margin-top: 5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    position: relative;
    padding: 30px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    content: "";
    width: 100%;
    height: 3px;
    background: var(--accent);
    position: absolute;
    left: 0;
    bottom: 18px;
    border-radius: 30px;
}

.hire-btn {
    background: var(--accent);
    color: var(--deep);
    padding: 13px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(255,193,7,.25);
}

.menu-toggle {
    display: none;
    background: var(--accent);
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    color: var(--deep);
    font-size: 20px;
}

/* HERO */

.hero-section {
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,193,7,.12), transparent 26%),
        linear-gradient(135deg, #020b24 0%, #071b33 45%, #0b2b4c 100%);
    padding: 135px 0 0;
    color: var(--white);
    position: relative;
}

.hero-container {
    width: min(1180px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 50px;
    min-height: 640px;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--accent);
    color: var(--deep);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 900;
    margin-bottom: 26px;
}

.availability span {
    width: 10px;
    height: 10px;
    background: #16a34a;
    border-radius: 50%;
}

.hero-text h1 {
    font-size: clamp(46px, 6vw, 74px);
    font-weight: 950;
    line-height: 1;
    margin-bottom: 18px;
}

.hero-text h2 {
    color: var(--accent);
    font-size: clamp(26px, 3.5vw, 42px);
    line-height: 1.22;
    font-weight: 900;
    margin-bottom: 24px;
}

.hero-text p {
    max-width: 720px;
    color: #e5e7eb;
    font-size: 19px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.btn {
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    transition: .3s ease;
}

.btn-primary {
    background: var(--accent);
    color: var(--deep);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.5);
}

.btn-light {
    background: var(--white);
    color: var(--deep);
}

.btn:hover {
    transform: translateY(-4px);
}

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: .3s ease;
}

.social-icons a:hover {
    background: var(--accent);
    color: var(--deep);
    transform: translateY(-5px);
}

.hero-image {
    height: 640px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.hero-image::before {
    content: "";
    width: 440px;
    height: 440px;
    border: 2px solid rgba(255,193,7,.25);
    border-radius: 50%;
    position: absolute;
    bottom: 65px;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    max-height: 620px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,.45));
}

/* VALUE CARD */

.value-card {
    width: min(1180px, 92%);
    margin: auto;
    background: var(--white);
    color: var(--primary);
    border-radius: 24px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    box-shadow: 0 25px 70px rgba(0,0,0,.2);
    transform: translateY(55px);
    position: relative;
    z-index: 4;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.value-icon {
    min-width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.value-item h4 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 5px;
}

.value-item p {
    font-size: 14px;
    color: #64748b;
}

/* GENERAL SECTIONS */

.section {
    padding: 110px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title h2 {
    color: var(--primary);
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 950;
    margin-bottom: 12px;
}

.section-title p {
    font-size: 18px;
    max-width: 760px;
    margin: auto;
    color: #64748b;
}

/* TECHNOLOGY SECTION */

.tech-section {
    background:
        linear-gradient(rgba(2,11,36,.92), rgba(7,27,51,.95)),
        url("../images/tech-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 110px 0;
}

.tech-header {
    text-align: center;
    margin-bottom: 60px;
}

.tech-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--deep);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 900;
    margin-bottom: 15px;
}

.tech-header h2 {
    color: var(--white);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 950;
    margin-bottom: 15px;
}

.tech-header p {
    color: #dbeafe;
    max-width: 800px;
    margin: auto;
    font-size: 18px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tech-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0,0,0,.15);
    transition: .3s ease;
}

.tech-card:hover {
    transform: translateY(-8px);
}

.tech-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    margin: auto;
}

.tech-card h4 {
    margin-top: 15px;
    color: var(--primary);
    font-size: 18px;
    font-weight: 900;
}

/* PROJECTS */

/* PROJECTS SECTION */

.projects-section {
    background: #ffffff;
    padding: 100px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    transition: .3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    color: #071b33;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 12px;
}

.project-content p {
    color: #64748b;
    margin-bottom: 15px;
}

.project-tech {
    display: inline-block;
    background: #eef6ff;
    color: #075985;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 18px;
}

.project-content a {
    display: block;
    color: #0b5ed7;
    text-decoration: none;
    font-weight: 900;
}

/* Tablet */
@media (max-width: 991px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 190px;
    }
}

/* FOOTER */

.footer {
    background: var(--deep);
    color: var(--white);
    padding: 75px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 35px;
}

.footer h3,
.footer h4 {
    margin-bottom: 15px;
}

.footer p {
    color: #cbd5e1;
}

.footer a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 9px;
}

.footer a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    color: #cbd5e1;
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 45px;
    padding-top: 20px;
}

.floating-whatsapp {
    width: 58px;
    height: 58px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(37,211,102,.45);
    z-index: 9999;
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .nav-container {
        min-height: 76px;
    }

    .menu-toggle {
        display: block;
    }

    .hire-btn {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 76px;
        left: 4%;
        right: 4%;
        background: var(--deep);
        border-radius: 16px;
        padding: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: none;
        box-shadow: 0 20px 50px rgba(0,0,0,.35);
    }

    .nav-menu.show-menu {
        display: flex;
    }

    .nav-menu a {
        width: 100%;
        padding: 13px 10px;
    }

    .nav-menu a::after {
        display: none;
    }

    .hero-section {
        padding-top: 120px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        min-height: auto;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .social-icons {
        justify-content: center;
    }

    .hero-image {
        height: auto;
        margin-top: 20px;
    }

    .hero-image::before {
        width: 310px;
        height: 310px;
        bottom: 40px;
    }

    .hero-image img {
        max-height: 460px;
    }

    .value-card {
        grid-template-columns: repeat(2, 1fr);
        transform: translateY(45px);
    }

    .tech-section {
        background-attachment: scroll;
    }

    .tech-grid,
    .projects-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .brand-name {
        font-size: 20px;
    }

    .brand-role {
        font-size: 12px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-text h2 {
        font-size: 25px;
    }

    .hero-text p,
    .tech-header p {
        font-size: 16px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image img {
        max-height: 360px;
    }

    .hero-image::before {
        width: 250px;
        height: 250px;
    }

    .value-card,
    .tech-grid,
    .projects-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 24px;
    }

    .section,
    .tech-section {
        padding: 80px 0;
    }

    .tech-card {
        padding: 25px 15px;
    }

    .tech-card img {
        width: 65px;
        height: 65px;
    }

    .project-image {
        height: 200px;
    }

    .floating-whatsapp {
        width: 52px;
        height: 52px;
        font-size: 23px;
    }
}

/* Tech Section*/
/* TECHNOLOGY STACK SECTION */

.tech-section {
    background:
        linear-gradient(rgba(2, 11, 36, 0.92), rgba(7, 27, 51, 0.95)),
        url("../images/tech-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.tech-header {
    text-align: center;
    margin-bottom: 60px;
}

.tech-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--deep);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 900;
    margin-bottom: 15px;
}

.tech-header h2 {
    color: var(--white);
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.2;
    font-weight: 950;
    margin-bottom: 15px;
}

.tech-header p {
    color: #e2e8f0;
    max-width: 800px;
    margin: auto;
    font-size: 18px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
}

.tech-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

.tech-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.tech-card h4 {
    margin-top: 15px;
    color: var(--primary);
    font-size: 18px;
    font-weight: 900;
}

/* Tablet */
@media (max-width: 991px) {
    .tech-section {
        padding: 85px 0;
    }

    .tech-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* Mobile */
@media (max-width: 576px) {
    .tech-section {
        padding: 70px 0;
    }

    .tech-header {
        margin-bottom: 35px;
    }

    .tech-header h2 {
        font-size: 30px;
    }

    .tech-header p {
        font-size: 16px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tech-card {
        padding: 24px 15px;
        border-radius: 16px;
    }

    .tech-card img {
        width: 65px;
        height: 65px;
    }

    .tech-card h4 {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .tech-section {
        padding: 70px 0;
    }

    .tech-header {
        margin-bottom: 35px;
    }

    .tech-header p {
        font-size: 16px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tech-card {
        padding: 24px 15px;
        border-radius: 16px;
    }

    .tech-card img {
        width: 65px;
        height: 65px;
    }

    .tech-card h4 {
        font-size: 16px;
    }
}

/* Resume Styles *?

/* RESUME PAGE */

.resume-hero {
    background:
        radial-gradient(circle at 15% 20%, rgba(255,193,7,.12), transparent 28%),
        linear-gradient(135deg, #020b24, #071b33, #0b2b4c);
    color: #fff;
    padding: 150px 0 90px;
}

.resume-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 50px;
    align-items: center;
}

.resume-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--deep);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 900;
    margin-bottom: 20px;
}

.resume-hero h1 {
    font-size: clamp(42px, 6vw, 70px);
    font-weight: 950;
    line-height: 1;
    margin-bottom: 15px;
}

.resume-hero h2 {
    color: var(--accent);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 900;
    margin-bottom: 22px;
}

.resume-hero p {
    color: #e2e8f0;
    font-size: 18px;
    max-width: 760px;
    margin-bottom: 28px;
}

.resume-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.resume-profile-card {
    background: #fff;
    color: var(--primary);
    border-radius: 25px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0,0,0,.25);
}

.resume-profile-card img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    border-radius: 50%;
    background: #f1f5f9;
    margin-bottom: 18px;
}

.resume-profile-card h3 {
    font-size: 24px;
    font-weight: 950;
    margin-bottom: 5px;
}

.resume-profile-card p {
    color: #16a34a;
    font-weight: 900;
    margin-bottom: 18px;
}

.resume-profile-card ul {
    list-style: none;
    text-align: left;
}

.resume-profile-card li {
    margin-bottom: 10px;
    color: #475569;
    font-weight: 600;
}

.resume-profile-card i {
    color: var(--accent);
    margin-right: 8px;
}

.resume-section {
    padding: 100px 0;
    background: #f8fafc;
}

.resume-layout {
    display: grid;
    grid-template-columns: .85fr 1.7fr;
    gap: 35px;
    align-items: start;
}

.resume-sidebar {
    position: sticky;
    top: 110px;
}

.resume-box {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 15px 45px rgba(0,0,0,.07);
    margin-bottom: 28px;
}

.resume-box h3 {
    color: var(--primary);
    font-size: 24px;
    font-weight: 950;
    margin-bottom: 18px;
}

.resume-box p {
    color: #64748b;
    margin-bottom: 15px;
}

.resume-skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.resume-skill-list span {
    background: #eef6ff;
    color: #075985;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
}

.resume-list {
    padding-left: 18px;
}

.resume-list li {
    margin-bottom: 10px;
    color: #64748b;
}

.timeline-item {
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin-bottom: 25px;
}

.timeline-date {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
}

.timeline-item h4,
.resume-project h4 {
    color: var(--primary);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 8px;
}

.timeline-item ul {
    padding-left: 20px;
    margin-top: 10px;
}

.timeline-item li {
    margin-bottom: 8px;
    color: #64748b;
}

.resume-project {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 18px;
    transition: .3s ease;
}

.resume-project:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.resume-project span {
    display: inline-block;
    background: #fff7db;
    color: #8a6400;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 900;
}

/* RESUME RESPONSIVE */

@media (max-width: 991px) {
    .resume-hero-grid,
    .resume-layout {
        grid-template-columns: 1fr;
    }

    .resume-hero {
        text-align: center;
        padding: 130px 0 70px;
    }

    .resume-actions {
        justify-content: center;
    }

    .resume-sidebar {
        position: static;
    }

    .resume-profile-card ul {
        max-width: 360px;
        margin: auto;
    }
}

@media (max-width: 576px) {
    .resume-hero {
        padding: 115px 0 60px;
    }

    .resume-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .resume-profile-card,
    .resume-box {
        padding: 24px 18px;
    }

    .resume-profile-card img {
        width: 135px;
        height: 135px;
    }

    .resume-section {
        padding: 70px 0;
    }

    .resume-box h3 {
        font-size: 21px;
    }
}

/* ABOUT PAGE */

.about-hero {
    background:
        radial-gradient(circle at 15% 20%, rgba(255,193,7,.12), transparent 28%),
        linear-gradient(135deg, #020b24, #071b33, #0b2b4c);
    color: #fff;
    padding: 150px 0 90px;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 50px;
    align-items: center;
}

.about-badge,
.section-mini-title {
    display: inline-block;
    background: var(--accent);
    color: var(--deep);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 900;
    margin-bottom: 18px;
}

.about-hero h1 {
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;
    font-weight: 950;
    margin-bottom: 22px;
}

.about-hero p {
    max-width: 760px;
    color: #e2e8f0;
    font-size: 18px;
    margin-bottom: 28px;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.about-hero-card {
    background: #fff;
    color: var(--primary);
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0,0,0,.25);
}

.about-hero-card img {
    width: 100%;
    max-height: 380px;
    object-fit: contain;
    margin-bottom: 18px;
}

.about-hero-card h3 {
    font-size: 24px;
    font-weight: 950;
}

.about-hero-card p {
    color: #64748b;
    margin: 0;
    font-size: 15px;
}

.about-intro-section,
.about-services-section,
.about-process-section,
.about-cta-section {
    padding: 100px 0;
}

.about-intro-section {
    background: #f8fafc;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 50px;
    align-items: center;
}

.about-image-box {
    background: linear-gradient(135deg, #071b33, #0b2b4c);
    border-radius: 28px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.about-image-box img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    display: block;
}

.about-content h2 {
    color: var(--primary);
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 950;
    line-height: 1.18;
    margin-bottom: 20px;
}

.about-content p {
    color: #64748b;
    font-size: 17px;
    margin-bottom: 16px;
}

.about-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.about-highlight-grid div {
    background: #fff;
    border-radius: 18px;
    padding: 22px 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
}

.about-highlight-grid strong {
    display: block;
    color: var(--accent);
    font-size: 34px;
    font-weight: 950;
}

.about-highlight-grid span {
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
}

.about-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-service-card {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 15px 45px rgba(0,0,0,.07);
    transition: .3s ease;
}

.about-service-card:hover {
    transform: translateY(-8px);
}

.about-service-card i {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 18px;
}

.about-service-card h3 {
    color: var(--primary);
    font-size: 21px;
    font-weight: 950;
    margin-bottom: 12px;
}

.about-service-card p {
    color: #64748b;
}

.about-expertise-section {
    background:
        linear-gradient(rgba(2,11,36,.94), rgba(7,27,51,.96)),
        url("../images/tech-bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.light-title h2,
.light-title p {
    color: #fff;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.expertise-card {
    background: rgba(255,255,255,.96);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 15px 45px rgba(0,0,0,.15);
}

.expertise-card h3 {
    color: var(--primary);
    font-weight: 950;
    margin-bottom: 12px;
}

.expertise-card p {
    color: #64748b;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.process-step {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 15px 45px rgba(0,0,0,.07);
}

.process-step span {
    display: inline-block;
    color: var(--accent);
    font-size: 34px;
    font-weight: 950;
    margin-bottom: 14px;
}

.process-step h3 {
    color: var(--primary);
    font-weight: 950;
    margin-bottom: 10px;
}

.process-step p {
    color: #64748b;
}

.remote-ready-section {
    background: #f8fafc;
    padding: 90px 0;
}

.remote-ready-box {
    background: #fff;
    border-radius: 28px;
    padding: 45px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 35px;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.remote-ready-box h2 {
    color: var(--primary);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 950;
    margin-bottom: 14px;
}

.remote-ready-box p {
    color: #64748b;
    max-width: 850px;
    margin-bottom: 22px;
}

.remote-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.remote-tags span {
    background: #eef6ff;
    color: #075985;
    border-radius: 30px;
    padding: 9px 15px;
    font-weight: 850;
    font-size: 14px;
}

.remote-tags i {
    color: #16a34a;
    margin-right: 6px;
}

.about-cta-section {
    background: #fff;
}

.about-cta-box {
    background: linear-gradient(135deg, var(--deep), var(--primary), var(--secondary));
    color: #fff;
    border-radius: 30px;
    padding: 60px 35px;
    text-align: center;
}

.about-cta-box h2 {
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 950;
    margin-bottom: 15px;
}

.about-cta-box p {
    color: #e2e8f0;
    max-width: 760px;
    margin: 0 auto 28px;
}

.center-actions {
    justify-content: center;
}

/* ABOUT RESPONSIVE */

@media (max-width: 991px) {
    .about-hero-grid,
    .about-intro-grid,
    .remote-ready-box {
        grid-template-columns: 1fr;
    }

    .about-hero,
    .about-intro-grid,
    .remote-ready-box {
        text-align: center;
    }

    .about-actions {
        justify-content: center;
    }

    .about-card-grid,
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .remote-ready-box {
        padding: 35px 25px;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 120px 0 65px;
    }

    .about-intro-section,
    .about-services-section,
    .about-process-section,
    .about-cta-section,
    .about-expertise-section,
    .remote-ready-section {
        padding: 70px 0;
    }

    .about-hero-card,
    .about-service-card,
    .expertise-card,
    .process-step {
        padding: 24px 18px;
    }

    .about-highlight-grid,
    .about-card-grid,
    .expertise-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .about-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .about-cta-box {
        padding: 45px 22px;
    }
}

/* PORTFOLIO PAGE */

.portfolio-hero {
    background:
        radial-gradient(circle at 15% 20%, rgba(255,193,7,.12), transparent 28%),
        linear-gradient(135deg, #020b24, #071b33, #0b2b4c);
    color: #fff;
    padding: 150px 0 90px;
    text-align: center;
}

.portfolio-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--deep);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 900;
    margin-bottom: 18px;
}

.portfolio-hero h1 {
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;
    font-weight: 950;
    max-width: 980px;
    margin: 0 auto 22px;
}

.portfolio-hero p {
    max-width: 850px;
    margin: 0 auto 28px;
    color: #e2e8f0;
    font-size: 18px;
}

.portfolio-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.portfolio-section {
    background: #f8fafc;
    padding: 100px 0;
}

.portfolio-filter-note {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

.portfolio-filter-note h2 {
    color: var(--primary);
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 950;
    margin-bottom: 14px;
}

.portfolio-filter-note p {
    color: #64748b;
    font-size: 18px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.portfolio-card {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
    transition: .3s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0,0,0,.13);
}

.portfolio-image {
    height: 260px;
    overflow: hidden;
    background: #e2e8f0;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .4s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.04);
}

.portfolio-content {
    padding: 30px;
}

.project-category {
    display: inline-block;
    background: #fff7db;
    color: #8a6400;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}

.portfolio-content h3 {
    color: var(--primary);
    font-size: 25px;
    font-weight: 950;
    margin-bottom: 12px;
}

.portfolio-content p {
    color: #64748b;
    margin-bottom: 16px;
}

.portfolio-content ul {
    padding-left: 18px;
    margin-bottom: 18px;
}

.portfolio-content li {
    color: #64748b;
    margin-bottom: 7px;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.portfolio-tech span {
    background: #eef6ff;
    color: #075985;
    padding: 7px 13px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 850;
}

.portfolio-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.portfolio-card-actions a {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 11px 16px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 14px;
}

.portfolio-card-actions a:first-child {
    background: var(--accent);
    color: var(--deep);
}

.portfolio-strength-section {
    background: #fff;
    padding: 100px 0;
}

.portfolio-strength-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.portfolio-strength-grid div {
    background: #f8fafc;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
    transition: .3s ease;
}

.portfolio-strength-grid div:hover {
    transform: translateY(-7px);
}

.portfolio-strength-grid i {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.portfolio-strength-grid h3 {
    color: var(--primary);
    font-weight: 950;
    margin-bottom: 10px;
}

.portfolio-strength-grid p {
    color: #64748b;
}

.portfolio-cta-section {
    background: #f8fafc;
    padding: 90px 0;
}

.portfolio-cta-box {
    background: linear-gradient(135deg, var(--deep), var(--primary), var(--secondary));
    color: #fff;
    border-radius: 30px;
    padding: 60px 35px;
    text-align: center;
}

.portfolio-cta-box h2 {
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 950;
    margin-bottom: 15px;
}

.portfolio-cta-box p {
    color: #e2e8f0;
    max-width: 760px;
    margin: 0 auto 28px;
}

.center-actions {
    justify-content: center;
}

/* PORTFOLIO RESPONSIVE */

@media (max-width: 991px) {
    .portfolio-grid,
    .portfolio-strength-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-hero {
        padding: 130px 0 75px;
    }
}

@media (max-width: 640px) {
    .portfolio-section,
    .portfolio-strength-section,
    .portfolio-cta-section {
        padding: 70px 0;
    }

    .portfolio-hero {
        padding: 120px 0 65px;
    }

    .portfolio-grid,
    .portfolio-strength-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-image {
        height: 210px;
    }

    .portfolio-content {
        padding: 24px 18px;
    }

    .portfolio-card-actions a,
    .portfolio-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .portfolio-cta-box {
        padding: 45px 22px;
    }
}

/* CONTACT PAGE */

.contact-hero {
    background:
        radial-gradient(circle at 15% 20%, rgba(255,193,7,.12), transparent 28%),
        linear-gradient(135deg, #020b24, #071b33, #0b2b4c);
    color: #fff;
    padding: 150px 0 90px;
    text-align: center;
}

.contact-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--deep);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 900;
    margin-bottom: 18px;
}

.contact-hero h1 {
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;
    font-weight: 950;
    max-width: 980px;
    margin: 0 auto 22px;
}

.contact-hero p {
    max-width: 820px;
    margin: auto;
    color: #e2e8f0;
    font-size: 18px;
}

.contact-section {
    background: #f8fafc;
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 35px;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 18px;
}

.contact-info-card {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 15px 45px rgba(0,0,0,.07);
}

.main-contact-card {
    display: block;
    background: linear-gradient(135deg, var(--deep), var(--primary), var(--secondary));
    color: #fff;
}

.main-contact-card h2 {
    font-size: 32px;
    font-weight: 950;
    margin-bottom: 12px;
}

.main-contact-card p {
    color: #e2e8f0;
}

.contact-info-card i {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--accent);
    color: var(--deep);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-info-card h3 {
    color: var(--primary);
    font-size: 20px;
    font-weight: 950;
    margin-bottom: 5px;
}

.contact-info-card p {
    color: #64748b;
    margin: 0;
}

.main-contact-card h2,
.main-contact-card p {
    color: #fff;
}

.contact-form-box {
    background: #fff;
    border-radius: 26px;
    padding: 35px;
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.contact-form-box h2 {
    color: var(--primary);
    font-size: 32px;
    font-weight: 950;
    margin-bottom: 6px;
}

.contact-form-box p {
    color: #64748b;
    margin-bottom: 25px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-group label {
    display: block;
    color: var(--primary);
    font-weight: 850;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    outline: none;
    border-radius: 14px;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 16px;
    color: var(--text);
    background: #f8fafc;
    transition: .3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,193,7,.18);
}

.contact-submit-btn {
    border: none;
    background: var(--accent);
    color: var(--deep);
    padding: 15px 24px;
    border-radius: 14px;
    font-weight: 950;
    font-size: 16px;
    cursor: pointer;
    transition: .3s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(255,193,7,.28);
}

.contact-remote-section {
    background: #fff;
    padding: 90px 0;
}

.contact-remote-box {
    background: linear-gradient(135deg, var(--deep), var(--primary), var(--secondary));
    color: #fff;
    border-radius: 30px;
    padding: 45px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 35px;
    align-items: center;
}

.contact-remote-box h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 950;
    margin-bottom: 14px;
}

.contact-remote-box p {
    color: #e2e8f0;
    max-width: 800px;
    margin-bottom: 22px;
}

/* CONTACT RESPONSIVE */

@media (max-width: 991px) {
    .contact-grid,
    .contact-remote-box {
        grid-template-columns: 1fr;
    }

    .contact-remote-box {
        text-align: center;
    }

    .contact-remote-box .remote-tags {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 120px 0 65px;
    }

    .contact-section,
    .contact-remote-section {
        padding: 70px 0;
    }

    .contact-form-box,
    .contact-info-card,
    .contact-remote-box {
        padding: 24px 18px;
    }

    .contact-info-card {
        flex-direction: column;
    }

    .contact-submit-btn,
    .contact-remote-box .btn {
        width: 100%;
        justify-content: center;
    }

    .main-contact-card h2,
    .contact-form-box h2 {
        font-size: 26px;
    }
}

/* Contact form success message*/
.contact-success-alert{
    background:#ecfdf5;
    border-left:5px solid #16a34a;
    color:#065f46;
    padding:18px 20px;
    border-radius:12px;
    margin-bottom:25px;

    display:flex;
    gap:15px;
    align-items:flex-start;
}

.contact-success-alert i{
    font-size:28px;
    color:#16a34a;
    margin-top:2px;
}

.contact-success-alert strong{
    display:block;
    font-size:17px;
    margin-bottom:5px;
}

.contact-success-alert p{
    margin:0;
    color:#065f46;
}

/* BLOG PAGE */

.blog-hero,
.blog-detail-hero {
    background:
        radial-gradient(circle at 15% 20%, rgba(255,193,7,.12), transparent 28%),
        linear-gradient(135deg, #020b24, #071b33, #0b2b4c);
    color: #fff;
    padding: 150px 0 90px;
    text-align: center;
}

.blog-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--deep);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 900;
    margin-bottom: 18px;
}

.blog-hero h1,
.blog-detail-hero h1 {
    font-size: clamp(40px, 6vw, 66px);
    line-height: 1.06;
    font-weight: 950;
    max-width: 1000px;
    margin: 0 auto 20px;
}

.blog-hero p {
    max-width: 850px;
    margin: auto;
    color: #e2e8f0;
    font-size: 18px;
}

.blog-section {
    background: #f8fafc;
    padding: 100px 0;
}

.featured-blog {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    margin-bottom: 60px;
}

.featured-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 360px;
}

.featured-blog-content {
    padding: 45px;
}

.featured-blog-content span,
.blog-card-content span {
    display: inline-block;
    background: #fff7db;
    color: #8a6400;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}

.featured-blog-content h2 {
    color: var(--primary);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 950;
    margin-bottom: 15px;
}

.featured-blog-content p {
    color: #64748b;
    margin-bottom: 22px;
}

.featured-blog-content a,
.blog-card-content a {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 11px 18px;
    border-radius: 12px;
    font-weight: 900;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,.07);
    transition: .3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content h3 {
    color: var(--primary);
    font-size: 22px;
    font-weight: 950;
    line-height: 1.25;
    margin-bottom: 12px;
}

.blog-card-content p {
    color: #64748b;
    margin-bottom: 18px;
}

.blog-cta-section {
    background: #fff;
    padding: 90px 0;
}

.blog-cta-box {
    background: linear-gradient(135deg, var(--deep), var(--primary), var(--secondary));
    color: #fff;
    text-align: center;
    border-radius: 30px;
    padding: 55px 30px;
}

.blog-cta-box h2 {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 950;
    margin-bottom: 15px;
}

.blog-cta-box p {
    color: #e2e8f0;
    max-width: 750px;
    margin: 0 auto 25px;
}

/* BLOG DETAILS */

.blog-detail-section {
    background: #f8fafc;
    padding: 100px 0;
}

.blog-detail-container {
    max-width: 950px;
}

.blog-detail-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 26px;
    display: block;
    margin-bottom: 35px;
    box-shadow: 0 18px 55px rgba(0,0,0,.12);
}

.blog-detail-content {
    background: #fff;
    padding: 45px;
    border-radius: 26px;
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.blog-detail-content h2 {
    color: var(--primary);
    font-size: 30px;
    font-weight: 950;
    margin: 28px 0 12px;
}

.blog-detail-content p {
    color: #64748b;
    font-size: 18px;
    margin-bottom: 18px;
}

.blog-detail-cta {
    background: #f8fafc;
    border-radius: 22px;
    padding: 30px;
    margin-top: 35px;
}

.blog-detail-cta h3 {
    color: var(--primary);
    font-weight: 950;
    margin-bottom: 10px;
}

/* BLOG RESPONSIVE */

@media (max-width: 991px) {
    .featured-blog {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-hero,
    .blog-detail-hero {
        padding: 130px 0 75px;
    }
}

@media (max-width: 640px) {
    .blog-section,
    .blog-detail-section,
    .blog-cta-section {
        padding: 70px 0;
    }

    .blog-hero,
    .blog-detail-hero {
        padding: 120px 0 65px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .featured-blog-content,
    .blog-detail-content {
        padding: 25px 18px;
    }

    .featured-blog-image img,
    .blog-detail-image {
        height: 230px;
        min-height: auto;
    }

    .blog-card img {
        height: 200px;
    }

    .featured-blog-content a,
    .blog-card-content a,
    .blog-detail-cta .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.hidden-field {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    height: 0;
}

.hidden-field {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
}