@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');


body {
   font-family: "Barlow", sans-serif;
   line-height: 1.7;
   color: #04670f;
   margin: 0;
   padding: 0;


}





h1, h2, h3, h4, h5, h6 {
    font-weight: 700 !important;
    color: #054a12;
}

a {
    color: #092032;
    text-decoration: none !important;
    transition: all 0.4s ease;
    font-weight: 500;
}

img {
    width: 100%;

}

.bg-cover {
    background-position: center !important;
    background-size: cover !important;
    background-position: center !important;
}



/* NAVBAR */
.top-nav {
    background-color: #076c13;
    padding-top: 5px;
    padding-bottom: 5px;

}

.top-nav p {
    margin-bottom: 0;
    display: inline-block;
    margin-right: 16px;
    color: #ffffff;
}

.top-nav i,
.top-nav span {
    vertical-align: middle;
}

.social-links a {
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    border-radius: 100%;
}

.social-links a:hover {
    background-color: #ffffff;
    color: #ff4d29;
    

}

.navbar {
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #ff4d29;
   
}

.navbar-brand {
    font-weight: 700;
    font-size: 26px;
    color: #092032;
}

.navbar-brand span {
    color: #ff4d29;
}

/* BTN */
.btn {
    padding : 09px 26px;
    font-weight: 500;
}

.btn-brand {
    background-color :#ff4d29;
    color: #ffffff;
    border-color: #ff4d29;
}

.btn-brand:hover {
    color: #ffffff;
    background-color: #e04122;
}

.dropdown-menu {display: none;}

ul li:hover 
.dropdown-menu{
    display: block;
    position: absolute;
    margin-left:-0.29cm;
    margin-top: -0.27cm;

    
}

.dropdown-menu ul {
    margin:0;
    padding:0;

}




/* ABOUT PAGE */




/* ABOUT PAGE */
.about-us-section {
    background-color: #ffffff; /* Blue background */
    text-align: center; /* Center text horizontally */
    padding: 5rem 0; /* Add vertical padding */
    margin: 0;
}

.about-us-section h1 {
    color: #ffffff; /* White text */
    font-size: 2.5rem; /* Adjust font size for better visibility */
    font-weight: 700; /* Bold text */
    margin: 0;
}

.dorik-container-3x5icc86
.dorik-container-3x5icc86 {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
}



.hero-section {
    background-image: url('./image/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
  }
  
  .about-us-section h2,
  .our-values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color:#004d40;
  }
  
  .card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  footer {
    background-color: #d5661c;
    color: #ffffff;
  }



  /* WhatsApp logo fixed at bottom right corner */
.whatsapp-float {
  position: fixed;
  right: 35px;
  bottom: 35px;
  z-index: 9999;
  display: block;
}
.whatsapp-float img {
  width: 70px;
  height: 70px;
  border-radius: 20%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  object-fit: cover;
  transition: box-shadow 0.2s;
}
.whatsapp-float img:hover {
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}
@media (max-width: 600px) {
  .whatsapp-float {
    right: 12px;
    bottom: 15px;
  }
  .whatsapp-float img {
    width: 40px;
    height: 40px;
  }
}

/* Make WhatsApp floating icon round and visually appealing */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, background 0.2s;
}
.whatsapp-float img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
}