/* ==========================
   Airmac Enterprises
========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#f7f9fc;
color:#222;
line-height:1.7;
}

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

/* ================= NAVBAR ================= */

header{
position:fixed;
top:0;
left:0;
width:100%;
background:rgba(255,255,255,.96);
backdrop-filter:blur(10px);
box-shadow:0 5px 25px rgba(0,0,0,.08);
z-index:9999;
}

.navbar{
padding:15px 0;
}

.navbar .container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
display:flex;
align-items:center;
gap:15px;
}

.logo img{
width:85px;
transition:.3s;
}

.logo h2{
font-size:24px;
color:#0B3C5D;
font-weight:700;
}

.logo p{
font-size:13px;
color:#666;
}

.menu{
display:flex;
list-style:none;
gap:30px;
}

.menu li a{
text-decoration:none;
font-weight:600;
color:#333;
transition:.3s;
}

.menu li a:hover{
color:#0B3C5D;
}

.menu-btn{
display:none;
font-size:28px;
cursor:pointer;
}

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

.hero{
    min-height:85vh;
    display:flex;
    align-items:center;

    background-image:
    linear-gradient(rgba(7,28,52,.60),rgba(7,28,52,.70)),
    url("../images/hero.jpeg");

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

    padding-top:110px;
}

/* ================= ABOUT HERO ================= */

.about-hero{
    min-height:70vh;
    display:flex;
    align-items:center;

    background-image:
    linear-gradient(rgba(7,28,52,.65),rgba(7,28,52,.75)),
    url("../images/about/about-banner.jpg");

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

    padding-top:110px;
}

.hero-content{
display:flex;
align-items:center;
justify-content:space-between;
gap:70px;
width:100%;
z-index:2;
}

.hero-left{
max-width:720px;
}

.hero-left h4{
font-size:25px;
font-weight:700;
letter-spacing:4px;
color:#35d06d;
text-transform:uppercase;
margin-top:40px;

margin-bottom:12px;

}

.hero-left h1{
font-size:64px;
font-weight:800;
line-height:1.15;
color:#ffffff;
margin-bottom:25px;
}
.hero-subtitle{
    font-size:20px;
    font-weight:500;
    color:#f5f5f5;
    line-height:1.8;
    margin-bottom:20px;
}
.hero-left h2{
    font-size:32px;
    font-weight:600;
    color:#ffffff;
    line-height:1.4;
    margin-bottom:20px;
}

.hero-left h2::after{
    content:"";
    display:block;
    width:90px;
    height:4px;
    background:#32d46b;
    margin-top:18px;
    border-radius:10px;
}

.hero-left p{
font-size:19px;
color:#ececec;
margin-bottom:35px;
line-height:1.8;
}

.hero-buttons{
display:flex;
gap:18px;
flex-wrap:wrap;
}

.hero-card{
background:#ffffff;
border-radius:15px;
padding:35px;
box-shadow:0 20px 45px rgba(0,0,0,.25);
width:380px;
}

.hero-card h3{
color:#0B3C5D;
margin-bottom:20px;
font-size:28px;
}

.hero-card li{
list-style:none;
padding:10px 0;
font-size:17px;
border-bottom:1px solid #eeeeee;
}

.btn{
display:inline-flex;
align-items:center;
gap:10px;
padding:18px 38px;
border-radius:50px;
font-size:16px;
font-weight:600;
text-decoration:none;
transition:all .35s cubic-bezier(.25,.46,.45,.94);
box-shadow:0 12px 25px rgba(0,0,0,.18);
}

.btn:hover{
transform:translateY(-4px);
box-shadow:0 16px 35px rgba(0,0,0,.22);
}

.call{
background:#0B3C5D;
color:#fff;
}

.call:hover{
background:#06263d;
}

.whatsapp{
background:#25D366;
color:#fff;
}

.whatsapp:hover{
background:#1daa53;
}

.quote{
background:#ff8c00;
color:#fff;
}

.quote:hover{
background:#e67b00;
}

/* HERO CARD */

.hero-card{
background:white;
color:#222;
padding:35px;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,.18);
min-width:360px;
}

.hero-card h3{
color:#0B3C5D;
margin-bottom:20px;
font-size:26px;
}

.hero-card ul{
list-style:none;
}

.hero-card li{
padding:8px 0;
font-size:17px;
}

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

section{
padding:90px 0;
scroll-margin-top:80px;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:40px;
color:#0B3C5D;
margin-bottom:15px;
}

.section-title p{
color:#666;
font-size:18px;
}

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

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.card{
background:white;
padding:35px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:all .4s cubic-bezier(.25,.46,.45,.94);
text-align:center;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 14px 30px rgba(0,0,0,.12);
}

.card i{
font-size:45px;
color:#2E8B57;
margin-bottom:20px;
}

.card h3{
margin-bottom:15px;
color:#0B3C5D;
}

/* ================= WHY ================= */

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.why-grid div{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

/* ================= CONTACT ================= */

.contact-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:40px;
}

.contact-card{
background:white;
padding:35px;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.contact-buttons{
display:flex;
flex-direction:column;
gap:15px;
justify-content:center;
}

/* CONTACT HOME */

.contact-home{

padding:90px 0;

background:#ffffff;

}

.contact-home .contact-card h3{

font-size:30px;

color:#0B3C5D;

margin-bottom:25px;

}

.contact-home .contact-card strong{

color:#0B3C5D;

font-size:18px;

}

.contact-home .contact-card p{

margin-bottom:15px;

line-height:1.8;

color:#555;

}

.contact-home .contact-card a{

color:#0B3C5D;

text-decoration:none;

font-weight:600;

}

.contact-home .contact-card a:hover{

color:#25D366;

}

.contact-buttons{

align-items:center;

}

.contact-buttons .btn{

width:260px;

justify-content:center;

font-size:18px;

}

/* ================= FOOTER ================= */

footer{
background:#0B3C5D;
color:white;
padding:40px 0;
text-align:center;
}

footer p{
margin-top:10px;
}

/* ================= FLOATING ================= */

.floating-call,
.floating-whatsapp{
position:fixed;
right:20px;
width:60px;
height:60px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
color:white;
text-decoration:none;
z-index:999;
}

.floating-call{
bottom:178px;
background:#0B3C5D;
transition:all .35s cubic-bezier(.25,.46,.45,.94);
}

.floating-call:hover{
transform:scale(1.1);
box-shadow:0 8px 25px rgba(0,0,0,.3);
}

.floating-whatsapp{
bottom:100px;
background:#25D366;
transition:all .35s cubic-bezier(.25,.46,.45,.94);
}

.floating-whatsapp:hover{
transform:scale(1.1);
box-shadow:0 8px 25px rgba(0,0,0,.3);
}

/* ================= ACTIVE NAV ================= */

.menu li a.active{
color:#25D366;
}

/* ================= SERVICES HERO ================= */

.services-hero{
    min-height:70vh;
    display:flex;
    align-items:center;

    background:
    linear-gradient(
        90deg,
        rgba(11,60,93,0.90) 0%,
        rgba(11,60,93,0.75) 35%,
        rgba(11,60,93,0.30) 65%,
        rgba(11,60,93,0.10) 100%
    ),
    url("../images/services/services-banner.jpg");

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

    position:relative;
    padding-top:150px;
    overflow:hidden;
}
.services-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.2);
    z-index:1;
}

