/* ---- Page Layout ---- */
.page-wrapper {
    font-family: 'Roboto', Verdana, sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 20px;
    color: #1f2a44;
}

/* ---- Titles ---- */
.page-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    color: #003580;
}


.page-intro {
    text-align: center;
    font-size: 28px;
    color: #4a638e;
    margin-bottom: 18px;
    font-weight: 500;
    font-style: italic;
}


.section-title {
    font-size: 26px;
    font-weight: 700;
    color: #002b62;
    margin-bottom: 12px;
}


.section-intro {
   
    font-size: 18px;
    color: #4a638e;
    margin-bottom: 18px;
    font-weight: 400;
    font-style: italic;
}

.section-subtitle {
    
    font-size: 20px;
    color: #0077cc; /* #285ea8;*/
    margin-bottom: 25px;
    font-weight: 500;
}


.section-text {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #000580;
}




/* ---- Section Card ---- */
.section-card {
    background: linear-gradient(135deg, #e8f1ff, #ffffff);
    border-radius: 14px;
    padding: 25px 30px;
    margin-bottom: 35px;
    border-left: 6px solid #003580;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    animation: fadeInUp 0.7s ease;
    position: relative;
}
.section-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"6\" height=\"6\"><circle cx=\"3\" cy=\"3\" r=\"1\" fill=\"%23c7d6f7\"/></svg>');
    opacity: 0.18;
    border-radius: 14px;
}

/* ---- Section Card Alt ---- */
.section-card-alt {
    background: linear-gradient(135deg, #ffffff, #eef7ff);
    border-radius: 14px;
    padding: 25px 30px;
    margin-bottom: 35px;
    border-right: 6px solid #0055aa;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    animation: fadeInUp 0.7s ease;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
 	
}
.section-card-alt:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"8\" height=\"8\"><rect width=\"2\" height=\"8\" fill=\"%23dce9ff\"/></svg>');
    opacity: 0.18;
    border-radius: 14px;
}
.section-card-alt:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* ---- Highlights ---- */
.page-highlight {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #003580;
}

/* ---- Text ---- */
.page-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: 400;
}

.paragraph-box {
    max-width: 700px;     
   
    text-align: left;
    line-height: 1.7;  
}

/* Center override */
.center-text {
    text-align: center !important;
}

/* ---- Flex Layout for Images + Text ---- */
.two-column {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 20px 0;
}

.two-column img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

/* Flip direction */
.reverse {
    flex-direction: row-reverse;
}

/* Optional image frame */
.image-frame {
    border: 4px solid #003580;
    padding: 6px;
    border-radius: 12px;
}

/* ---- Links ---- */
a {
    color: #0066cc;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s ease;
}
a:hover {
    color: #003580;
    text-decoration: underline;
}


.video-banner-container {
  position: relative;
  width: 100%;
  height: 300px; /* Adjust height as you like */
  overflow: hidden;
  border-radius: 8px; /* Optional rounded corners */
}

.banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.3); /* ? Transparent banner overlay */
  color: #ffffff;
  border-radius: 5px;
}

.banner-overlay h1 {
  font-size: 2.2rem;
  margin: 0;
  font-weight: bold;
}

.banner-overlay p {
  font-size: 1.2rem;
  margin-top: 10px;
}




/* ---- Animation ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY