/* ===========================
   GLOBAL
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    background:#ffffff;
    line-height:1.7;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}


/*==========================
 Navbar
==========================*/

.navbar{
    background:#ffffff;
    padding:8px 0;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.navbar-brand img{
    height:50px;
    width:auto;
    transition:.3s;
}

.navbar-brand img:hover{
    transform:scale(1.05);
}

.navbar-nav{
    align-items:center;
}

.nav-item{
    margin-left:10px;
}

.nav-link{
    font-size:17px;
    font-weight:500;
    color:#333 !important;
    padding:10px 15px !important;
    transition:.3s;
    border-radius:8px;
}

.nav-link:hover{
    color:#176B3A !important;
    background:rgba(23,107,58,.08);
}

.nav-link.active{
    color:#176B3A !important;
    font-weight:600;
}

.navbar-toggler{
    border:none;
}

.navbar-toggler:focus{
    box-shadow:none;
}

/*==========================
 Mobile Responsive
==========================*/

@media(max-width:991px){

    .navbar{
        padding:10px 0;
    }

    .navbar-brand img{
        height:45px;
    }

    .navbar-nav{
        margin-top:15px;
        text-align:center;
    }

    .nav-item{
        margin:8px 0;
    }

    .nav-link{
        padding:12px;
    }

}


/* ===========================
   BUTTON
=========================== */

.btn-success{
    background:#176B3A;
    border:none;
    padding:14px 38px;
    border-radius:50px;
    transition:.3s;
}

.btn-success:hover{
    background:#14512c;
    transform:translateY(-3px);
}

/* ===========================
   WHY CHOOSE US
=========================== */

.why{
    padding:100px 0;
}

.why i{
    color:#176B3A;
    margin-bottom:20px;
}

.why h4{
    font-weight:600;
    margin-bottom:15px;
}

/* ===========================
   COUNTER
=========================== */

.counter{
    background:#176B3A;
    color:white;
    padding:80px 0;
}

.counter-box{
    padding:20px;
    transition:.3s;
}

.counter-box:hover{
    transform:translateY(-10px);
}

.counter-box h1{
    color:#FFD54F;
    font-size:60px;
    font-weight:700;
}

.counter-box p{
    font-size:18px;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#14512c;
    color:white;
    padding:40px 0;
    text-align:center;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:991px){

.hero{
    text-align:center;
}

.hero h1{
    font-size:42px;
}

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

.nav-link{
    margin-left:0;
    padding:10px 0;
}

}

@media(max-width:576px){

.hero h1{
    font-size:32px;
}

.hero p{
    font-size:16px;
}

.counter-box h1{
    font-size:42px;
}

}

/* ===========================
   TIMELINE
=========================== */

.timeline{

    padding:100px 0;

    background:#ffffff;

}

.timeline-box{

    padding:35px;

    border-radius:15px;

    background:#f8f9fa;

    transition:.3s;

    height:100%;

}

.timeline-box:hover{

    background:#176B3A;

    color:white;

    transform:translateY(-10px);

}

.timeline-box h3{

    color:#176B3A;

    font-size:40px;

    font-weight:700;

}

.timeline-box:hover h3{

    color:#FFD54F;

}

/* ===========================
   GALLERY
=========================== */

.gallery img{

    transition:.4s;

    cursor:pointer;

}

.gallery img:hover{

    transform:scale(1.05);

}

/* ===========================
   PRODUCT PAGE
=========================== */

.product-card{

    border:none;

    overflow:hidden;

    border-radius:15px;

    transition:.4s;

}

.product-card img{

    height:260px;

    object-fit:cover;

}

.product-card:hover{

    transform:translateY(-10px);

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

}

.product-card .card-body{

    text-align:center;

}

.product-card h4{

    font-weight:600;

    margin:15px 0;

}

.product-card p{

    color:#666;

}



.testimonial-card{
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    transition: .3s;
}

.testimonial-card:hover{
    transform: translateY(-5px);
}

.testimonial-card .card-body{
    padding: 30px;
}

.testimonial-card p{
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Logo */

.logo{
    width:60px;
    height:60px;
    border-radius:50%;
}

.logo-text{
    margin-left:12px;
    line-height:1.2;
}

.logo-name{
    margin:0;
    font-size:32px;
    font-weight:700;
    color:#176B3A;
    font-family:"Pyidaungsu","Noto Sans Myanmar","Poppins",sans-serif;
}

.logo-company{
    margin:2px 0 0;
    font-size:15px;
    color:#555;
    line-height:1.35;
    font-family:"Pyidaungsu","Noto Sans Myanmar","Poppins",sans-serif;
}

@media (max-width:991px){

    .logo{
        width:50px;
        height:50px;
    }

    .logo-name{
        font-size:24px;
    }

    .logo-company{
        font-size:11px;
    }

}




