/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    color:#333;
    background:#fff;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   HEADER
========================= */

.main-header{
    background:#fff;
    box-shadow:0 3px 15px rgba(0,0,0,.1);
    position:sticky;
    top:0;
    z-index:999;
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.brand{
    display:flex;
    align-items:center;
}

.brand img{
    width:70px;
}

.company-name{
    margin-left:15px;
}

.company-name h2{
    color:#0b3c78;
}

.company-name span{
    font-size:13px;
    color:#666;
}

/* =========================
   NAVIGATION
========================= */

.navbar ul{
    display:flex;
    list-style:none;
    gap:30px;
}

.navbar a{
    text-decoration:none;
    color:#333;
    font-weight:600;
    transition:.3s;
}

.navbar a:hover,
.navbar .active{
    color:#0b3c78;
}

.mobile-menu{
    display:none;
    font-size:28px;
    cursor:pointer;
}
/* =========================
   HERO
========================= */

.hero{
    background:linear-gradient(120deg,#0b3c78,#1e88e5);
    color:#fff;
    padding:90px 0;
}

.hero-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}

.hero-text{
    width:55%;
}

.hero-text h1{
    font-size:48px;
    margin-bottom:20px;
    line-height:1.2;
}

.hero-text p{
    line-height:1.8;
    margin-bottom:10px;
}

.hero-image{
    text-align:center;
}

.hero-image img{
    width:280px;
    max-width:100%;
}

/* =========================
   BUTTONS
========================= */

.btn{
    display:inline-block;
    margin-top:25px;
    padding:14px 35px;
    background:#fff;
    color:#0b3c78;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.secondary{
    background:#0b3c78;
    color:#fff;
}

.secondary:hover{
    background:#072b57;
}

/* =========================
   GENERAL SECTIONS
========================= */

section{
    padding:70px 0;
}

section h2{
    text-align:center;
    font-size:35px;
    margin-bottom:30px;
    color:#0b3c78;
}

.about-preview{
    text-align:center;
    line-height:1.8;
}

/* =========================
   SERVICES
========================= */

.services{
    background:#f5f7fa;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.service-card i{
    font-size:40px;
    color:#0b3c78;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
}

.service-card p{
    line-height:1.7;
}

/* =========================
   CTA
========================= */

.cta{
    background:#0b3c78;
    color:#fff;
    text-align:center;
}

.cta h2{
    color:#fff;
}

.cta p{
    margin-bottom:15px;
    line-height:1.8;
}
/* =========================
   FOOTER
========================= */
.footer{
    background:#0f172a;
    color:#cbd5e1;
    padding:70px 0 25px;
}

.footer-content{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:60px;
}
  

.footer-column h3{
    color:#fff;
    margin-bottom:20px;
    font-size:18px;
    position:relative;
}

.footer-column h3::after{
    content:"";
    display:block;
    width:45px;
    height:3px;
    background:#f4b400;
    margin-top:8px;
}

.footer-logo{
    width:170px;
    margin-bottom:20px;
}

.footer-column p{
    line-height:1.8;
    color:#94a3b8;
    font-size:15px;
}

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column ul li{
    margin-bottom:12px;
}

.footer-column a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
}

.footer-column a:hover{
    color:#f4b400;
    padding-left:5px;
}

.footer-column i{
    color:#f4b400;
    margin-right:10px;
    width:20px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:50px;
    padding-top:20px;
    text-align:center;
    font-size:14px;
    color:#94a3b8;
}

.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:58px;
    height:58px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
    z-index:999;
}

.whatsapp:hover{
    transform:translateY(-4px);
    background:#1ebe5b;
}

@media(max-width:991px){
    .footer-content{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){
    .footer-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-column h3::after{
        margin:8px auto 0;
    }
}
/* =========================
   PAGE BANNER
========================= */
.contact-info{
    list-style:none;
    padding:0;
    margin:0;
}

.contact-info li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
    line-height:1.7;
}

.contact-info i{
    color:#f4b400;
    width:18px;
    margin-top:4px;
}

.contact-info span{
    color:#cbd5e1;
}

@media (max-width:768px){
    .footer-content{
        grid-template-columns:1fr;
        gap:35px;
        text-align:center;
    }

    .contact-info li{
        justify-content:center;
        text-align:left;
    }
}

