/* RESET + GLOBAL FIXES */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  font-family: 'Poppins', sans-serif;
}
/* HEADER BASE */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  border-bottom: 1px solid #eee;
  background: #ffffff;
  position: relative;
  z-index: 100;
}

.logo {
  height: 60px;
}

/* DESKTOP NAV */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 45px;
}

.main-nav a {
  position: relative;
  display: inline-block;
  padding: 4px 0;
  text-decoration: none;
  font-size: 18px;
  color: #0f2f45;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.main-nav a:hover {
  color: #0b5070;
  transform: translateY(-3px); /* small jump on hover */
}

/* HAMBURGER (HIDDEN ON DESKTOP) */
.hamburger {
  font-size: 32px;
  cursor: pointer;
  display: none;
  color: #0f2f45;
}

/* MOBILE FULLSCREEN MENU (HIDDEN BY DEFAULT) */
.mobile-menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  align-items: center;
  justify-content: flex-start;
  transition: top 0.4s ease;
  z-index: 999;
}

/* When active */
.menu-show {
  top: 0;
}

/* Close icon */
.close-menu {
  position: absolute;
  right: 30px;
  top: 25px;
  font-size: 36px;
  color: #0f2f45;
  cursor: pointer;
}

/* Mobile menu items */
.mobile-menu ul {
  list-style: none;
  width: 100%;
  text-align: center;
  margin-top: 60px;
}

.mobile-menu ul li {
  margin: 25px 0;
}

.mobile-menu a {
  text-decoration: none;
  color: #0f2f45;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.mobile-menu a:hover {
  transform: translateY(-4px);
}

/* RESPONSIVE BEHAVIOUR */
@media (max-width: 900px) {
  /* Hide desktop menu on small screens */
  .main-nav {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: block;
  }
}
/* Contact Section Styling */
.contact-section {
    display: flex;
    justify-content: center;
    background-color: #f5f5f5;
}

.contact-form-container {
    width: 100%;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    font-size: 32px;
    color: #003b5c;
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #003b5c;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

textarea {
    resize: vertical;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #003b5c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #005073;
}

/* WhatsApp Icon */
#whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#whatsapp-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-container {
        width: 90%;
    }

    .contact-form-container h2 {
        font-size: 28px;
    }

    label, input, textarea {
        font-size: 14px;
    }
}


/*Preloader*/
/* ===============================
   SITE PRELOADER (ISOLATED)
================================ */

#site-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background overlay */
#site-preloader .preloader-overlay {
  position: absolute;
  inset: 0;
  background: #053c55; /* Indmark-style overlay */
}

/* Center content */
#site-preloader .preloader-content {
  position: relative;
  z-index: 2;
}

/* Logo container */
#site-preloader .logo-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo */
#site-preloader .preloader-logo {
  width: 55px;
  height: auto;
  z-index: 2;
}

/* Rotating outline */
#site-preloader .loader-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-right-color: rgba(255, 255, 255, 0.6);
  animation: spin 1.2s linear infinite;
}

/* Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
  #site-preloader .logo-wrapper {
    width: 90px;
    height: 90px;
  }

  #site-preloader .preloader-logo {
    width: 45px;
  }
}

/* Default version (Blue color) */
.title-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #0b5070;  /* Blue color */
}

/* Center text */
.title-dots .text {
  text-align: center;
  line-height: 1.2;
}

/* Decorative line */
.decor {
  position: relative;
  width: 60px;
  height: 2px;
  background: #0b5070; /* Blue color */
}

/* Dot */
.decor::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #0b5070; /* Blue color */
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Left dot position */
.decor.left::before {
  left: -10px;
}

/* Right dot position */
.decor.right::before {
  right: -10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .decor {
    width: 30px;
  }

  .decor::before {
    width: 6px;
    height: 6px;
  }

  .decor.left::before {
    left: -8px;
  }

  .decor.right::before {
    right: -8px;
  }
}

/* Version 2 (White color) */
.title-dots-white {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #ffffff;  /* White color */
}

/* Center text for white version */
.title-dots-white .text {
  text-align: center;
  line-height: 1.2;
}

/* Decorative line for white version */
.decor-white {
  position: relative;
  width: 60px;
  height: 2px;
  background: #ffffff; /* White color */
}

/* Dot for white version */
.decor-white::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #ffffff; /* White color */
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Left dot position for white version */
.decor-white.left::before {
  left: -10px;
}

/* Right dot position for white version */
.decor-white.right::before {
  right: -10px;
}

/* Responsive adjustments for white version */
@media (max-width: 768px) {
  .decor-white {
    width: 30px;
  }

  .decor-white::before {
    width: 6px;
    height: 6px;
  }

  .decor-white.left::before {
    left: -8px;
  }

  .decor-white.right::before {
    right: -8px;
  }
}


/* Contact Section Styling */
.contact-section {
    display: flex;
    justify-content: center;
    background-color: #f5f5f5;
    padding: 50px 0; /* Added some padding to space it out */
}

.contact-form-container {
    width: 100%;
    max-width: 600px;  /* Limit the width */
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto;  /* Center the form horizontally */
}

.contact-form-container h2 {
    font-size: 32px;
    color: #003b5c;
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #003b5c;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

textarea {
    resize: vertical;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #003b5c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #005073;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-container {
        width: 90%;  /* Make the form take up more space on smaller screens */
    }

    .contact-form-container h2 {
        font-size: 28px;
    }

    label, input, textarea {
        font-size: 14px;
    }
}
