:root{

    --primary:#071B34;
    --secondary:#C79B2C;

    --white:#FFFFFF;
    --light:#F8F9FA;
    --dark:#111827;

    --text:#5C6675;
    --heading:#0F172A;

    --border:#E5E7EB;

    --shadow-sm:0 5px 20px rgba(0,0,0,.06);
    --shadow-md:0 12px 35px rgba(0,0,0,.10);
    --shadow-lg:0 25px 60px rgba(0,0,0,.15);

    --radius:12px;
    --radius-lg:20px;

    --transition:.35s ease;

}

.bg-light-custom{

    background:var(--light);

}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:var(--white);

    line-height:1.7;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

.navbar{

    padding:20px 0;

    background:rgba(7,27,52,.90);

    backdrop-filter:blur(12px);

    transition:var(--transition);

    z-index:1000;

}

.navbar-brand{

    display:flex;

    align-items:center;

    color:#fff;

    font-weight:700;

    font-size:22px;

    gap:12px;

}

.navbar-brand img{

    width:48px;

}

.navbar-brand{

    color:var(--white);

}

.navbar-brand:hover{

    color:var(--white);

}

.nav-link{

    color:#fff;

    font-weight:500;

    margin-left:20px;

}

.nav-link:hover{

    color:var(--secondary);

}

.nav-link.active{

    color:var(--secondary);

}

.hero{

    position:relative;

    background:url("../images/hero.jpg") center center/cover;

    min-height:100svh;

    display:flex;

    align-items:center;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(7,27,52,.85),

        rgba(7,27,52,.75)

    );

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:35px;

    flex-wrap:wrap;

}

.hero h1{

    color:white;

    font-size:4rem;

    font-weight:800;

    line-height:1.2;

    margin:20px 0;

}

.btn-brand{

    transition:var(--transition);

}

.btn-brand:hover{

    transform:translateY(-3px);

    box-shadow:var(--shadow-md);

}

.scroll-indicator{

    z-index:3;

}

h1,h2,h3,h4,h5,h6{

    color:var(--heading);

    font-weight:700;

    margin-bottom:1rem;

}

p{

    margin-bottom:1rem;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

section{

    padding:100px 0;

}

.container{

    max-width:1200px;

}


.hero p{

    color:rgba(255,255,255,.85);

    font-size:1.15rem;

    line-height:1.9;

    max-width:650px;

}

.hero-tag{

    color:var(--secondary);

    letter-spacing:3px;

    font-weight:600;

}

.btn-brand{

    background:var(--secondary);

    color:white;

    border-radius:50px;

    padding:14px 34px;

    font-weight:600;

}

.btn-brand:hover{

    background:#d5ab42;

}

.scroll-indicator{

    position:absolute;

    bottom:40px;

    width:100%;

    text-align:center;

    color:white;

    font-size:32px;

    animation:bounce 2s infinite;

}

@keyframes bounce{

0%,20%,50%,80%,100%{

transform:translateY(0);

}

40%{

transform:translateY(-12px);

}

60%{

transform:translateY(-6px);

}

}

@media(max-width:992px){

    .hero h1{
        font-size:2.7rem;
    }

    .hero{
        text-align:center;
    }

    .hero-buttons{
        display:flex;
        flex-direction:column;
        justify-content:center;
        gap:15px;
    }

    .section-title{
        font-size:2rem;
    }

    .about-image{
        margin-bottom:20px;
    }

    #commitment h2{

        font-size:2.2rem;

    }

    .commitment-features{

        flex-direction:column;

        align-items:center;

    }

    .commitment-item{

        width:100%;

        justify-content:center;

        max-width:350px;

    }

}

.section-tag{

    display:inline-block;

    color:var(--secondary);

    font-size:.9rem;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:10px;

}

.section-title{

    font-size:2.6rem;

    margin-bottom:25px;

}

.about-image{

    width:100%;

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow-lg);

    object-fit:cover;

}

.info-card{

    background:#fff;

    padding:45px;

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow-sm);

    height:100%;

    transition:var(--transition);

}

.info-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.card-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:rgba(199,155,44,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.card-icon i{

    color:var(--secondary);

    font-size:2rem;

}

.value-card{

    background:#fff;

    padding:35px;

    border-radius:var(--radius);

    box-shadow:var(--shadow-sm);

    text-align:center;

    transition:var(--transition);

    height:100%;

    border:1px solid var(--border);

}

.value-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.value-card i{

    font-size:2.8rem;

    color:var(--secondary);

    margin-bottom:20px;

}

.section-subtitle{

    max-width:760px;

    margin:0 auto;

    color:var(--text);

    font-size:1.05rem;

    line-height:1.8;

}

.feature-card{

    background:var(--white);

    padding:40px 30px;

    border-radius:var(--radius-lg);

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    height:100%;

}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

    border-color:var(--secondary);

}

.feature-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(199,155,44,.12);

    margin-bottom:25px;

}

