/*--------------------------------------------------------------
# Font Face Declarations
--------------------------------------------------------------*/

/* GT Sectra Font Family */
@font-face {
  font-family: 'GT Sectra';
  src: url('../fonts/GT-Sectra-LCGV-Fine-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Sectra';
  src: url('../fonts/GT-Sectra-LCGV-Fine-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Sectra';
  src: url('../fonts/GT-Sectra-LCGV-Fine-Bold-Italic.woff2') format('woff2');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

/* Gentium Plus Font Family */
@font-face {
  font-family: 'Gentium Plus';
  src: url('../fonts/GentiumPlus-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gentium Plus';
  src: url('../fonts/GentiumPlus-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gentium Plus';
  src: url('../fonts/GentiumPlus-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Gentium Plus';
  src: url('../fonts/GentiumPlus-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

/* Jost Font Family */
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* Kalpurush Font Family (Bengali/Bangla) */
@font-face {
  font-family: 'Kalpurush';
  src: url('../fonts/kalpurush.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Global Font Setup */

/* Section Title Styles */
.section-title h2 {
  font-family: 'GT Sectra', serif;
  font-weight: bold;
}

.section-title p {
  font-family: 'Jost', serif;
}


body,span,p,a,li,ul,ol,button,div,header,footer,nav {
  font-family: "Gentium Plus", "Kalpurush", sans-serif;
}

/*--------------------------------------------------------------
# Global Styling
--------------------------------------------------------------*/

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

  /*--------------------------------------------------------------
# Navigation Section
--------------------------------------------------------------*/
  /* === NAVBAR STYLING === */
  .navbar {
    background-color: #29AB87;
    padding: 0.75rem 1rem;
    z-index: 1030;
  }

  /* Left-aligned logo / brand */
  .navbar .navbar-brand {
    margin-right: auto;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
  }

  .navbar .navbar-brand img {
    max-height: 50px;
  }

  /* Right-aligned menu on large screens */
  .navbar .navbar-nav {
    margin-left: auto;
  }

  /* Mobile Navigation Toggle */
  .mobile-nav-toggle {
    display: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    margin-left: auto;
    border: none;
    background: none;
    outline: none;
  }

  @media (max-width: 1199px) {
    .mobile-nav-toggle {
      display: block;
    }
    
    .navmenu ul {
      display: none;
    }
    
    .mobile-nav-active .navmenu ul {
      display: block;
    }
  }

  /* Nav container styling */
  .navbar .collapse {
    align-items: flex-end;
  }

  /* Nav links */
  .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-item.active .nav-link {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
  }

  /* === MOBILE MENU TOGGLER === */
  .navbar-toggler {
    border: none;
    /* No border */
    outline: none;
    box-shadow: none;
    padding: 0.4rem 0.6rem;
    background-color: transparent;
  }

  .navbar-toggler:focus,
  .navbar-toggler:hover {
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent;
  }

  /* Toggler icon: white bars */
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  /* Responsive Nav Items */
  @media (max-width: 991.98px) {
    .navbar-nav {
      margin-top: 1rem;
    }

    .navbar-nav .nav-link {
      padding: 0.75rem 1rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .search-form {
      margin-top: 1rem;
    }
  }




/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/


  .footer-menu-widget {
    /* Footer menu widget styles */
  }

  .footer-menu-widget .footer-menu-title {
    font-weight: bold;
    font-size: 20px;
    color: #ffffff;
    position: relative;
    margin-bottom: 20px;
  }

  .footer-menu-widget .footer-menu-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #ffffff;
    margin-top: 8px;
  }

  .footer-menu-links li {
    padding: 8px 0;
    border-bottom: 1px dotted #f4f7fb;
  }

  .footer-menu-links li:last-child {
    border-bottom: none;
  }

  .footer-menu-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
  }

  .footer-menu-links a:hover {
    color: #fd0356;
  }



  .footer-menu li a::before {
    content: "\f285";
    /* Unicode for bi-chevron-right */
    font-family: 'bootstrap-icons';
    display: inline-block;
    margin-right: 8px;
    font-size: 1rem;
    vertical-align: middle;
    color: #fa0154;
    /* or your desired icon color */
  }

  .footer-menu li a {
    color: #ffffff;
    text-decoration: none;
  }

  .footer-menu li a:hover {
    color: #f39c12;
    text-decoration: underline;
  }


  /*--------------------------------------------------------------
# Update Section
--------------------------------------------------------------*/

  /* Update/Announcement Bar — matches the reference screenshot */
  .update-announcement-bar {
    display: flex;
    align-items: center;
    background: #04415F;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(4, 65, 95, 0.04);
    padding: 3px 20px 3px 8px;
    width: 100%;
    max-width: 100vw;
    height: 42px;
    position: relative;
    z-index: 100;
  }

  /* Blue "Updates" pill label */
  .update-announcement-label {
    background: #f8f9fa;
    color: #04415F;
    border-radius: 28px;
    font-weight: 600;
    font-family: var(--nav-font);
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    padding: 7px 18px 7px 12px;
    margin-right: 18px;
    box-shadow: 0 1px 4px rgba(4, 65, 95, 0.08);
    letter-spacing: 0.02em;
    height: 32px;
  }

  .update-announcement-label i {
    font-size: 1.22em;
    margin-right: 8px;
    color: #04415F;
  }

  /* Scrolling Notice Text */
  .update-announcement-scroller {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }

  .update-announcement-text {
    display: inline-block;
    white-space: nowrap;
    font-size: 1.06rem;
    color: #ffffff;
    font-family: var(--nav-font);
    font-weight: 500;
    animation: update-bar-scroll 22s linear infinite;
    padding-left: 0;
  }

  .update-announcement-text a {
    color: #ffffff;
    text-decoration: none;
  }

  @keyframes update-bar-scroll {
    0% {
      transform: translateX(100%);
    }

    100% {
      transform: translateX(-110%);
    }
  }

  /* Responsive adjustments for mobile */
  @media (max-width: 768px) {
    .update-announcement-bar {
      flex-direction: row;
      padding: 5px 8px 5px 8px;
      border-radius: 0px;
      min-height: 36px;
    }

    .update-announcement-label {
      margin-bottom: 0;
      margin-right: 0;
      padding: 6px 14px;
      font-size: 0.99rem;
    }

    .update-announcement-text {
      font-size: 0.98rem;
    }
  }



  /*--------------------------------------------------------------
# Notice Board Page
--------------------------------------------------------------*/


  .notice-table {
    background-color: white;
    border: 1px solid #dee2e6;
    font-size: 16px;
  }

  .notice-table td a {
    color: #0a58ca;
    text-decoration: none;
  }

  .notice-table td a:hover {
    text-decoration: underline;
  }

  .notice-header-section {
    position: relative;
    background-blend-mode: darken;
    padding: 60px 0;
  }





  /*--------------------------------------------------------------
# Notice Single
--------------------------------------------------------------*/
  .title-wrapper .line {
    width: 100%;
    height: 2px;
    background-color: #ccc; /* Adjust color if needed */
  }

  .notice-title {
    text-align: center;
  }

  .notice-content {
    font-size: 1.05rem;
    line-height: 1.7;
  }



  /* Card Styling */
  .card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin: auto;
  }

  /* Title */
  .notice-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #212529;
    letter-spacing: 1px;
  }

  /* Meta Information */
  .card p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: -5px;
  }

  /* Content */
  .notice-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #495057;
    margin-top: 20px;
    text-align: justify;
  }

  /* Buttons */
  .notice-footer .btn {
    font-size: 1.1rem;
    padding: 10px 25px;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  .notice-footer .btn:hover {
    background-color: #0056b3;
  }

  /* Responsive Design */
  @media (max-width: 767px) {
    .notice-banner h1 {
      font-size: 2.8rem;
    }

    .notice-title {
      font-size: 2rem;
    }

    .notice-content {
      font-size: 1rem;
    }

    .breadcrumb {
      font-size: 0.9rem;
    }
  }

  /*--------------------------------------------------------------
# New Header Navigation
--------------------------------------------------------------*/


  #main {
    margin-top: 0;
  }

  /*------- Top Bar -------------*/

  .top-bar-links {
    color: #ffffff;
    text-decoration: none;
  }

  .ogit-custom-navbar{
    min-height: 80px;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navbar {
    background-color: #f0f8ff;
  }

  .navbar .navbar-brand {
    margin-right: auto;
    color: rgb(3, 13, 46);
    font-weight: 700;
    text-decoration: none;
  }

 
  .navbar-nav .nav-link {
    color: rgba(3,13,46);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
  }
  @media (max-width: 767.98px) {
    .navbar-collapse .navbar-nav {
      text-align: left !important;
      align-items: flex-start !important;
    }
  }

  @media (max-width: 767.98px) {
    .navbar-collapse .navbar-nav .nav-item {
      border-bottom: 1px solid #ccc; /* 👈 Line color */
      padding-bottom: 0.5rem;
      margin-bottom: 0.5rem;
    }

    .navbar-collapse .navbar-nav .nav-item:last-child {
      border-bottom: none;
    }
  }

  

  @media (max-width: 767.98px) {
  .navbar-collapse .navbar-nav {
    width: 100%;
  }

  .navbar-collapse .navbar-nav .nav-item {
    width: 100%;
    border-bottom: 1px solid #ccc; /* Line color */
    margin: 0;
    padding: 0;
  }

  .navbar-collapse .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }

  .navbar-collapse .navbar-nav .nav-link {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
  }
}

/* Remove border, shadow, and hover effects from toggler */
.no-border-toggler {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.no-border-toggler:hover,
.no-border-toggler:focus {
  box-shadow: none !important;
  background: transparent !important;
  outline: none !important;
}

  /*--------------------------------------------------------------
# Carousel Section
--------------------------------------------------------------*/
  .carousel-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 500;
    overflow: hidden;
  }

  .carousel-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/

  .contact-form-container {
    max-width: 800px;
    margin: auto;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .contact-form-container h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
  }

  .contact-form-container p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
  }  