.latest-news {
    padding: 80px 0;
    background: #f8f9fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: .3s;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.news-icon {
    width: 60px;
    height: 60px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.news-date {
    display: inline-block;
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.news-card h3 {
    margin-bottom: 15px;
}

.news-card p {
    color: #555;
    line-height: 1.7;
}

.news-link {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    font-weight: 600;
    color: #0d6efd;
}

.news-link i {
    margin-left: 6px;
}

.news-button {
    text-align: center;
    margin-top: 50px;
}

.page-banner{
    background:linear-gradient(120deg,#0b3c78,#1e88e5);
    color:#fff;
    text-align:center;
    padding:70px 0;
}

.page-banner h1{
    font-size:45px;
    margin-bottom:10px;
}

.page-banner p{
    font-size:18px;
}

/* =========================
   ABOUT
========================= */

.about-layout{
    display:flex;
    align-items:center;
    gap:50px;
}

.about-image{
    text-align:center;
}

.about-image img{
    width:250px;
    max-width:100%;
}

.about-content{
    flex:1;
}

.about-content p{
    line-height:1.8;
    margin-bottom:20px;
}

.about-content ul{
    padding-left:20px;
}

.about-content li{
    margin-bottom:12px;
}

/* =========================
   VISION & MISSION
========================= */

.vision-section{
    background:#f5f7fa;
}

.vision-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.vision-box{
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.vision-box:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.vision-box i{
    font-size:45px;
    color:#0b3c78;
    margin-bottom:20px;
}

.vision-box h3{
    margin-bottom:15px;
}

.vision-box p{
    line-height:1.8;
}
 /* =========================
   PROJECTS
========================= */

.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.project-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    transition:.3s;
}

.project-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.project-image{
    height:150px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f5f7fa;
    margin-bottom:20px;
    border-radius:10px;
}

.project-image i{
    font-size:60px;
    color:#0b3c78;
}

.project-card h3{
    margin-bottom:15px;
    color:#0b3c78;
}

.project-card p{
    line-height:1.7;
}


/* =========================
   CONTACT
========================= */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

form input,
form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
}

form input:focus,
form textarea:focus{
    outline:none;
    border-color:#0b3c78;
}

textarea{
    height:150px;
    resize:none;
}

.why{

background:#f5f7fa;

}


.why-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}


.why-card{

background:white;
padding:35px;
text-align:center;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);

}


.why-card i{

font-size:45px;
color:#0b3c78;

}

.clients{

text-align:center;

}


.client-box{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;

}



.client-box div{

padding:30px;
background:#f5f7fa;
font-weight:bold;
border-radius:10px;

}

.whatsapp{

position:fixed;
right:25px;
bottom:25px;

width:60px;
height:60px;

background:#25D366;
color:white;

display:flex;
align-items:center;
justify-content:center;

font-size:35px;

border-radius:50%;

text-decoration:none;

z-index:999;

}

.values{

padding:70px 0;

}


.value-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;

}


.value-card{

background:white;
padding:30px;
text-align:center;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);

}


.value-card i{

font-size:40px;
color:#0b3c78;

}

.strength{

background:#f5f7fa;

}



.strength-list{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;

}



.strength-list div{

background:white;
padding:25px;
border-radius:10px;
font-size:18px;
font-weight:600;

}



.strength-list i{

color:#0b3c78;
font-size:25px;
margin-right:15px;

}

.service-intro{

text-align:center;
padding:60px 0;

}


.service-intro p{

max-width:850px;
margin:auto;
line-height:1.8;

}



.service-detail{

background:white;
padding:35px;

border-radius:18px;

box-shadow:
0 8px 25px rgba(0,0,0,.08);

transition:.3s;

}



.service-detail:hover{

transform:translateY(-10px);

box-shadow:
0 15px 35px rgba(0,0,0,.15);

}



.service-icon{

width:80px;
height:80px;

background:#0b3c78;

color:white;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

margin-bottom:25px;

}



.service-icon i{

font-size:35px;

}



.service-detail h3{

font-size:25px;
margin-bottom:15px;

}



.service-detail p{

line-height:1.7;

}



.service-detail ul{

margin-top:20px;
padding-left:20px;

}



.service-detail li{

margin-bottom:8px;

}



.service-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.stats{

background:#ffffff;
color:#0b3c78;

}


.stats-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;

}


.stat-box{

text-align:center;

}


.stat-box i{

font-size:40px;

}


.stat-box h2{

font-size:45px;
margin:15px 0;

}

.section-description{

text-align:center;
max-width:850px;
margin:0 auto 40px;
line-height:1.8;

}



.capability{

background:#f5f7fa;

}



.capability-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;

}



.capability-grid div{

background:white;
padding:25px;
border-radius:10px;
font-weight:600;

}



.capability-grid i{

color:#0b3c78;
margin-right:10px;

}


/* PROJECT PAGE */


.project-intro{

text-align:center;
padding:60px 0;

}


.project-intro p{

max-width:900px;
margin:auto;
line-height:1.8;

}




.project-filter{

display:flex;
justify-content:center;
gap:15px;
margin-bottom:40px;
flex-wrap:wrap;

}


