@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+Sinhala:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Yaldevi:wght@200..700&display=swap');


* {
  font-family: "Noto Sans Sinhala", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*.center-wrapper {
      width: 100%;
      padding: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
    }

    .news-header {
      color: #ff2e2e;
      font-size: 14px;
      font-weight: bold;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .stars {
      color: #ff2e2e;
      margin: 0 5px;
    }


    :root {
      --primary-color: #1e3d59;
      --secondary-color: #f5c842;
      --accent-color: #ff6b6b;
      --text-dark: #2c3e50;
      --text-light: #ecf0f1;
      --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
      --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
      --shadow-light: 0 4px 15px rgba(0,0,0,0.1);
      --shadow-heavy: 0 10px 30px rgba(0,0,0,0.3);
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      overflow-x: hidden;
    }
    

    /* Video background */
    #video-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      z-index: -2;
      opacity: 0.3;
      transition: opacity 1s ease;
      pointer-events: none;
    }

    /* Gradient Overlay */
    .gradient-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.5), rgba(0, 0, 50, 0.3));
      z-index: -1;
      pointer-events: none;
    }


     /* Header Styles */
/* Header Styles */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(78, 77, 77, 0.5)), url("2716.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: headerGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes headerGlow {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}



header img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  animation: logoSpin 10s linear infinite;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

header img:hover {
  transform: scale(1.1);
  animation-play-state: paused;
}

header h1 {
  color: var(--text-light);
  font-size: 2.5rem;
  margin: 1rem 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: textGlow 3s ease-in-out infinite alternate;
  position: relative;
  z-index: 1;
  color: #fff;
}

@keyframes textGlow {
  from { text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
  to { text-shadow: 2px 2px 20px rgba(255,255,255,0.5); }
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    gap: 10px;
    padding:auto;
  }

  header h1 {
    font-size:1.5rem;
    padding: auto;
  }
  
  header img {
    width: 75px;
    height: 75px;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size:1rem;
  }
  
  header img {
    width: 60px;
    height: 60px;
  }
}

/* @keyframes textGlow {
  from { text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
  to { text-shadow: 2px 2px 20px rgba(255,255,255,0.5); }
} */




.head-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      padding: 10px 20px;
      background: linear-gradient(90deg, #002147, #004080);
      color: white;
      position: relative;
    }

    .contact-info {
      font-size: 16px;
    }

    .social-icons {
      display: flex;
      gap: 10px;
    }

    .social-icons a {
      color: white;
      font-size: 18px;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .social-icons a:hover {
      transform: scale(1.2);
      color: #ffc107;
    }

    .language-switcher {
      display: flex;
      gap: 5px;
    }

    .language-switcher button {
      background: white;
      border: none;
      padding: 5px 10px;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
    }

    .language-switcher a {
      text-decoration: none;
      color: #002147;
    }


    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    @media (max-width: 600px) {
      .head-bar {
        flex-direction: row;
        align-items: flex-start;
        gap:auto;
      }
    }

/* RESPONSIVE */

/* Responsive Enhancements for Gradient Overlay */
@media (max-width: 768px) {
  .gradient-overlay {
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 50, 0.4));
    height: 100dvh; /* Use dynamic viewport height for better mobile support */
  }
}


    /* Navigation Styles */
    .navbar {
      background: rgba(30, 61, 89, 0.95);
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: var(--shadow-light);
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(30, 61, 89, 0.98);
      transform: translateY(-2px);
    }

    .nav-container {
      width: 100%;
      padding:auto;
    }

    .nav-menu {
      display: flex;
      justify-content: center;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-item {
      position: relative;
      margin: 0 1rem;
    }

    .nav-link {
      display: flex;
      align-items: center;
      padding:10px;
      color: var(--text-light);
      text-decoration: none;
      transition: all 0.3s ease;
      border-top-right-radius:5px;
      border-bottom-right-radius:5px;
      position: relative;
      overflow: hidden;
    }

    .nav-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: var(--gradient-accent);
      transition: left 0.3s ease;
      z-index: -1;
    }

    .nav-link:hover::before,
    .nav-item.current .nav-link::before {
      left: 0;
    }

    .nav-item.current .nav-link {
      color: var(--text-light);
      font-weight: bold;
    }

    .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      padding: 5px;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      min-width: 230px;
      border-radius: 15px;
      box-shadow: var(--shadow-heavy);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
    }

    .nav-item:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-link {
      display: block;
      padding:5px;
      color: var(--text-dark);
      text-decoration: none;
      transition: all 0.3s ease;
      border-radius: 10px;
      margin:5px;
    }

    .dropdown-link:hover {
      background: var(--gradient-accent);
      color: white;
      transform: translateY(5px);
    }

