body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
  color: #222;
  line-height: 1.7;
  min-height: 100vh;
}

/* Navigation */
/* Modern Navbar Styles */
.navbar {
  background: white;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(2,48,71,0.2);
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  width: 100%;
  max-width: 1300px;
  padding: 0 24px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffb703;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 2px;
  transition: color 0.3s;
}
.navbar-logo:hover {
  color: blue;
}
.navbar-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-menu li {
  height: 60px;
}
.navbar-menu li a {
  color: black;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0 1rem;
  height: 100%;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s, border-bottom 0.3s;
  border-bottom: 3px solid transparent;
}
.navbar-menu li a:hover,
.navbar-menu li a.active {
  color: blue;
  border-bottom: 3px solid blue;
}
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.bar {
  height: 3px;
  width: 25px;
  background-color: #000;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar-logo-img {
  height: 40px;        /* Adjust as needed */
  width: 40px;         /* Adjust as needed */
  margin-right: 0.7em; /* Space between logo and text */
  border-radius: 50%;  /* Optional: makes the logo round */
  border: 2px solid #023047; /* Optional: subtle border */
  background: #fff;    /* Optional: white background for logo */
  object-fit: contain;
}

.navbar-company-name {
  color: blue;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 2px;
  vertical-align: middle;
}

.navbar-logo:hover .navbar-company-name {
  color: #ffd166;
}


.navbar-toggle.active .bar {
  background-color: #000; /* or any color you prefer */
}
/* Responsive Navbar */
@media screen and (max-width: 960px) {
  .navbar-menu {
    flex-direction: column;
    width: 100%;
    height: 0;
    position: absolute;
    top: 60px;
    left: 0;
    opacity: 0;
    transition: all 0.5s;
    background: #023047;
    overflow: hidden;
    z-index: 998;
  }
  .navbar-menu.active {
    height: calc(100vh - 60px);
    opacity: 1;
  }
  .navbar-menu li {
    width: 100%;
  }
  .navbar-menu li a {
    padding: 2rem;
    width: 100%;
    display: table;
    border-bottom: none;
  }
  .navbar-toggle {
    display: flex;
    align-items: center;
  }
}

/* Hero Section */
.gallery-hero {
  background: linear-gradient(120deg, #2196f3 60%, #ffb703 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 1rem 2rem 1rem;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 24px rgba(2,48,71,0.12);
}
.gallery-hero h1 {
  font-size: 2.7rem;
  margin-bottom: 0.7rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(2,48,71,0.2);
}
.gallery-hero p {
  font-size: 1.18rem;
  opacity: 0.97;
  font-weight: 500;
}

/* Gallery Grid */
.gallery-content {
  max-width: 1200px;
  margin: 2.5rem auto 2.5rem auto;
  padding: 0 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
}

/* Gallery Card - NO white patch, only image with soft shadow and overlay caption */
.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(33,150,243,0.13);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  min-height: 250px;
  background: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.gallery-item:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 16px 40px rgba(33,150,243,0.18);
}
.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  transition: filter 0.3s, opacity 0.3s;
  filter: grayscale(10%) brightness(0.98);
}
.gallery-item:hover img {
  filter: grayscale(0%) brightness(1.07) saturate(1.15) blur(0.5px);
  opacity: 0.93;
}
.caption {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, rgba(33,150,243,0.92) 80%, rgba(255,183,3,0.98) 100%);
  color: #fff;
  padding: 1rem 1.2rem;
  font-size: 1.13rem;
  font-weight: 600;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  opacity: 0.94;
  letter-spacing: 1px;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 -2px 10px rgba(33,150,243,0.07);
  transition: background 0.3s, color 0.3s;
}
.gallery-item:hover .caption {
  background: linear-gradient(90deg, #ffb703 70%, #2196f3 100%);
  color: #222;
  opacity: 1;
}

/* Optional: Add a floating overlay icon on hover */
.gallery-item::after {
  content: "\f03e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #2196f3;
  font-size: 2.3rem;
  opacity: 0;
  position: absolute;
  top: 18px;
  right: 18px;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: scale(0.7);
}
.gallery-item:hover::after {
  opacity: 0.18;
  transform: scale(1.1);
}

/* Footer */
footer {
  background: #023047;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-top: 2rem;
  border-radius: 0 0 12px 12px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .gallery-hero {
    padding: 2.5rem 1rem 1.2rem 1rem;
  }
  .gallery-content {
    padding: 0 0.4rem;
  }
  .gallery-grid {
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .gallery-hero h1 {
    font-size: 1.5rem;
  }
  .gallery-item img {
    height: 150px;
  }
}

@media screen and (max-width: 960px) {
  .navbar-menu li a {
    border-bottom: none !important;
    border-left: 4px solid transparent;
    padding: 1rem 0 1rem 1.5rem;
    transition: color 0.3s, border-left 0.3s, background 0.3s;
    background: none;
  }
  .navbar-menu li a:hover,
  .navbar-menu li a.active {
    border-left: 4px solid #ffb703 !important;
    color: #ffb703;
    background: rgba(255, 183, 3, 0.08);
  }
}