:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;

  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #124265;
  --accent-color: #2487ce;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  --nav-color: #124265;
  --nav-hover-color: #2487ce;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #124265;
  --nav-dropdown-hover-color: #2487ce;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  overflow: hidden;
}



body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.6;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Header */
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  position: sticky;
  top: 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-left: 10px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 300;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navmenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.navmenu a {
  color: var(--nav-color);
  padding: 10px 15px;
  font-family: var(--nav-font);
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  transition: 0.3s;
}

.navmenu a:hover,
.navmenu .active {
  color: var(--nav-hover-color);
}

.mobile-nav-toggle {
  color: var(--nav-color);
  font-size: 28px;
  line-height: 0;
  cursor: pointer;
  display: none;
}

/* Mobile navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: none;
  }

  .mobile_text {
    margin-top: -180px;
  }


  .hero img {
    object-fit: cover !important;
    object-position: center !important;
  }
  .navmenu ul {
    display: flex;
    position: relative;
    inset: auto;
    padding: 10px 0;
    background: transparent;
  }

  .mobile-nav-active .navmenu ul {
    display: block;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 9999;
  }

  .navmenu a {
    padding: 12px 20px;
    font-size: 17px;
    display: block;
  }

  
}

/* Hero Section */
.hero {
  width: 100%;
  min-height: calc(100vh - 80px);  /* Changed from 75vh to 100vh for full page */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;  /* Changed from cover to contain - shows full image */
  object-position: center;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  color: #124265;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 30px;
  color: #ffffff;
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 38px;
  }
  .hero p {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 38px;
  }
  .hero p {
    font-size: 18px;
  }
}

/* Main content spacing for fixed footer */
main.main {
  padding-bottom: 120px;   /* ← prevents content from being hidden under fixed footer */
}

/* Footer – fixed at bottom, same background as hero */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 100;

  background: url('assets/img/hero-bg-abstract.avif') center center / cover no-repeat;
  background-color: color-mix(in srgb, var(--background-color), transparent 30%); /* same overlay tint as hero */
  background-blend-mode: multiply;

  color: rgb(27, 26, 26);
  padding: 25px 0;
  font-size: 14px;
}

.footer .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.footer p {
  margin: 0;
}

.sitename {
  /* color: var(--accent-color); */
  color: #124265;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--background-color);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.2s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}