.project-filter button{

border:none;
padding:12px 25px;
border-radius:30px;
background:#eee;
cursor:pointer;
font-weight:600;

}



.project-filter .active{

background:#0b3c78;
color:white;

}




.project-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}



.project-card{

background:white;

border-radius:15px;

overflow:hidden;

box-shadow:
0 8px 25px rgba(0,0,0,.1);

transition:.3s;

}



.project-card:hover{

transform:translateY(-8px);

}



.project-image{

height:220px;
overflow:hidden;

}



.project-image img{

width:100%;
height:100%;
object-fit:cover;

}




.project-content{

padding:25px;

}



.project-content span{

display:inline-block;

background:#0b3c78;

color:white;

padding:6px 15px;

border-radius:20px;

font-size:13px;

}



.project-content h3{

margin:15px 0;

}



.project-content p{

line-height:1.6;

}




.project-capability{

background:#f5f7fa;

padding:70px 0;

}




@media(max-width:768px){


.project-grid{

grid-template-columns:1fr;

}


}

/* GALLERY */


.gallery-intro{

text-align:center;
padding:60px 0;

}



.gallery-intro p{

max-width:850px;
margin:auto;
line-height:1.8;

}




.gallery-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

}



.gallery-item{

position:relative;

height:280px;

overflow:hidden;

border-radius:15px;

}



.gallery-item img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}



.gallery-item:hover img{

transform:scale(1.1);

}




.gallery-overlay{

position:absolute;

bottom:0;

left:0;

right:0;

background:
linear-gradient(
transparent,
rgba(0,0,0,.8)
);


color:white;

padding:30px 20px 20px;


}



.gallery-overlay h3{

font-size:20px;

}





@media(max-width:768px){


.gallery-grid{

grid-template-columns:1fr;

}


}

/* COMPANY PROFILE */


.profile-overview{

padding:70px 0;

}



.profile-layout{

display:flex;

align-items:center;

gap:50px;

}



.profile-logo img{

width:280px;

}



.profile-content{

flex:1;

}



.profile-content p{

line-height:1.8;

margin-bottom:20px;

}






.business-area{

background:#f5f7fa;

padding:70px 0;

}




.business-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}



.business-card{

background:white;

padding:30px;

text-align:center;

border-radius:15px;

box-shadow:
0 5px 20px rgba(0,0,0,.08);

}



.business-card i{

font-size:45px;

color:#0b3c78;

margin-bottom:20px;

}






.profile-strength{

padding:70px 0;

}



.strength-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}



.strength-grid div{

text-align:center;

padding:30px;

background:#f5f7fa;

border-radius:15px;

}



.strength-grid i{

font-size:40px;

color:#0b3c78;

}






.quality-section{

background:#0b3c78;

color:white;

text-align:center;

}



.quality-section p{

max-width:850px;

margin:20px auto;

line-height:1.8;

}





@media(max-width:768px){


.profile-layout{

display:block;

text-align:center;

}


.business-grid,
.strength-grid{

grid-template-columns:1fr;

}


}

/* CONTACT PAGE */


.contact-section{

padding:70px 0;

}



.contact-layout{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

}




.contact-info p{

margin:20px 0;

line-height:1.8;

}



.contact-info i{

color:#0b3c78;

width:30px;

font-size:20px;

}





.contact-social a{

display:inline-flex;

width:45px;

height:45px;

align-items:center;

justify-content:center;

background:#0b3c78;

color:white;

border-radius:50%;

margin-right:10px;

font-size:20px;

}





.contact-form{

background:white;

padding:35px;

border-radius:15px;

box-shadow:

0 5px 20px rgba(0,0,0,.1);

}



.contact-form input,
.contact-form textarea{


width:100%;

padding:15px;

margin-bottom:15px;

border:1px solid #ddd;

border-radius:8px;

font-size:15px;

}




.contact-form textarea{

height:150px;

resize:none;

}



.submit-btn{

border:none;

cursor:pointer;

background:#0b3c78;

color:white;

}




.map-section{

background:#f5f7fa;

padding:70px 0;

}



.map iframe{

width:100%;

height:400px;

border:0;

border-radius:15px;

}


.contact-item{

display:flex;

gap:20px;

margin-bottom:25px;

}



.contact-item i{

font-size:28px;

color:#0b3c78;

width:40px;

}



.contact-item h4{

margin-bottom:5px;

}



.contact-item p{

line-height:1.7;

}





.contact-form select{

width:100%;

padding:15px;

margin-bottom:15px;

border:1px solid #ddd;

border-radius:8px;

}





.contact-benefit{

background:#f5f7fa;

padding:70px 0;

text-align:center;

}



