


:root {
    --blue: #1882fb;
    --cyan: #20dafa;
    --dark: #0f172a;
    --text: #334155;
    --light: #f6f9fc;
    --border: #dfe7ef;
    --white: #fff;
    --accent: #faaf30;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.65;
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1160px, 92%);
    margin: auto;
}

.topbar {
    background: var(--dark);
    color: #fff;
    font-size: 14px;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
    flex-wrap: wrap;
}


.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 700;
}

.btn-primary {
    border: 1px solid #fed700 !important;
    background: #fed700 !important;
    color: #111827 !important;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .65) !important;
    color: #fff !important;
    border-radius: 20px !important;
}

.hero {
    background: linear-gradient(115deg, rgba(15, 23, 42, .96), rgba(24, 130, 251, .82)), url('../images/industry-hero-placeholder.webp') center/cover;
    min-height: 540px;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-inner {
    max-width: 780px;
    padding: 80px 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 800;
    color: #bfeaff;
}

h1 {
    font-size: clamp(38px, 6vw, 66px) !important;
    line-height: 1.08 !important;
    margin: 10px 0 18px !important;
    color: #ffffff !important;
}

h2 {
    font-size: clamp(28px, 4vw, 42px) !important;
    line-height: 1.2 !important;
    color: var(--dark) !important;
    margin: 0 0 18px !important;
}

h3 {
    font-size: 21px !important;
    color: var(--dark) !important;
    margin: 0 0 10px !important;
}

.hero p {
    font-size: 19px;
    max-width: 730px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.breadcrumb {
    padding: 14px 0;
    font-size: 14px;
    color: #64748b;
    border-bottom: 1px solid var(--border);
}

.section {
    padding: 76px 0;
}

.section.alt {
    background: var(--light);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 48px;
    align-items: center;
}

.image-placeholder {
    min-height: 390px;
    border-radius: 14px;
    background: linear-gradient(135deg, #dceeff, #eefaff);
    border: 1px solid #cfe3f6;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    color: #1e5f9d;
    font-weight: 700;
    
}

.checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 26px;
}

.check {
    padding: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-weight: 700;
    color: var(--dark);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 32px;
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}

.card .num {
    font-size: 13px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 1px;
}

.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.step {
    border-top: 4px solid var(--blue);
    background: #fff;
    padding: 22px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

.cta {
    background: linear-gradient(100deg, var(--blue), #0f4f95);
    color: #fff;
    border-radius: 16px;
    padding: 44px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.cta h2 {
    color: #fff !important;
    margin: 0 0 8px !important;
}

.cta p {
    margin: 0;
}

.faq {
    max-width: 900px;
}

.faq details {
    border-bottom: 1px solid var(--border);
    padding: 18px 0px;
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    font-size: 18px;
}

.faq p {
    margin: 10px 0 0;
}


@media(max-width:900px) {
    nav {
        display: none;
    }

    .grid-2,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: 1fr 1fr;
    }

    .process {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        min-height: 500px;
    }

    .cta {
        display: block;
    }

    .cta .hero-actions {
        margin-top: 22px;
    }
}

@media(max-width:600px) {

    .cards,
    .process,
    .checks {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 56px 0;
    }

    .hero-inner {
        padding: 60px 0;
    }

    .topbar .container {
        display: block;
    }

    .cta {
        padding: 30px;
    }
}


/* Airport Infrastructure Signage css start here */


.airport-hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=2000&auto=format&fit=crop") center/cover;

}

.airport-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(2, 12, 27, .93) 0%,
            rgba(2, 12, 27, .82) 45%,
            rgba(2, 12, 27, .55) 100%);

}

.airport-hero-content {

    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns: 1.2fr 1fr;

    gap: 70px;

    align-items: center;

}

.airport-tag {

    display: inline-flex;

    padding: 12px 24px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(18px);

    color: #fff;

    margin-bottom: 30px;

    font-weight: 600;

    letter-spacing: .5px;

}

.airport-left h1 {

    font-size: 72px;

    line-height: 1.1;

    color: #fff;

    margin-bottom: 25px;

    font-weight: 800;

}

.airport-left h1 span {

    color: #42b8ff;

}

.airport-left p {

    font-size: 20px;

    color: #d8e3ef;

    max-width: 650px;

    line-height: 1.8;

    margin-bottom: 40px;

}

.airport-buttons {

    display: flex;

    gap: 18px;

    margin-bottom: 55px;

}

.hero-btn {

    padding: 18px 38px;

    border-radius: 60px;

    text-decoration: none;

    font-weight: 700;

    transition: .4s;

}

.hero-btn-primary {

    background: #00A8FF;

    color: #fff;

}

.hero-btn-primary:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 40px rgba(0, 168, 255, .35);

}

