/* Reset some default spacing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Entire webpage */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f7fa;
    color: #333333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: white;
    color:#12689B;

    padding: 10px 50px;
}

/* Logo */

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:80px;
    height:auto;
}

.company h2{
    font-size:28px;
    margin:0;
}

.company p{
    font-size:14px;
    color:#12689B;
}

/* Navigation */

nav{
    display:flex;
    align-items:center;
}

nav ul{
    display:flex;
    list-style:none;
    margin:0;
    padding:0;
    gap:25px;
}

nav ul li{
    margin:0;
    padding:0;
}

nav ul li a{
    color:#12689B;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

nav ul li a:hover{
    color:#FFD54F;
}

nav ul li a.active{

    color:#FFD54F;
    border-bottom:3px solid #FFD54F;

}
/* Hero Section */

.hero{

    position:relative;
    overflow:hidden;
    min-height:calc(100vh - 80px);
}

.slide{

    display:none;

    align-items:center;
    justify-content:space-between;

    padding:30px 60px;

}

.slide.active{

    display:flex;

}

.category{

    display:inline-block;

    background:#0057B8;

    color:white;

    padding:8px 18px;

    border-radius:0px;

    margin-bottom:20px;

    font-size:14px;

    letter-spacing:1px;

}

.hero-text{

    width:50%;

}

.hero-image{

    width:70%;
    text-align:center;

}

.hero-image img{

    width:100%;
    max-width:1000px;

}

.hero-text h1{

    font-size:42px;
    color:#0057B8;

    margin-bottom:20px;

}

.hero-text p{

    font-size:20px;

    line-height:1.7;

    margin-bottom:25px;

}

.hero-text ul{

    list-style:none;

    margin-bottom:30px;

}

.hero-text li{

    margin-bottom:12px;

    font-size:18px;

}

.btn1,
.btn2{

    display:inline-block;
    padding:14px 28px;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
    transition:0.3s;
    margin-right:15px;

}

.btn1{

    background:#0057B8;
    color:#ffffff;

}

.btn2{

    background:#25D366;
    color:#ffffff;

}

.btn1:hover{

    background:#00479A;

}

.btn2:hover{

    background:#1DA851;


}

/* Buttons */
button {
    margin-top: 30px;
    padding: 12px 25px;
    border: none;
    background-color: #ff9800;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-right: 10px;
}

button:hover {
    background-color: #e68900;
}
/* Slider Navigation */

.prev,
.next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    background:#0057B8;

    color:white;

    border:none;

    width:50px;

    height:50px;

    border-radius:50%;

    font-size:28px;

    cursor:pointer;

    opacity:0.8;

}

.prev{

    left:20px;

}

.next{

    right:20px;

}

.prev:hover,
.next:hover{

    opacity:1;

}

/* Slider Dots */

.dots{

    position:absolute;

    bottom:25px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:12px;

}

.dot{

    width:14px;

    height:14px;

    background:#cccccc;

    border-radius:50%;

    cursor:pointer;

    transition:0.3s;

}

.active-dot{

    background:#0057B8;

    transform:scale(1.3);

}

/* Why Choose Section */

.why-choose{

    padding:20px 10px;

    background:#f8f9fb;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:40px;

    color:#0057B8;

    margin-bottom:15px;

}

.section-title p{

    font-size:18px;

    color:#555;

    max-width:700px;

    margin:auto;

    line-height:1.7;

}

.choose-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.choose-card{

    background:white;

    padding:35px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 5px 15px #12689B;

    transition:0.3s;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    height:100%;

}


.choose-card i{

    font-size:45px;

    color:#0057B8;

    margin-bottom:20px;

}

.choose-card h3{

    margin-bottom:15px;

    color:#222;

}

.choose-card p{

    color:#666;

    line-height:1.6;

}

.choose-card:hover i{

    color:#003F88;


}
/* Products */

.products{

    padding:20px 10px;

    background:#ffffff;

}

.product-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.product-card{

    background:white;

    border-radius:18px;

    overflow:hidden;

    text-decoration:none;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.35s;

    color:#333;

}

.product-image{

    aspect-ratio:3 / 2;

    overflow:hidden;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.4s;

}

.product-content{

    padding:25px;

}

.product-content h3{

    color:#0057B8;

    margin-bottom:15px;

    font-size:24px;

}