.services-hero-content{
    position:relative;
    z-index:2;
    width:100%;
}

.services-left h4{
    font-size:18px;
    font-weight:700;
    letter-spacing:4px;
    color:#25D366;
    text-transform:uppercase;
    margin-bottom:15px;
}

.services-left h1{
    font-size:52px;
    font-weight:800;
    line-height:1.15;
    color:#ffffff;
    margin-bottom:20px;
}

.services-left .hero-subtitle{
    font-size:20px;
    font-weight:500;
    color:rgba(255,255,255,.85);
    margin-bottom:18px;
}

.services-left > p{
    font-size:18px;
    color:rgba(255,255,255,.7);
    line-height:1.8;
    margin-bottom:30px;
    max-width:750px;
}

.services-left .hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

/* ================= SERVICES TYPES ================= */

.services-types{
    padding:90px 0;
    background:#ffffff;
}

.services-types-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.services-type-card{
    background:#fff;
    padding:35px 30px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:all .4s cubic-bezier(.25,.46,.45,.94);
    text-align:center;
    border:1px solid rgba(0,0,0,.04);
}

.services-type-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.services-type-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    background:rgba(11,60,93,.08);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.4s;
}

.services-type-card:hover .services-type-icon{
    background:#0B3C5D;
}

.services-type-icon i{
    font-size:30px;
    color:#0B3C5D;
    transition:.4s;
}

.services-type-card:hover .services-type-icon i{
    color:#fff;
}

.services-type-card h3{
    font-size:22px;
    color:#0B3C5D;
    margin-bottom:12px;
    font-weight:700;
}

.services-type-card p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

/* ================= SERVICES DETAIL ================= */

.services-detail{
    padding:90px 0;
    background:#f7f9fc;
}

.services-detail-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:50px;
}

.service-detail-card{
    display:flex;
    gap:20px;
    background:#fff;
    padding:30px;
    border-radius:14px;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
    transition:all .4s cubic-bezier(.25,.46,.45,.94);
    align-items:flex-start;
}

.service-detail-card:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 30px rgba(0,0,0,.1);
}

.service-detail-icon{
    width:56px;
    height:56px;
    min-width:56px;
    background:rgba(11,60,93,.08);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.4s;
}

.service-detail-card:hover .service-detail-icon{
    background:#0B3C5D;
}

.service-detail-icon i{
    font-size:24px;
    color:#0B3C5D;
    transition:.4s;
}

.service-detail-card:hover .service-detail-icon i{
    color:#fff;
}

.service-detail-info h3{
    font-size:20px;
    color:#0B3C5D;
    margin-bottom:8px;
    font-weight:700;
}

.service-detail-info p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

/* ================= SERVICES PROCESS ================= */

.services-process{
    padding:90px 0;
    background:#ffffff;
}

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

.services-process-card{
    background:#fff;
    padding:35px 25px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:all .4s cubic-bezier(.25,.46,.45,.94);
    border:1px solid rgba(0,0,0,.04);
}

.services-process-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 35px rgba(0,0,0,.12);
}

.services-process-num{
    width:60px;
    height:60px;
    margin:0 auto 20px;
    background:#0B3C5D;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    transition:.4s;
}

.services-process-card:hover .services-process-num{
    background:#25D366;
    transform:scale(1.1);
}

.services-process-card h3{
    font-size:20px;
    color:#0B3C5D;
    margin-bottom:12px;
    font-weight:700;
}

.services-process-card p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

/* ================= SERVICES INDUSTRIES ================= */

.services-industries{
    padding:90px 0;
    background:#f7f9fc;
}

.services-industries-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;
}

.services-industry-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:12px;
    background:#fff;
    padding:30px 15px;
    border-radius:14px;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
    transition:all .4s cubic-bezier(.25,.46,.45,.94);
    text-align:center;
}

.services-industry-item:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 30px rgba(0,0,0,.1);
}

.services-industry-item i{
    font-size:36px;
    color:#0B3C5D;
    transition:.4s;
}

.services-industry-item:hover i{
    color:#25D366;
}

.services-industry-item span{
    font-size:15px;
    font-weight:600;
    color:#444;
}

/* ================= SERVICES CTA ================= */

.services-cta{
    padding:90px 0;
    background:#0B3C5D;
    color:#fff;
    text-align:center;
}

.services-cta h2{
    font-size:40px;
    margin-bottom:20px;
}

.services-cta p{
    max-width:750px;
    margin:0 auto 35px;
    line-height:1.8;
    color:rgba(255,255,255,.85);
    font-size:18px;
}

.services-cta .cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

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

@media(max-width:992px){

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

.services-detail-grid{
    grid-template-columns:1fr;
}

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

.services-industries-grid{
    grid-template-columns:repeat(3,1fr);
}

.services-left h1{
    font-size:42px;
}

.services-left > p{
    font-size:16px;
}

}

