/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Fixed glass header */
/* Updated Header/Navbar Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  
  /* Updated Glass Effect with Dark Blue Tint */
  background: rgb(13, 1, 68) !important; /* Important to override any other styles */
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255, 215, 0, 0.3); /* Gold border */
  
  /* Ensure compatibility */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Left side: logo + name */
.left-side {
  display: flex;
  align-items: center;
  gap: 40px;
}

.left-side img {
  height: 80px;
  width: auto;
  user-select: none;
}

.name {
  font-size: 35px;
  font-weight: 700;
  color: white;
  user-select: none;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
}

/* Center nav */
nav {
  flex-grow: 1;
  text-align: center;
}

nav ul {
  list-style: none;
  display: inline-flex;
  gap: 20px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 6px;
  position: relative;
  transition: color 0.3s ease;
}

/* Underline animation on hover */
nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #FFD700; /* Gold underline */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

nav ul li a:hover {
  color: #FFD700;
}

nav ul li a:hover::after {
  transform: scaleX(1);
}

/* Dropdown arrow */
nav ul li.dropdown > a::after {
  content: " ▼";
  font-size: 12px;
  margin-left: 6px;
  color: #FFD700;
}

/* Dropdown menu */
nav ul li .dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background-color: rgba(1, 1, 49, 0.95);
  list-style: none;
  padding: 10px 0;
  min-width: 220px;
  display: none;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

nav ul li:hover > .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 10px 20px;
}

.dropdown-menu li a {
  color: white;
  font-size: 16px;
  font-weight: normal;
  text-decoration: none;
  display: block;
  transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Right side */
.right-side {
  display: flex;
  align-items: center;
  gap: 35px;
}

.search-icon {
  font-size: 22px;
  color: white;
  background: rgba(255, 215, 0, 0.1);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.search-icon:hover {
  background: rgba(255, 215, 0, 0.35);
  color: #FFD700;
  transform: scale(1.1);
}

/* Mobile hamburger menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: #FFD700;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Mobile menu container */
.mobile-menu-container {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 50, 0.95);
  backdrop-filter: blur(10px);
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  z-index: 999;
}

.mobile-menu-container a {
  color: white;
  font-size: 18px;
  padding: 14px 20px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  transition: background 0.25s ease, color 0.25s ease;
}

.mobile-menu-container a:hover {
  background: rgba(255, 215, 0, 0.2);
  color: #FFD700;
}

/* Show mobile menu when active */
.mobile-menu-container.active {
  display: flex;
}

/* Responsive */
@media (max-width: 992px) {
  nav,
  .right-side {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

/* Smaller screen dropdown click */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  nav ul li .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    border-radius: 0;
    min-width: 100%;
    display: none;
  }

  nav ul li.active > .dropdown-menu {
    display: block;
  }

  nav ul li.dropdown > a {
    cursor: pointer;
  }
}

/* Rest of your hero and scroll bar styles remain unchanged */








/* Dropdown container */
nav ul li {
  position: relative;
}

/* Dropdown arrow */
nav ul li.dropdown > a::after {
  content: " ▼";
  font-size: 12px;
  margin-left: 6px;
  color: yellow;
}

/* Dropdown menu */
nav ul li .dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background-color: rgba(1, 1, 49, 0.95);
  list-style: none;
  padding: 10px 0;
  min-width: 220px;
  display: none;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.navbar {
  display: flex;
  gap: 15px; /* space between links and dropdown */
}

.dropdown-menu {
  margin-top: 8px; /* space below button and dropdown menu */
}

/* Show dropdown on hover */
nav ul li:hover > .dropdown-menu {
  display: block;
}

/* Dropdown menu items */
nav ul li .dropdown-menu li {
  padding: 10px 20px;
}

nav ul li .dropdown-menu li a {
  color: white;
  font-size: 16px;
  font-weight: normal;
  text-decoration: none;
  display: block;
  transition: background 0.3s ease;
}

nav ul li .dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive: For smaller screens, use click toggles */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  nav ul li .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    border-radius: 0;
    min-width: 100%;
    display: none;
  }

  nav ul li.active > .dropdown-menu {
    display: block;
  }

  /* Optional: add cursor pointer on dropdown parent */
  nav ul li.dropdown > a {
    cursor: pointer;
  }
}


















  