/* body content */
.body{
  width: 100%;
  height: auto;
  background-image: url("5968949.jpg");
  background-size: cover;
  background-attachment: fixed;
}

     /* Hero Section */
    .hero-section {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .hero-slider {
      height: 100%;
      position: relative;
    }

    .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .hero-slide.active {
      opacity: 1;
      z-index: 1;
    }

    .hero-slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(45deg, rgba(185, 28, 28, 0.473), rgba(120, 14, 14, 0.466));
      z-index: 1;
    }

    .hero-content {
      position: absolute;
      top: 20%;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      z-index: 2;
      color: #fff;
      padding: 1rem;
    }

    .hero-content h2 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      color: #facc15;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    }

    .hero-content p {
      font-size: 1.3rem;
      background: rgba(0,0,0,0.4);
      padding: 1rem;
      border-radius: 10px;
      backdrop-filter: blur(4px);
    }

    /* Navigation */
    .hero-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2rem;
      color: white;
      background: rgba(0, 0, 0, 0.5);
      border: none;
      padding: 0.8rem 1rem;
      cursor: pointer;
      z-index: 10;
    }

    .hero-arrow:hover {
      background: rgba(185, 28, 28, 0.8);
    }

    .hero-arrow.prev {
      left: 10px;
    }

    .hero-arrow.next {
      right: 10px;
    }

    @media (max-width: 768px) {
  .hero-section {
    height: 50vh;
  }

  .hero-content {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem;
    width: 85%;
  }

  .hero-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .hero-arrow {
    font-size: 1.5rem;
    padding: 0.6rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    top: 30%;
    width: 82%;
    padding: 0.5rem;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  .hero-arrow {
    font-size: 1.2rem;
    padding: 0.4rem 0.6rem;
  }
}





    /* commissioner Message */

 .container {
      width: 100%;
      padding: 5rem;
      background-color: #fff;
      /* border-radius: 12px; */
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      display: flex;
      gap: 40px;
      position: relative;
      overflow: hidden;
    }

    .background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("london-8195506_1920.jpg"); /* change this */
      background-size: cover;
      background-position: center;
      opacity: 0.15;
      z-index: 1;
    }

    .left, .right {
      flex: 1;
      position: relative;
      z-index: 2;
    }

    .left h2 {
      font-size: 28px;
      color: #333;
      margin-bottom: 10px;
    }

    .left p {
      color: #555;
      line-height: 1.6;
    }

    .signature {
      font-family: 'Brush Script MT', cursive;
      font-size: 28px;
      margin-top: 20px;
    }

    .right {
      text-align: center;
    }

    .right img {
      width: 220px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .quote-box {
      background-color: #fff;
      border-left: 5px solid #093153;
      margin-top: 20px;
      padding: 15px 20px;
      font-size: 18px;
      font-style: italic;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .footer-icons i{
      margin-top: 20px;
      font-size: 30px;
      color: #093153;
    }

    .footer-icons a {
      display: inline-block;
      margin-right: 10px;
      text-decoration: none;
      color: #555;
      font-size: 20px;
    }

    .contact-boxes {
      display: flex;
      gap: 20px;
      margin-top: 30px;
    }

    .contact {
      flex: 1;
      background: #f8f8f8;
      padding: 15px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: bold;
    }

    .contact i {
     font-size: 35px;
    }

    @media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 2rem;
    gap: 20px;
  }

  .left, .right {
    width: 100%;
    text-align: center;
  }

  .left h2 {
    font-size: 24px;
  }

  .left p {
    font-size: 1rem;
  }

  .signature {
    font-size: 24px;
  }

  .right img {
    width: 180px;
  }

  .quote-box {
    font-size: 16px;
    padding: 12px 16px;
  }

  .footer-icons i {
    font-size: 26px;
  }

  .footer-icons a {
    font-size: 18px;
  }

  .contact-boxes {
    flex-direction: column;
    gap: 15px;
  }

  .contact {
    justify-content: center;
    text-align: center;
    font-size: 14px;
    padding: 12px;
  }

  .contact i {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }

  .left h2 {
    font-size: 20px;
  }

  .left p {
    font-size: 0.95rem;
  }

  .quote-box {
    font-size: 15px;
  }

  .right img {
    width: 150px;
  }
}



    /* Notice Board */
    .notice-board {
  max-width: 1200px;
  margin: auto;
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.notice-board h1 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 10px;
}

