/* =========================================
   APPLICATION PAGE CSS
========================================= */

img{
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

body{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* BODY */
body{
    background:#f6f9fc;
    color:#0b2c4d;
}

/* CONTAINER */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

:root{
    --section-gap: 45px;
}

section{
    padding: var(--section-gap) 0;
}

.tech-box1{
    background:#fff;
    color: #969696;
}

.app-card{
    transition:0.3s ease;
}

.app-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,0.12);
}

.page-banner{
    position:relative;
    width:100%;
    height:320px;

    /* 🔥 YOUR IMAGE HERE */
    background-image:url('../images/applicationbanner.webp');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    color:#fff;
}

/* DARK OVERLAY (VERY IMPORTANT FOR READABILITY) */
.page-banner::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:rgba(11,44,77,0.65); /* dark blue overlay */
    z-index:1;
}

/* TEXT ABOVE OVERLAY */
.page-banner .container{
    position:relative;
    z-index:2;
}

/* TITLE */
.page-banner h1{
    font-size:42px;
    margin-bottom:10px;
    font-weight:700;
	color:white;
}

/* SUBTEXT */
.page-banner p{
    font-size:16px;
    color:#e6e6e6;
}

/* RESPONSIVE */
@media(max-width:768px){
    .page-banner{
        height:240px;
        padding:20px;
    }

    .page-banner h1{
        font-size:28px;
    }
}


/* =========================================
   HERO SECTION
========================================= */

.page-hero{
    background:#0b2c4d;
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.page-hero h1{
    font-size:36px;
    margin-bottom:10px;
	color:#fff;
}

.page-hero p{
    color:#cbd5e1;
}

/* =========================================
   GRID
========================================= */

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

.application-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* =========================================
   CARD STYLE
========================================= */

.app-card{
    background:#fff;
    padding:30px 20px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s ease;

    /* FIX ADDED */
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    min-height:220px;
}

.app-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,0.12);
}

/* ICON IMAGE */
.app-card img{
    width:200px;
    height:200px;
    object-fit:contain;

    /* FIX ADDED */
    display:block;
    margin:0 auto 15px auto;
}

/* TITLE */
.app-card h3{
    font-size:18px;
    margin-bottom:8px;
}

/* TEXT */
.app-card p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:992px){

    .application-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){

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

    .page-hero h1{
        font-size:30px;
    }
}