/* --------------------------------------------------
   GLOBAL
-------------------------------------------------- */
body {
  margin: 0;
  background-color: wheat;
  font-family: Arial, sans-serif;
}

.wrapper {
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.ip {
	
	overflow: hidden;
	border-style: hidden;
	border-radius : 10px;
	padding: 20px;
}
/* --------------------------------------------------
   NAVIGATION
-------------------------------------------------- */
nav ul.navigation {
  list-style: none;
  margin: 0;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

nav ul.navigation li a {
  display: inline-block;
  padding: 10px 20px;
  background: #024ca2;
  color: #fff;
  font-family: 'KreonBold';
  font-size: clamp(16px, 3vw, 22px);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease;
}

nav ul.navigation li a:hover {
  background: #007fde;
}

nav ul.navigation li a.active {
  background: #242d72;
}

/* --------------------------------------------------
   LOGO IMAGE (consistent across all pages)
-------------------------------------------------- */
.logo {
  width: 100%;
  max-width: 350px;   /* consistent size */
  height: auto;
  margin: 20px auto;
  display: block;
}

/* --------------------------------------------------
   FEATURED SECTION
-------------------------------------------------- */
.featured {
  text-align: center;
}

.featured ul {
  list-style: none;
  padding: 0;
  margin: 30px auto 0;
  max-width: 900px;
  width: 100%;
}

.featured ul li h2 {
  color: #000;
  font-family: 'KreonBold';
  font-weight: normal;
}

.featured ul li h2 a {
  color: #000;
  font-family: 'KreonBold';
  font-size: clamp(24px, 6vw, 48px);
  text-decoration: none;
}

.featured ul li p {
  color: teal;
  font-family: 'kreonlight';
  font-size: clamp(16px, 3.5vw, 24px);
  line-height: 1.4;
  margin-bottom: 30px;
}

span {
  color: sienna;
  font-weight: bold;
  font-size: clamp(18px, 4vw, 28px);
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
#footer img {
  width: 100%;
  max-width: 70px;   /* smaller spider */
  height: auto;
  margin: 10px auto;
  display: block;
}

#footnote {
  text-align: center;
  font-size: 10px;
  margin-top: 10px;
}

.footer-spider:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* --------------------------------------------------
   CONTACT FORM
-------------------------------------------------- */
.main {
  font-style: normal;
  font-weight: normal;
  color: black;
  text-align: center;
  font-size: 20px;
  margin: 15px 0;
}

/* Center the additional details text */
.main {
    text-align: center;
    margin: 20px auto;
}

/* Center the button row */
.button-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px auto;
}

textarea[name="additionalinfomessage"] {
  display: block;
  margin: 0 auto;       /* centers horizontally */
  text-align: left;     /* keeps text aligned normally */
  width: 50%;           /* width of additional info box */
}


table {
  width: 90%;
  max-width: 600px;
  margin: 20px auto;
  border-collapse: collapse;
}

table td {
  padding: 10px;
  text-align: left;
  vertical-align: middle;
  font-size: 1rem;
  color: darkblue;
}

table td:first-child {
  width: 40%;
  font-weight: bold;
}

table td:last-child {
  width: 60%;
}
#servicelist {
  list-style-type:diamond;
  color: darkblue;
  font-weight: bold;
 }
#whatsapp {
  display: flex;
  justify-content: center;
}
