/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Livvic', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #014E56;
}

/* Header Styles */
.header {
    background-color: #014E56;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #F67E7E;
}

.contact-btn {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #ffffff;
    color: #014E56;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    flex-wrap: nowrap;
}

.hero-text {
    flex: 0 0 45%;
    max-width: 45%;
}

.hero-text h2 {
    font-size: 6rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.highlight {
    color: #F67E7E;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.9;
}

.line-decoration2 {
    width: 50px;
    height: 4px;
    background-color: #F67E7E;
    margin-bottom: 3rem;
}

.hero-graphics {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.circle-graphic {
    width: 150px;
    height: 150px;
    background-color: #F67E7E;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.lines-graphic {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: 
        linear-gradient(45deg, #79C2D0 2px, transparent 2px),
        linear-gradient(-45deg, #79C2D0 2px, transparent 2px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.6;
}

/* Directors Section */
.directors {
  background-color: #004047;
  padding: 64px 10%;
  text-align: center;
}

.director-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 32px;
  margin-top: 32px;
}

.card {
  background-color: #012F34;
  padding: 16px;
  border-radius: 8px;
  width: 240px;
  position: relative;
}

.card img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.card h3, .card p {
  margin: 8px 0;
}

.card .plus {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background-color: #F67E7E;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
}

.card .pluse {
  background-color: #79C8C7; 
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
}

.card .pluse:hover {
  background-color: #F67E7E;
  transition: 0.5s ease;
}

.card .plus:hover {
  background-color: #79C8C7;
  transition: 0.5s ease;
}

/* Clients Section */
.clients-section {
  padding: 64px 10%;
  background-color: #012F34;
  text-align: center;
}

.clients-section h2 {
  font-size: 2.5rem;
  margin-bottom: 32px;
}

.clients-logos {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* CTA Section */
.cta {
    background-color: #F67E7E;
    padding: 4rem 2rem;
    text-align: center;
    color: #014E56;
}

.cta h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.cta .contact-btn {
    background-color: transparent;
    border: 2px solid #014E56;
    color: #014E56;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

.cta .contact-btn:hover {
    background-color: #014E56;
    color: #ffffff;
}

/* Footer */
.footer {
    background-color: #002529;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: start;
}

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #F67E7E;
}

.footer-links {
    display: flex;
    gap: 0.5rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F67E7E;
}

.footer-contact p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #F67E7E;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #79C2D0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #014E56;
    opacity: 0.8;
}
