/* 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;
  }
}


/* General Section Styling */
#about-us {
  background: #0b5070;
  color: #fff;
  text-align: center;
  padding: 80px 40px;
  font-family: "Montserrat", sans-serif;
}

.about-title {
  font-size: 34px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.about-sub {
  max-width: 900px;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto 60px;
}

/* Grid Layout */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 100%;
  margin: 0 auto;
}

.about-card img {
  width: 100px;
  margin-bottom: 18px;
}

.about-card p {
  max-width: 450px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 15px;
}

/* Mobile Responsiveness */
@media(max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-sub {
    margin-bottom: 40px;
    font-size: 15px;
  }

  .about-card img {
    width: 80px;
  }
}

/* Animation for fade-up */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(1) { transition-delay: 0.2s; }
.fade-up:nth-child(2) { transition-delay: 0.4s; }
.fade-up:nth-child(3) { transition-delay: 0.6s; }
.fade-up:nth-child(4) { transition-delay: 0.8s; }

/* ================= DIRECTOR'S MESSAGE ================= */
#director-message {
  padding: 80px 40px;
  background: #ffffff;
  text-align: center;
  margin-top: -70px;
}

/* TITLE */
.dm-title {
  font-size: 32px;
  color: #154450;
  font-weight: 600;
  margin-bottom: 50px;
  letter-spacing: 2px;
  position: relative;
}

/* subtle underline for premium feel */
.dm-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #0b5a61;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* MESSAGE BOX */
.dm-box {
  background: linear-gradient(135deg, #0b5070, #0b5070);
  width: 70%;
  margin: 0 auto;
  padding: 60px 70px;
  border-radius: 8px;
  text-align: left;
  color: #ffffff;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* QUOTE MARK */
.dm-quote {
  font-size: 64px;
  color: #b6e23e;
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.9;
}

/* MESSAGE TEXT */
.dm-text {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 40px;
  color: #f3fefe;
}

/* SIGNATURE NAME */
.dm-name {
  font-family: "Brush Script MT", cursive;
  font-size: 26px;
  color: #b6e23e;
  margin-bottom: 6px;
}

/* POSITION */
.dm-position {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .dm-box {
    width: 90%;
    padding: 55px 40px;
  }

  .dm-title {
    font-size: 26px;
  }

  .dm-text {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  #director-message {
    padding: 60px 20px;
  }

  .dm-box {
    padding: 35px 25px;
  }

  .dm-quote {
    font-size: 52px;
  }
}


/* Mobile Responsiveness for Director's Message */
@media(max-width: 992px) {
  #director-message {
    padding: 50px 25px;
  }

  .dm-box {
    width: 95%;
    padding: 40px 30px;
  }
}

@media(max-width: 768px) {
  .dm-title {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .dm-box {
    padding: 35px 25px;
  }

  .dm-quote {
    font-size: 42px;
  }

  .dm-text {
    font-size: 14.5px;
    line-height: 1.6;
  }

  .dm-name {
    font-size: 20px;
  }

  .dm-position {
    font-size: 13px;
  }
}

@media(max-width: 600px) {
  #director-message {
    padding: 40px 0px;
  }

  .dm-box {
    width: 100%;
    padding: 28px 18px;
  }

  .dm-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .dm-quote {
    font-size: 36px;
  }

  .dm-text {
    font-size: 13.5px;
    line-height: 1.6;
  }

  .dm-name {
    font-size: 18px;
  }

  .dm-position {
    font-size: 12px;
  }
}

/* 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);
}


/*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;
  }
}

/*title css*/

.title-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #ffffff;
}



/* Center text */
.title-dots .text {
  text-align: center;
  line-height: 1.2;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Decorative line */
.decor {
  position: relative;
  width: 60px;
  height: 2px;
  background: #ffffff;
}

/* Dot */
.decor::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Left dot position */
.decor.left::before {
  left: -10px;
}

/* Right dot position */
.decor.right::before {
  right: -10px;
}
@media (max-width: 768px) {
  .decor {
    width: 30px;
  }

  .decor::before {
    width: 6px;
    height: 6px;
  }

  .decor.left::before {
    left: -8px;
  }

  .decor.right::before {
    right: -8px;
  }
}

/* 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;
  }
}


