<style>
  /* Global Styles */
  :root {
/* Brand Colors */
--main-color: #07484a;
--accent-color: #45d4d0;
--gold-color: #f9b700;

/* Backgrounds */
--light-teal: #cdeeee;
--hover-teal: #bde5e5;
--soft-mint: #e6f3f3;

/* Text Colors */
--dark-gold-text: #3a2e00;
--hover-dark-text: #4a3b00;

/* Effects */
--gold-glow: #f7c94899;
--text-glow: #f7c948aa;
}
  body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fffef9;
    color: #07484a;
    padding: 1.5rem 1rem 0rem 1rem;
  }

  /* Header */
header { 
background-image: url('https://i.imgur.com/2qneT5X.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: white;
padding: 0;
font-family: Arial, sans-serif;
}

/* Contact top bar — NO background image here */
.contact-top {
display: flex;
justify-content: flex-end;
padding: 0.5rem 2rem;
}

.contact-top a {
color: white;
text-decoration: none;
font-size: 1rem;
margin-left: 1.5rem;
white-space: nowrap;
display: flex;
align-items: center;
}

.contact-top a i {
margin-right: 0.5rem;
font-size: 1.2rem;
color: #0bb;
}
  .contact-top a:hover {
    text-decoration: underline;
  }
/* Logo & Tagline Branding */
.branding {
display: flex;
align-items: center;       /* vertically center tagline with logo */
gap: 1rem;                 /* space between logo and tagline */
padding: 1.5rem 2rem 1rem 2rem;
animation: fadeIn 2s ease forwards;
}

.logo-img {
height: 90px;
max-width: 100%;
display: block;
}

.branding {
display: flex;
align-items: center;
gap: 1rem;
padding: 1.5rem 2rem 1rem 2rem;
animation: fadeIn 2s ease forwards;
}

/* New container for company name and tagline stacked vertically */
.branding-text {
display: flex;
flex-direction: column;
justify-content: center;
}

/* Company name in caps, bold, white with shadow, size smaller than .company-name */
.company-name-header {
font-weight: 900;
font-size: 1.6rem;
color: white;
text-transform: uppercase;
text-shadow: 0.5px 0.5px 1.5px gold;
margin-bottom: 0.3rem;  /* spacing below company name */
user-select: none;
}

/* Adjust tagline to move it down a bit */
.tagline {
font-size: 0.7rem;
font-weight: 500;
color: #e0f7f6;
text-transform: uppercase;
letter-spacing: 1px;
opacity: 0;
animation: fadeIn 2s ease forwards;
animation-delay: 1s;
user-select: none;
}

/* Responsive tweaks */
@media (max-width: 768px) {
.branding {
  flex-direction: column;
  text-align: center;
  gap: 0.5rem;
}
.branding-text {
  flex-direction: column;
}
.company-name-header {
  font-size: 1.4rem;
}
.tagline {
  font-size: 0.8rem;
  animation-delay: 0;
}
}

.tagline {
font-size: 0.7rem;        /* smaller text */
font-weight: 500;
color: #e0f7f6;           /* soft light teal */
text-transform: uppercase;
letter-spacing: 1px;
opacity: 0;               /* start hidden for fade-in */
animation: fadeIn 2s ease forwards;
animation-delay: 1s;      /* fade in after logo */
}
.specialisation-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  align-items: flex-start;
  margin-top: 2em;
}

.specialisation-list {
  flex: 1 1 300px;
}

.expectations-card {
  background-color: #e6f3f3;
  border: 1px solid #cce5e5;
  border-radius: 8px;
  padding: 1.2em;
  max-width: 320px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-family: 'Segoe UI', sans-serif;
  animation: fadeInUp 0.8s ease-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 280px;
}

.expectations-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.leaf-icon {
  font-size: 1.5em;
  color: #4a7c59;
  margin-bottom: 0.5em;
  transition: transform 0.3s ease;
}

.leaf-icon:hover {
  transform: rotate(-10deg) scale(1.1);
}

.expectations-card h3 {
  margin: 0;
  font-size: 1.1em;
  border-bottom: 2px solid gold; /* Thick gold underline */
  color: #2c4c4c;
}

.expectations-card p {
  margin: 0;
  font-size: 0.95em;
  color: #333;
  line-height: 1.5;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .specialisation-wrapper {
    flex-direction: column;
  }
}

/* Fade-in keyframes */
@keyframes fadeIn {
to {
  opacity: 1;
}
}

/* Responsive */
@media (max-width: 768px) {
.branding {
  flex-direction: column;
  text-align: center;
  gap: 0.5rem;
}

.tagline {
  font-size: 0.8rem;
  animation-delay: 0;    /* fade-in together on small screens */
}
}
.company-name {
font-size: 4rem;
font-weight: 900;
color: white;
text-shadow: 2px 2px 6px gold;
letter-spacing: 2px;
text-align: center;
margin: 0;
padding: 3rem 0;
transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.company-name:hover {
transform: scale(1.05);
text-shadow: 0 0 10px gold, 0 0 20px #fff;
}
.page-section h1,
.page-section h2 {
font-weight: 700;        /* Bold */
font-size: 3.0rem;       /* Bigger text, adjust as needed */
border-bottom: 4px solid gold; /* Thick gold underline */
padding-bottom: 0.3rem;  /* Space between text and underline */
margin-bottom: 1rem;     /* Space below heading */
}

.page-section h1,
.page-section h2 {
  font-weight: 700;
  font-size: 3.0rem;
  border-bottom: 4px solid gold;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
}
</style>
