@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --red: #ff3b30;
    --red-hover: #e63946;
    --black: #111217;
    --dark-card: #16181f;
    --line: rgba(255, 255, 255, 0.08);
    --text-muted: #9ba1b0;
    --text-light: #fafafa;
}

body {
    background: #0a0a0a;
    color: #fafafa;
    margin: 0;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none !important;
    color: black;
}

h1,
h2,
h3 {
    font-family: 'Barlow Condensed', sans-serif;
    margin: 0;
    letter-spacing: -.025em;
}

/* Base Header Style - Floating Pill Shape */

/* Active Nav Link Styling */
.main-nav a.active {
    color: #e63946 !important;
    font-weight: 700;
}

.site-header {
    height: 70px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1050;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(15, 15, 15, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.35s ease-in-out, background 0.3s ease, top 0.3s ease;
}

/* Headroom.js Animation States */
.site-header.headroom--unpinned {
    transform: translateY(-150%);
}

.site-header.headroom--pinned {
    transform: translateY(0);
}

.site-header.headroom--not-top {
    background: rgba(10, 10, 10, 0.85);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Brand Styling */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 21px;
    line-height: .8;
    letter-spacing: .02em;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;
    background: #ff3b30;
    width: 29px;
    height: 29px;
    color: #111;
    transform: skew(-10deg);
}

.brand b {
    color: #ff3b30;
}

.brand small {
    display: block;
    font: 600 8px Inter, sans-serif;
    letter-spacing: .26em;
    color: #aaa;
    margin-top: 5px;
}

/* Navigation Links */
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #bbb;
}

.main-nav a {
    transition: color .2s ease;
    color: inherit !important;
    text-decoration: none;
}

.main-nav a:hover {
    color: #ff3b30 !important;
}

.menu-button {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .site-header {
        width: 94%;
        top: 15px;
        height: 64px;
        padding: 0 20px;
    }

    .menu-button {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(15, 15, 15, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        flex-direction: column;
        gap: 20px;
        padding: 24px;
        display: none;
    }

    .main-nav.active {
        display: flex;
    }
}

.hero {
    background-image: url(images/image5.png);
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: cover;
    /* background: #000; */
    color: #fafafa;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0px clamp(20px, 10vw, 155px) 0px;
    isolation: isolate;
}

.eyebrow,
.section-kicker {
    margin-bottom: 0;
    font: 600 11px Inter;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #ff3b30;
    display: flex;
    gap: 12px;
    align-items: center;
}

.eyebrow-line {
    width: 35px;
    height: 1px;
    background: #ff3b30;
}

h1 {
    font-size: clamp(64px, 9vw, 144px);
    line-height: .82;
    text-transform: uppercase;
    margin: 27px 0;
}

.hero em {
    font-style: normal;
    color: #ff3b30;
}

.hero-copy {
    max-width: 370px;
    font-size: 15px;
    line-height: 1.7;
    color: #fafafa;
}

.hero-actions {
    display: flex;
    gap: 13px;
    margin-top: 34px;
}

.button-primary {
    background: #ff3b30;
    color: #111;
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.button {
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 18px;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    /* transition: transform .2s, background .2s; */
}

.button-ghost {
    border: 1px solid #696969;
    color: #fff !important;
}

.button-ghost:hover {
    background: #696969;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.hero-content>h1 {
    color: #fafafa;
    font-weight: bold;
    font-size: 70px;
}

.intro {
    background: #f1f0ed;
    color: #111;
}

.section-pad {
    padding: 125px clamp(20px, 9vw, 140px);
}

.section-pad>p {
    color: #555;
    line-height: 1.75;
    max-width: 400px;
}

.hero h1 em,
h2 span {
    font-style: normal;
    color: #ff3b30;
}

.intro-copy,
.section-heading {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
}

.intro-copy h2 {
    font-weight: bold;
    font-size: 58px;
    /* font-size: clamp(52px, 7vw, 98px); */
    line-height: .85;
    text-transform: uppercase;
    margin-top: 24px;
}

.intro-copy-span {
    color: #ff3b30;
    font-style: normal;
}

.text-link {
    font-size: 12px;
    font-weight: 700;
    border-bottom: 1px solid currentColor;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 7px;
    margin-top: 20px;
}

.section-heading>p {
    color: #929292;
    align-self: end;
    max-width: 190px;
    font-size: 13px;
    line-height: 1.6;
}

.section-heading>h2 {
    font-weight: bold;
    font-size: 60px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    margin-top: 75px;
}

.service-card {
    background: var(--black);
    padding: 27px 25px 30px;
    min-height: 275px;
    position: relative;
    transition: background .3s;
}

.service-top {
    display: flex;
    justify-content: space-between;
    color: var(--red);
}

.service-number {
    font: 700 13px Inter;
    color: #888;
}

.service-card h3 {
    font-size: 31px;
    margin-top: 62px;
}

.service-card p {
    font-size: 12px;
    color: #929292;
    line-height: 1.65;
    max-width: 220px;
}

.services {
    background: #000;
    color: #fafafa;
}

.services-heading {
    font-size: 60px;
    font-weight: bold;
}

.service-card:hover {
    background: #1a1a1a;
}

.service-card>a {
    position: absolute;
    bottom: 24px;
    right: 25px;
    color: #ff3b30 !important;
}

/* =========================
   PROJECT GALLERY
========================= */

.project-gallery {
    background: #f8f9fa;
}

.gallery-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.gallery-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery-text {
    color: #777;
    max-width: 550px;
    margin: 0 auto;
}

/* Project Card */

.project-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 14px;
    background: #111;
}

.project-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.06);
}