@media(max-width:768px){

.services-hero{
    min-height:55vh;
}

.services-left{
    text-align:center;
}

.services-left h4{
    font-size:15px;
}

.services-left h1{
    font-size:34px;
}

.services-left > p{
    font-size:16px;
    max-width:100%;
}

.services-left .hero-buttons{
    justify-content:center;
}

.services-types{
    padding:70px 0;
}

.services-types-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.services-detail{
    padding:70px 0;
}

.service-detail-card{
    flex-direction:column;
    align-items:center;
    text-align:center;
}

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

.services-process-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.services-industries{
    padding:70px 0;
}

.services-industries-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.services-cta{
    padding:70px 0;
}

.services-cta h2{
    font-size:32px;
}

.services-cta p{
    font-size:16px;
}

}

@media(max-width:480px){

.services-hero{
    min-height:45vh;
    padding-top:85px;
}

.services-hero-content{
    margin-top:10px;
}

.services-left h4{
    font-size:13px;
    margin-bottom:12px;
}

.services-left h1{
    font-size:26px;
}

.services-left .hero-subtitle{
    font-size:16px;
}

.services-left > p{
    font-size:14px;
}

.services-left .hero-buttons{
    flex-direction:column;
    align-items:center;
    gap:12px;
}

.services-left .hero-buttons .btn{
    width:100%;
    max-width:260px;
    justify-content:center;
}

.services-types{
    padding:50px 0;
}

.services-type-card{
    padding:25px 20px;
}

.services-type-icon{
    width:56px;
    height:56px;
}

.services-type-icon i{
    font-size:24px;
}

.services-type-card h3{
    font-size:18px;
}

.services-type-card p{
    font-size:13px;
}

.services-detail{
    padding:50px 0;
}

.service-detail-card{
    padding:20px;
    gap:14px;
}

.service-detail-icon{
    width:44px;
    height:44px;
    min-width:44px;
}

.service-detail-icon i{
    font-size:20px;
}

.service-detail-info h3{
    font-size:17px;
}

.service-detail-info p{
    font-size:13px;
}

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

.services-process-card{
    padding:22px 18px;
}

.services-process-num{
    width:48px;
    height:48px;
    font-size:18px;
}

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

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

.services-industries{
    padding:50px 0;
}

.services-industries-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.services-industry-item{
    padding:20px 10px;
}

.services-industry-item i{
    font-size:28px;
}

.services-industry-item span{
    font-size:13px;
}

.services-cta{
    padding:50px 0;
}

.services-cta h2{
    font-size:26px;
}

.services-cta p{
    font-size:14px;
}

.services-cta .cta-buttons{
    flex-direction:column;
    align-items:center;
    gap:12px;
}

.services-cta .cta-buttons .btn{
    width:100%;
    max-width:280px;
    justify-content:center;
}

}

/* ================= MOBILE ================= */

@media(max-width:991px){

.menu{
display:none;
position:absolute;
top:100%;
left:0;
width:100%;
background:rgba(255,255,255,.98);
backdrop-filter:blur(10px);
flex-direction:column;
gap:0;
box-shadow:0 20px 40px rgba(0,0,0,.12);
z-index:9999;
}

.menu.active{
display:flex;
}

.menu li a{
display:block;
padding:18px 30px;
border-bottom:1px solid rgba(0,0,0,.06);
}

.menu-btn{
display:block;
}

.hero-content{
flex-direction:column;
text-align:center;
}

.hero-left h1{
font-size:38px;
}

.hero-left h2{
font-size:22px;
}

.hero-card{
min-width:100%;
}

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

}

.product-card{
background:#fff;
border-radius:14px;
overflow:hidden;
box-shadow:0 12px 30px rgba(0,0,0,.08);
transition:all .4s cubic-bezier(.25,.46,.45,.94);
cursor:pointer;
position:relative;
}

.product-card:hover{
transform:translateY(-6px);
box-shadow:0 16px 35px rgba(0,0,0,.14);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
    transition:transform .5s cubic-bezier(.25,.46,.45,.94);
}

.product-card{
    overflow:hidden;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-card:hover img{
transform:scale(1.08);
}

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

.product-card img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}

.product-card h3{
padding:20px 20px 10px;
font-size:24px;
color:#0B3C5D;
}

.product-card p{
padding:0 20px 25px;
color:#555;
line-height:1.7;
}
.read-btn{

display:inline-block;

margin:0 20px 25px;

padding:12px 26px;

background:#0B3C5D;

color:#fff;

text-decoration:none;

border-radius:30px;

font-weight:600;

transition:all .35s cubic-bezier(.25,.46,.45,.94);

}

.read-btn:hover{

background:#25D366;

transform:translateY(-3px);

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

}
.read-btn{

display:inline-block;

margin:0 20px 25px;

padding:12px 26px;

background:#0B3C5D;

color:#fff;

text-decoration:none;

border-radius:30px;

font-weight:600;

transition:all .35s cubic-bezier(.25,.46,.45,.94);

}

.read-btn:hover{

background:#25D366;

transform:translateY(-3px);

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

}
.product-card{
    display:flex;
    flex-direction:column;
}

.product-card p{
    flex-grow:1;
}

.read-btn{
    margin-top:auto;
}
.about{

padding:90px 0;

background:#f8fafc;

}

.about-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.about-image img{

width:100%;

border-radius:18px;

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

transition:.5s;

}

.about-image img:hover{

transform:scale(1.03);

}

.about-content h5{

color:#25D366;

letter-spacing:2px;

font-size:16px;

margin-bottom:10px;

}

.about-content h2{

font-size:42px;

color:#0B3C5D;

margin-bottom:20px;

}

.about-content p{

line-height:1.9;

color:#555;

margin-bottom:30px;

}

.about-features{

display:grid;

grid-template-columns:1fr 1fr;

gap:15px;

margin-bottom:35px;

font-weight:600;

}

.about-stats{

display:flex;

gap:50px;

margin-bottom:35px;

}

.about-stats h3{

font-size:34px;

color:#0B3C5D;

}

.about-btn{

display:inline-block;

padding:15px 35px;

background:#0B3C5D;

color:#fff;

border-radius:35px;

text-decoration:none;

font-weight:700;

transition:all .35s cubic-bezier(.25,.46,.45,.94);
margin-top:20px;

}