.hero-btn-outline {

    border: 2px solid rgba(255, 255, 255, .45);

    color: #fff;

}

.hero-btn-outline:hover {

    background: #fff;

    color: #0c2748;

}

.airport-stats {

    display: flex;

    gap: 60px;

}

.airport-stats h2 {

    color: #fff;

    font-size: 42px;

}

.airport-stats span {

    color: #cbd7e5;

}

.glass-card {

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .2);

    border-radius: 30px;

    overflow: hidden;

    backdrop-filter: blur(20px);

    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);

}

.glass-card img {

    width: 100%;

    display: block;

    height: 420px;

    object-fit: cover;

}

.glass-info {

    padding: 30px;

}

.glass-info small {

    color: #57c2ff;

    text-transform: uppercase;

    letter-spacing: 2px;

}

.glass-info h3 {

    color: #fff;

    font-size: 30px;

    margin: 12px 0;

}

.glass-info p {

    color: #d5dce5;

    line-height: 1.7;

}

.floating-circle {

    position: absolute;

    border-radius: 50%;

    background: rgba(0, 168, 255, .18);

    animation: float 8s infinite ease-in-out;

}

.circle1 {

    width: 220px;

    height: 220px;

    top: 8%;

    right: 5%;

}

.circle2 {

    width: 130px;

    height: 130px;

    bottom: 10%;

    left: 48%;

}

@keyframes float {

    50% {

        transform: translateY(-25px);

    }

}

@media(max-width:992px) {

    .airport-hero {

        padding: 100px 0;

        min-height: auto;

    }

    .airport-hero-content {

        grid-template-columns: 1fr;

    }

    .airport-left {

        text-align: center;

    }

    .airport-left h1 {

        font-size: 48px;

    }

    .airport-left p {

        margin: auto auto 35px;

    }

    .airport-buttons {

        justify-content: center;

        flex-wrap: wrap;

    }

    .airport-stats {

        justify-content: center;

        flex-wrap: wrap;

        gap: 30px;

    }

}


/* Airport Infrastructure Signage css end here */






























/* Purpose-Built Signage css start here */

.airport-about {

    padding: 120px 0;

    background: #f7f9fc;

    overflow: hidden;

}

.airport-about-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}

.airport-about-image {

    position: relative;

}

.airport-about-image img {

    width: 100%;

    border-radius: 30px;

    display: block;

    box-shadow: 0 35px 80px rgba(0, 0, 0, .12);

}

.experience-box {

    position: absolute;

    bottom: 40px;

    left: -30px;

    background: #0c2748;

    color: #fff;

    padding: 30px;

    border-radius: 25px;

    width: 220px;

    text-align: center;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .25);

}

.experience-box h2 {

    font-size: 48px;

    margin-bottom: 10px;

    color: #00b8ff;

}

.experience-box span {

    line-height: 1.6;

    display: block;

}

.section-tag {

    display: inline-block;

    background: #e8f5ff;

    color: #0078d4;

    padding: 10px 22px;

    border-radius: 50px;

    font-weight: 600;

    margin-bottom: 25px;

}

.airport-about-content h2 {

    font-size: 52px;

    line-height: 1.2;

    margin-bottom: 25px;

    color: #132238;

}

.airport-about-content h2 span {

    color: #008cff;

}

.airport-about-content p {

    font-size: 18px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 40px;

}

.feature-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

}

.feature-card {

    background: #fff;

    border-radius: 22px;

    padding: 30px;

    transition: .35s;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);

}

