/* ===========================
   PKPS Website
   Developed by PKPS & ChatGPT
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    background:#ffffff;
}

/*============================
        COMMON
=============================*/

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/*============================
        HEADER
=============================*/

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    background:#ffffff;

    box-shadow:0 3px 15px rgba(0,0,0,.08);

    z-index:1000;
}

header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:85px;
}

/*============================
        LOGO
=============================*/

.logo img{

    width:70px;
    height:70px;

    object-fit:cover;


    transition:.3s;
}

.logo img:hover{

    transform:scale(1.05);
}

/*============================
        NAVIGATION
=============================*/

nav{

    display:flex;
    gap:35px;
}

nav a{

    color:#003366;

    font-weight:600;

    transition:.3s;
}

nav a:hover{

    color:#00AEEF;
}

/*============================
      GET QUOTE BUTTON
=============================*/

.btn-nav{

    background:#00AEEF;

    color:#fff;

    padding:14px 28px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;
}

.btn-nav:hover{

    background:#0078b6;
}

/*============================
        HERO
=============================*/

.hero{

    margin-top:85px;

    min-height:75vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:80px 20px;

    background:linear-gradient(135deg,#eef8ff,#ffffff);
}

.hero-content{

    max-width:900px;
}

.hero h1{

    font-size:58px;

    color:#003366;

    font-weight:700;

    line-height:1.2;

    margin-bottom:30px;
}

.hero p{

    font-size:22px;

    color:#555;

    line-height:1.8;

    margin-bottom:40px;
}

/*============================
      HERO BUTTONS
=============================*/

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.primary-btn{

    background:#003366;

    color:white;

    padding:16px 34px;

    border-radius:8px;

    transition:.3s;

    font-weight:600;
}

.primary-btn:hover{

    background:#0055aa;
}

.secondary-btn{

    background:#00AEEF;

    color:white;

    padding:16px 34px;

    border-radius:8px;

    transition:.3s;

    font-weight:600;
}

.secondary-btn:hover{

    background:#0088cc;
}

/*============================
      RESPONSIVE
=============================*/

@media(max-width:900px){

header .container{

flex-direction:column;

height:auto;

padding:20px;
}

nav{

margin:20px 0;

flex-wrap:wrap;

justify-content:center;

gap:20px;
}

.hero h1{

font-size:40px;
}

.hero p{

font-size:18px;
}

}

@media(max-width:600px){

.hero{

padding:60px 20px;
}

.hero h1{

font-size:32px;
}

.hero p{

font-size:17px;
}

.logo img{

width:60px;
height:60px;
}

.btn-nav{

padding:12px 20px;
}

}



/*============================
        ABOUT
=============================*/

.about{
    padding:100px 20px;
    background:#f7fbff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about h2{
    font-size:42px;
    color:#003366;
    margin-bottom:25px;
}

.about p{
    font-size:18px;
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
}

.about-box{
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.about-box h3{
    color:#003366;
    margin-bottom:25px;
    font-size:28px;
}

.about-box ul{
    list-style:none;
    padding:0;
}

.about-box li{
    margin-bottom:18px;
    font-size:18px;
    color:#444;
}

@media(max-width:900px){

    .about-grid{
        grid-template-columns:1fr;
    }

}

/*============================
        SERVICES
=============================*/

.services{
    padding:100px 20px;
    background:#ffffff;
}

.services h2{
    text-align:center;
    font-size:42px;
    color:#003366;
    margin-bottom:20px;
}

.section-description{
    max-width:850px;
    margin:0 auto 60px;
    text-align:center;
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#f8fbff;
    padding:40px 30px;
    border-radius:18px;
    text-align:center;
    transition:0.3s;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

.service-icon{
    font-size:52px;
    margin-bottom:25px;
}

.service-card h3{
    color:#003366;
    margin-bottom:15px;
    font-size:24px;
}

.service-card p{
    color:#666;
    line-height:1.8;
}

@media(max-width:900px){

.services-grid{

grid-template-columns:1fr;

}

}

/*============================
        INDUSTRIES
=============================*/

.industries{
    padding:100px 20px;
    background:#f7fbff;
}

.industries h2{
    text-align:center;
    color:#003366;
    font-size:42px;
    margin-bottom:20px;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.industry-card{
    background:white;
    padding:40px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.industry-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.industry-icon{
    font-size:48px;
    margin-bottom:20px;
}

.industry-card h3{
    color:#003366;
}

@media(max-width:900px){

    .industries-grid{
        grid-template-columns:1fr;
    }

}

/*============================
      CLIENT SUCCESS
=============================*/

.success{

padding:100px 20px;

background:#ffffff;

text-align:center;

}

.success h2{

font-size:44px;

color:#003366;

margin-bottom:20px;

}

.success p{

max-width:750px;

margin:auto;

color:#666;

margin-bottom:60px;

font-size:18px;

}

.success-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.success-card{

background:#003366;

color:white;

padding:45px 20px;

border-radius:16px;

transition:.3s;

box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.success-card:hover{

transform:translateY(-10px);

background:#00AEEF;

}

.success-card h3{

font-size:50px;

margin-bottom:15px;

}

.success-card span{

font-size:18px;

}

@media(max-width:900px){

.success-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.success-grid{

grid-template-columns:1fr;

}

}



/*============================
        CONTACT
=============================*/

.contact{

padding:100px 20px;

background:white;

}

.contact .container{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.contact h2{

font-size:42px;

color:#003366;

margin-bottom:25px;

}

.contact p{

color:#555;

line-height:1.9;

margin-bottom:20px;

}

.contact-details p{

margin-bottom:25px;

}

.contact form{

display:flex;

flex-direction:column;

gap:20px;

}

.contact input,
.contact textarea{

padding:18px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

font-family:Poppins;

}

.contact input:focus,
.contact textarea:focus{

outline:none;

border:1px solid #00AEEF;

}

.contact button{

background:#003366;

color:white;

padding:18px;

border:none;

border-radius:10px;

font-size:17px;

font-weight:600;

cursor:pointer;

transition:.3s;

}

.contact button:hover{

background:#00AEEF;

}

@media(max-width:900px){

.contact .container{

grid-template-columns:1fr;

}

}

/*============================
            FOOTER
=============================*/

.footer{

    background:#003366;

    color:#ffffff;

    padding:70px 0 25px;
}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;
}

.footer-column h3{

    margin-bottom:20px;

    font-size:22px;

    color:#ffffff;
}

.footer-column p{

    color:#d9e7f5;

    line-height:1.8;

    margin-top:20px;
}

.footer-column ul{

    list-style:none;
}

.footer-column ul li{

    margin-bottom:14px;

    color:#d9e7f5;

    line-height:1.6;
}

.footer-column a{

    color:#d9e7f5;

    transition:.3s;
}

.footer-column a:hover{

    color:#00AEEF;

    padding-left:6px;
}

.footer-logo{

    width:80px;


}

.footer hr{

    border:none;

    border-top:1px solid rgba(255,255,255,.15);

    margin:50px 0 25px;
}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;
}

.footer-bottom p{

    color:#d9e7f5;
}

.footer-links{

    display:flex;

    gap:25px;
}

.footer-links a{

    color:#d9e7f5;

    transition:.3s;
}

.footer-links a:hover{

    color:#00AEEF;
}

@media(max-width:900px){

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-logo{

margin:auto auto 20px;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

.footer-links{

justify-content:center;

}

}