:root{

    --primary-blue:#0A4DA3;
    --secondary-blue:#1565C0;
    --accent-orange:#FF5349;
    --light-bg:#F5F7FA;
    --dark-text:#1F2937;
    --white:#FFFFFF;

}

/* GENERAL */

body{

    font-family: Arial, sans-serif;
    background: var(--light-bg);
    color: var(--dark-text);
    margin:0;
    padding:0;

}

/* NAVBAR */

.navbar{

    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 2px 15px rgba(0,0,0,0.08);

    padding-top:15px;
    padding-bottom:15px;

}

.navbar-brand{

    font-weight:bold;
    font-size:24px;
    color:var(--primary-blue) !important;

}

.nav-link{

    font-weight:500;
    color:var(--dark-text) !important;
    margin-left:10px;
    transition:0.3s;

}

.nav-link:hover{

    color:var(--accent-orange) !important;

}

/* HERO SECTION */

.hero-section{

    min-height: 650px;

    display:flex;
    align-items:center;

    background:
    linear-gradient(
    135deg,
    rgba(10,77,163,0.92),
    rgba(21,101,192,0.88),
    rgba(245,130,32,0.82)
    );

    color:white;

    border-radius:0 0 40px 40px;

    overflow:hidden;

    padding-top:40px;
    padding-bottom:40px;

}

.hero-section h1{

    font-size:56px;
    font-weight:700;
    line-height:1.2;

}

.hero-section p{

    font-size:20px;
    opacity:0.95;

}

/* BUTTONS */

.btn-primary{

    background:var(--accent-orange);
    border:none;

    padding:14px 30px;

    border-radius:10px;

    font-weight:600;

    transition:0.3s;

}

.btn-primary:hover{

    background:var(--primary-blue);

    transform:translateY(-2px);

}

/* OUTLINE BUTTON */

.btn-outline-dark{

    border-radius:10px;
    padding:14px 30px;
    font-weight:600;

}

/* IMAGE */

.hero-section img{

    max-width:100%;

}

/* SECTION SPACING */

section:not(.hero-section){
    padding-top:80px;
    padding-bottom:80px;
}

/* FOOTER */

footer{

    background:var(--primary-blue);
    color:white;

}

/* MOBILE */

@media(max-width:768px){

    .hero-section{
        text-align:center;
        min-height:auto;
        padding-top:80px;
        padding-bottom:40px;
    }

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

    .hero-section p{
        font-size:18px;
    }

    .hero-section img{
        margin-top:40px;
    }

}

/* HERO BUTTONS */

.hero-buttons{
    display:flex;
    gap:12px;
    align-items:center;
    justify-content:flex-start;
    flex-wrap:nowrap;
}
.btn-hero-outline{
    background:rgba(255,255,255,0.15);
    border:2px solid rgba(255,255,255,0.7);
    color:#fff;
    border-radius:10px;
    padding:14px 30px;
    font-weight:600;
    backdrop-filter:blur(5px);
    transition:0.3s;
}

.btn-hero-outline:hover{
    background:#fff;
    color:var(--primary-blue);
    border-color:#fff;
}
@media(max-width:768px){

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

    .hero-buttons .btn{
        padding:12px 18px;
        font-size:15px;
    }
}

@media(max-width:480px){

    .hero-buttons{
        gap:8px;
    }

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


/* SERVICE CARDS */

.service-card{

    background:white;

    padding:30px;

    border-radius:20px;

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

    transition:0.3s;

    height:100%;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,0.12);

}

.service-card h4{

    color:var(--primary-blue);

    margin-bottom:15px;

    font-weight:bold;

}
/* SERVICE ICON */

.service-icon{

    width:80px;
    height:80px;
    background: linear-gradient( 135deg, #368CFB, #1F3CB1 );
    color:white;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:25px;

}

/* SERVICE CARD LIST */

.service-card ul{

    padding-left:18px;

    margin-bottom:0;

}

.service-card ul li{

    margin-bottom:10px;

    line-height:1.5;

}

/* CONTACT PAGE */

.contact-box{

    background:white;

    padding:40px;

    border-radius:20px;

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

}

.contact-box h3{

    color:var(--primary-blue);

    font-weight:bold;

}

.form-control{

    padding:14px;

    border-radius:10px;

    border:1px solid #ddd;

}

.form-control:focus{

    box-shadow:none;

    border-color:var(--primary-blue);

}

.map-box{

    overflow:hidden;

    border-radius:20px;

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

}

/* BRAND CARDS */

.brand-card{

    background:white;

    padding:30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 8px 20px rgba(0,0,0,0.06);

    transition:0.3s;

    height:100%;

    display:flex;

    align-items:center;

    justify-content:center;

}

.brand-card:hover{

    transform:translateY(-6px);

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

}

.brand-card img{

    max-height:80px;

    object-fit:contain;

}

/* CLIENT CARDS */

.client-card{

    background:white;

    padding:30px;

    border-radius:20px;

    box-shadow:0 8px 20px rgba(0,0,0,0.06);

    transition:0.3s;

    height:100%;

}

.client-card:hover{

    transform:translateY(-6px);

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

}

.client-card h4{

    color:var(--primary-blue);

    margin-bottom:15px;

    font-weight:bold;

}

/* VISION & MISSION */

.vision-card,
.mission-card{

    background:white;

    padding:50px 40px;

    border-radius:25px;

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

    transition:0.3s;

    height:100%;

    position:relative;

    overflow:hidden;

}

.vision-card:hover,
.mission-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,0.12);

}

.vm-icon{

    width:90px;
    height:90px;

    border-radius:25px;

    background:
    linear-gradient(
    135deg,
    var(--primary-blue),
    var(--accent-orange)
    );

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:38px;

    margin-bottom:30px;

}

.vision-card h2,
.mission-card h2{

    color:var(--primary-blue);

}

.vision-card p,
.mission-card p{

    font-size:18px;

    line-height:1.8;

}
/* FOOTER */

.main-footer{

    background:
    linear-gradient(
    135deg,
    #0A4DA3,
    #1565C0
    );

    color:white;

    padding-top:80px;
    padding-bottom:30px;

    margin-top:80px;

}

.footer-title{

    font-weight:bold;

    margin-bottom:25px;

}

.footer-links{

    list-style:none;

    padding:0;
    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:white;

    text-decoration:none;

    transition:0.3s;

}

.footer-links a:hover{

    color:var(--accent-orange);

}

.footer-social a{

    width:42px;
    height:42px;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,0.12);

    color:white;

    border-radius:50%;

    margin-right:10px;

    transition:0.3s;

    text-decoration:none;

}

.footer-social a:hover{

    background:var(--accent-orange);

    transform:translateY(-3px);

}

.footer-divider{

    margin-top:50px;
    margin-bottom:25px;

    border-color:rgba(255,255,255,0.2);

}

.footer-bottom p{

    margin:0;

    opacity:0.9;

}

.brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    background: #fff;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.brand-card img {
    max-height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.phone-link{
    text-decoration: none;
    color: inherit;
}