<style>
/* Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.6;
	color: #333;
	background: #f5f5f5;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

    header {
      width: 100%; 
	  /*height: 80px;*/
      display: flex;
      /*align-items: center;*/
      justify-content: space-between;
      /*padding: 0 30px;
	  padding-right:50px;
	  padding-left:16px;*/
      background-color: #1f2937;
      border-bottom: 0px solid #ddd;
	  
	  position: fixed;  
    top: 0;           
    left: 0;
	
	min-height:90px;
	
    }

    /* Logo */
    .logo {
      font-size: 26px;
      font-weight: bold;
      text-decoration: none;
      color: #222;
	  padding-left:30px;
    }

    /* Horizontal menu */
    .menu {
      display: flex;
      align-items: left;
      gap: 24px;
      list-style: none;
	  padding-right:30px;
    }

    .menu a {
      text-decoration: none;
      color: #ffffff;
      font-size: 16px;
    }

    .menu a:hover {
      color: #007bff;
    }

/*
header {
	background: #1f2937;
	color: white;
	padding: 1rem 2rem;
	
    position: fixed;  
    top: 0;           
    left: 0;
    width: 100%;      
    z-index: 1000;    
	max-height:82px;	
}
*/

.container {
	width: min(1100px, 90%);
	margin: auto;
}

/* Navigation Bar */
 nav {
    background: #1f2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 12px;
}

.logo {
    color: white;
    font-size: 22px;
    font-weight: bold;
	display:flex;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 16px;
	margin-left: auto;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
}

.nav-links a:hover {
    background: #555;
    border-radius: 5px;
}

/* Hamburger button */
.menu-toggle {
    display: none;
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: 0.3s;
}

/* Mobile layout */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 12px;
        right: 0;
        background: #1f2937;
        width: 220px;
        flex-direction: column;
        gap: 0;
    }

    .nav-links li {
        border-top: 1px solid #444;
    }

    .nav-links a {
        display: block;
        padding: 15px;
    }

    .nav-links.show {
        display: flex;
    }
}


/*

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;

    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;             
}

.navbar li {
    flex: 0 0 auto;        
}

.navbar li {
    display: block;
    padding: 10px 15px;
    text-decoration: none;

    color: white;
    border-radius: 4px;
}

.nav li {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    background: #444;
    color: white;
    border-radius: 4px;
}

nav ul {
	list-style: none;
	display: flex;
	gap: 1.5rem;
}

nav a:hover,
nav a:focus {
	color: #60a5fa;
}*/


.logo {
	font-size: 1.5rem;
	font-weight: bold;
}

.welcome_div
{
	background-image:url("../img/flicenflac01.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

/* Hero */
.hero_light {
	background: #F4E9DA;
	padding: 5rem 2rem;
	/*text-align: center;*/
}

.hero_light h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	margin-bottom: 1rem;
	text-align: center;
}

.hero_light p {
	max-width: 750px;
	margin: auto;
	margin-bottom: 2rem;
	text-align: left;
}

.hero_light ul {
	max-width: 750px;
	margin: auto;
	margin-bottom: 2rem;
	text-align: left;
}


.hero_dark {
	background: #1A2B48;
	padding: 5rem 2rem;
	/*text-align: center;*/
	color:#DDDDDD;
	
}

.hero_dark h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	margin-bottom: 1rem;
	text-align: center;
}

.hero_dark p {
	max-width: 750px;
	margin: auto;
	margin-bottom: 2rem;
	text-align: left;
}

.hero_dark ul {
	max-width: 750px;
	margin: auto;
	margin-bottom: 2rem;
	text-align: left;
}


.button {
	display: inline-block;
	background: #2563eb;
	color: white;
	padding: 0.9rem 1.8rem;
	border-radius: 6px;
	transition: background 0.3s;
}

.button:hover,
.button:focus {
	background: #1d4ed8;
}

/* Features */
.features {
	padding: 4rem 0;
	background:#1A2B48;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.card h3 {
	margin-bottom: 1rem;
}

/* Footer */
footer {
	background: #1A2B48;
	color: white;
	text-align: center;
	padding: 2rem;
	margin-top: 3rem;
}

.contactus a.whatsapp {
  color: #25D366;
  font-size: 28px;
  display: inline-block;
  transition: all 0.3s ease;
}

.contactus a.whatsapp:hover {
  color: #fff;
  background-color: #25D366;
  border-radius: 50%;
  padding: 8px;
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.contactus a.email {
  color: #25D366;
  font-size: 28px;
  display: inline-block;
  transition: all 0.3s ease;
}

.contactus a.email:hover {
  color: #fff;
  background-color: #25D366;
  border-radius: 50%;
  padding: 8px;
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Mobile Navigation */
@media (max-width: 700px) {

	.navbar {
		flex-direction: column;
		gap: 1rem;
	}

	nav ul {
		flex-direction: column;
		text-align: center;
	}

}
</style>