/* ==========================================================
   AIRKU WEBSITE V2
   Author : ChatGPT
   ========================================================== */

:root{

    --primary:#1697FF;
    --primary-dark:#0B2F73;
    --secondary:#48C4FF;

    --light:#F5FAFF;
    --white:#FFFFFF;

    --dark:#1F2937;
    --gray:#6B7280;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s;

}

/* ========================================================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    color:var(--dark);

    background:#fff;

    overflow-x:hidden;

    line-height:1.8;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

section{

    padding:90px 0;

}

/* ========================================================== */
/* CONTAINER */
/* ========================================================== */

.container{

    max-width:1200px;

}

/* ========================================================== */
/* NAVBAR */
/* ========================================================== */

.navbar{

    background:#fff;

    padding:18px 0;

    transition:.3s;

    box-shadow:0 5px 25px rgba(0,0,0,.03);

}

.navbar.scrolled{

    padding:12px 0;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.navbar-brand img{

    height:60px;

}

.nav-link{

    color:#333;

    font-weight:500;

    margin-left:25px;

    transition:.3s;

}

.nav-link:hover{

    color:var(--primary);

}

.btn-airku{

    background:var(--primary);

    color:#fff;

    padding:13px 28px;

    border-radius:50px;

    font-weight:600;

}

.btn-airku:hover{

    background:var(--primary-dark);

    color:#fff;

}

/* ========================================================== */
/* BUTTON */
/* ========================================================== */

.btn{

    border-radius:50px;

    padding:14px 34px;

    font-weight:600;

}

.btn-primary{

    background:var(--primary);

    border:none;

}

.btn-primary:hover{

    background:var(--primary-dark);

}

.btn-outline-primary{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-outline-primary:hover{

    background:var(--primary);

    color:#fff;

}

/* ========================================================== */
/* HERO */
/* ========================================================== */

.hero{

    padding:170px 0 140px;

    background:linear-gradient(135deg,#ffffff,#eef8ff);

}

.hero-content{

    max-width:560px;

}

.hero-badge{

    display:inline-block;

    padding:8px 20px;

    border-radius:50px;

    background:#DDF3FF;

    color:#0B2F73;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    font-size:52px;

    max-width:650px;

    line-height:1.2;

    color:#0B2F73;

    margin-bottom:20px;

}

.hero p{

    color:#666;

    font-size:18px;

    margin-bottom:35px;
    

}

.hero-button{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.hero-image{

    width:100%;

    max-width:540px;

    margin:auto;

    animation:float 4s ease-in-out infinite;

}

/* ========================================================== */

.hero-feature{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:45px;

}

.hero-feature div{

    background:#fff;

    border-radius:15px;

    padding:15px;

    box-shadow:var(--shadow);

    font-weight:500;

}

.hero-feature i{

    color:var(--primary);

    margin-right:8px;

}

/* ========================================================== */
/* ABOUT */
/* ========================================================== */

.about{

    background:#fff;

}

.section-subtitle{

    color:var(--primary);

    font-size:15px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

}

.section-title{

    font-size:42px;

    font-weight:700;

    color:#0B2F73;

    margin:15px 0 25px;

}

.about img{

    border-radius:25px;

    box-shadow:var(--shadow);

}

.about p{

    color:#666;

}

.about i{

    color:var(--primary);

    margin-right:8px;

}

/* ========================================================== */
/* FLOAT */
/* ========================================================== */

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

/* ==========================================================
   PRODUCT SECTION
========================================================== */

.product-section{

    background:#fff;

}

.product-section.bg-light{

    background:#F7FBFF !important;

}

.product-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.07);

    transition:.35s;

    height:100%;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.product-card img{

    width:100%;

    height:260px;

    object-fit:contain;

    padding:25px;

    transition:.35s;

    background:#fff;

}

.product-card:hover img{

    transform:scale(1.05);

}

.product-body{

    padding:28px;

}

.product-category{

    display:inline-block;

    padding:6px 15px;

    background:#EAF6FF;

    color:#1697FF;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:15px;

}

.product-body h4{

    font-size:24px;

    color:#0B2F73;

    margin-bottom:15px;

    font-weight:700;

}

.product-body p{

    color:#666;

    min-height:70px;

    margin-bottom:25px;

}

.product-body .btn{

    width:100%;

}


/* ==========================================================
   WHY US
========================================================== */

.why-us{

    background:#F7FBFF;

}

.why-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.35s;

    height:100%;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.10);

}

.why-card .icon{

    width:85px;

    height:85px;

    margin:auto;

    border-radius:50%;

    background:#1697FF;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:25px;

}

.why-card h4{

    color:#0B2F73;

    font-size:22px;

    margin-bottom:15px;

    font-weight:700;

}

.why-card p{

    color:#666;

}


/* ==========================================================
   CTA
========================================================== */

.cta-section{

    background:#fff;

}

.cta-box{

    background:linear-gradient(135deg,#1697FF,#0B2F73);

    padding:60px;

    border-radius:25px;

    color:#fff;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.cta-box h2{

    font-size:42px;

    font-weight:700;

    margin-bottom:20px;

}

.cta-box p{

    font-size:18px;

    opacity:.95;

    margin:0;

}

.cta-box .btn{

    background:#fff;

    color:#1697FF;

    border:none;

    font-weight:700;

    padding:16px 35px;

}

.cta-box .btn:hover{

    background:#EAF6FF;

}


/* ==========================================================
   FOOTER
========================================================== */

.footer{

    background:#0B2F73;

    color:#fff;

    padding:80px 0 30px;

}

.footer-logo{

    width:180px;

    margin-bottom:20px;

}

.footer h5{

    margin-bottom:20px;

    font-weight:700;

}

.footer ul{

    padding:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer a{

    color:#fff;

    transition:.3s;

}

.footer a:hover{

    color:#48C4FF;

}

.footer p{

    color:#E5E7EB;

}

.footer hr{

    border-color:rgba(255,255,255,.15);

    margin:40px 0 25px;

}


/* ==========================================================
   HOVER EFFECT
========================================================== */

.product-card,
.why-card,
.btn,
.nav-link{

    transition:.35s ease;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

/* ==========================
   Laptop
========================== */

@media (max-width:1200px){

.hero h1{

font-size:50px;

}

.section-title{

font-size:38px;

}

.hero-image{

 width:100%;
    max-width:720px;
    margin:auto;

}

}


/* ==========================
   Tablet
========================== */

@media (max-width:992px){

section{

padding:70px 0;

}

.navbar{

padding:12px 0;

}

.navbar-brand img{

height:52px;

}

.navbar-collapse{

margin-top:20px;

background:#fff;

padding:20px;

border-radius:18px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.nav-link{

margin:12px 0;

}

.btn-airku{

display:block;

text-align:center;

margin-top:15px;

}

.hero{

padding-top:120px;

text-align:center;

}

.hero-content{

max-width:100%;

}

.hero h1{

font-size:42px;

}

.hero-button{

justify-content:center;

}

.hero-feature{

grid-template-columns:1fr 1fr;

margin-top:35px;

}

.hero-image{

margin-top:45px;

max-width:430px;

}

.about{

text-align:center;

}

.about img{

margin-bottom:35px;

}

.section-title{

font-size:34px;

}

.product-card{

margin-bottom:20px;

}

.cta-box{

padding:40px;

text-align:center;

}

.cta-box h2{

font-size:34px;

}

.cta-box .btn{

margin-top:25px;

}

.footer{

text-align:center;

}

.footer-logo{

margin:auto auto 20px;

}

}


/* ==========================
   Mobile
========================== */

@media (max-width:768px){

section{

padding:60px 0;

}

.hero{

padding-top:110px;

}

.hero h1{

font-size:34px;

line-height:1.25;

}

.hero p{

font-size:16px;

}

.hero-button{

flex-direction:column;

}

.hero-button .btn{

width:100%;

}

.hero-feature{

grid-template-columns:1fr;

}

.hero-image{

max-width:100%;

margin-top:40px;

}

.section-title{

font-size:30px;

}

.product-card img{

height:220px;

padding:20px;

}

.product-body{

padding:22px;

}

.product-body h4{

font-size:20px;

}

.why-card{

padding:30px 22px;

}

.why-card .icon{

width:70px;

height:70px;

font-size:28px;

}

.cta-box{

padding:30px 25px;

}

.cta-box h2{

font-size:28px;

}

.cta-box p{

font-size:16px;

}

.footer{

padding:60px 0 25px;

}

}


/* ==========================================================
   BACK TO TOP
========================================================== */

.back-top{

position:fixed;

right:25px;

bottom:25px;

width:50px;

height:50px;

background:#1697FF;

color:#fff;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

font-size:22px;

box-shadow:0 10px 25px rgba(0,0,0,.15);

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.35s;

z-index:999;

}

.back-top.active{

opacity:1;

visibility:visible;

}


/* ==========================================================
   WHATSAPP FLOATING
========================================================== */

.whatsapp{

position:fixed;

left:25px;

bottom:25px;

width:60px;

height:60px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:32px;

color:#fff;

box-shadow:0 10px 25px rgba(0,0,0,.18);

z-index:999;

transition:.35s;

}

.whatsapp:hover{

transform:scale(1.08);

color:#fff;

}


/* ==========================================================
   SMOOTH HOVER
========================================================== */

img{

transition:.35s;

}

img:hover{

transform:translateY(-2px);

}

.btn{

transition:.35s;

}

.btn:hover{

transform:translateY(-2px);

}

.product-card:hover .btn{

background:#0B2F73;

}

.why-card:hover .icon{

transform:rotate(10deg) scale(1.08);

transition:.35s;

}


/* ==========================================================
   SELECTION
========================================================== */

::selection{

background:#1697FF;

color:#fff;

}


/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar{

width:8px;

}

::-webkit-scrollbar-thumb{

background:#1697FF;

border-radius:20px;

}

::-webkit-scrollbar-track{

background:#EDF7FF;

}

/*====================================================
HERO SLIDER
====================================================*/

.hero-slider{

margin-top:88px;

}

.heroSwiper{

width:100%;

height:680px;

}

.heroSwiper .swiper-slide{

display:flex;

justify-content:center;

align-items:center;

background:#fff;

}

.heroSwiper img{

width:100%;

height:100%;

object-fit:cover;

display:block;

}

.heroSwiper .swiper-button-next,

.heroSwiper .swiper-button-prev{

color:#fff;

}

.heroSwiper .swiper-pagination-bullet{

background:#fff;

opacity:.6;

}

.heroSwiper .swiper-pagination-bullet-active{

background:#1697FF;

opacity:1;

}

@media(max-width:768px){

.heroSwiper{

height:250px;

}

}