@import url('https://fonts.googleapis.com/css2?family=Imperial+Script&display=swap');
.imperial-script-regular {
  font-family: "Imperial Script", cursive;
  font-weight: 700;
  font-style: normal;
  font-size:30px;
  color: #194174;
}

h1 {
    font-size: 4.3em;
    letter-spacing: 0px;
    font-weight: 700;
    color: #000;
    text-align: left;
}

.cssanimation, .cssanimation span {
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

.cssanimation span { display: inline-block }

.leRotateYZoomIn span { animation-name: leRotateYZoomIn }
@keyframes leRotateYZoomIn {
    from {
        transform: perspective(600px) translate3d(0, -60px, -2000px) rotateY(75deg);
        opacity: 0
    }
    5% { transform: perspective(600px) translate3d(0, -60px, -1500px) rotateY(75deg) }
}

.hero-banner {
  position: relative;
  min-height: 100vh; /* hero height */
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
}

.hero-title {
  position: relative;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  animation: fadeDown 1s ease forwards;
  margin-top: 350px;
  color: #fff; /* White text */
    text-shadow: 
    1px 1px 3px rgba(0,0,0,0.8),
    -1px -1px 3px rgba(0,0,0,0.8),
    1px -1px 3px rgba(0,0,0,0.8),
    -1px 1px 3px rgba(0,0,0,0.8);
}

/* Animations */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-banner {
    min-height: 50vh;
    padding: 2rem 1rem;
  }
  .hero-title {
    font-size: 28px;
  }
}

strong {
  color: #000;
}


/* List */
.icon-style {
  color: #194174; /* change to theme color */
  transition: transform 0.3s ease, color 0.3s ease;
}

.icon-style:hover {
  color: #e8063c;
  transform: scale(1.2);
}

.mission-list {
  padding-left: 18px;
  margin: 0;
}
.mission-list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.custom-hero-banner {
    position: relative;
    background: url('../../assets/img/award-1.jpg') center center/cover no-repeat;
    height: 450px; /* adjust height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.custom-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.custom-banner-content {
    position: relative;
    z-index: 2;
}

.custom-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
}

.custom-waves {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    line-height: 0;
}

.custom-waves svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.custom-wave1 {
    bottom: 0;
    left: 0;
    z-index: 1;
}

.custom-wave2 {
    bottom: 10px; /* shift for double effect */
    left: 0;
    z-index: 0;
}

.mb-3 {
  margin-bottom: 2rem !important;
}

.awards-section {
  padding: 60px 0;
}

.award-box {
  background: #fff;
  transition: all 0.3s ease-in-out;
}
.award-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.award-box h3 {
  font-size: 1.5rem;
  margin-top: 1rem;
}

@media (max-width: 576px) {
  .award-box h3 {
    font-size: 1.2rem;
    margin-top: 0.75rem;
  }
  
  .award-box p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

.hover-shadow {
  transition: all 0.3s ease;
}
.hover-shadow:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.va-modal {              /* hidden by default */
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}
.va-modal.open { display: flex; }

.va-modal-img {
  max-width: min(90vw, 1200px);
  max-height: 85vh;
  width: auto;           /* prevent stretch */
  height: auto;          /* prevent stretch */
  object-fit: contain;   /* preserve aspect ratio */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.25);
  animation: va-zoomIn 0.25s ease;
}

.va-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

@keyframes va-zoomIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

body.va-no-scroll { overflow: hidden; }

.blog-single {
  margin-bottom: 10px;
}

/* Award card styling */
.award-card {
  background: #fff;
  border-left: 6px solid #fff;   /* Left border accent */
  border-bottom: 6px solid #fff; /* Bottom border accent */
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12); /* Softer hover shadow */
}

/* Image frame */
.image-frame {
  width: 100%;
  aspect-ratio: 3 / 2;   /* keeps uniform frame (change to 1/1 for square) */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f8f8;   /* fallback bg */
  padding: 0px;
  background: linear-gradient(135deg, #fafafa, #fff);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Image animation */
.image-frame img {
  width: 100%;
  height: 100%;
  border: 2px solid #194174;
  padding: 5px;
  
  /* Simple glow effect */
  box-shadow: 0 4px 12px rgba(25, 65, 116, 0.3);

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.3s;
  
  animation: zoomIn 0.9s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Hover effect */
.image-frame img:hover {
  transform: scale(1.05);  /* smoother zoom */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2); /* softer shadow */
  cursor: pointer;
}

/* Optional subtle floating effect */
.floating {
  animation: float 3s ease-in-out infinite;
}

/* Keyframes */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}