:root 
{
  --primary-color: #004aad; /* Blue */
  --accent-color: #e60000;  /* Red */
  --text-color: #333;
  --background-color: #fff;
}


/* MUSORO - HEADER SEXTION */
header 
{
  background-color: white;
  color:var(--primary-color) ;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo 
{
  height: 40px;
}
    
.logo-container 
{
  text-align: center;
  margin-bottom:5px;
  background-color: #fff;
}

.logo-container img
{
  width: 90px;
  margin-bottom: 5px;
}

nav {
  width: 50%;
}

.menu-btn {
  display: block;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 20px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
}

.menu {
  display: none;
  color: var(--accent-color);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1); /* semi-transparent for glass */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px); /* glass blur */
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu ul li {
  list-style: none;
  padding: 15px 20px;
  border-bottom: 1px solid #eaeaea;
}

.menu ul li a
{
  text-decoration: none;
  color: #333;
  font-weight: bolder;
}


.menu ul li .plus {
  float: right;
  font-weight: bold;
}
/*************************************************************/




/* Dropdown Menu */
.dropdown 
{
  position: relative;
  /**/
  display: inline-block;
  text-align: center;
}

.dropdown-content 
{

    display: none;
    position: absolute;
    top: 100%; /* show below the product */
    left: 60%;
    transform: translateX(-47%);/*tamba  neni  kuti ndive pa center*/
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.1); /* semi-transparent for glass */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px); /* glass blur */
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    z-index: 10;

}

.dropdown-content a 
{
  color: var(--accent-color);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: var(--primary-color);
   color: white;
  
}

.dropdown:hover .dropdown-content, .dropdown-content:hover .dropdown:hover 
{
  display: block;
}

/**************************************************************/

/*sliding Images*/

.scroll-section {
overflow: hidden;
position: relative;
height: 250px;
background: #f5f5f5;
}

.scroll-track {
display: flex;
animation: scroll-left 30s linear infinite;
}

.scroll-item {
position: relative;
min-width: 300px;
margin-right: 20px;
}

.scroll-item img {
width: 100%;
height: 250px;
object-fit: cover;
border-radius: 10px;
}

.quote {
position: absolute;
bottom: 15px;
left: 15px;
color: white;
font-weight: bold;
background: rgba(0, 0, 0, 0.5);
padding: 6px 10px;
border-radius: 5px;
}

@keyframes scroll-left {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-100%);
}
}


/**************************************************************/

/*BODY MUTUMBI*/

 body 
{
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  
  text-align: center;
}

.main-content 
{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.main-content hr
    {
      border: none;
      width: 120px;
      height: 5px;
      background-color: var(--accent-color);
      border-radius: 10px;
      margin-bottom: 20px;
    }

 .midmain-content
{
   display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background-color: #f9f9f9;
  width: 100%;
  box-sizing: border-box;
}
.midmain-content hr
 {
      border: none;
      width: 120px;
      height: 5px;
      background-color: var(--accent-color);
      border-radius: 10px;
      margin-bottom: 20px;
    }
.icon img 
{
  width: 100px;
  height: auto;
}

.text-content {
  max-width: 500px;
  text-align: left;
  margin-left: 40px;
}

.text-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.text-content p {
  color: var(--text-color);
  line-height: 1.6;
}

.read-more 
{
  display: inline-block;
  margin-top: 20px;
  color: var(--accent-color);
  font-weight: bold;
  text-decoration: none;
}

.read-more:hover 
{
  text-decoration: underline;
}
/*****************************************************************/
  
/*MOBILE SCREEN MOST USED */
@media screen and (max-width: 768px) 
{
            /* MAIN BODY */
            .main-content 
            {
              flex-direction: column;
              text-align: center;
              padding: 20px;
            }

            .midmain-content
            {
              flex-direction: column;
              text-align: center;
              padding: 20px;
            }

            .text-content
            {
              margin-left: 0;
              max-width: 100%;
            }

            .icon img 
            {
              margin-top: 20px;
              width: 100px;
            }

            /*MENU BAR*/
 
       
}
/* Contact Section */
.contact-section 
{
  padding: 40px;
  text-align: center;
}

.contact-section h3 
{
  font-weight: bold;
}

.branch-info 
{
  background-color: var(--primary-color);
  color: white;
  padding: 30px 0;
  text-align: center;
}

.branch-info .branches 
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.branch-info h4 
{
  margin-bottom: 10px;
}

/*Contact f0am in contact page*/
    
 
/***************************************************************/

/*social media icons*/
.social-icons 
{
  margin-top: 25px;
  text-align: center;
}

.social-icons a 
{
  display: inline-block;
  margin: 0 10px;
}

.social-icons img 
{
  width: 30px;
  height: 30px;
}
/************************************************************/

/* Map Section */
.map-section iframe 
{
  width: 100%;
  height: 400px;
  border: 0;
}
/**********************************************************/

/*footer*/
footer 
 {
  background-color: var(--primary-color);
  color: white;
  padding: 20px;
  text-align: center;
}
/********************************************************/

/*Scrolling Arrow*/

.back-to-top 
{
position: fixed;
bottom: 60px;
left: 10px;
background-color: #007bff;
color: white;
padding: 10px 14px;
border-radius: 50%;
text-decoration: none;
font-size: 20px;
display: none;
z-index: 999;
}

.back-to-top:hover {
background-color: var(--accent-color);
}
/********************************************************/

/*whatsapp direct message*/


@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.whatsapp-float {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  animation: flicker 2s infinite;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
}

/* .whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
}
 */

/********************************************************/
