* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--body-font-light);
  /* letter-spacing: -0.3px; */
}


/* ------------------------
   NAVBAR BASE
------------------------- */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: background 0.3s ease, padding 0.3s ease;
    background: transparent;
}

.main-navbar.scrolled {
    background: var(--primary-color);
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

.main-navbar img{
    filter: brightness(0) invert(1);
}

.navbar-logo img {
    height: 50px;
}

.nav-links .nav-link {
    color: white;
    margin: 0 18px;
    font-size: 17px;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links .nav-link:hover {
    opacity: 0.7;
}

.contact-btn {
    padding: 8px 18px;
    background: white;
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.ham-icon {
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* ----------------------------
   MOBILE MENU (screenshot style)
----------------------------- */

.mobile-navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100vh;
    background: white;
    z-index: 9999;
    transition: left 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 0;
    color: black;
}

.mobile-navbar.active {
    left: 0;
}

/* Header row with close icon */
.mobile-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

.close-mobile {
    font-size: 28px;
    cursor: pointer;
}

/* Main content */
.mobile-inner {
    padding: 30px 28px;
    overflow-y: auto;
}

.section-title {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 12px;
}

.mob-link {
    display: block;
    font-size: 22px;
    padding: 12px 0;
    color: black;
    text-decoration: none;
}

.mob-link:hover {
    opacity: 0.7;
}

.contact-info p {
    margin: 4px 0;
    opacity: 0.8;
}

/* Social Icons */
.social-row {
    margin-top: 25px;
    display: flex;
    gap: 18px;
    font-size: 20px;
}

.social-row a {
    text-decoration: none;
}

.social-row i {
    cursor: pointer;
}

.social-row i:hover {
    opacity: 0.6;
}

/* Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.35);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}



/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('/assets/images/bg-img.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 25, 80, 0.55); /* premium deep blue overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

/* CTA Button */
.hero-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 34px;
  background: #0a59d1;
  color: white;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #0847a6;
}

/* Fade animation */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}


.section-divider-1{
  height: 2px;
  border-radius: 10px;
  width: 80%;
  background-color: lightgray;
  margin-bottom: 10px;
}

.section-divider-2{
  height: 2px;
  border-radius: 10px;
  width: 40%;
  background-color: lightgray;
  margin-left: auto;
}


/* logo strip */

.logo-strip {
    width: 100%;
    overflow: hidden;
    background: #fff; /* optional */
    padding: 20px 0;
}

.logo-track {
    display: flex;
    width: calc(200px * 12); /* adjust based on number of logos */
    animation: scrollLeft 20s linear infinite;
}

.logo-track img {
    width: 160px;          /* Adjust size */
    margin: 0 40px;        /* Spacing */
    /* filter: grayscale(100%); */
    opacity: 1;
    transition: 0.3s ease;
}

.logo-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery-images{
  columns: 4;
  gap: 0px;
}

@media screen and (width < 800px) {
  .gallery-images{
    columns: 2;
    gap: 0px;
  }
}



.footer-dark {
  background: #111;
  color: #fff;
}

.footer-logo img{
  /* filter: brightness(0) invert(1); */
  width: 200px !important;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 16px;
  text-transform: uppercase;
  /* color: #bbb; */
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.footer-links li a {
  color: #888;
  font-size: 14px;
  text-decoration: none;
}

.footer-links li a:hover {
  color: #272727;
}

.footer-line {
  border-top: 1px solid #333;
  margin-top: 30px;
}

.footer-social a {
  color: #ccc;
  margin: 0 8px;
  font-size: 18px;
  text-decoration: none;
}

.footer-social a:hover {
  color: #fff;
}


.contact-details i {
    color: #0d6efd; /* Bootstrap primary color */
}

.contact-details a {
    color: #333;
}

.contact-details a:hover {
    color: #0d6efd;
}