* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: grey;
    color: #333;
}

header {
    background-color: grey;
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid red;
}

header h1 {
    color: red;
    margin-bottom: 10px;
}

nav a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    color: red;
}

.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}
/* Text overlay inside hero slider */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    /* Adds readability on bright images */
    text-shadow: 0 3px 8px rgba(0,0,0,0.8);
}
.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}
.hero-text p {
    font-size: 20px;
}
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }
    .hero-text p {
        font-size: 16px;
    }
}
.slider {
    position: relative;
    height: 500px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 500px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.services {
    padding: 50px;
    text-align: center;
}

.services h2 {
    color: red;
    margin-bottom: 20px;
}

.gallery {
    padding: 50px;
    text-align: center;
}

.gallery h2 {
    color: red;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.contact {
    padding: 50px;
    text-align: center;
}

.contact h2 {
    color: red;
    margin-bottom: 20px;
}

form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

input, textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 12px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: darkred;
}

footer {
    text-align: center;
    padding: 20px;
    border-top: 2px solid red;
    margin-top: 40px;
}
/* ===== HEADER LAYOUT ===== */

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    border-bottom: 3px solid red;
    background-color: white;
}

/* LEFT - LOGO */

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: red;
    text-decoration: none;
}
.logo img {
  height: 3.0em;      /* matches old text size */
  width: auto;        /* keeps proportions */
  display: block;
}

/* CENTER - NAVIGATION */

.main-nav {
    display: flex;
    gap: 40px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    position: relative;
}

.main-nav a:hover {
    color: red;
}

/* Active page highlight */

.main-nav a.active {
    color: red;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

/* RIGHT - LANGUAGE SWITCH */

.lang-switch {
    display: flex;
    gap: 15px;
}

.lang-switch a {
    text-decoration: none;
    font-weight: bold;
    color: #333;
}

.lang-switch a:hover {
    color: red;
}
/* ===== MOBILE MENU ===== */

/* ===== HAMBURGER ===== */

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: red;
}

/* ===== MOBILE VERSION ===== */

@media (max-width: 768px) {

    .main-header {
        flex-wrap: wrap;
    }

    /* Hide desktop nav */
    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        background: grey;
        border-top: 2px solid red;
        margin-top: 15px;
    }

    .main-nav a {
        padding: 15px 0;
        display: block;
    }

    /* Show nav when active */
    .main-nav.active {
        display: flex;
    }

    /* Show hamburger */
    .hamburger {
        display: block;
    }

    /* Hide centered nav spacing */
    .main-nav {
        gap: 0;
    }
}
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

#lightbox.show {
    opacity: 1;
    visibility: visible;
}

#lightbox-img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
.contact-section {
    display: flex;
    gap: 50px;
    padding: 60px 40px;
    max-width: 1200px;
    margin: auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    color: red;
    margin-bottom: 20px;
}

.contact-info h3 {
    margin-top: 30px;
    color: red;
}