.feature-icon i{

    font-size:2rem;

    color:var(--secondary);

}

.feature-card h4{

    margin-bottom:15px;

    font-weight:700;

}

.feature-card p{

    margin-bottom:0;

}

.service-card{

    background:#fff;

    padding:40px;

    border-radius:var(--radius-lg);

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    height:100%;

    transition:var(--transition);

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

    border-color:var(--secondary);

}

.service-icon{

    width:75px;

    height:75px;

    border-radius:50%;

    background:rgba(199,155,44,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.service-icon i{

    font-size:2rem;

    color:var(--secondary);

}

.service-card h3{

    margin-bottom:25px;

}

.service-list{

    list-style:none;

    padding:0;

    margin:0;

}

.service-list li{

    padding:12px 0;

    border-bottom:1px solid var(--border);

    position:relative;

    padding-left:30px;

}

.service-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--secondary);

    font-weight:bold;

}

.service-list li:last-child{

    border-bottom:none;

}

.service-note{

    padding-top:0;

}

.service-note-box{

    background:linear-gradient(135deg,var(--primary),#0D2E57);

    color:white;

    border-radius:var(--radius-lg);

    padding:70px;

    text-align:center;

}

.service-note-box h3{

    color:white;

    margin-bottom:20px;

}

.service-note-box p{

    max-width:850px;

    margin:auto;

    color:rgba(255,255,255,.9);

    line-height:1.9;

}

.approach-card{

    position:relative;

    background:#fff;

    padding:40px 30px;

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow-sm);

    border:1px solid var(--border);

    text-align:center;

    transition:var(--transition);

    height:100%;

}

.approach-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

    border-color:var(--secondary);

}

.approach-number{

    position:absolute;

    top:20px;

    right:20px;

    font-size:2rem;

    font-weight:700;

    color:rgba(199,155,44,.20);

}

.approach-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:rgba(199,155,44,.12);

    display:flex;

    align-items:center;

    justify-content:center;

}

.approach-icon i{

    font-size:2rem;

    color:var(--secondary);

}

.approach-card h4{

    margin-bottom:15px;

}

#commitment{

    background:linear-gradient(
        135deg,
        var(--primary),
        #0D2E57
    );

    color:white;

    position:relative;

    overflow:hidden;

}

#commitment::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-180px;

    right:-120px;

}

#commitment::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(199,155,44,.08);

    bottom:-120px;

    left:-120px;

}

.commitment-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;

}

#commitment h2{

    color:white;

    font-size:3rem;

    margin:25px 0;

}

#commitment p{

    color:rgba(255,255,255,.90);

    font-size:1.1rem;

    line-height:1.9;

    margin-bottom:50px;

}

.commitment-features{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

}

.commitment-item{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(8px);

    padding:18px 28px;

    border-radius:50px;

    display:flex;

    align-items:center;

    gap:12px;

}

.commitment-item i{

    color:var(--secondary);

    font-size:1.3rem;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:30px;

}

.contact-item{

    display:flex;

    gap:20px;

    align-items:flex-start;

}

.contact-icon{

    width:60px;

    height:60px;

    background:rgba(199,155,44,.12);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.contact-icon i{

    color:var(--secondary);

    font-size:1.5rem;

}

.contact-form{

    background:white;

    padding:40px;

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow-md);

}

.form-control{

    border-radius:10px;

    padding:15px;

    border:1px solid var(--border);

}

.form-control:focus{

    border-color:var(--secondary);

    box-shadow:none;

}

.map-section iframe{

    width:100%;

    height:450px;

    border:0;

}

footer{

    background:var(--primary);

    color:white;

    padding:80px 0 30px;

}

footer h3,
footer h5{

    color:white;

}

footer ul{

    list-style:none;

    padding:0;

}

footer ul li{

    margin-bottom:12px;

}

footer a{

    color:rgba(255,255,255,.75);

}

footer a:hover{

    color:var(--secondary);

}

.social-links{

    display:flex;

    gap:15px;

}

.social-links a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.10);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

}

.footer-bottom{

    text-align:center;

    margin-top:30px;

    color:rgba(255,255,255,.70);

}


.topbar{

    background:var(--primary);

    color:white;

    font-size:.9rem;

    padding:10px 0;

}

.topbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

}

.topbar-left,
.topbar-right{

    display:flex;

    gap:25px;

    align-items:center;

}

.topbar i{

    color:var(--secondary);

    margin-right:8px;

}

.topbar-right a{

    color:white;

}

/* ===========================
   BACK TO TOP
=========================== */

#backTop{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--secondary);

    color:var(--white);

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:all .35s ease;

    box-shadow:var(--shadow-md);

    z-index:9999;

}

#backTop.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

#backTop:hover{

    transform:translateY(-3px);

    background:#d5ab42;

    box-shadow:var(--shadow-lg);

}

#backTop i{

    font-size:1.3rem;

}