header {
    position: sticky;
    top: 0;
    z-index: 1030; /* Above all other content */
    background-color: #fff7ed; /* Same as body to avoid flicker */
}
.header.sticky-shadow {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
html, body {
    height: 100%;
    overflow-x: hidden; /*  OK */
    overflow-y: auto;   /*  OK */
}

.header-title {
    color: #c5a052; /* Gold color matching logo */
    font-weight: 700;
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-subtitle {
    color: #0d3b66; /* Navy blue */
    font-weight: 600;
    font-family: 'Georgia', serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.navbar {
    position: static !important;
}
.nav-link {
    font-weight: 500;
    color: #333333 !important;
    font-family: 'Segoe UI', sans-serif;
}

.btn-success {
    background-color: #0d3b66; /* navy */
    border-color: #0d3b66;
}

.btn-success:hover {
    background-color: #c5a052; /* gold on hover */
    border-color: #c5a052;
    color: #fff;
}
.container-width{
    max-width: 1450px;
}

/* banner */
.carousel-item img {
    height: 90vh;
    object-fit: cover;
    filter: brightness(0.6);
}

.carousel-caption {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.carousel-caption h1 {
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 60vh;
    }

    .carousel-caption h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    .carousel-caption a {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}
/* banner end */
/* footer*/
.bg-dark-blue {
    background-color: #002a4a;
}

.text-gold {
    color: #c5a052;
}

.btn-gold {
    background-color: #c5a052;
    color: #000;
    border: none;
}

.btn-gold:hover {
    background-color: #b8943f;
}

.footer-link:hover {
    color: #47bcc7 !important;
    text-decoration: underline;
}
/* footer End */

/* main home */

 .step-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    }

    .step-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3); /* bluish shadow */
    }

    
.step-card .rounded-circle {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    flex-shrink: 0;
    padding: 0;
}

.step-card svg {
    display: block;
    margin: 0 auto;
}
.step-card svg {
    margin-top: 2px;
}
.registration-heading {
    font-size: 3rem;
}

.why-box {
  transition: all 0.3s ease-in-out;
}

.why-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.2); /* Theme blue shadow */
}

.text-theme-blue {
  color: #0d3b66 !important;
}

.service-unique {
  background-color: #fffdfb; /* slightly lighter than pink */
  transition: all 0.3s ease;
}

.service-unique:hover {
  border-color: #0d3b66;
  transform: translateY(-4px);
}
.btn-primary {
  background-color: #0d3b66;
  border-color: #0d3b66;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #c5a052;
  border-color: #c5a052;
  color: #fff;
}
.vision-mission-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-mission-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .vision-mission-box {
    margin-bottom: 1rem;
  }
}


  /* Tab buttons spacing and look */
  .nav-pills .nav-link {
    margin: 0 10px;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #0d3b66;
    color: #0d3b66;
    background-color: transparent;
    transition: all 0.3s ease;
  }

  .nav-pills .nav-link.active {
    background-color: #0d3b66;
    color: white !important;
  }

  .nav-pills .nav-link:hover {
    background-color: #0d3b66;
    color: white !important;
    box-shadow: 0 4px 10px rgba(13, 59, 102, 0.3);
  }

  /* Apply Now button */
  .btn-apply-now {
    padding: 10px 30px;
    display: inline-block;
    background-color: #c5a052;
    color: #fff;
    border-radius: 30px;
    transition: all 0.3s ease;
  }

  .btn-apply-now:hover {
    background-color: #c5a052 !important;
    box-shadow: 0 4px 10px rgba(13, 59, 102, 0.4);
    color: #fff;
  }
.btn-theme-outline {
  border: 1px solid #0d3b66;
  color: #0d3b66;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-theme-outline:hover {
  background-color: #c5a052;
  color: #ffffff;
  border-color: #c5a052;
}
.form-card {
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.form-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
  border-color: #c5a052;
}
.text-theme {
  color: #c5a052;
}

.org-box {
  transition: all 0.3s ease;
  background-color: #fff;
  border: 1px solid #f1f1f1;
}

.org-box:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  background-color: #fff7ed;
}
.text-theme {
  color: #c5a052;
}

.btn-theme {
  background-color: #c5a052;
  color: white;
  transition: background-color 0.3s ease;
}

.btn-theme:hover {
  background-color: #0d3b66;
  color: white;
}

.info-box {
  transition: all 0.3s ease;
  background-color: #fff;
}

.info-box:hover {
  background-color: #fff7ed;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}