.product-content p{

    color:#666;

    line-height:1.7;

    margin-bottom:20px;

}

.explore{

    color:#0057B8;

    font-weight:600;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-card:hover .explore{

    letter-spacing:1px;

}

/* ===================================
   HOW WE DELIVER EXCELLENCE
=================================== */

.process{

    padding:40px 20px;

    background:#f7f9fc;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:30px;

}

.process-card{

    background:white;

    border-radius:10px;

    padding:5px 20px;

    text-align:center;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.35s;

}

.process-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 30px rgba(0,0,0,.12);

}

.process-number{

    width:70px;

    height:70px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#0057B8;

    color:white;

    font-size:28px;

    font-weight:bold;

    display:flex;

    justify-content:center;

    align-items:center;

}

.process-card h3{

    color:#0057B8;

    margin-bottom:15px;

    font-size:20px;

}

.process-card p{

    color:#666;

    line-height:1.7;

}

/*===================================
        WHO WE SERVE
===================================*/

.clients{

    padding:40px 20px;

    background:white;

}

.clients-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:50px;

}

.client-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    text-align:center;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.35s;

}

.client-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 30px rgba(0,0,0,.12);

}

.client-card img{

    width:100%;

    aspect-ratio:3/2;

    object-fit:cover;

}

.client-card h3{

    color:#0057B8;

    margin:20px 0 10px;

}

.client-card p{

    color:#666;

    padding:0 20px 25px;

    line-height:1.6;

}

/*====================================
        CALL TO ACTION
====================================*/