.about-btn:hover{

background:#25D366;
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,.18);

}

.about-content{
    display:grid;
    grid-template-columns:45% 55%;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 18px 45px rgba(0,0,0,.18);
    transition:all .4s cubic-bezier(.25,.46,.45,.94);
}

.about-image img:hover{
    transform:scale(1.03);
    box-shadow:0 22px 50px rgba(0,0,0,.22);
}

.about-text{
    padding-left:10px;
}

/* WHY CHOOSE US */

.why-us{

padding:90px 0;

background:#ffffff;

}

.why-grid{

display:grid;

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

gap:30px;

margin-top:50px;

}

.why-card{

background:#f8fafc;

padding:35px;

border-radius:18px;

text-align:center;

transition:all .4s cubic-bezier(.25,.46,.45,.94);

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.why-card:hover{

transform:translateY(-6px);

box-shadow:0 14px 30px rgba(0,0,0,.12);

}

.why-icon{

font-size:50px;

margin-bottom:20px;

}

.why-card h3{

color:#0B3C5D;

margin-bottom:15px;

}

.why-card p{

color:#666;

line-height:1.8;

}


/* INDUSTRIES */

.industries{

padding:90px 0;

background:#f7f9fc;

}

.industry-grid{

display:grid;

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

gap:25px;

margin-top:45px;

}

.industry-card{

background:#fff;

border-radius:18px;

overflow:hidden;

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

transition:all .4s cubic-bezier(.25,.46,.45,.94);
cursor:pointer;

}

.industry-card:hover{

transform:translateY(-6px);

box-shadow:0 14px 30px rgba(0,0,0,.12);

}

.industry-card img{

width:100%;

height:170px;

object-fit:cover;

display:block;

transition:.4s;

}

.industry-card:hover img{

transform:scale(1.08);

}

.industry-card h3{

padding:18px;

text-align:center;

font-size:20px;

color:#0B3C5D;

}

/* ================= SERVICES ================= */

.services{

padding:90px 0;

background:#ffffff;

}

.services-grid{

display:grid;

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

gap:25px;

margin-top:45px;

}

.service-card{

background:#fff;

border-radius:18px;

padding:30px;

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

transition:all .4s cubic-bezier(.25,.46,.45,.94);

display:flex;

flex-direction:column;

}

.service-card:hover{

transform:translateY(-6px);

box-shadow:0 14px 30px rgba(0,0,0,.12);

}

.service-card h3{

color:#0B3C5D;

font-size:22px;

margin-bottom:15px;

}

.service-card p{

color:#666;

line-height:1.8;

flex-grow:1;

margin-bottom:20px;

}

/* ================= PROCESS ================= */

.process{

padding:90px 0;

background:#f7f9fc;

}

.process-grid{

display:grid;

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

gap:25px;

margin-top:45px;

}

.process-card{

background:#fff;

padding:35px;

border-radius:18px;

text-align:center;

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

transition:all .4s cubic-bezier(.25,.46,.45,.94);

}

.process-card:hover{

transform:translateY(-6px);

box-shadow:0 14px 30px rgba(0,0,0,.12);

}

.number{

width:70px;

height:70px;

background:#0B3C5D;

color:#fff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

margin:auto;

font-size:28px;

font-weight:700;

margin-bottom:25px;

}

.process-card h3{

color:#0B3C5D;

margin-bottom:15px;

}

.process-card p{

color:#666;

line-height:1.8;

}

/* ================= TESTIMONIALS ================= */

.testimonials{

padding:90px 0;

background:#ffffff;

}

.testimonial-grid{

display:grid;

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

gap:30px;

}

.testimonial-card{

background:#f8fafc;

padding:35px;

border-radius:18px;

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

text-align:center;

transition:all .4s cubic-bezier(.25,.46,.45,.94);

}

.testimonial-card:hover{

transform:translateY(-6px);

box-shadow:0 14px 30px rgba(0,0,0,.12);

}

.testimonial-card p{

margin:20px 0;

line-height:1.8;

color:#555;

}

.testimonial-card h4{

color:#0B3C5D;

}

/* ================= COMPANY INTRODUCTION ================= */

.about-company{

padding:90px 0;

background:#ffffff;

}

.about-container{

display:grid;

grid-template-columns:45% 55%;

gap:60px;

align-items:center;

}

.about-image img{

width:100%;

height:700px;

object-fit:cover;

border-radius:18px;

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

transition:.4s;

}

.about-image img:hover{

transform:scale(1.02);

}

.about-text h5{

color:#25D366;

letter-spacing:2px;

font-size:16px;

margin-bottom:12px;

}

.about-text h2{

font-size:42px;

color:#0B3C5D;

margin-bottom:22px;

}

.about-text p{

color:#555;

line-height:1.9;

margin-bottom:20px;

}

.about-features{

display:grid;

grid-template-columns:1fr 1fr;

gap:15px;

margin:30px 0;

font-weight:600;

color:#0B3C5D;

}

.about-btn{

display:inline-block;

padding:16px 36px;

background:#0B3C5D;

color:#fff;

text-decoration:none;

border-radius:35px;

font-weight:700;

transition:.35s;

}

.about-btn:hover{

background:#25D366;

}

/*================ CORE VALUES ================*/

.core-values{
    padding:90px 0;
    background:#ffffff;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.value-card{
    background:#fff;
    border-radius:16px;
    padding:35px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.value-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.value-card i{
    font-size:42px;
    color:#0b5ed7;
    margin-bottom:20px;
}

.value-card h3{
    margin-bottom:15px;
    color:#0b2f5b;
}

.value-card p{
    line-height:1.7;
    color:#666;
}

/*================ ABOUT CTA ================*/

.about-cta{
    padding:90px 20px;
    background:#0B3C5D;
    color:#fff;
    text-align:center;
}

.about-cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.about-cta p{
    max-width:850px;
    margin:0 auto 40px;
    line-height:1.8;
    color:#e8eef5;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/*========================================================
  PRODUCTS PAGE — Products-specific styles
  ========================================================*/

/* ================= Products Hero ================= */

.products-hero{
    min-height:80vh;
    display:flex;
    align-items:center;
    position:relative;
    background:
    linear-gradient(rgba(7,28,52,.65),rgba(7,28,52,.75)),
    url("../images/products-banner.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    padding-top:110px;
}

.products-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
    z-index:1;
}

.products-hero .container{
    position:relative;
    z-index:2;
}

.products-hero .products-hero-content{
    color:#fff;
}

.products-hero .products-left{
    max-width:720px;
}

.products-hero .products-left h4{
    color:#25D366;
    font-size:17px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:18px;
    margin-top:40px;
}

.products-hero .products-left h1{
    font-size:58px;
    font-weight:800;
    line-height:1.12;
    color:#fff;
    margin-bottom:22px;
}

.products-hero .products-left .hero-subtitle{
    font-size:20px;
    font-weight:500;
    color:rgba(255,255,255,.88);
    line-height:1.8;
    margin-bottom:18px;
}

.products-hero .products-left > p{
    font-size:18px;
    color:rgba(255,255,255,.72);
    line-height:1.8;
    margin-bottom:28px;
}

.products-hero .products-left .hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

/* ================= Product Categories ================= */

.product-categories{
    padding:100px 0;
    background:#f8fafc;
}

.product-categories .section-title{
    text-align:center;
    max-width:850px;
    margin:0 auto 55px;
}

.product-categories .section-title h5{
    color:#22c55e;
    font-size:16px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.product-categories .section-title h2{
    font-size:44px;
    color:#0B3C5D;
    font-weight:700;
    margin-bottom:18px;
    line-height:1.2;
}

.product-categories .section-title p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.products-grid .product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:all .45s cubic-bezier(.25,.46,.45,.94);
    display:flex;
    flex-direction:column;
}

.products-grid .product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.14);
}

.products-grid .product-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:transform .55s cubic-bezier(.25,.46,.45,.94);
}