.feature-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(0, 140, 255, .15);

}

.feature-icon {

    width: 65px;

    height: 65px;

    border-radius: 50%;

    background: #eaf6ff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 28px;

    margin-bottom: 18px;

}

.feature-card h4 {

    font-size: 22px;

    margin-bottom: 15px;

    color: #132238;

}

.feature-card p {

    font-size: 15px;

    line-height: 1.7;

    margin: 0;

}

.discover-btn {

    display: inline-flex;

    margin-top: 45px;

    background: #008cff;

    color: #fff;

    padding: 18px 35px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: .35s;

}

.discover-btn:hover {

    background: #005fb2;

    transform: translateY(-4px);

}

@media(max-width:992px) {

    .airport-about {

        padding: 80px 0;

    }

    .airport-about-wrapper {

        grid-template-columns: 1fr;

    }

    .airport-about-content {

        text-align: center;

    }

    .airport-about-content h2 {

        font-size: 38px;

    }

    .feature-grid {

        grid-template-columns: 1fr;

    }

    .experience-box {

        position: relative;

        left: auto;

        bottom: auto;

        margin: -60px auto 30px;

    }

}

/* Purpose-Built Signage css end here */

















/* Airport Signage Solutions css start here */

.airport-solutions {

    padding: 120px 0;

    background: linear-gradient(180deg, #08131f, #0e2238);

    overflow: hidden;

}

.section-heading {

    text-align: center;

    max-width: 850px;

    margin: auto auto 80px;

}

.section-heading span {

    color: #48c3ff;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-weight: 600;

}

.section-heading h2 {

    color: #fff;

    font-size: 52px;

    margin: 20px 0;

    line-height: 1.2;

}

.section-heading p {

    color: #cfd8e3;

    font-size: 18px;

    line-height: 1.8;

}

.solution-layout {

    display: grid;

    grid-template-columns: 1fr 420px 1fr;

    gap: 60px;

    align-items: center;

}

.solution-column {

    display: flex;

    flex-direction: column;

    gap: 30px;

}

.solution-box {

    background: rgba(255, 255, 255, .06);

    backdrop-filter: blur(16px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 20px;

    padding: 28px;

    display: flex;

    align-items: flex-start;

    gap: 20px;

    transition: .4s;

}

.solution-box:hover {

    transform: translateY(-10px);

    background: #0d6efd;

    box-shadow: 0 25px 45px rgba(13, 110, 253, .35);

}

.solution-box:hover h3,

.solution-box:hover p,

.solution-box:hover .icon {

    color: #fff;

}

.icon {

    width: 65px;

    height: 65px;

    border-radius: 18px;

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    color: #0d6efd;

    flex-shrink: 0;

}

.solution-box h3 {

    color: #fff;

    font-size: 24px;

    margin-bottom: 10px;

}

.solution-box p {

    color: #b8c5d6;

    line-height: 1.7;

}

.airport-center {

    display: flex;

    justify-content: center;

    align-items: center;

}

.center-circle {

    width: 420px;

    height: 420px;

    border-radius: 50%;

    padding: 18px;

    background: linear-gradient(135deg, #00b8ff, #0d6efd);

    animation: rotateGlow 12s linear infinite;

}

.center-circle img {

    width: 100%;

    height: 100%;

    border-radius: 50%;

    object-fit: cover;

    border: 8px solid #fff;

}

@keyframes rotateGlow {

    50% {

        transform: rotate(180deg);

    }

    100% {

        transform: rotate(360deg);

    }

}

@media(max-width:1100px) {

    .solution-layout {

        grid-template-columns: 1fr;

    }

    .airport-center {

        order: -1;

        margin-bottom: 40px;

    }

    .center-circle {

        width: 300px;

        height: 300px;

    }

}

@media(max-width:768px) {

    .airport-solutions {

        padding: 80px 0;

    }

    .section-heading h2 {

        font-size: 36px;

    }

    .solution-box {

        padding: 22px;

    }

    .solution-box h3 {

        font-size: 20px;

    }
}

/* Tablet */
@media (max-width: 992px) {
    .section-heading p {
        font-size: 17px;
        line-height: 1.75;
        padding: 0 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-heading p {
        font-size: 16px;
        line-height: 1.7;
        padding: 0 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .section-heading p {
        font-size: 15px;
        line-height: 1.65;
        padding: 0 10px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .section-heading p {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 8px;
    }
}


/* Airport Signage Solutions css end here */



/* OUR WORKING PROCESS css start here */

.process-section {

    padding: 120px 0;

    background: #071a2d;

    position: relative;

    overflow: hidden;

}

.process-heading {

    text-align: center;

    margin-bottom: 90px;

}

.process-heading span {

    color: #00b8ff;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.process-heading h2 {

    color: #fff;

    font-size: 52px;

    margin: 20px 0;

}

.process-heading strong {

    color: #00b8ff;

}

.process-heading p {

    color: #c5d3df;

    max-width: 700px;

    margin: auto;

    font-size: 18px;

    line-height: 1.8;

}

.timeline {

    position: relative;

    max-width: 1200px;

    margin: auto;

}

.timeline::before {

    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    width: 4px;

    height: 100%;

    background: linear-gradient(#00b8ff, #0b6cff);

    transform: translateX(-50%);

}

.timeline-item {

    position: relative;

    width: 50%;

    padding: 30px 60px;

    box-sizing: border-box;

}

.timeline-item.left {

    left: 0;

    text-align: right;

}

.timeline-item.right {

    left: 50%;

}

.timeline-card {

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 24px;

    padding: 35px;

    transition: .4s;

}

.timeline-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 25px 50px rgba(0, 184, 255, .25);

}

.timeline-icon {

    width: 70px;

    height: 70px;

    background: #00b8ff;

    color: #fff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 30px;

    margin-bottom: 20px;

}

.timeline-item.left .timeline-icon {

    margin-left: auto;

}

.timeline-card h3 {

    color: #fff;

    font-size: 26px;

    margin-bottom: 15px;

}

.timeline-card p {

    color: #d4dce4;

    line-height: 1.8;

}

.timeline-number {

    position: absolute;

    top: 45px;

    width: 70px;

    height: 70px;

    border-radius: 50%;

    background: #fff;

    color: #0b6cff;

    font-size: 24px;

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 5px solid #00b8ff;

    z-index: 1;

}

.timeline-item.left .timeline-number {

    right: -35px;

}

.timeline-item.right .timeline-number {

    left: -35px;

}




/* =========================================================
   TABLET
   992px AND BELOW
   ========================================================= */

@media (max-width: 992px) {

    .process-section {
        padding: 90px 0;
    }

    .process-heading {
        margin-bottom: 60px;
    }

    .process-heading h2 {
        font-size: 42px;
    }

    .process-heading p {
        font-size: 16px;
        max-width: 620px;
    }


    /* Keep timeline structure */

    .timeline {
        max-width: 900px;
    }

    .timeline-item {
        padding: 25px 45px;
    }

    .timeline-card {
        padding: 28px;
        border-radius: 20px;
    }

    .timeline-card h3 {
        font-size: 22px;
    }

    .timeline-card p {
        font-size: 15px;
        line-height: 1.7;
    }

    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .timeline-number {
        width: 62px;
        height: 62px;
        top: 40px;
        font-size: 21px;
        border-width: 4px;
    }

    .timeline-item.left .timeline-number {
        right: -31px;
    }

    .timeline-item.right .timeline-number {
        left: -31px;
    }

}


/* =========================================================
   MOBILE / SINGLE COLUMN
   768px AND BELOW
   ========================================================= */

@media (max-width: 768px) {

    .process-section {
        padding: 70px 0;
    }


    /* ---------- HEADING ---------- */

    .process-heading {
        margin-bottom: 50px;
        padding: 0 10px;
    }

    .process-heading span {
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .process-heading h2 {
        font-size: 36px;
        line-height: 1.25;
        margin: 15px 0;
    }

    .process-heading p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* ---------- TIMELINE LINE ---------- */

    .timeline {
        width: 100%;
        max-width: 100%;
    }

    .timeline::before {
        left: 30px;
        width: 3px;
        transform: none;
    }


    /* ---------- ALL ITEMS BECOME ONE COLUMN ---------- */

    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {

        width: 100%;

        left: 0;

        padding:
            25px
            15px
            25px
            75px;

        text-align: left;
        box-sizing: border-box;
    }


    /* ---------- NUMBER ---------- */

    .timeline-number,
    .timeline-item.left .timeline-number,
    .timeline-item.right .timeline-number {

        left: 0;
        right: auto;

        top: 30px;

        width: 60px;
        height: 60px;

        font-size: 20px;

        border-width: 4px;

        transform: translateX(0);
    }


    /* ---------- CARD ---------- */

    .timeline-card {
        width: 100%;
        padding: 25px;

        border-radius: 20px;

        box-sizing: border-box;
    }

    .timeline-card:hover {
        transform: translateY(-6px);
    }


    /* ---------- ICON ---------- */

    .timeline-icon,
    .timeline-item.left .timeline-icon {

        width: 60px;
        height: 60px;

        margin-left: 0;

        font-size: 25px;

        margin-bottom: 18px;
    }


    /* ---------- CONTENT ---------- */

    .timeline-card h3 {
        font-size: 22px;
        line-height: 1.35;
    }

    .timeline-card p {
        font-size: 15px;
        line-height: 1.75;
    }

}


/* =========================================================
   MOBILE
   600px AND BELOW
   ========================================================= */

@media (max-width: 600px) {

    .process-section {
        padding: 60px 0;
    }


    /* ---------- HEADING ---------- */

    .process-heading {
        margin-bottom: 40px;
        padding: 0 5px;
    }

    .process-heading span {
        font-size: 11px;
        letter-spacing: 1.3px;
    }

    .process-heading h2 {
        font-size: 30px;
        line-height: 1.25;
        margin: 12px 0 15px;
    }

    .process-heading p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* ---------- TIMELINE ---------- */

    .timeline::before {
        left: 24px;
        width: 3px;
    }


    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {

        padding:
            20px
            10px
            20px
            58px;
    }


    /* ---------- NUMBER ---------- */

    .timeline-number,
    .timeline-item.left .timeline-number,
    .timeline-item.right .timeline-number {

        top: 25px;
        left: 0;

        width: 48px;
        height: 48px;

        font-size: 17px;

        border-width: 3px;
    }


    /* ---------- CARD ---------- */

    .timeline-card {
        padding: 20px;
        border-radius: 16px;
    }

    .timeline-card:hover {
        transform: translateY(-4px);
    }


    /* ---------- ICON ---------- */

    .timeline-icon,
    .timeline-item.left .timeline-icon {

        width: 50px;
        height: 50px;

        font-size: 21px;

        margin-bottom: 15px;
    }


    /* ---------- TEXT ---------- */

    .timeline-card h3 {
        font-size: 19px;
        line-height: 1.35;
        margin-bottom: 10px;
    }

    .timeline-card p {
        font-size: 14px;
        line-height: 1.7;
    }

}


/* =========================================================
   SMALL MOBILE
   400px AND BELOW
   ========================================================= */

@media (max-width: 400px) {

    .process-section {
        padding: 50px 0;
    }


    .process-heading {
        margin-bottom: 35px;
    }

    .process-heading span {
        font-size: 10px;
    }

    .process-heading h2 {
        font-size: 27px;
    }

    .process-heading p {
        font-size: 13px;
    }


    /* Timeline line */

    .timeline::before {
        left: 21px;
        width: 2px;
    }


    /* Timeline item */

    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {

        padding:
            18px
            5px
            18px
            52px;
    }


    /* Number */

    .timeline-number,
    .timeline-item.left .timeline-number,
    .timeline-item.right .timeline-number {

        top: 23px;
        left: 0;

        width: 43px;
        height: 43px;

        font-size: 15px;

        border-width: 3px;
    }


    /* Card */

    .timeline-card {
        padding: 90px;
        border-radius: 14px;
    }


    /* Icon */

    .timeline-icon,
    .timeline-item.left .timeline-icon {

        width: 45px;
        height: 45px;

        font-size: 19px;

        margin-bottom: 13px;
    }


    /* Heading */

    .timeline-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }


    /* Paragraph */

    .timeline-card p {
        font-size: 13px;
        line-height: 1.65;
        
    }

}


/* =========================================================
   EXTRA SMALL DEVICES
   360px AND BELOW
   ========================================================= */

@media (max-width: 360px) {

    .process-heading h2 {
        font-size: 25px;
    }

    .timeline::before {
        left: 19px;
    }

    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {
        padding-left: 48px;
    }

    .timeline-number,
    .timeline-item.left .timeline-number,
    .timeline-item.right .timeline-number {
        width: 39px;
        height: 39px;
        font-size: 14px;
    }

    .timeline-card {
        padding: 15px;
    }

    .timeline-card h3 {
        font-size: 17px;
    }

    .timeline-card p {
        font-size: 12.5px;
    }

}


/* =========================================================
   TOUCH DEVICES
   Prevent hover movement from feeling excessive on mobile
   ========================================================= */

@media (hover: none) and (pointer: coarse) {

    .timeline-card:hover {
        transform: none;
        box-shadow: none;
    }

}










/* @media(max-width:991px) {

    .timeline::before {

        left: 35px;

    }

    .timeline-item {

        width: 100%;

        padding-left: 90px;

        padding-right: 20px;

        left: 0 !important;

        text-align: left;

        margin-bottom: 50px;

    }

    .timeline-number {

        left: 0 !important;

        right: auto !important;

    }

    .timeline-item.left .timeline-icon {

        margin-left: 0;

    }

    .process-heading h2 {

        font-size: 36px;

    }

} */

/* OUR WORKING PROCESS css end here */











/* Frequently Asked Questions css start header */


.airport-faq {

    padding: 120px 0;

    background: #f5f9fd;

}

.faq-heading {

    text-align: center;

    margin-bottom: 70px;

}

.faq-heading span {

    color: #008cff;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.faq-heading h2 {

    font-size: 52px;

    margin-top: 20px;

    color: #132238;

}

.faq-heading strong {

    color: #008cff;

}

.faq-wrapper {

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 50px;

    align-items: start;

}

.faq-list details {

    background: #fff;

    margin-bottom: 20px;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

    transition: .35s;

}

.faq-list details:hover {

    transform: translateY(-5px);

}

.faq-list summary {

    cursor: pointer;

    list-style: none;

    padding: 28px;

    display: flex;

    align-items: center;

    gap: 20px;

    font-size: 20px;

    font-weight: 600;

    color: #132238;

}

.faq-list summary::-webkit-details-marker {

    display: none;

}

.faq-number {

    width: 60px;

    height: 60px;

    background: #008cff;

    color: #fff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-weight: 700;

    flex-shrink: 0;

}

.faq-list p {

    padding: 0 28px 28px 108px;

    color: #666;

    line-height: 1.8;

}

.faq-card {

    background: linear-gradient(135deg, #0d2748, #008cff);

    color: #fff;

    border-radius: 28px;

    padding: 40px;

    position: sticky;

    top: 30px;

}

.faq-icon {

    width: 80px;

    height: 80px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .15);

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 36px;

    margin-bottom: 25px;

}

.faq-card h3 {

    font-size: 30px;

    margin-bottom: 15px;

}

.faq-card p {

    line-height: 1.8;

    opacity: .9;

}

.faq-card ul {

    margin: 30px 0;

    padding-left: 0;

    list-style: none;

}

.faq-card li {

    margin-bottom: 15px;

}

.faq-card a {

    display: inline-block;

    margin-top: 10px;

    background: #fff;

    color: #0d2748;

    text-decoration: none;

    padding: 15px 30px;

    border-radius: 50px;

    font-weight: 700;

    transition: .3s;

}

.faq-card a:hover {

    transform: translateY(-4px);

}

@media(max-width:992px) {

    .faq-wrapper {

        grid-template-columns: 1fr;

    }

    .faq-heading h2 {

        font-size: 38px;

    }

    .faq-card {

        position: relative;

        top: 0;

    }

    .faq-list p {

        padding-left: 28px;

    }

    .faq-list summary {

        font-size: 18px;

    }

}


/* Frequently Asked Questions css end here */









/* Ready to Start Your Project css start  */

.airport-cta {

    position: relative;

    padding: 120px 0;

    background: linear-gradient(135deg, #071a2d, #0c3b67);

    overflow: hidden;

}

.airport-cta-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at top right,
            rgba(0, 184, 255, .18),
            transparent 45%);

}

.airport-cta-wrapper {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1.4fr .8fr;

    gap: 60px;

    align-items: center;

}

.cta-tag {

    display: inline-block;

    padding: 12px 26px;

    border-radius: 40px;

    background: rgba(255, 255, 255, .12);

    color: #fff;

    backdrop-filter: blur(15px);

    margin-bottom: 30px;

    font-weight: 600;

}

.airport-cta-content h2 {

    font-size: 60px;

    color: #fff;

    line-height: 1.15;

    margin-bottom: 25px;

}

.airport-cta-content h2 span {

    color: #00b8ff;

}

.airport-cta-content p {

    color: #d8e4ee;

    font-size: 19px;

    line-height: 1.9;

    max-width: 700px;

    margin-bottom: 40px;

}

.cta-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

.cta-primary {

    background: #00b8ff;

    color: #fff;

    padding: 18px 38px;

    border-radius: 60px;

    text-decoration: none;

    font-weight: 700;

    transition: .35s;

}

.cta-primary:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 40px rgba(0, 184, 255, .35);

}

.cta-secondary {

    border: 2px solid rgba(255, 255, 255, .35);

    color: #fff;

    padding: 18px 38px;

    border-radius: 60px;

    text-decoration: none;

    font-weight: 700;

    transition: .35s;

}

.cta-secondary:hover {

    background: #fff;

    color: #0c2748;

}

.airport-contact-card {

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 30px;

    padding: 45px;

    color: #fff;

    box-shadow: 0 25px 50px rgba(0, 0, 0, .25);

}

.contact-icon {

    width: 90px;

    height: 90px;

    border-radius: 50%;

    background: #00b8ff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 40px;

    margin-bottom: 25px;

}

.airport-contact-card h3 {

    font-size: 32px;

    margin-bottom: 20px;

}

.airport-contact-card p {

    color: #d7e3ec;

    line-height: 1.8;

    margin-bottom: 35px;

}

.contact-stats {

    display: flex;

    justify-content: space-between;

    border-top: 1px solid rgba(255, 255, 255, .15);

    padding-top: 30px;

}

.contact-stats h4 {

    font-size: 30px;

    color: #00b8ff;

    margin-bottom: 8px;

}

.contact-stats span {

    color: #cfd9e3;

}

.shape {

    position: absolute;

    border-radius: 50%;

    background: rgba(0, 184, 255, .12);

    animation: floatShape 8s infinite ease-in-out;

}

.shape1 {

    width: 220px;

    height: 220px;

    top: -80px;

    right: -70px;

}

.shape2 {

    width: 150px;

    height: 150px;

    left: -60px;

    bottom: -40px;

}

@keyframes floatShape {

    50% {

        transform: translateY(-20px);

    }

}

@media(max-width:992px) {

    .airport-cta {

        padding: 80px 0;

    }

    .airport-cta-wrapper {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .airport-cta-content h2 {

        font-size: 40px;

    }

    .cta-buttons {

        justify-content: center;

    }

    .contact-stats {

        justify-content: space-around;

    }

}

/* New CSS is added */

.hero-actions .np-btn{
    border-radius: 20px;
    background-color: #25d366;
    border: 1px solid #25d366;
}

@media(max-width:480px) {
    .faq summary {
    cursor: pointer;
    font-weight: 500;
    color: var(--dark);
    font-size: 15px;
}
}

.hero .inp-breadcrumb {
    margin-bottom: 28px;
    padding: 0;
    border-bottom: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
}

.hero .inp-breadcrumb a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hero .inp-breadcrumb a:hover {
    color: #fed700;
}

.hero .inp-breadcrumb span:last-child {
    color: #fed700;
}