h2 {
  text-align: center;
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

.enter-btn {
  display: block;
  margin: 0 auto 30px;
  background-color: #444;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 25px;
  cursor: pointer;
}

.enter-btn:hover {
  background-color: #222;
}

.notice-header {
  display: flex;
  align-items: center;
  background: #eaf7ff;
  margin-bottom: 12px;
  border-left: 6px solid #fa3d3d;
  border-radius: 10px;
  padding: 12px 15px;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 10px;
}

.date {
  background: #f33d3d;
  color: white;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

.text {
  flex-grow: 1;
  font-size: 15px;
  color: #333;
  margin-right: 10px;
  word-break: break-word;
  min-width: 0;
}

.lang-buttons {
  display: flex;
  flex-shrink: 0;
  gap: 6px;
}

.lang-buttons button {
  background: #dcdcdc;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
  white-space: nowrap;
}
.lang-buttons button a{
  text-decoration: none;
  color: #000000;
}

.lang-buttons button:hover {
  background: #aaa;
  color: white;
}

.all-btn {
  display: block;
  margin: 20px auto 0;
  background: #f02929;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
}
.all-btn a{
  text-decoration: none;
  color: #fff;
}
.all-btn:hover {
  background: #a50000;
}

@media (max-width: 768px) {
  .notice-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  .date {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .text {
    font-size: 14px;
    margin-bottom: 8px;
    margin-right: 0;
  }

  .lang-buttons {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }

  .lang-buttons button {
    flex: 1 1 auto;
    padding: 6px 8px;
    font-size: 14px;
  }

  .all-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .notice-board {
    padding: 20px;
  }

  .date {
    font-size: 12px;
    padding: 5px 8px;
  }

  .text {
    font-size: 13px;
  }

  .lang-buttons button {
    font-size: 13px;
    padding: 5px 7px;
  }

  .all-btn {
    padding: 10px;
    font-size: 15px;
  }
}


/* news cards design */
.news-container{
  width: 100%;
  height: auto;
  /* background-color: #ffffffc4; */
  background-image: url("5968949.jpg");
  background-size: cover;
  background-attachment: fixed;
}

.center-wrapper {
      width: 100%;
      padding: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
    }

    .news-header {
      color: #ff2e2e;
      font-size: 14px;
      font-weight: bold;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .stars {
      color: #ff2e2e;
      margin: 0 5px;
    }

    .main-title {
      font-size: 32px;
      font-weight: 700;
      color: #1a1a1a;
    }

    .underline {
      display: inline-block;
      margin-top: 8px;
      height: 4px;
      width: 100px;
      background-color: #ff2e2e;
      border-radius: 2px;
      position: relative;
    }

    .underline::before,
    .underline::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 5px;
      height: 5px;
      background-color: #ff2e2e;
      border-radius: 50%;
      transform: translateY(-50%);
    }

    .underline::before {
      left: -10px;
    }

    .underline::after {
      right: -10px;
    }

h2 {
      text-align: center;
      color: #b22222;
      margin-bottom: 10px;
    }

    .news-grid {
      /* background-color: #ffffff; */
      padding: 30px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1200px;
      margin: auto;
      /* border-radius: 15px; */
      /* box-shadow: 0 0 15px rgba(0,0,0,0.1); */
    }

    .card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: relative;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .card-body {
      padding: 15px;
    }

    .image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.image-wrapper .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e60023;
  color: white;
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 4px;
  z-index: 2;
}

.image-wrapper .date-box {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff6f00;
  color: white;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 6px;
  border-radius: 4px;
  z-index: 2;
}


    .card-title {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 10px;
      color: #222;
    }

    .card-text {
      font-size: 14px;
      color: #555;
      margin-bottom: 10px;
    }

    .meta button {
      float: right;
      padding: 10px;
      color: #fff;
      font-size: 15px;
      background-color: rgb(255, 82, 82);
      margin: 10px;
      border: none;
      border-radius: 5px;
    }
    .meta button a{
      text-decoration: none;
      color: #fff;
    }

    @media (max-width: 768px) {
      .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
    }

    /* service crad style */
    .service-container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      max-width: 1200px;
      margin: auto;
      padding: 25px;
    }

    .service-card {
      width: 250px;
      background: rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      padding: 30px 20px;
      text-align: center;
      transition: 0.3s ease-in-out;
      border-bottom: 6px solid #093153; /* Green accent line */
      border-top: 6px solid #093153; /* Green accent line */
    }
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    /* .icon-box {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      border-radius: 50%;
      background: linear-gradient(135deg, #6e8efb, #a777e3);
      display: flex;
      align-items: center;
      justify-content: center;
    } */

    .icon-box{
      justify-content: center;
      margin: 0 auto 5px;
    }
    .icon-box img{
      width:60%;
    }

    .service-card h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .service-card p {
      font-size: 14px;
      color: #333;
      margin-bottom: 20px;
    }

    .service-card a {
      text-decoration: none;
      display: inline-block;
      padding: 8px 18px;
      border-radius: 8px;
      background: #f53f3f;
      color: white;
      font-size: 14px;
      transition: background 0.3s ease;
    }

    .service-card a:hover {
      background: #a70101;
    }

    @media (max-width: 768px) {
      .service-container {
        width: 100%;
        flex-direction: column;
        align-items: center;
      }
      .service-card{
        width: 100%;
      }

    }

    /* footer menu */

    .footer-menu {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.623), rgba(0, 0, 0, 0.658)),
              url('your-background-image.jpg') no-repeat center center/cover;
  color: white;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ffc107;
}