.products-grid .product-card:hover img{
    transform:scale(1.08);
}

.products-grid .product-content{
    padding:30px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.products-grid .product-content h3{
    color:#0B3C5D;
    font-size:26px;
    margin-bottom:14px;
    font-weight:700;
}

.products-grid .product-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
    flex:1;
}

.products-grid .product-content a{
    display:inline-block;
    color:#0B3C5D;
    font-weight:700;
    text-decoration:none;
    transition:all .35s cubic-bezier(.25,.46,.45,.94);
}

.products-grid .product-content a:hover{
    color:#22c55e;
    transform:translateX(5px);
}

/* ================= Solution Process ================= */

.solution-process{
    padding:100px 0;
    background:#ffffff;
}

.solution-process .section-title{
    text-align:center;
    max-width:850px;
    margin:0 auto 55px;
}

.solution-process .section-title h5{
    color:#22c55e;
    font-size:16px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.solution-process .section-title h2{
    font-size:44px;
    color:#0B3C5D;
    font-weight:700;
    margin-bottom:18px;
    line-height:1.2;
}

.solution-process .section-title p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

.process-timeline{
    position:relative;
    max-width:1000px;
    margin:60px auto 0;
}

.process-timeline::before{
    content:"";
    position:absolute;
    left:40px;
    top:0;
    bottom:0;
    width:4px;
    background:#0B3C5D;
    border-radius:20px;
}

.process-item{
    position:relative;
    display:flex;
    gap:35px;
    margin-bottom:40px;
    align-items:flex-start;
}

.process-item:last-child{
    margin-bottom:0;
}

.process-number{
    width:80px;
    height:80px;
    min-width:80px;
    background:#0B3C5D;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
    z-index:2;
    box-shadow:0 10px 25px rgba(11,60,93,.25);
    transition:all .4s cubic-bezier(.25,.46,.45,.94);
}

.process-item:hover .process-number{
    background:#22c55e;
    transform:scale(1.08);
}

.process-info{
    flex:1;
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:all .45s cubic-bezier(.25,.46,.45,.94);
}

.process-item:hover .process-info{
    transform:translateX(8px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.process-info h3{
    color:#0B3C5D;
    font-size:26px;
    margin-bottom:14px;
    font-weight:700;
}

.process-info p{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

/* ================= Engineering Support ================= */

.engineering-support{
    padding:100px 0;
    background:linear-gradient(135deg,#0B3C5D,#123F63);
}

.engineering-support .section-title{
    text-align:center;
    max-width:850px;
    margin:0 auto 55px;
}

.engineering-support .section-title h5{
    color:#22c55e;
    font-size:16px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.engineering-support .section-title h2{
    font-size:44px;
    color:#ffffff;
    font-weight:700;
    margin-bottom:18px;
    line-height:1.2;
}

.engineering-support .section-title p{
    font-size:18px;
    color:rgba(255,255,255,.75);
    line-height:1.8;
}

.support-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-top:60px;
}

.support-card{
    background:#ffffff;
    border-radius:22px;
    padding:40px;
    transition:all .45s cubic-bezier(.25,.46,.45,.94);
    position:relative;
    overflow:hidden;
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.support-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:5px;
    background:#22c55e;
    transition:all .45s cubic-bezier(.25,.46,.45,.94);
}

.support-card:hover::before{
    width:100%;
}

.support-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,.25);
}

.support-icon{
    width:75px;
    height:75px;
    border-radius:50%;
    background:#0B3C5D;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    transition:all .45s cubic-bezier(.25,.46,.45,.94);
}

.support-card:hover .support-icon{
    background:#22c55e;
    transform:rotate(360deg);
}

.support-icon i{
    color:#ffffff;
    font-size:30px;
}

.support-card h3{
    font-size:26px;
    color:#0B3C5D;
    margin-bottom:16px;
    font-weight:700;
}

.support-card p{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

/* ================= Why Choose Airmac ================= */

.why-airmac{
    padding:100px 0;
    background:#f7f9fc;
}

.why-airmac .section-title{
    text-align:center;
    max-width:850px;
    margin:0 auto 55px;
}

.why-airmac .section-title h5{
    color:#22c55e;
    font-size:16px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.why-airmac .section-title h2{
    font-size:44px;
    color:#0B3C5D;
    font-weight:700;
    margin-bottom:18px;
    line-height:1.2;
}

.why-airmac .section-title p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

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

.why-airmac .why-card{
    background:#fff;
    padding:35px 28px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .45s cubic-bezier(.25,.46,.45,.94);
}

.why-airmac .why-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 40px rgba(0,0,0,.14);
}

.why-airmac .why-icon{
    font-size:48px;
    margin-bottom:20px;
}

.why-airmac .why-icon i{
    color:#2E8B57;
}

.why-airmac .why-card h3{
    color:#0B3C5D;
    font-size:20px;
    margin-bottom:14px;
    font-weight:700;
}

.why-airmac .why-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

/* ================= Smart Desk ================= */

.smart-desk{
    padding:100px 0;
    background:#ffffff;
}

.smart-box{
    max-width:860px;
    margin:0 auto;
    text-align:center;
}

.smart-badge{
    display:inline-block;
    padding:8px 22px;
    background:rgba(11,60,93,.08);
    color:#0B3C5D;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.smart-box h2{
    font-size:38px;
    color:#0B3C5D;
    margin-bottom:20px;
    line-height:1.2;
}

.smart-box > p{
    color:#666;
    line-height:1.8;
    font-size:17px;
    margin-bottom:35px;
}

.smart-options{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-bottom:35px;
}

.smart-option{
    display:flex;
    align-items:center;
    gap:12px;
    padding:18px 20px;
    background:#f8fafc;
    border-radius:12px;
    transition:all .35s cubic-bezier(.25,.46,.45,.94);
}

.smart-option:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.smart-option i{
    font-size:22px;
    color:#0B3C5D;
    width:40px;
    height:40px;
    min-width:40px;
    background:rgba(11,60,93,.08);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.smart-option span{
    font-size:15px;
    font-weight:600;
    color:#444;
    text-align:left;
}

.smart-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.smart-box small{
    display:block;
    margin-top:22px;
    font-size:13px;
    color:#999;
    line-height:1.7;
}

/* ================= Products Responsive ================= */

@media(max-width:992px){

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

.products-hero .products-left h1{
font-size:46px;
}

.products-hero .products-left{
max-width:100%;
}

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

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

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

}

@media(max-width:768px){

.products-hero{
min-height:60vh;
}

.products-hero .products-left{
text-align:center;
}

.products-hero .products-left h4{
font-size:15px;
}

.products-hero .products-left h1{
font-size:36px;
}

.products-hero .products-left .hero-buttons{
justify-content:center;
}

.product-categories{
padding:70px 0;
}

.product-categories .section-title h2{
font-size:32px;
}

.products-grid .product-card img{
height:220px;
}

.products-grid .product-content{
padding:25px;
}

.products-grid .product-content h3{
font-size:22px;
}

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

.process-timeline::before{
left:25px;
}

.process-number{
width:50px;
height:50px;
min-width:50px;
font-size:18px;
}

.process-info{
padding:22px;
}

.process-info h3{
font-size:22px;
}

.process-info p{
font-size:15px;
}

.engineering-support{
padding:70px 0;
}

.support-card{
padding:30px;
}

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

.support-card p{
font-size:15px;
}

.support-icon{
width:60px;
height:60px;
}

.support-icon i{
font-size:24px;
}

.why-airmac{
padding:70px 0;
}

.why-airmac .why-grid{
grid-template-columns:1fr;
}

.smart-desk{
padding:70px 0;
}

.smart-box h2{
font-size:30px;
}

.smart-options{
grid-template-columns:1fr;
gap:12px;
}

.smart-option{
padding:15px;
}

.smart-box small{
font-size:12px;
}

}


/* ===========================
   GALLERY HERO
=========================== */

.gallery-hero{

    min-height:70vh;

    display:flex;

    align-items:center;

    background:
    linear-gradient(
        90deg,
        rgba(11,60,93,.90) 0%,
        rgba(11,60,93,.72) 35%,
        rgba(11,60,93,.25) 65%,
        rgba(11,60,93,.08) 100%
    ),

    url("../images/gallery/gallery-banner.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    position:relative;

    padding-top:150px;

}

.gallery-hero .overlay{

    position:absolute;

    inset:0;

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

}

.gallery-hero-content{

    position:relative;

    z-index:2;

}

.gallery-left h4{

    color:#25D366;

    letter-spacing:4px;

    margin-bottom:15px;

}

.gallery-left h1{

    color:white;

    font-size:58px;

    font-weight:800;

}

.gallery-left p{

    color:white;

    max-width:700px;

}

/* =======================
   GALLERY PROJECTS
======================= */

.gallery-projects{

    padding:90px 0;

    background:#f8fafc;

}

.gallery-grid{

    display:grid;

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

    gap:30px;

    margin-top:50px;

}

.gallery-card{

    background:#ffffff;

    border-radius:18px;

    overflow:hidden;

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

    transition:.3s;

}

.gallery-card:hover{

    transform:translateY(-8px);

}

.gallery-image{

    height:220px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#0B3C5D;

    color:white;

    font-size:60px;

}

.gallery-card h3{

    padding:20px 20px 10px;

}

.gallery-card p{

    padding:0 20px 20px;

    color:#666;

}

/* ==========================================
   CONTACT HERO (Override)
========================================= */

.contact-hero{

    background:
    linear-gradient(
        90deg,
        rgba(11,60,93,.85) 0%,
        rgba(11,60,93,.65) 40%,
        rgba(11,60,93,.20) 70%,
        rgba(11,60,93,.05) 100%
    ),
    url("../images/contact/contact-banner.jpg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}

/* =========================================================
   HOME PAGE RESPONSIVE
   Tablet & Phone overrides — do not edit above
   ======================================================== */

@media(max-width:768px){

.hero{
    min-height:60vh;
}

.hero .hero-left h4{
    font-size:18px;
    letter-spacing:2px;
}

.hero .hero-left h1{
    font-size:32px;
}

.hero .hero-left .hero-subtitle{
    font-size:17px;
}

.hero .hero-left h2{
    font-size:18px;
}

.hero .hero-left h2::after{
    margin-left:auto;
    margin-right:auto;
}

.hero .hero-left p{
    font-size:16px;
}

.hero .hero-buttons{
    flex-direction:column;
    align-items:stretch;
    gap:12px;
}

.hero .hero-buttons .btn{
    width:100%;
    justify-content:center;
    padding:16px 24px;
}

.hero .hero-card{
    width:100%;
    max-width:420px;
    margin:0 auto;
}

.about .section-title h2,
.why-us .section-title h2,
.products .section-title h2,
.industries .section-title h2,
.services .section-title h2,
.process .section-title h2,
.testimonials .section-title h2,
.contact-home .section-title h2{
    font-size:32px;
}

.about .section-title p,
.why-us .section-title p,
.products .section-title p,
.industries .section-title p,
.services .section-title p,
.process .section-title p,
.testimonials .section-title p,
.contact-home .section-title p{
    font-size:16px;
}

.about{
    padding:60px 0;
}

.about .about-content{
    grid-template-columns:1fr;
    gap:30px;
}

.about .about-image img{
    max-width:100%;
}

.about .about-text{
    padding-left:0;
    text-align:center;
}

.about .about-text h3{
    font-size:22px;
}

.why-us{
    padding:60px 0;
}

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

.products{
    padding:60px 0;
}

.industries{
    padding:60px 0;
}

.industries .industry-grid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.industry-card h3{
    font-size:18px;
}

.services{
    padding:60px 0;
}

.services .services-grid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.process{
    padding:60px 0;
}

.process .process-grid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.process .number{
    width:60px;
    height:60px;
    font-size:24px;
}

.testimonials{
    padding:60px 0;
}

.testimonials .testimonial-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.contact-home{
    padding:60px 0;
}

.contact-home .contact-card h3{
    font-size:24px;
}

.contact-home .contact-buttons .btn{
    width:100%;
    max-width:320px;
    justify-content:center;
}

footer{
    padding:30px 0;
}

.floating-call,
.floating-whatsapp{
    width:54px;
    height:54px;
    font-size:24px;
    right:16px;
}

.floating-call{
    bottom:168px;
}

.floating-whatsapp{
    bottom:94px;
}

}

@media(max-width:480px){

.logo h2{
    font-size:18px;
}

.logo p{
    display:none;
}

.logo img{
    width:60px;
}

.hero{
    min-height:50vh;
}

.hero .hero-left h4{
    font-size:15px;
    margin-top:20px;
}

.hero .hero-left h1{
    font-size:26px;
}

.hero .hero-left .hero-subtitle{
    font-size:15px;
}

.hero .hero-left h2{
    font-size:16px;
}

.hero .hero-left p{
    font-size:14px;
    margin-bottom:25px;
}

.hero .hero-buttons .btn{
    font-size:15px;
    padding:14px 20px;
}

.about .section-title h2,
.why-us .section-title h2,
.products .section-title h2,
.industries .section-title h2,
.services .section-title h2,
.process .section-title h2,
.testimonials .section-title h2,
.contact-home .section-title h2{
    font-size:26px;
    margin-bottom:10px;
}

.about .section-title p,
.why-us .section-title p,
.products .section-title p,
.industries .section-title p,
.services .section-title p,
.process .section-title p,
.testimonials .section-title p,
.contact-home .section-title p{
    font-size:14px;
}

.about{
    padding:50px 0;
}

.about .about-image img{
    border-radius:12px;
}

.about .about-text h3{
    font-size:20px;
}

.about .about-text p{
    font-size:15px;
}

.about-list div{
    font-size:14px;
}

.why-us{
    padding:50px 0;
}

.why-us .why-grid{
    grid-template-columns:1fr;
}

.why-us .why-card{
    padding:25px;
}

.why-icon{
    font-size:40px;
}

.products{
    padding:50px 0;
}

.products .product-card img{
    height:180px;
}

.products .product-card h3{
    font-size:20px;
}

.products .product-card p{
    font-size:14px;
}

.industries{
    padding:50px 0;
}

.industries .industry-grid{
    grid-template-columns:1fr;
    gap:18px;
}

.industry-card h3{
    font-size:17px;
    padding:14px;
}

.services{
    padding:50px 0;
}

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

.service-card{
    padding:24px;
}

.service-card h3{
    font-size:20px;
}

.service-card p{
    font-size:14px;
}

.process{
    padding:50px 0;
}

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

.process-card{
    padding:25px;
}

.process .number{
    width:50px;
    height:50px;
    font-size:20px;
    margin-bottom:18px;
}

.process-card h3{
    font-size:18px;
}

.process-card p{
    font-size:14px;
}

.testimonials{
    padding:50px 0;
}

.testimonial-card{
    padding:25px;
}

.testimonial-card p{
    font-size:14px;
}

.contact-home{
    padding:50px 0;
}

.contact-home .contact-card{
    padding:25px;
}

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

.contact-home .contact-card p{
    font-size:15px;
}

.contact-home .contact-buttons .btn{
    width:100%;
    font-size:15px;
    padding:14px 20px;
}

footer{
    padding:20px 0;
}

footer p{
    font-size:14px;
}

.floating-call,
.floating-whatsapp{
    width:48px;
    height:48px;
    font-size:20px;
    right:12px;
}

.floating-call{
    bottom:158px;
}

.floating-whatsapp{
    bottom:88px;
}

}

/* =========================================================
   ABOUT PAGE RESPONSIVE
   Tablet & Phone overrides — About page only
   ======================================================== */

@media(max-width:768px){

.about-hero{
    min-height:55vh;
}

.about-hero .hero-left h1{
    font-size:32px;
}

.about-hero .hero-left .hero-subtitle{
    font-size:17px;
}

.about-hero .hero-left > p{
    font-size:16px;
}

.about-hero .hero-buttons{
    flex-direction:column;
    align-items:stretch;
    gap:12px;
}

.about-hero .hero-buttons .btn{
    width:100%;
    justify-content:center;
    padding:16px 24px;
}

.about-company{
    padding:60px 0;
}

.about-container{
    grid-template-columns:1fr;
    gap:30px;
    text-align:center;
}

.about-container .about-image{
    order:-1;
}

.about-container .about-content h2{
    font-size:28px;
}

.about-container .about-content p{
    font-size:15px;
}

.about-container .about-features{
    text-align:left;
    max-width:400px;
    margin:0 auto 30px;
}

.about{
    padding:60px 0;
}

.about .about-content{
    grid-template-columns:1fr;
    gap:30px;
    text-align:center;
}

.about .about-text h2{
    font-size:28px;
}

.about .about-text p{
    font-size:15px;
}

.core-values{
    padding:60px 0;
}

.about-cta{
    padding:60px 20px;
}

.about-cta h2{
    font-size:32px;
}

.about-cta p{
    font-size:16px;
    max-width:100%;
}

.about-cta .cta-buttons{
    flex-direction:column;
    align-items:center;
    gap:14px;
}

.about-cta .cta-buttons .btn{
    width:100%;
    max-width:320px;
    justify-content:center;
}

}

@media(max-width:480px){

.about-hero{
    min-height:45vh;
}

.about-hero .hero-left h4{
    font-size:15px;
}

.about-hero .hero-left h1{
    font-size:26px;
}

.about-hero .hero-left .hero-subtitle{
    font-size:15px;
}

.about-hero .hero-left > p{
    font-size:14px;
}

.about-hero .hero-buttons .btn{
    font-size:15px;
    padding:14px 20px;
}

.about-company{
    padding:50px 0;
}

.about-container .about-content h5{
    font-size:14px;
}

.about-container .about-content h2{
    font-size:24px;
}

.about-container .about-content p{
    font-size:14px;
}

.about-container .about-features div{
    font-size:14px;
}

.about{
    padding:50px 0;
}

.about .about-text h2{
    font-size:24px;
}

.about .about-text p{
    font-size:14px;
}

.about .about-list div{
    font-size:14px;
}

.core-values{
    padding:50px 0;
}

.value-card{
    padding:25px;
}

.value-card i{
    font-size:34px;
}

.value-card h3{
    font-size:20px;
}

.value-card p{
    font-size:14px;
}

.about-cta{
    padding:50px 20px;
}

.about-cta h2{
    font-size:26px;
}

.about-cta p{
    font-size:14px;
    margin-bottom:30px;
}

.about-cta .cta-buttons .btn{
    font-size:15px;
    padding:14px 20px;
    width:100%;
    max-width:300px;
    justify-content:center;
}

}

/* ── Products 480px ── */
@media(max-width:480px){

.products-hero{
    min-height:50vh;
    padding-top:60px;
}

.products-hero .products-left h1{
    font-size:26px;
}

.products-hero .products-left h4{
    font-size:13px;
}

.products-hero .products-left .hero-subtitle{
    font-size:14px;
}

.products-hero .products-left > p{
    font-size:13px;
}

.products-hero .products-left .hero-buttons{
    flex-direction:column;
    gap:12px;
}

.products-hero .products-left .btn,
.products-hero .products-left .call{
    width:100%;
    max-width:280px;
    justify-content:center;
}

.product-categories{
    padding:50px 0;
}

.product-categories .section-title h2{
    font-size:26px;
}

.products-grid{
    padding:0 15px;
    gap:20px;
}

.products-grid .product-card img{
    height:180px;
}

.products-grid .product-content{
    padding:18px;
}

.products-grid .product-content h3{
    font-size:18px;
}

.products-grid .product-content p{
    font-size:13px;
}

.products-grid .product-content a{
    font-size:13px;
    padding:10px 0;
}

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

.process-item{
    gap:15px;
}

.process-number{
    width:40px;
    height:40px;
    min-width:40px;
    font-size:15px;
}

.process-info{
    padding:18px;
}

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

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

.engineering-support{
    padding:50px 0;
}

.support-card{
    padding:22px;
}

.support-card h3{
    font-size:18px;
}

.support-card p{
    font-size:13px;
}

.support-icon{
    width:50px;
    height:50px;
}

.support-icon i{
    font-size:20px;
}

.why-airmac{
    padding:50px 0;
}

.why-airmac .why-grid{
    gap:15px;
    padding:0 15px;
}

.smart-desk{
    padding:50px 0;
}

.smart-box{
    padding:25px 15px;
}

.smart-box h2{
    font-size:24px;
}

.smart-box > p{
    font-size:14px;
}

.smart-options{
    grid-template-columns:1fr;
    gap:10px;
}

.smart-option{
    padding:12px;
}

.smart-option h4{
    font-size:14px;
}

.smart-option span{
    font-size:12px;
}

.smart-buttons{
    flex-direction:column;
    gap:12px;
}

.smart-buttons .btn{
    width:100%;
    max-width:280px;
    justify-content:center;
}

.smart-box small{
    font-size:11px;
}

}

/* ── Gallery 768px ── */
@media(max-width:768px){

.gallery-hero{
    min-height:55vh;
    padding-top:120px;
}

.gallery-left h1{
    font-size:36px;
}

.gallery-left p{
    max-width:100%;
    font-size:16px;
}

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.gallery-image{
    height:180px;
}

.gallery-card h3{
    font-size:18px;
}

.gallery-card p{
    font-size:14px;
}

.gallery-projects{
    padding:70px 0;
}

}

/* ── Gallery 480px ── */
@media(max-width:480px){

.gallery-hero{
    min-height:45vh;
    padding-top:85px;
}

.gallery-hero-content{
    margin-top:10px;
}

.gallery-left h4{
    font-size:13px;
}

.gallery-left h1{
    font-size:26px;
}

.gallery-left p{
    font-size:14px;
    max-width:100%;
}

.gallery-grid{
    grid-template-columns:1fr;
    gap:16px;
}

.gallery-image{
    height:160px;
}

.gallery-card h3{
    font-size:16px;
    padding:16px 16px 8px;
}

.gallery-card p{
    font-size:13px;
    padding:0 16px 16px;
}

.gallery-projects{
    padding:50px 0;
}

}

/* ── Contact 768px ── */
@media(max-width:768px){

.contact-hero .hero-content{
    margin-top:10px;
}

}

/* ── Contact 480px ── */
@media(max-width:480px){

.contact-hero{
    background-position:80% center;
}

.contact-home{
    padding:50px 0;
}

.contact-home .contact-card{
    padding:25px;
}

.contact-home .contact-card h3{
    font-size:24px;
}

.contact-home .contact-card p{
    font-size:14px;
}

.contact-home .contact-buttons .btn{
    font-size:15px;
}

}