

 :root {
      --isw-primary: #1B3A5C;
      --isw-primary-dark: #0F2540;
      --isw-accent: #C8A951;
      --isw-accent-hover: #D4BA6A;
      --isw-topbar-bg: #0A1E33;
      --isw-light-bg: #F4F6F9;
      --isw-text-light: #CBD5E1;
    }

    body {
      font-family: 'Roboto', sans-serif;
      margin: 0;
      padding: 0;
    }

    /* ========== TOP UTILITY BAR ========== */
    .top-bar {
      background-color: var(--isw-topbar-bg);
      color: var(--isw-text-light);
      font-size: 0.8rem;
      padding: 6px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .top-bar a {
      color: var(--isw-text-light);
      text-decoration: none;
      transition: color 0.2s;
    }

    .top-bar a:hover {
      color: var(--isw-accent);
    }

    .top-bar .bi {
      font-size: 0.85rem;
    }

    .top-bar-icon {
      color: var(--isw-accent);
      margin-right: 4px;
    }

    .top-bar-divider {
      color: rgba(255,255,255,0.15);
      margin: 0 10px;
    }

    .social-icons .btn {
      width: 28px;
      height: 28px;
      padding: 0;
      line-height: 28px;
      text-align: center;
      border-radius: 50%;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--isw-text-light);
      font-size: 0.75rem;
      transition: all 0.2s;
      margin-left: 4px;
    }

    .social-icons .btn:hover {
      background: var(--isw-accent);
      border-color: var(--isw-accent);
      color: var(--isw-primary-dark);
    }

    .top-bar-cta {
      background: var(--isw-accent);
      color: var(--isw-primary-dark) !important;
      font-weight: 600;
      padding: 3px 14px !important;
      border-radius: 3px;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: background 0.2s;
    }

    .top-bar-cta:hover {
      background: var(--isw-accent-hover) !important;
      color: var(--isw-primary-dark) !important;
    }










/* =====================================================
   MAIN NAVBAR
===================================================== */

.main-navbar {
    width: 100%;
    background: #f8f9fa !important;
    z-index: 1030;
    border-bottom: 1px solid #dee2e6;
}

.main-navbar .container-fluid {
    min-height: 58px;
}


/* =====================================================
   DESKTOP MENU
===================================================== */

#mainNav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#mainNav .nav-item {
    white-space: nowrap;
}

#mainNav .nav-link {
    color: #222;
    font-size: 15px;
    font-weight: 500;
    padding: 18px 13px;
    transition: all 0.2s ease;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: #02327E;
}


/* =====================================================
   DROPDOWN
===================================================== */

#mainNav .dropdown-menu {
    min-width: 240px;
    margin-top: 0;
    padding: 8px 0;
    border: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

#mainNav .dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    font-size: 14px;
    color: #333;
}

#mainNav .dropdown-item i {
    font-size: 10px;
    color: #02327E;
}

#mainNav .dropdown-item:hover {
    background: #f1f5f9;
    color: #02327E;
}

#mainNav .dropdown-divider {
    margin: 5px 12px;
}


/* =====================================================
   DESKTOP HOVER DROPDOWN
===================================================== */

@media (min-width: 992px) {

    #mainNav .dropdown:hover > .dropdown-menu {
        display: block;
    }

    #mainNav .dropdown:hover > .nav-link {
        color: #02327E;
    }

    #mainNav .dropdown-menu {
        animation: dropdownFade 0.15s ease-in-out;
    }

}


/* =====================================================
   DROPDOWN ANIMATION
===================================================== */