.footer-column p {
  margin: 8px 0;
}
.footer-column .call img{
  width: 10%;
}

.rti-img, .gic-img {
  display: block;
  max-width: 100%;
  margin-bottom: 10px;
}

.call {
  font-size: 18px;
  font-weight: bold;
  align-items: center;
}

.footer-column i {
  margin-right: 8px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    width: 100%;
  }
  /* Center the images inside Join Us column */
  .rti-img,
  .gic-img {
    display: block;
    margin: 0 auto 10px auto; /* Top/Right/Bottom/Left */
  }

  .call {
    text-align: center;
  }
}

    /* Footer */
    footer {
      /* background: red; */
      background: linear-gradient(90deg, #002147, #004080);
      color: var(--text-light);
      text-align: center;
      padding: 1rem;
      margin-top: 0;
      position: relative;
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gradient-secondary);
      animation: shimmer 2s ease-in-out infinite;
    }

    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    /* Responsive Design */
    @media (max-width: 768px) {


      .vision-mission,
      .features {
        flex-direction: column;
        align-items: center;
      }

      .caption h2 {
        font-size: 2rem;
      }

      .vm-box,
      .feature {
        margin: 1rem 0;
      }
    }

    /* Loading Animation */
    .loading-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:rgb(253, 81, 81);
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 1;
      transition: opacity 1s ease;
    }

    .loading-overlay.hidden {
      opacity: 0;
      pointer-events: none;
    }

    .loader {
      width: 50px;
      height: 50px;
      border: 5px solid rgba(255,255,255,0.3);
      border-top: 5px solid var(--secondary-color);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: fixed;
      top: 0;
      left: 0;
      width: 0%;
      height: 4px;
      background: var(--gradient-secondary);
      z-index: 9999;
      transition: width 0.1s ease;
    }