.cta{

    background:linear-gradient(135deg,#0057B8,#0076d7);

    padding:30px 60px;

    text-align:center;

    color:white;

}

.cta-content{

    max-width:850px;

    margin:auto;

}

.cta h2{

    font-size:42px;

    margin-bottom:20px;

}

.cta p{

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;

    opacity:.95;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    background:white;

    color:#0057B8;

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-whatsapp{

    background:#25D366;

    color:white;

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-whatsapp:hover{

    transform:translateY(-3px);

}

/*=========================
        FOOTER
=========================*/

.footer{

    background:#003B7A;

    color:white;

    padding-top:30px;
   
}

.footer-container{

    width:90%;

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:0px;

}

.footer-logo{

    width:100px;

    margin-bottom:20px;

}

.footer h3{
color:white
        margin-bottom:15px;

}

.footer h4{

    color:#FFD54F;

    margin-bottom:20px;

}

.footer p{

    line-height:1.8;

    color:#ddd;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:#4FC3F7;

}

.footer-bottom{

    margin-top:30px;

    border-top:1px solid rgba(255,255,255,.2);

    text-align:center;

    padding: 10px;

    color:#ccc;

}

.footer-links ul{

    list-style:none;
    margin:0;
    padding:0;

}

.footer-links ul li{

    margin-bottom:10px;

}

.footer-links ul li a{

    color:#ffffff;
    text-decoration:none;
    transition:.3s;

}

.footer-links ul li a:hover{

    color:#FFD54F;

}
.footer-link{

    color:#ffffff;
    text-decoration:none;
    transition:.3s;

}

.footer-link:hover{

    color:#FFD54F;

}
/*====================================
        ABOUT HERO
=====================================*/

.about-hero{

    height:340px;

    background:
    linear-gradient(rgba(0,57,122,.75),
    rgba(0,57,122,.75)),
    url("images/about/about-banner.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

    justify-content:center;

}

.about-overlay{

    width:100%;

    max-width:1200px;

    margin:auto;

    padding:0 60px;

}

.about-hero-content{

    max-width:800px;

    color:#ffffff;

}

.about-hero-content h1{

    font-size:48px;

    line-height:1.25;

    margin:20px 0;

    font-weight:700;

}

.about-hero-content p{

    font-size:20px;

    line-height:1.8;

    margin-bottom:35px;

    color:#f5f5f5;

}

.about-hero .btn1{

    padding:14px 32px;

}
/*==================================
        WHO WE ARE
==================================*/

.who-we-are{

    padding:70px 60px;

    background:#ffffff;

}

.who-container{

    display:flex;

    align-items:center;

    gap:60px;

}

.who-image{

    flex:1;

}

.who-image img{

    width:100%;

    border-radius:18px;

    object-fit:cover;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.who-content{

    flex:1;

}

.who-content h2{

    font-size:40px;

    color:#0057B8;

    margin:20px 0;

    line-height:1.3;

}

.who-content p{

    font-size:18px;

    color:#555;

    line-height:1.8;

    margin-bottom:20px;

}
/*==========================
      OUR JOURNEY
===========================*/

.journey{

    padding:70px 60px;

    background:#f8f9fc;

}

.journey-container{

    max-width:1200px;

    margin:auto;

    display:flex;

    align-items:center;

    gap:60px;

}

.journey-content{

    flex:1;

}

.journey-image{

    flex:1;

}

.journey-image img{

    width:100%;

    border-radius:18px;

    object-fit:cover;

}

.section-tag{

    display:inline-block;

    background:#0057B8;

    color:white;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    letter-spacing:1px;

    margin-bottom:20px;

}

.journey h2{

    color:#0057B8;

    margin-bottom:20px;

}

.journey p{

    line-height:1.8;

    color:#555;

    margin-bottom:18px;

}
/*====================================
        OUR COMMITMENT
====================================*/

.commitment{

    padding:70px 60px;

    background:#ffffff;

}

.commitment-content{

    text-align:center;

    max-width:850px;

    margin:auto;

    margin-bottom:50px;

}

.commitment-content h2{

    font-size:42px;

    color:#0057B8;

    margin:20px 0;

}

.commitment-content p{

    font-size:18px;

    color:#666;

    line-height:1.8;

}

.commitment-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px 40px;

    max-width:900px;

    margin:auto;

}

.commitment-item{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 20px;

    background:#f8f9fc;

    border-radius:12px;

    transition:.3s;

}

.commitment-item:hover{

    transform:translateX(8px);

    background:#eef5ff;

}

.commitment-item i{

    color:#0057B8;

    font-size:24px;

}

.commitment-item span{

    font-size:18px;

    font-weight:600;

    color:#333;

}

/*====================================
        PRODUCTS HERO
=====================================*/

.products-hero{

    min-height:240px;
padding:20px 0;
    background:
    linear-gradient(rgba(0,57,122,.75),
    rgba(0,57,122,.75)),
    url("images/products/products-banner.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

}

.products-overlay{

    width:100%;

    max-width:1200px;

    margin:auto;

    padding:0 10px;

}

.products-hero-content{

    max-width:800px;

    color:#ffffff;

}

.products-hero-content h1{

    font-size:45px;

    line-height:1.3;

    margin:20px 0;

}

.products-hero-content p{

    font-size:20px;

    line-height:1.4;

    margin-bottom:20px;

}

/*====================================
        PRODUCT CATEGORY
=====================================*/

.product-category{

    padding:10px 60px;

    background:#ffffff;

}

.product-row{

    display:flex;

    align-items:center;

    gap:60px;

}

.product-image{

    flex:1;

}

.product-image img{

    width:100%;

    border-radius:18px;

    display:block;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

    transition:.3s;

}

.product-image img:hover{

    transform:scale(1.02);

}

.product-content{

    flex:1;

}

.product-content h2{

    font-size:38px;

    color:#0057B8;

    margin:20px 0;

    line-height:1.3;

}

.product-content p{

    font-size:17px;

    color:#555;

    line-height:1.8;

    margin-bottom:25px;

}

.product-content h4{

    margin-bottom:18px;

    color:#333;

    font-size:20px;

}

.product-tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:35px;

}

.product-tags span{

    padding:10px 18px;

    background:#eef5ff;

    color:#0057B8;

    border-radius:30px;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.product-tags span:hover{

    background:#0057B8;

    color:#ffffff;

}

/* Alternate image position */

.product-row.reverse{

    flex-direction:row-reverse;

}

/* Alternate background */

.product-category:nth-child(even){

    background:#f8f9fc;

}

/*====================================
        CONTACT HERO
=====================================*/

.contact-hero{

    height:180px;

    background:
    linear-gradient(rgba(0,57,122,.75),
    rgba(0,57,122,.75)),
    url("images/contact/contact-banner.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

}

.contact-overlay{

    width:100%;

    max-width:1200px;

    margin:auto;

    padding:0 60px;

}

.contact-hero-content{

    max-width:700px;

    color:#ffffff;

}

.contact-hero-content h1{

    font-size:40px;

    margin:10px 0;

}

.contact-hero-content p{

    font-size:20px;

    line-height:1.8;

}

/*====================================
        CONTACT SECTION
=====================================*/

.contact-section{

    padding:30px 60px;

    background:#ffffff;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

}

.contact-info h2{

    color:#0057B8;

    font-size:40px;

    margin:20px 0;

}

.contact-info p{

    color:#666;

    line-height:1.8;

}

.info-box{

    display:flex;

    gap:20px;

    margin-top:30px;

}

.info-box i{

    width:55px;

    height:55px;

    background:#0057B8;

    color:white;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

}

.info-box h4{

    margin-bottom:6px;

}

.contact-form{

    background:#f8f9fc;

    padding:40px;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.contact-form h3{

    margin-bottom:25px;

    color:#0057B8;

}

.contact-form input,

.contact-form textarea{

    width:100%;

    padding:15px;

    margin-bottom:20px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:16px;

    outline:none;

}

.contact-form textarea{

    resize:vertical;

}

.contact-form button{

    border:none;

    cursor:pointer;

}
.form-status{
    display:none;
    margin-top:20px;
    padding:15px;
    background:#e8f5e9;
    color:#2e7d32;
    border:1px solid #4caf50;
    border-radius:8px;
    text-align:center;
    font-weight:600;
    line-height:1.6;
    animation:fadeIn .4s ease;
}

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*====================================
        GOOGLE MAP
=====================================*/

.map-section{

    padding:70px 60px;

    background:#f8f9fc;

}

.map-heading{

    text-align:center;

    max-width:700px;

    margin:0 auto 40px;

}

.map-heading h2{

    font-size:42px;

    color:#0057B8;

    margin:20px 0;

}

.map-heading p{

    font-size:18px;

    color:#666;

    line-height:1.8;

}

.map-container{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.10);

}

.map-container iframe{

    display:block;

}
/*====================================
        GALLERY HERO
=====================================*/

.gallery-hero{

    height:280px;

    background:
    linear-gradient(rgba(0,57,122,.75),
    rgba(0,57,122,.75)),
    url("images/gallery/gallery-banner.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

}

.gallery-overlay{

    width:100%;

    max-width:1200px;

    margin:auto;

    padding:0 60px;

}

.gallery-hero-content{

    max-width:700px;

    color:#ffffff;

}

.gallery-hero-content h1{

    font-size:48px;

    margin:20px 0;

}

.gallery-hero-content p{

    font-size:20px;

    line-height:1.8;

}
/*====================================
        FILTER BUTTONS
=====================================*/

.gallery-filter{

    padding:40px 60px;

    background:#ffffff;

}

.filter-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}

.filter-buttons button{

    padding:12px 25px;

    border:none;

    border-radius:30px;

    background:#eef5ff;

    color:#0057B8;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.filter-buttons button:hover,

.filter-buttons button.active{

    background:#0057B8;

    color:#ffffff;

}
/*====================================
        GALLERY GRID
=====================================*/

.gallery-section{

    padding:20px 60px 80px;

    background:#ffffff;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.gallery-card{

    background:#ffffff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;
        color:#333;

}

.gallery-card:hover{

    transform:translateY(-8px);

}

.gallery-card img{

    width:100%;

    aspect-ratio:3 / 2;

    overflow:hidden;

}

.gallery-content{

    padding:0px;

}

.gallery-content h3{

    color:#0057B8;

    margin-bottom:0px;

    font-size:20px;
    text-align:center;


}
.navbar ul li a{

    color:#fff;

    text-decoration:none;

    padding:8px 0;

    transition:.3s;

}

.navbar ul li a:hover{

    color:#ffd54f;

}

.navbar ul li a.active{

    color:#ffd54f;

    font-weight:600;

}
.logo img{

    height:60px;

    width:auto;

    display:block;

    transition:.3s;

}

.logo img:hover{

    transform:scale(1.05);

}

.social-icons{

    margin-top:15px;
    display:flex;
    gap:15px;

}

.social-icons a{

    width:40px;
    height:40px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:white;

    color:#12689B;

    text-decoration:none;

    transition:.3s;

}

.social-icons a:hover{

    background:#FFD54F;

    color:#12689B;

    transform:translateY(-3px);

}