@keyframes dropdownFade {

    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991.98px) {

    .main-navbar .container-fluid {
        min-height: 60px;
    }

    .navbar-brand {
        font-size: 18px;
    }

    .navbar-toggler {
        border: 1px solid #adb5bd;
        padding: 6px 9px;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.15);
    }

    #mainNavbar {
        padding: 10px 0 15px;
    }

    #mainNav {
        display: block;
        width: 100%;
    }

    #mainNav .nav-item {
        width: 100%;
    }

    #mainNav .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 12px 10px;
        border-bottom: 1px solid #e9ecef;
    }

    #mainNav .nav-link.dropdown-toggle {
        justify-content: space-between;
    }

    #mainNav .dropdown-menu {
        position: static !important;
        width: 100%;
        min-width: 100%;
        margin: 0;
        padding: 0 0 5px 15px;
        border: none;
        border-left: 2px solid #0d6efd;
        border-radius: 0;
        box-shadow: none;
        background: #f8f9fa;
    }

    #mainNav .dropdown-item {
        padding: 10px 12px;
        white-space: normal;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {

.main-navbar {
    padding-left: 0;
    padding-right: 0;
}

.main-navbar .container-fluid {
    padding-left: 12px !important;
    padding-right: 12px !important;
}

.navbar-brand {
    font-size: 17px;
}

#mainNav .nav-link {
    font-size: 14px;
    padding: 11px 8px;
}

#mainNav .dropdown-item {
    font-size: 13px;
}

}


/* Make the carousel container full screen */
    .carousel,
    .carousel-inner,
    .carousel-item {
        height: auto;
        min-height: 300px;
        background-color: #fff; /* Black background for letterbox areas */
    }

    /* Force the image to fit inside the screen without cropping */
    .carousel-item img {
        width: 100%;
        height: auto;
        /* height: 100vh;*/
        object-fit: contain; /* This is the magic property! */
        object-position: center;
    }

    /* Style the captions to make them readable */
    .carousel-caption {
        bottom: 10%;
        z-index: 10;
    }
    .carousel-caption h5 {
        font-size: 45px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 25px;
        font-weight: bold;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    }
    .carousel-caption p {
        width: 75%;
        margin: auto;
        font-size: 18px;
        line-height: 1.9;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    }

    /* Optional: Add a semi-transparent background behind the text for better readability */
    .caption-bg {
        background: rgba(0, 0, 0, 0.5);
        padding: 30px;
        border-radius: 10px;
        display: inline-block;
    }





/* =========================================
   NEWS SECTION
========================================= */

/* News Card */
.news-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Hover Effect */
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.14);
}

/* News Image */
.news-image {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.news-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

/* News Content */
.news-content {
    padding: 18px;
    background: #fff;
}

/* Date */
.news-date {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.news-date i {
    margin-right: 5px;
}

/* Title */
.news-title {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 15px;
    font-weight: 400;
}

.news-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #E65611;
}

/* Read More */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #E65611;
    text-decoration: none;
}

.read-more:hover {
    color: #084298;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(4px);
}


/* Floating Dira image */
.dira {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1050;
    animation: diraFloat 3s ease-in-out infinite;
}

.dira img {
    height: 5rem;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Floating animation */
@keyframes diraFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Hover effect */
.dira:hover img {
    transform: scale(1.1);
}

/* Mobile */
@media (max-width: 576px) {
    .dira {
        right: 12px;
        bottom: 12px;
    }

    .dira img {
        height: 4rem;
    }
}

.announcement-section{
    background: #f2f2f2;
    min-height: 200px;
    transition: all 0.3s ease;
}
.executive-section{
    min-height: 200px;
    transition: all 0.3s ease;
}
.section-subtitle, .newsletter-title, .announcemant-title{
    color:#333;
    font-size: 17px;
    margin-top: 5px;
    font-weight: 600;
    text-align: center;
}
.top-management-title{
    color:#333;
    font-size: 18px;
    margin-top: 5px;
    font-weight: 600;
    text-align: center;
}

.divider-hr {
    width: 50px;
    height: 3px;
    padding: 0;
    margin: 0 auto;
    background: #b1b1b1;
    border: none;
    text-align: center;
}
.bg-isw {
    background: #0066cc;
    fill: #0066cc;
}


/* ========== EXECUTIVE MEMBERS ========== */

.executive-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
}

.executive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
}

.executive-image {
    height: 280px;
    overflow: hidden;
    background: #e9ecef;
}

.executive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.executive-card:hover .executive-image img {
    transform: scale(1.08);
}

.executive-card .card-body {
    padding: 20px 15px;
}

.executive-card .card-title {
    font-size: 1.05rem;
    font-weight: 700;
}

.executive-card p {
    margin-bottom: 0;
}

/* Mobile */
@media (max-width: 575.98px) {
    .executive-image {
        height: 350px;
    }
}
.color-isw{
    color: #02327E;
    font-weight: 600;
}

