@charset "utf-8";
/* CSS Document */

	
 /* HEADER STYLES */	
 

    header.scrolled {
      background: rgba(255, 204, 0, 0.95); /* White background on scroll */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .logo {
      font-size: 1.65rem;
      font-weight: bold;
      color: #fff;
      transition: color 0.3s ease;
	  max-width: 30ch;
    }
	
	  .lang { 
	   font-size: .55rem;
	  }
	  
	  .lang a{ 
	   font-size: .55rem;
	   text-decoration:none;
	   color:#f1f1f1;
	  }
	  
	  .lang i{ 
	   font-size: .65rem;
	   color:#f1f1f1;
	  }

    header.scrolled .logo {
      color: #003399;
    }

    .nav-links {
      display: flex;
      gap: 1.5em;
    }

    .nav-links a {
      text-decoration: none;
      color: #fff;
      font-weight: 500;
      transition: color 0.3s ease;
    }
	
	    .nav-links a:hover {
      text-decoration: none;
      color: #f3f3f3;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    header.scrolled .nav-links a {
      color: #003366;
    }
	
    header.scrolled .lang a{ 
	   font-size: .55rem;
	   text-decoration:none;
	   color:#003399;
	  }
	  
    header.scrolled .lang i{ 
	   font-size: .65rem;
	   	   color:#003399;
	  }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #fff;
      cursor: pointer;
      z-index: 1001;
      transition: color 0.3s ease;
    }

    header.scrolled .menu-toggle {
      color: #003399;
    }
	
 /* MOBILE NAV */
    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
		font-size: 1.25rem;
      }

      .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.97);
        display: none;
        padding: 1em 0;
      }

      .nav-links a {
        color: #333;
        padding: 0.8em;
        text-align: center;
        width: 100%;
      }

      .nav-links.show {
        display: flex;
      }
	  
	   .logo {
      font-size: 1.05rem;
      font-weight: bold;
      color: #fff;
      transition: color 0.3s ease;
      max-width: 18ch;
      }
	  
	  .lang { 
	   font-size: .55rem;
	   margin-right:6px;
	  }
	  
	    .lang a { 
	   font-size: .55rem;
	   text-decoration:none;
	   color:#f1f1f1;
	  }
	  
	  .lang i { 
	   font-size: .65rem;
	   color:#f1f1f1;
	  }
	  
	  header.scrolled .logo {
      color: #003399;
    }
	  
	  header.scrolled .lang a{ 
	   font-size: .55rem;
	   text-decoration:none;
	   color:#003399;
	  }
	  
    header.scrolled .lang i{ 
	   font-size: .85rem;
	   	   color:#003399;
	  }

    }
	
	
/* HERO SECTION */
    .hero {
      background: url('images/hero-bg.jpg') no-repeat center center/cover;
    }



.image-overlay-container1 {
  position: relative;
  display: inline-block;
  	  margin-bottom:1.5em;
}

.image-overlay-container1 img {
max-width:80%;
	height:auto
}

.overlay-text {
  position: absolute;
  top: 75%;
  left: 60%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: left;
  padding: 1rem;
  background-color: rgba(255, 204, 0, 0.85); /* optional: dark semi-transparent background */
  border-radius: 0.5rem;
  height: 80px;
  width:40%;
  

}

.overlay-text p{
     text-decoration: none;
      color: #006699;
	  margin-top:.25em;
      font-weight: 500;
	  font-size:18px;
}


@media (max-width: 768px) {

.image-overlay-container1 img {
max-width:100%;
	height:auto;
	margin-top:20px;
}
  .overlay-text {
  position: absolute;
  top: 85%;
  left: 60%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: left;
  padding: .85rem;
  background-color: rgba(255, 204, 0, 0.85); /* optional: dark semi-transparent background */
  border-radius: 0.5rem;
  height: 60px;
  width:70%;

}

.overlay-text p{
     text-decoration: none;
      color: 006699;
	  margin-top:.15em;
	  margin-bottom:.15em;
      font-weight: 500;
	  font-size:11px;
}
}




/*about section*/

.about-left .founder {
  max-width: 80%;
  width:60%;
  background-color:#00CCFF;
  border-radius: 12px;
  box-shadow: 0 24px 12px rgba(0, 0, 0, 0.3);
  margin-left:10em;
}

@media (max-width: 768px) {

.about-left .founder {
  max-width: 80%;
  width:60%;
  background-color:#00CCFF;
  border-radius: 12px;
  box-shadow: 0 24px 12px rgba(0, 0, 0, 0.3);
  margin-left:4em;
  margin-bottom:2em;
}

}


/*time*/

.titletime .cnotes {
 font-size: 18px;
  margin-top:5px;
  color:#006699;
  font-family:arial;
  font-weight:600;
}



/*footer*/

 .site-footer {
    background: #000099;
    color: #eee;
    padding: 40px 20px 20px;
    font-size: 15px;
  }