.benefit-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}



.benefit-grid div{

background:white;

padding:35px;

border-radius:15px;

}



.benefit-grid i{

font-size:40px;

color:#0b3c78;

}




@media(max-width:768px){


.benefit-grid{

grid-template-columns:1fr;

}


}


@media(max-width:768px){


.contact-layout{

grid-template-columns:1fr;

}


}

/* CAREER VACANCY */


.vacancy-section{

padding:70px 0;

}




.vacancy-intro{

text-align:center;

max-width:800px;

margin:0 auto 40px;

line-height:1.8;

}




.vacancy-list{

display:flex;

flex-direction:column;

gap:25px;

}



.vacancy-card{


background:white;

padding:35px;

border-radius:15px;

box-shadow:
0 5px 20px rgba(0,0,0,.08);

transition:.3s;

}



.vacancy-card:hover{

transform:translateY(-5px);

box-shadow:
0 10px 30px rgba(0,0,0,.15);

}




.vacancy-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:20px;

}



.vacancy-header h3{

font-size:25px;

color:#0b3c78;

}




.vacancy-header span{

background:#0b3c78;

color:white;

padding:8px 20px;

border-radius:30px;

font-size:14px;

}





.vacancy-details{

display:flex;

gap:30px;

margin-bottom:20px;

color:#555;

}



.vacancy-details i{

color:#0b3c78;

margin-right:8px;

}





.apply-btn{

display:inline-block;

margin-top:20px;

padding:12px 30px;

background:#0b3c78;

color:white;

text-decoration:none;

border-radius:30px;

font-weight:600;

}



.apply-btn:hover{

background:#1e88e5;

}

/* CAREER */


.career-intro{

padding:70px 0;

text-align:center;

}



.career-intro p{

max-width:900px;

margin:20px auto;

line-height:1.8;

}





.career-benefit{

background:#f5f7fa;

padding:70px 0;

}




.career-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}




.career-grid div{

background:white;

padding:35px;

border-radius:15px;

text-align:center;

}




.career-grid i{

font-size:45px;

color:#0b3c78;

}



@media(max-width:768px){


.vacancy-header{

flex-direction:column;

align-items:flex-start;

gap:15px;

}



.vacancy-details{

flex-direction:column;

gap:10px;

}


}

/* NEWS */


.news-section{

padding:70px 0;

}



.news-grid{


display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;


}




.news-card{


background:white;

border-radius:15px;

overflow:hidden;

box-shadow:

0 8px 25px rgba(0,0,0,.1);


transition:.3s;


}



.news-card:hover{

transform:translateY(-8px);

}




.news-card img{


width:100%;

height:220px;

object-fit:cover;


}



.news-content{


padding:25px;


}



.news-content span{


background:#0b3c78;

color:white;

padding:6px 15px;

border-radius:20px;

font-size:13px;


}



.news-content h3{


margin:20px 0;

font-size:22px;


}



.news-content p{


line-height:1.7;


}



.news-content .date{


color:#666;

font-size:14px;


}



.news-content a{


color:#0b3c78;

font-weight:bold;

text-decoration:none;


}




@media(max-width:768px){


.news-grid{

grid-template-columns:1fr;

}


}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

    /* Navigation */

    .navbar{
        display:none;
    }

    .navbar.show{
        display:block;
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#fff;
        padding:20px;
        box-shadow:0 5px 15px rgba(0,0,0,.1);
    }

    .navbar ul{
        flex-direction:column;
        gap:20px;
    }

    .mobile-menu{
        display:block;
    }


    /* Hero */

    .hero-content{
        flex-direction:column;
        text-align:center;
    }

    .hero-text{
        width:100%;
    }

    .hero-text h1{
        font-size:35px;
    }


    /* Layouts */

    .about-layout{
        flex-direction:column;
        text-align:center;
    }

    .service-grid,
    .vision-grid,
    .project-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }


    /* Footer */

    .footer-content{
        flex-direction:column;
        gap:30px;
    }

    .footer-logo,
    .footer-links,
    .footer-contact{
        text-align:center;
    }

    .footer-contact p{
        justify-content:center;
    }

}

@media(max-width:768px){


.stats-grid,
.why-grid,
.client-box{

grid-template-columns:1fr;

}


.about-layout,
.contact-grid{

grid-template-columns:1fr;
display:block;

}


.project-grid{

grid-template-columns:1fr;

}


}

@media(max-width:768px){

.value-grid,
.strength-list{

grid-template-columns:1fr;

}

}

@media(max-width:768px){


.service-grid{

grid-template-columns:1fr;

}


}

@media(max-width:768px){

.capability-grid{

grid-template-columns:1fr;

}

}