.executive-details {
    background: #f8fafc;
}

.executive-details .card {
    overflow: hidden;
    border-radius: 12px;
}

.executive-details .card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.executive-details h1 {
    font-weight: 700;
}

.executive-biography {
    font-size: 1rem;
}

.executive-biography p {
    white-space: normal;
}
.executive-details-bg{
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease; 
}

.executive-details-title{
    color:#555;
    margin-top: 5px;
    font-weight: 600;
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

@media (max-width: 576px) {
    .text-justify {
        text-align: left;
    }
}





/* =========================================
   ANNOUNCEMENT & NEWSLETTER SECTION
========================================= */

/*.announcement-section {
    padding: 30px 0;
    background: #f5f7fa;
}*/


/* =========================================
   COLUMN CARDS
========================================= */

.announcement-section .col-md-6 {
    display: flex;
}


.section,
.newsletter {
    width: 100%;
    height: 100%;

    padding: 25px;
}


/* =========================================
   SECTION HEADINGS
========================================= */

.section-heading,
.newsletter-title {
    position: relative;

    margin-bottom: 25px;

    font-size: 1.4rem;

    font-weight: 700;

    color: #02327E;
}


.section-heading .line {
    position: relative;

    display: inline-block;

    padding-bottom: 10px;
}


.section-heading .line::after,
.newsletter-title::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 60px;
    height: 3px;

    background: #444;

    border-radius: 10px;
}


/* =========================================
   ANNOUNCEMENT LIST
========================================= */

.service-list ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.service-list-heading {
    padding: 16px 0;

    border-bottom: 1px solid #e5e7eb;

    transition: all 0.3s ease;
}


.service-list-heading:first-child {
    padding-top: 0;
}


.service-list-heading:last-child {
    border-bottom: none;
}


/* =========================================
   ANNOUNCEMENT TITLE
========================================= */

.service-list-heading > a {
    display: block;

    font-size: 1rem;

    font-weight: 600;

    line-height: 1.6;

    color: #1e293b;

    text-decoration: none;

    transition: all 0.3s ease;
}


.service-list-heading > a i {
    margin-right: 8px;

    color: #E65611;

    font-size: 1.05rem;
}


.service-list-heading:hover > a {
    color: #E65611;

    padding-left: 5px;
}


/* =========================================
   ANNOUNCEMENT META
========================================= */

.service-list-footer {
    margin-top: 8px;

    margin-bottom: 0;

    font-size: 0.85rem;

    color: #64748b;
}


.service-list-footer a {
    color: #E65611;

    text-decoration: none;

    font-weight: 500;
}


.service-list-footer a:hover {
    text-decoration: underline;
}


.service-list-footer .date {
    font-weight: 600;

    color: #475569;
}


/* =========================================
   MORE ANNOUNCEMENTS BUTTON
========================================= */

.more-announcements {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 12px 20px;

    background: #0d6efd;

    color: #ffffff !important;

    text-decoration: none;

    font-weight: 600;

    border-radius: 6px;

    transition: all 0.3s ease;
}


.more-announcements:hover {
    background: #0b5ed7;

    color: #ffffff;

    transform: translateY(-2px);
}


.more-announcements i {
    transition: transform 0.3s ease;
}


.more-announcements:hover i {
    transform: translateX(5px);
}


/* =========================================
   NEWSLETTER
========================================= */

.newsletter-title {
    padding-bottom: 10px;
}


.divider-hr {
    height: 1px;

    margin-top: -10px;
    margin-bottom: 20px;

    border: 0;

    background-color: #e5e7eb;

    opacity: 1;
}


/* ISW COLOR */

.bg-isw {
    background-color: #0d6efd !important;
}


/* =========================================
   EMPTY MESSAGE
========================================= */

.service-list .alert {
    margin-bottom: 0;

    border-radius: 6px;

    font-size: 0.9rem;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767.98px) {

    .announcement-section {
        padding: 20px 0;
    }


    .section,
    .newsletter {
        padding: 18px;

        margin-bottom: 15px;
    }


    .section-heading,
    .newsletter-title {
        font-size: 1.1rem;
    }


    .service-list-heading > a {
        font-size: 0.9rem;
    }


    .service-list-footer {
        font-size: 0.75rem;
    }


    .more-announcements {
        padding: 10px 15px;

        font-size: 0.85rem;
    }
}