/* View All Projects Rounded Button */
.view-all-projects-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #16181f;
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.view-all-projects-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(230, 57, 70, 0.15);
    color: #e63946;
    border-radius: 50%;
    transition: all 0.35s ease;
}

.view-all-projects-btn:hover {
    background: #e63946;
    color: #ffffff;
    border-color: #e63946;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.35);
}

.view-all-projects-btn:hover .btn-icon {
    background: #ffffff;
    color: #e63946;
    transform: rotate(45deg);
}

/* Overlay */

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.05));
}

/* Project Info */

.project-info {
    position: absolute;
    left: 25px;
    bottom: 22px;
    z-index: 2;
    color: #fff;
}

.project-info span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-info h3 {
    margin: 5px 0 0;
    font-size: 22px;
    font-weight: 600;
}

/* Wide Project */

.project-wide {
    height: 300px;
}

/* Responsive */

@media (max-width: 767px) {

    .gallery-title {
        font-size: 32px;
    }

    .project-card,
    .project-wide {
        height: 220px;
    }

    .project-info {
        left: 18px;
        bottom: 18px;
    }

    .project-info h3 {
        font-size: 18px;
    }

}

.contact-section {
    padding: 110px 7%;
    background: #f7f9fc;
}

.contact-container {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* LEFT CONTENT */

.contact-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.contact-info h2 {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    margin: 0 0 22px;
    font-weight: 700;
    color: #111827;
}

.contact-info h2 span {
    display: block;
}

.contact-desc {
    max-width: 560px;
    color: #687386;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 45px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    font-size: 18px;
}

.contact-item small {
    display: block;
    color: #8a93a3;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-item a {
    display: block;
    color: #171c26;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.7;
    transition: 0.3s;
}

.contact-item a:hover {
    color: #1769ff;
}

.contact-item p {
    margin: 0;
    max-width: 390px;
    color: #303746;
    font-size: 15px;
    line-height: 1.7;
}

/* FORM */

.contact-form-wrapper {
    background: #ffffff;
    padding: 42px;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(22, 35, 55, 0.08);
}

.form-header span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.form-header h3 {
    font-size: 32px;
    margin: 10px 0;
    color: #111827;
}

.form-header p {
    color: #7a8494;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #252b35;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #e5e8ee;
    background: #fafbfc;
    padding: 14px 16px;
    border-radius: 10px;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    transition: 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1769ff;
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
}

.contact-btn {
    width: 100%;
    border: none;
    padding: 15px 22px;
    border-radius: 10px;
    background: #111827;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .about-hero-section {
        min-height: 60vh;
    }

    .site-header {
        margin: 0 15px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-info h2 span {
        display: inline;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 75px 20px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info h2 {
        font-size: 38px;
    }
}

.contact-detail-number>a {
    display: inline-flex;
}

.contact-details a:hover {
    color: #ff3b30;
}

/* Footer Start */

.footer {
    background: #0a0a0a;
    color: #fafafa;
    padding: 0px 7% 20px;
}

.footer-bottom {
    max-width: 1250px;
    margin: 50px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #7f8998;
    font-size: 13px;
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 20px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        margin-top: 35px;
        flex-direction: column;
        gap: 8px;
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #25d366;
    color: #fff;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.35s ease;
}

.whatsapp-btn span {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: #111827;
    color: #fff;
    padding: 8px 13px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.05);
    color: #fff;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover span {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/* Back To Top */

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 98px;
    width: 48px;
    height: 48px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    background: #fff;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 9998;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition: all 0.35s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #111827;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


/* Mobile */

@media (max-width: 576px) {

    .whatsapp-btn {
        right: 18px;
        bottom: 18px;
        width: 54px;
        height: 54px;
        font-size: 25px;
    }

    .whatsapp-btn span {
        display: none;
    }

    .back-to-top {
        right: 21px;
        bottom: 85px;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Standard HD Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper video,
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================================
   RESPONSIVE MEDIA QUERIES (NO DESIGN/CONTENT CHANGE)
   =================================================== */

/* Tablet & Smaller Desktops (Under 1024px) */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        background: transparent;
    }
}

/* Tablets (Under 991px) */
@media (max-width: 991px) {
    .hero {
        padding: 120px 24px 80px;
        min-height: auto;
    }

    .hero-content>h1 {
        font-size: clamp(42px, 8vw, 60px);
        line-height: 1;
    }

    .intro-copy,
    .section-heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-copy h2,
    .section-heading>h2,
    .services-heading {
        font-size: clamp(38px, 6vw, 48px);
    }

    .section-pad {
        padding: 80px 24px;
    }
}

/* Mobile Screens (Under 767px) */
@media (max-width: 767px) {
    .hero {
        min-height: 75vh;
        padding: 110px 16px 60px;
    }

    .hero-content>h1 {
        font-size: 38px;
        margin: 18px 0;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero-actions .button {
        width: 100%;
    }

    .section-pad {
        padding: 60px 16px;
    }

    .intro-copy h2,
    .section-heading>h2,
    .services-heading {
        font-size: 32px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .service-card {
        min-height: auto;
        padding: 24px 20px 60px;
    }

    .service-card h3 {
        font-size: 24px;
        margin-top: 30px;
    }

    /* Project Gallery 5 & 6 Cards (col-6 fix on mobile) */
    .project-gallery .col-6 {
        width: 100% !important;
    }

    .view-all-projects-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}

/* ===================================================
   ABOUT PAGE STYLES
   =================================================== */

.about-page-wrapper {
    padding-top: 130px;
    padding-bottom: 80px;
}

.about-hero-section {
    position: relative;
    padding: 30px 0 60px;
}

.about-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ff3b30;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.about-hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.about-hero-title span {
    color: #ff3b30;
}

.about-hero-desc {
    color: #9ba1b0;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 820px;
    margin-bottom: 35px;
}

/* Stats Counter Grid */
.about-stats-container {
    background: #111217;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 25px;
    margin: 40px 0 70px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.stat-item {
    text-align: center;
    padding: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.6rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number span {
    color: #ff3b30;
}

.stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #9ba1b0;
    margin: 0;
}

/* Story Section */
.about-story-section {
    padding: 60px 0;
}

.story-heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    /* color: #ffffff; */
    line-height: 1.1;
    margin-bottom: 20px;
}

.story-heading span {
    color: #ff3b30;
}

.story-paragraph {
    color: #696969;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 35px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    /* color: #e5e7eb; */
    font-size: 0.95rem;
    font-weight: 500;
}

.about-features-list li i {
    color: #ff3b30;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Story Image Box */
.story-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    height: 100%;
    min-height: 380px;
}

.story-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.story-image-box:hover img {
    transform: scale(1.04);
}

.story-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(17, 18, 23, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 4px solid #ff3b30;
    padding: 16px 20px;
    border-radius: 12px;
    max-width: 260px;
}

.story-badge strong {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.story-badge small {
    color: #9ba1b0;
    font-size: 0.8rem;
    line-height: 1.4;
    display: block;
}

/* Capabilities Grid */
.capabilities-section {
    padding: 70px 0;
}

.section-title-wrap {
    margin-bottom: 45px;
}

.section-subhead {
    color: #ff3b30;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.section-main-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    /* color: #ffffff; */
    text-transform: uppercase;
}

.section-main-title span {
    color: #ff3b30;
}

.capability-card {
    background: #16181f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff3b30, transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.capability-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 59, 48, 0.35);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}

.capability-card:hover::before {
    opacity: 1;
}

.capability-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 59, 48, 0.12);
    color: #ff3b30;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.capability-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.capability-card p {
    color: #9ba1b0;
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 18px;
    flex-grow: 1;
}

.capability-specs {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
    font-size: 0.82rem;
    color: #ff3b30;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Engineering Principles / Pillars */
.pillars-section {
    padding: 70px 0;
    background: #0f1015;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pillar-card {
    background: #16181f;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    border-color: rgba(255, 59, 48, 0.3);
    transform: translateY(-4px);
}

.pillar-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ff3b30;
    margin-bottom: 12px;
}

.pillar-card h4 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pillar-card p {
    color: #9ba1b0;
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* Execution Methodology */
.methodology-section {
    padding: 80px 0;
}

.step-card {
    background: #111217;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 24px;
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: rgba(255, 59, 48, 0.4);
    background: #16181f;
}

.step-number-badge {
    display: inline-block;
    background: rgba(255, 59, 48, 0.15);
    color: #ff3b30;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 59, 48, 0.25);
}

.step-card h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    color: #9ba1b0;
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* Leadership Quote Box */
.leadership-section {
    padding: 50px 0 70px;
}

.leadership-card {
    background: linear-gradient(135deg, #16181f 0%, #111217 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.leadership-card::before {
    content: '"';
    position: absolute;
    top: -30px;
    right: 40px;
    font-size: 180px;
    font-family: 'Barlow Condensed', sans-serif;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

.leadership-quote {
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    font-weight: 600;
    color: #fafafa;
    line-height: 1.5;
    margin-bottom: 25px;
    font-style: italic;
}

.leadership-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.leadership-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ff3b30;
    color: #111;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1.2rem;
    font-family: 'Barlow Condensed', sans-serif;
}

.leadership-meta h5 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 3px;
}

.leadership-meta p {
    color: #ff3b30;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

/* About CTA Banner */
.about-cta-section {
    padding: 40px 0 80px;
}

.about-cta-box {
    background: linear-gradient(135deg, #ff3b30 0%, #d90429 100%);
    border-radius: 22px;
    padding: 55px 45px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(255, 59, 48, 0.3);
}

.about-cta-box h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

.about-cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin: 0;
    max-width: 580px;
}

.about-cta-btn {
    background: #ffffff;
    color: #111217 !important;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about-cta-btn:hover {
    background: #111217;
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* About Responsive */
@media (max-width: 991px) {
    .about-page-wrapper {
        padding-top: 110px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 18px 10px;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .about-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }

    .about-cta-box p {
        margin-bottom: 10px;
    }

    .leadership-card {
        padding: 35px 25px;
    }
}

@media (max-width: 767px) {
    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-hero-desc {
        font-size: 1rem;
    }

    .story-image-box {
        min-height: 280px;
        margin-top: 25px;
    }

    .story-badge {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
    }
}


.button-ghost-about {
    border: 1px solid #696969;
    color: #696969;
    transition: all 0.3s ease;
}

.button-ghost-about:hover {
    background: #696969;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.section-main-title-about {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
}