.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  position: absolute;
  top: 70%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
  max-width: 500px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  line-height: .5;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: red;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s;
}

.btn:hover{
  background-color: rgb(7, 8, 87);
}


.hero-section {
  position: relative;
  height: 100vh;
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Bottom scroll bar */
.scroll-row {
  display: flex;
  width: 100%;
  height: 50px;
  background: #0a015a;
  overflow: hidden;
  color: white;
  font-size: 16px;
}

/* Each column */
.scroll-col {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

/* Scrolling text */
.scroll-text {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: scroll-left 10s linear infinite;
  padding-left: 100%;
}

/* Animate scrolling from right to left */
@keyframes scroll-left {
  0% {
    transform: transition(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}



.white-line {
    width: 100%;         /* Makes the line span the full width of its container */
    height: 1px;         /* Sets the thickness */
    background-color: rgb(0, 0, 0); /* Color of the line */
    margin: 20px 0;      /* Adds space around the line */
}






.about-mbrcc {
  background-color: hsl(246, 19%, 89%); /* Dark blue background */
  padding: 40px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
  color: rgb(255, 255, 255);
}

.mbrcc-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.mbrcc-text h2 {
  font-size: 30;
  font-weight: 700;        /* Bold */
  color: rgb(0, 0, 0);            /* White title */
  margin-bottom: 20px;
}

.mbrcc-text p {
  font-size: 18px;
  line-height: 1;
  text-align: justify;
  color: rgb(0, 0, 0);
  text-align: left;
  text-align: justify;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-mbrcc {
    padding: 60px 4%;
  }

  .mbrcc-text h2 {
    font-size: 32px;
  }

  .mbrcc-text p {
    font-size: 16px;
    text-align: left;
  }
}









.projects-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px;
  padding: 40px;
  background-color: #f9f9f9;
  max-width: 1600px;
  margin: 0 auto; /* Center the grid */
}

.gallery-title {
  text-align: center;
  font-size: 36px;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #333;
  font-weight: bold;
}

.project-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card p {
  padding: 15px;
  font-size: 14px;
  color: #333;
}

.more-btn {
  margin-bottom: 20px;
  padding: 10px 20px;
  background-color: #01073f;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.more-btn:hover {
  background-color: #5a0206;
}

@media (max-width: 768px) {
  .projects-gallery {
    grid-template-columns: 1fr; /* 1 column on small screens */
  }
}




body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  padding: 20px;
}

.gallery-container {
  display: flex;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.left-panel {
  flex: 1;
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.right-panel {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.top-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.bottom-images {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.bottom-images img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.bottom-images img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Lightbox styles */
#lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 1;
  transition: opacity 0.3s ease;
}

#lightbox.lightbox-hidden {
  opacity: 0;
  pointer-events: none;
}

#lightbox img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 15px #fff;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  user-select: none;
  font-weight: bold;
  text-shadow: 0 0 5px black;
}


.gallery-container {
  display: flex;
  gap: 30px;
  padding: 30px;
  font-family: Arial, sans-serif;
}

.left-panel {
  flex: 1;
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
}

.right-panel {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.top-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.bottom-images {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.bottom-images img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}






.container {
  display: flex;
  width: 200%;
  height: 50vh;
  background-color: #001f4d; /* dark blue */
  color: white;
}

.message {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.message p {
  text-align: justify;
  hyphens: auto;
  word-spacing: 0.05em;
  line-height: 1.6;
}

.image {
  flex: 1;
}

.image img {
  width: 110%;
  height: 100%;
  object-fit: cover;
  display: block;
}









/* COMPACT IMAGE BOX GALLERY */
.header {
  text-align: center;
  padding: 15px 20px;
  background-color: #001f4d;
  color: white;
}

.header h1 {
  margin: 0 0 8px 0;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
}

.header p {
  margin: 0;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  max-width: 700px;
  margin: 0 auto;
}

/* Ultra-compact gallery grid */
.image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Minimal image box */
.image-box {
  flex: 1 1 280px;
  background: white;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 160px; /* Ultra compact */
  max-width: 100%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Tiny image container */
.image-container {
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  min-height: 100px; /* Very small image area */
}

/* Compact overlay */
.image-container::after {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 50%; /* Shorter overlay */
  background: linear-gradient(to top, rgba(0,31,77,0.6), transparent);
  transition: bottom 0.3s ease-out;
}

/* Optimized image */
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Micro hover effects */
.image-box:hover {
  box-shadow: 0 5px 12px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

.image-box:hover .image-container::after {
  bottom: 0;
}

.image-box:hover .image-container img {
  transform: scale(1.06); /* Subtler zoom */
}

/* Tiny info bar */
.info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #001f4d;
  color: white;
  padding: 8px 12px;
  font-size: 0.9rem;
}

/* Mini arrow button */
.arrow-button {
  border: 1.5px solid white;
  width: 26px;
  height: 26px;
  font-size: 0.9rem;
  padding: 0;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.image-box:hover .arrow-button {
  background-color: #ff3a3a;
  transform: rotate(45deg) scale(0.9);
}

/* Mobile ultra-compact */
@media (max-width: 768px) {
  .image-row {
    gap: 10px;
    padding: 10px;
  }
  
  .image-box {
    flex-basis: 100%;
    min-height: 140px;
  }
  
  .image-container {
    min-height: 90px;
  }
  
  .info {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
  
  .arrow-button {
    width: 24px;
    height: 24px;
  }
}

/* Desktop compact */
@media (min-width: 1200px) {
  .image-box {
    flex-basis: calc(33.333% - 12px);
    min-height: 180px;
  }
}















/* General */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
}

/* Section */
.services-section {
  padding: 60px 30px;
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
}

/* Title */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.section-underline {
  width: 100%;
  height: 4px;
  background-color: #030303f8;
  margin: 0 auto;
}

/* Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

/* Cards */
.service-card {
  background: #080131;
  border-radius: 10px;
  padding: 25px 20px;
  flex: 1 1 calc(20% - 20px); /* 5 columns */
  min-width: 200px;
  max-width: 230px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}


.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: #fcfcfc;
  margin-bottom: 8px;
  font-size: 16px;
  text-align: justify;
  text-align: left;
}

.card-underline {
  width: 188px;
  height: 3px;
  background: #f8f5f5;
  margin-bottom: 12px;
  border-radius: 3px;
}

.service-card p {
  font-size: 12px;
  line-height: 1.4;
  color: #f7f1f1;
  margin-bottom: 15px;
  text-align: justify;
  hyphens: auto;
  word-wrap: break-word;

}

.read-more {
  text-decoration: none;
  color: #fdfafa;
  font-size: 14px;
  float: right;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #0056b3;
}






<style>
  :root {
    --primary: #001f4d;
    --secondary: #ff3a3a;
    --light: #f8f9fa;
    --dark: #212529;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .modern-staff-gallery {
    max-width: 1600px;
    margin: 0 auto;
    padding: 4rem 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  }

  .gallery-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }

  .section-title span {
    color: var(--secondary);
    position: relative;
  }

  .section-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary);
    transform: scaleX(0.8);
  }

  .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .gallery-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .main-display {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .main-photo {
    position: relative;
    height: 400px;
  }

  .main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }

  .staff-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
  }

  .main-photo:hover .staff-info {
    transform: translateY(0);
    opacity: 1;
  }

  .staff-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .staff-info p {
    font-size: 1rem;
    opacity: 0.9;
  }

  .thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }

  .thumbnail-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1/1;
    transition: var(--transition);
    border: 3px solid transparent;
  }

  .thumbnail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .thumbnail-item.active {
    border-color: var(--secondary);
  }

  .thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }

  .thumbnail-item::after {
    content: attr(data-name);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.9rem;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition);
  }

  .thumbnail-item:hover::after {
    transform: translateY(0);
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
    
    .main-photo {
      height: 300px;
    }
    
    .thumbnail-grid {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
  }

  @media (max-width: 480px) {
    .modern-staff-gallery {
      padding: 2rem 1rem;
    }
    
    .thumbnail-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }










  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Partners & Clients</title>
  <style>
    body {
      margin: 0;
      background: #001c38;
      font-family: Arial, sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: 100vh;
      padding: 40px 20px;
      box-sizing: border-box;
    }

    h2 {
      color: rgb(0, 0, 0);
      font-size: 2.5rem;
      margin-bottom: 40px;
      text-align: center;
    }

    h2 span {
      color: #000000;
    }

    .logo-slider {
      width: 100%;
      max-width: 1000px; 
      overflow: hidden;
      position: relative;
      margin: 0 auto;
    }

    .logo-track {
      display: flex;
      gap: 60px;
      animation: scrollLogos 25s linear infinite;
      will-change: transform;
      padding: 20px 0;
    }

    .logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 200px;
    }

    .logo-track img {
      height: 120px;
      width: auto;
      max-width: 200px;
      object-fit: contain;
      opacity: 0.9;
      transition: all 0.3s ease;
    }

    .logo-track img:hover {
      opacity: 1;
      transform: scale(1.1);
      filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
    }

    @keyframes scrollLogos {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Gradient fade effect on sides */
    .logo-slider::before,
    .logo-slider::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 100px;
      z-index: 2;
      pointer-events: none;
    }

    .logo-slider::before {
      left: 0;
      background: linear-gradient(90deg, #f1f1f3, transparent);
    }

    .logo-slider::after {
      right: 0;
      background: linear-gradient(90deg, transparent, #fcfcfd);
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .logo-track {
        gap: 40px;
      }
      .logo-item {
        min-width: 160px;
      }
      .logo-track img {
        height: 70px;
        max-width: 160px;
      }
    }

    @media (max-width: 768px) {
      h2 {
        font-size: 2rem;
      }
      .logo-track {
        gap: 30px;
      }
      .logo-item {
        min-width: 120px;
      }
      .logo-track img {
        height: 60px;
        max-width: 120px;
      }
      .logo-slider::before,
      .logo-slider::after {
        width: 50px;
      }
    }

    @media (max-width: 480px) {
      h2 {
        font-size: 1.8rem;
      }
      .logo-track {
        gap: 20px;
      }
      .logo-item {
        min-width: 100px;
      }
      .logo-track img {
        height: 50px;
        max-width: 100px;
      }
    }









  .section-message {
  font-size: 1.2em;
  line-height: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;  /* <-- THIS is what you're missing */
  }


  .blue-background-section {
  background-color: #001f4d;
  color: white;
  padding: 25px 0px;
  text-align: center;
  max-width: 100%;
  }

  .section-title {
   font-size: 2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: white !important;
    text-shadow: 1px 1px 2px black;
 }










 








.blue-line {
  width: 100%;         /* full width */
  height: 20px;         /* thickness of the line */
  background-color: rgb(78, 4, 1); /* color of the line */
  margin: 0px 0;      /* vertical spacing around the line */
}





.image-banner {
  position: relative;
  width: 100%;
  height: 40vh;
  min-height: 300px;
  background-image: url("image/Gallary/CASA 1000 NGR.jpg"); /* No escaping */
  background-size: cover;
  background-position: left center; /* Keeps image aligned to the left */
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Overlay to the right */
  padding-right: 5%; /* Space from the right edge */
  overflow: hidden; /* Ensures pseudo-element doesn't overflow */
}

/* Optional: Overlay effect using pseudo-element */
.image-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  z-index: 1;
}

.overlay-text {
  position: relative; /* For stacking above ::before */
  z-index: 2;
  background-color: rgba(5, 2, 58, 0.9);
  color: #fff;
  padding: 15px;
  border-radius: 8px;
  max-width: 400px; /* Corrected from '00px' */
  text-align: justify;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive design */
@media (max-width: 768px) {
  .image-banner {
    flex-direction: column;
    height: auto;
    align-items: flex-end; /* Stack text under image */
  }

  .overlay-text {
    max-width: 100%;
    padding: 20px;
    margin-top: 10px;
  }

  .image-banner::before {
    height: 30vh;
  }
}






.red-line {
  width: 100%;         /* full width */
  height: 20px;         /* thickness of the line */
  background-color: rgb(119, 4, 4); /* color of the line */
  margin: 0px 0;      /* vertical spacing around the line */
}





/* Footer base */
footer {
  background-color: hwb(216 0% 70%);
  color: white;
  font-family: Arial, sans-serif;

}



/* Footer base */
footer {
  background-color: #001f4d;
  color: white;
  font-family: Arial, sans-serif;
}

/* Main container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px 0;
  gap: 30px;
}

/* Footer sections */
.footer-left, .footer-center, .footer-right {
  padding: 0 15px;
  box-sizing: border-box;
}

/* Left section */
.footer-left {
  flex: 1 1 250px;
  min-width: 250px;
}

.footer-left img {
  max-width: 100px;
  margin: 0 auto 20px;
  display: block;
}



.about-box {
  background-color: #003366;
  border-radius: 8px;
  padding: 30px 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  font-size: 0.95em;
  line-height: 1.5;
  color: #ddd;
  text-align: justify;
}

/* Center section */
.footer-center {
  flex: 2 1 350px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-heading {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: white;
  font-weight: bold;
  width: 100%;
  text-align: center;
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.footer-nav a {
  color: white;
  font-weight: 600;
  font-size: 1.1em;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
  padding: 5px 0;
}

.footer-nav a:hover {
  color: #f44336;
}

.newsletter-form {
  width: 100%;
  max-width: 350px;
}

.newsletter-form label {
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 8px;
  display: block;
  text-align: center;
}

.email-input-group {
  display: flex;
  gap: 10px;
  width: 100%;
}

.email-input-group input {
  padding: 12px 15px;
  border-radius: 30px;
  border: none;
  flex: 1;
  font-size: 1em;
}

.email-input-group button {
  background-color: #f44336;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.email-input-group button:hover {
  background-color: #d32f2f;
}

/* Right section */
.footer-right {
  flex: 1 1 250px;
  min-width: 250px;
}

.contact-info {
  margin-bottom: 25px;
}

.contact-info strong {
  font-size: 1.3em;
  color: white !important; /* Ensures the color is white */
  display: block;
  margin-bottom: 15px;
  white-space: nowrap;
}

.contact-info p {
  margin: 10px 0;
  font-size: 0.95em;
  display: flex;
  align-items: center;
  color: #ddd; /* Makes text a lighter shade for readability */
}

.contact-info i {
  margin-right: 10px;
  color: #ffffff;
  width: 20px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: white;
  font-size: 1.5em;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #f44336;
}

/* Copyright section */
.copyright {
  background-color: #001732;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
  width: 100%;
  color: #ccc;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .footer-left, .footer-center, .footer-right {
    align-items: center;
    text-align: center;
  }

  .contact-info p {
    justify-content: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }

  .email-input-group {
    flex-direction: column;
  }

  .email-input-group button {
    width: 100%;
    margin-top: 10px;
  }
}