/* ==========================================
   ISW IN NUMBERS
========================================== */
.section-numbers{
    margin-bottom: 5px;
}
.isw-numbers-section {
    position: relative;
    padding: 90px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.isw-numbers-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.isw-numbers-section .container {
    position: relative;
    z-index: 2;
}

.isw-divider {
    width: 70px;
    height: 3px;
    margin: 20px auto;
    background: #fff;
    border: 0;
    opacity: 1;
}


/* Counter */

.isw-counter {
    padding: 25px 15px;
    color: #fff;
    transition: all 0.3s ease;
}

.isw-counter:hover {
    transform: translateY(-8px);
}

.isw-counter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;

    font-size: 30px;
    color: #fff;
}

.isw-counter-number {
    margin-top: 15px;

    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.isw-counter hr {
    width: 45px;
    margin: 18px auto;
    border: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.7);
}

.isw-counter h6 {
    margin: 0;

    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}









/* =========================================================
   VIDEO CAROUSEL
========================================================= */

#videosCarousel {
    position: relative;
    width: 100%;
    padding: 0 0 45px 0;
    overflow: visible;
}

#videosCarousel .carousel-inner {
    width: 100%;
    overflow: hidden;
}

#videosCarousel .carousel-item {
    width: 100%;
    height: auto;
}


/* =========================================================
   VIDEO ROW
========================================================= */

#videosCarousel .carousel-item .row {
    margin-left: 0;
    margin-right: 0;
}


/* =========================================================
   VIDEO CARD
========================================================= */

.video-card {
    width: 100%;
    height: auto !important;

    background: #fff;

    border-radius: 12px;
    overflow: hidden;

    border: 1px solid #e5e7eb;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

    transition: all .3s ease;
}

.video-card:hover {
    transform: translateY(-3px);
}


/* =========================================================
   VIDEO
========================================================= */

.video-card .ratio {
    width: 100%;
    height: auto;

    background: #000;
}

.video-card iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================================
   VIDEO INFORMATION
========================================================= */

.video-card .p-3 {
    background: #fff;
}

.video-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.video-card p {
    margin-bottom: 0;
}


/* =========================================================
   CAROUSEL INDICATORS
========================================================= */

#videosCarousel .video-indicators {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 5px;

    width: 100%;

    margin: 0;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    z-index: 20;
}

#videosCarousel .video-indicators button {
    width: 9px;
    height: 9px;

    margin: 0;
    padding: 0;

    border: 0;

    border-radius: 50%;

    opacity: .45;

    transition: all .3s ease;
}

#videosCarousel .video-indicators button.active {
    width: 25px;
    border-radius: 10px;
    opacity: 1;
}


/* =========================================================
   CAROUSEL ARROWS
========================================================= */

#videosCarousel .video-carousel-control {
    position: absolute;

    top: 42%;

    width: 42px;
    height: 42px;

    padding: 0;

    transform: translateY(-50%);

    border: 0;
    border-radius: 50%;

    opacity: 1;

    background: rgba(0, 0, 0, .7);

    z-index: 30;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all .3s ease;
}

#videosCarousel .video-carousel-control:hover {
    background: rgba(0, 0, 0, .9);
    transform: translateY(-50%) scale(1.08);
}

#videosCarousel .carousel-control-prev {
    left: 10px;
}

#videosCarousel .carousel-control-next {
    right: 10px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    #videosCarousel {
        padding-bottom: 40px;
    }

    #videosCarousel .video-carousel-control {
        width: 36px;
        height: 36px;
    }

}








.left-logo img,
.right-logo img {
    max-height: 100px;
    width: auto;
    text-align: center;
}
p#head {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color: #000;
    text-shadow: 3px 3px 2px hsla(0, 0%, 59%, .5);
    padding: 5px;
    text-transform: uppercase;
}

p#main {
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 3px rgba(255, 255, 255, 1);
    font-weight: bold;
    line-height: 16px;
    color: #02327E;
    text-shadow: 1px 1px 0px #EAEAEA;
    padding: 5px;
}