.contact-form {
    flex: 1;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 12px;
    background: red;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.contact-form button:hover {
    background: darkred;
}

/* Success & Error */

.success {
    background: #e6ffe6;
    color: green;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.error {
    background: #ffe6e6;
    color: red;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}

/* MOBILE */

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;

  background-color: #25D366; /* WhatsApp green center */
  border-radius: 50%;

  /* Metallic aluminium border */
  border: 6px solid transparent;
  background:
    linear-gradient(#25D366, #25D366) padding-box,
    linear-gradient(
      145deg,
      #ffffff 0%,
      #d9d9d9 20%,
      #bfbfbf 40%,
      #a6a6a6 50%,
      #d9d9d9 70%,
      #ffffff 100%
    ) border-box;

  display: flex;
  justify-content: center;
  align-items: center;

  /* Aluminium glow + depth */
  box-shadow:
    0 0 10px rgba(255,255,255,0.9),
    0 0 25px rgba(200,220,255,0.7),
    0 6px 18px rgba(0,0,0,0.25),
    inset 0 2px 4px rgba(255,255,255,0.9),
    inset 0 -3px 6px rgba(0,0,0,0.3);

  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow:
    0 0 18px rgba(255,255,255,1),
    0 0 40px rgba(180,220,255,1),
    0 8px 22px rgba(0,0,0,0.35),
    inset 0 3px 6px rgba(255,255,255,1),
    inset 0 -4px 8px rgba(0,0,0,0.4);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}
/* ==============================
   FLOATING SHARE BUTTON
============================== */

.share-float {
  position: fixed !important;
  bottom: 25px !important;
  left: 25px !important;
  top: auto !important;
  right: auto !important;

  width: 60px;
  height: 60px;

  background-color: #004080; /* BLUE CENTER */
  color: white;

  border-radius: 50%;

  /* Aluminium metallic border */
  border: 6px solid transparent;
  background:
    linear-gradient(#004080, #004080) padding-box,
    linear-gradient(
      145deg,
      #ffffff 0%,
      #d9d9d9 20%,
      #bfbfbf 40%,
      #a6a6a6 50%,
      #d9d9d9 70%,
      #ffffff 100%
    ) border-box;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  cursor: pointer;
  z-index: 9999;

  /* Metallic glow + depth */
  box-shadow:
    0 0 10px rgba(255,255,255,0.9),
    0 0 25px rgba(200,220,255,0.7),
    0 6px 18px rgba(0,0,0,0.25),
    inset 0 2px 4px rgba(255,255,255,0.9),
    inset 0 -3px 6px rgba(0,0,0,0.3);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.share-float:hover {
  transform: scale(1.1);
  box-shadow:
    0 0 18px rgba(255,255,255,1),
    0 0 40px rgba(180,220,255,1),
    0 8px 22px rgba(0,0,0,0.35),
    inset 0 3px 6px rgba(255,255,255,1),
    inset 0 -4px 8px rgba(0,0,0,0.4);
}
/* ==============================
   FLOATING FACEBOOK BUTTON
   Appears above SHARE button
============================== */
.facebook-float {
  position: fixed;
  bottom: 100px; /* ABOVE the share button (60px + margin) */
  left: 25px;
  width: 60px;
  height: 60px;
  background-color: #1877F2; /* Facebook blue */
  border-radius: 50%;
  /* Metallic aluminium border */
  border: 6px solid transparent;
  background:
    linear-gradient(#1877F2, #1877F2) padding-box,
    linear-gradient(
      145deg,
      #ffffff 0%,
      #d9d9d9 20%,
      #bfbfbf 40%,
      #a6a6a6 50%,
      #d9d9d9 70%,
      #ffffff 100%
    ) border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 0 10px rgba(255,255,255,0.9),
    0 0 25px rgba(200,220,255,0.7),
    0 6px 18px rgba(0,0,0,0.25),
    inset 0 2px 4px rgba(255,255,255,0.9),
    inset 0 -3px 6px rgba(0,0,0,0.3);
  z-index: 9999;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Hover effect (same as WhatsApp & Share) */
.facebook-float:hover {
  transform: scale(1.1);
  box-shadow:
    0 0 18px rgba(255,255,255,1),
    0 0 40px rgba(180,220,255,1),
    0 8px 22px rgba(0,0,0,0.35),
    inset 0 3px 6px rgba(255,255,255,1),
    inset 0 -4px 8px rgba(0,0,0,0.4);
}
.facebook-float img {
  width: 32px;
  height: 32px;
}
/* SERVICES MENU */

.services-menu {
    text-align: center;
    padding: 60px 20px;
}

.service-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.service-links a {
    text-decoration: none;
    color: red;
    font-weight: bold;
}

.service-links a:hover {
    text-decoration: underline;
}

}
html {
scroll-behavior: smooth;
}

/* CENTER WEBSITE CONTENT */

.service-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* SERVICE SECTIONS */

.service-section {
    padding: 100px 20px;
}

.service-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 10px;
}

.service-text {
    max-width: 500px;
}

.service-text h2 {
    color: red;
    margin-bottom: 20px;
}

/* BACKGROUNDS */

.grey {
    background: #eeeeee;
}

.light-grey {
    background: #f7f7f7;
}

/* MOBILE */

@media (max-width: 768px) {

.service-container {
    flex-direction: column;
    text-align: center;
}

}