@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
:root {
    --color-body: #b6cbce;
    --color-heading: #eef3db;
    --color-base: #033f47;
    --color-base2: #022a30;
    --color-brand: #e0f780;
    --color-brand2: #deff58;
    --sidbar-width: 240px;
    --font-base: "Bai Jamjuree";
}

body{
    background-color: var(--color-base2);
    color: var(--color-body);
    font-family:var(--font-base),sans-serif ;
}

h1,h2,h3,h4,h5,h6{
    color: var(--color-heading);
    font-weight: 700;
}

a{
    text-decoration: none;
    color: var(--color-body);
    transition: all .4s ease;

}

a:hover{
    color: var(--color-brand);
}
img{
    width: 100%;
}
.text-brand{
    color: var(--color-brand);
}
.bg-base
{
    background-color: var(--color-base);
}
.full-height{
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.shadow-effect{
    transition: all .5s;
}
.shadow-effect:hover{
    box-shadow: -6px 6px 0 0 var(--color-brand);
}
.iconbox
{
     height:  58px;
     width: 58px;
     font-size: 33px;
     display: flex;
     text-align: center;
     justify-content: center;
     background-color: var(--color-brand);
     color: var(--color-base);
}

/* navbar  */

.navbar{
    background-color: var(--color-base);
}
.navbar .nav-link 
{
    font-weight: 700;
    text-transform: uppercase;
    color: white;

}
.navbar .nav-link:hover
{
    color: var(--color-brand );
}
.navbar .nav-link.active {
    color: var(--color-brand);
}
@media (min-width:992px)
{
    .navbar {
        min-height: 100vh;
        width: var(--sidbar-width);
        background:linear-gradient(rgba(3,63,71,0.9),rgba(3,63,71,0.9)),url(/Images/sidebar-img.jpg
        );
       background-size: cover;
       background-position: center;

    }
    .navbar-brand img {
        border:8px solid var(--color-brand) ;
    }
    #content-dropper{
      padding-left: var(--sidbar-width);
    }
}

@media (max-width:422px) {
    .container .number{
      margin-bottom: 15px;
    }
    div .btn,.number
    {
        padding: 8px 18px;
    }
    .btn,.phone {
        font-size: 14px;
    }
  
       }
     
   @media (max-width:362px) {
    div .btn,.number
    {
        padding: 8px 10px;
    }
    .btn,.phone {
        font-size: 13px;
    }
   }
    @media (max-width:326px){
        .action-container {
            display: flex;  
            align-items: center; 
            justify-content: flex-start; 
            gap: 10px;  
            flex-wrap: nowrap; /* Prevent items from wrapping */
        }
        
        .btn,
        .phone {
            white-space: nowrap; /* Prevent text from wrapping */
        }
    }
.btn{
    padding: 12px 28px;
    font-weight: 700;
    
}
.btn-brand{
    background-color: var(--color-brand);
    border-color: var(--color-brand);
}
.btn-brand:hover,.btn-brand:focus{
          background-color: var(--color-brand2);
          color: var(--color-base);
          border-color: var(--color-brand2);
}
.link-custom{
        font-weight: 700;
        position: relative;
}
.link-custom::after {
    content: "";
    width:0%;
    background-color: var(--color-brand);
    height: 2px;
    position: absolute;
    left: 0;
    top: 110%;
    transition: all 0.4s;
}
.link-custom:hover::after
{
    width: 100%;
}

/* work */
.card-custom .card-custom-image {
     overflow: hidden;
}
.card-custom .card-custom-image img {
     transition: all .4s ease;
}

.card-custom:hover .card-custom-image img{
    transform: scale(1.1);
}

/* contact */

#contact .form-control{
    background-color: var(--color-base);
    color: var(--color-body);
    border-color: var(--color-base);
}
#contact .form-control:focus{
    border-color: var(--color-brand);
    box-shadow: none;
}
#contact .form-control::placeholder{
    color: var(--color-body);
}

#contact input.form-control{
    height: 45px;
}

/* footer  */
 
.social-link a{
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background-color: var(--color-base);
    border-radius: 100px;
}
.visitor {
    width: 100px; 
}