:root {
    --primary: #2A9D8F;
    --secondary: #264653;
    --accent: #E9C46A;
    --text: #2B2D42;
    --header-height: 80px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
      -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Poppins', 'Noto Serif Bengali', sans-serif;

    min-height: 100vh;
}

/* Header Styles */
.header {
    height: var(--header-height);
    background: transparent;
    padding: 0 5rem;
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 1002;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    
}

.header_left {
    display: flex;
    align-items: center;
}

.logo_img {
    height: 50px;
    transition: all 0.3s ease;
}

/* Navigation Links */
.nav_links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav_links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 18px;
    position: relative;
}
.header.scrolled .nav_links a {
    color: black;
}
.nav_links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav_links a:hover::after {
    width: 100%;
}

/* Icons Container */
.icons_container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 2rem;
}

.material-symbols-outlined {
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 28px !important;
}
.header.scrolled .material-symbols-outlined {
    color: black;
}

.material-symbols-outlined:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* Mobile Styles */
.mobile_icons {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

/* Hamburger Menu (Keep existing style) */
.hamburger {
    width: 32px;
    height: 24px;
    position: relative;
    cursor: pointer;
    display: none;
    z-index: 1100;
}

.hamburger span {
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Drawer */
.drawer {
    position: fixed;
    top: var(--header-height);
    right: -300px;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background: #ffffff;
    box-shadow: var(--shadow);
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.drawer.active {
    right: 0;
}

.drawer_logo {
    width: 120px;
    margin: 0 auto 2rem;
    display: block;
}

.drawer_links {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1rem;
}

.drawer_links a {
    text-decoration: none;
    color: var(--text);
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.drawer_links a::before {
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
}

.drawer_links a:hover {
    background: rgba(41, 157, 143, 0.1);
    transform: translateX(10px);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
    z-index: 1000;
    margin-top: var(--header-height);
    /* Push overlay below header */
    height: calc(100% - var(--header-height));
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header.scrolled::after,
.header.menu-open::after {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 0 1.5rem;
    }

    .nav_links,
    .icons_container {
        display: none;
    }

    .mobile_icons {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .logo_img {
        height: 40px !important;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0 1rem;
    }

    .drawer {
        width: 100%;
        right: -100%;
    }
}

.dropdown_content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: 12px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(10px);
}

.nav_item:hover .dropdown_content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown_content a {
    padding: 0.8rem 1.5rem;
    font-size: 16px;
    color: var(--text);
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
}

.dropdown_content a:hover {
    background: rgba(42, 157, 143, 0.05);
    padding-left: 2rem;
}

/* Mobile Dropdown */
.mobile_dropdown_trigger {
    display: none;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.mobile_dropdown_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* Search Modal */
.search_modal {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    z-index: 1003;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem;
}

.search_modal.active {
    top: var(--header-height);
}

.search_input {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--primary);
    padding: 1rem 2rem;
    font-size: 1.2rem;
    outline: none;
}

/* Add these media queries */
@media (max-width: 768px) {
    .nav_item {
        position: static;
    }
    
    .dropdown_content {
        display: none;
    }
    
    .mobile_dropdown_trigger {
        display: block;
    }
    
    .mobile_dropdown_content.active {
        max-height: 500px;
    }
    
    .drawer_links a {
        
        position: relative;
    }
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    
  }
  
  .dropdown > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    
  }
  
  .dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 99;
  }
  
  .dropdown_menu a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
  }
  
  .dropdown:hover .dropdown_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  @media(max-width: 768px) {
    .nav_links .dropdown_menu {
      display: none !important;
    }
  
    .drawer .dropdown_menu {
      position: static;
      background: #f9f9f9;
      box-shadow: none;
      transform: none;
      opacity: 1;
      visibility: visible;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
  
    .drawer .dropdown.open .dropdown_menu {
      max-height: 200px;
    }
  
    .dropdown_icon {
      font-size: 18px;
    }
  }
  
  .search_modal {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    z-index: 1003;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem;
}

.search_modal.active {
    top: var(--header-height);
}

.search_input {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--primary);
    padding: 1rem 2rem;
    font-size: 1.2rem;
    outline: none;
}

@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');

.hero_ {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 

  
animation: heroMove 12s ease-in-out infinite alternate;

  z-index: 1;
}

@keyframes heroMove {
    0% {
        transform: scale(1) translateY(0);
      }
      50% {
        transform: scale(1.05) translateY(-15px);
      }
      100% {
        transform: scale(1) translateY(0);
      }
}

.hero_content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5vw;
}

.hero_text {
  color: #fff;
  font-family: 'Kaushan Script', cursive;
  font-size: calc(44.61538px + 2.88462vw);
  line-height: 1.2;
  max-width: 800px;
}
.hero_text_yellow{
    color:yellow;
    font-family: 'Kaushan Script', cursive;
  font-size: calc(44.61538px + 2.88462vw);
  line-height: 1.2;
  max-width: 800px;

}

@media (max-width: 768px) {
  .hero_content {
    justify-content: center;
    padding: 0 10vw;
    text-align: center;
  }
}

.hero_2_section {
    position: relative;
    padding: 8rem 0 4rem;

    z-index: 50;
}

.hero_2_content_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.hero_2_heading {
    font-family: 'Kaushan Script', cursive;
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.hero_2_approach_group {
    display: grid;
    gap: 2.5rem;
}

.hero_2_approach_item {
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--primary);
    background-color: #ffffff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-height: 150px;
}

.hero_2_approach_item h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--header-color);
    font-weight: 600;
}

.hero_2_approach_item p {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
}

.hero_2_details_btn {
    margin-top: auto;
    align-self: flex-start;
    background-color: var(--button-bg);
    color: var(--button-text-color);
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    transition: var(--transition);
}

.hero_2_details_btn:hover {
    background-color: var(--button-hover);
    transform: translateX(3px);
}

.arrow_icon {
    font-size: 1rem;
    line-height: 1;
    color: var(--button-text-color);
    transition: transform 0.3s ease;
}

.hero_2_details_btn:hover .arrow_icon {
    transform: translateX(3px);
}

.hero_2_approach_item:hover {
    transform: scale(1.015);
    background-color: rgba(42, 157, 143, 0.05);
    box-shadow: var(--shadow-lg);
}

.hero_2_slider_wrapper {
    position: relative;
    margin-top: -10%;
}

.hero_2_slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-top: -20%;
}

.hero_2_slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero_2_slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero_2_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero_2_slide_content {
    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
    right: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: linear-gradient(200deg, transparent 0%, rgba(0,0,0,1) 100%);
    color: white;
    text-align: left;
    z-index: 2;
}

.hero_2_slide_content h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.4;
}

.hero_2_slide_btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
}

.hero_2_slide_btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.hero_2_slider_dots {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
    background: rgba(0,0,0,0.3);
    padding: 0.8rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.hero_2_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero_2_dot.active,
.hero_2_dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero_2_content_wrapper {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .hero_2_slider_wrapper {
        margin-top: 2rem;
        height: 400px;
    }
    .hero_2_slider {
        height: 400px;
        margin-top: 2rem;
    }

    .hero_2_slide_content {
        left: 1rem;
        right: 1rem;
        bottom: 1.5rem;
        text-align: center;
    }

    .hero_2_slide_content h3 {
        font-size: 1.5rem;
    }

    .hero_2_slide_btn {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
    .hero_2_slider_dots{
        background: none;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    }
}
.hero_2_slider_wrapper {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    will-change: transform, opacity;
}

.hero_2_slider_wrapper.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.hero_2_slider_wrapper.animate-out {
    opacity: 0;
    transform: translateY(50px);
}


/* story section  */
.story_section {
    position: relative;
    background: url('../image/story1.webp') no-repeat center center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

.story_overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent 80%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 4rem 4rem;
}

.story_content {
    max-width: 600px;
    color: white;
    text-align: left;
    z-index: 2;
}

.story_title {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: calc(21.07692px + 1.92308vw);
}

.story_text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story_btn {
    background-color: var(--primary, #ff5722);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.story_btn:hover {
    background-color: var(--secondary, #e64a19);
}

@media (max-width: 768px) {
    .story_overlay {
        justify-content: center;
        text-align: center;
        padding: 4rem;
    }

    .story_content {
        text-align: center;
    }

    .story_title {
        font-size: 2rem;
    }

    .story_text {
        font-size: 1rem;
    }
}

.four_grid_wrapper {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    margin-top: -28%;
    gap: 30px;
    margin-left: 100px;
  }
  
  .four_grid_column {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .four_grid_row {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: left;
    flex-wrap: wrap;
    z-index: 100;
  }
  
  .four_grid_card {
    position: relative;
    width: 240px;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .four_grid_card:hover {
    transform: translateY(-5px);
  }
  
  .four_grid_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  
  .four_grid_content {
    position: relative;
    z-index: 2;
    padding: 20px;
    text-align: left;
  }
  
  .four_grid_subtitle {
    font-size: 0.9rem;
    margin-bottom: 6px;
    opacity: 0.85;
  }
  
  .four_grid_title {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.2;
  }
  
  @media (max-width: 768px) {
    .four_grid_wrapper {
        margin: 30px 0 0 0;
        padding: 0 15px;
        align-items: center;
    }

    .four_grid_column {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .four_grid_row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 10%;
    }

    .four_grid_card {
        width: 100%;
        max-width: none;
        height: 180px;
        aspect-ratio: 1/1;
        margin: 0 auto;
        text-align: center;
        justify-content: center;
    }

    .four_grid_content {
        padding: 15px;
        text-align: center;
    }

    .four_grid_subtitle {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }

    .four_grid_title {
        font-size: 1rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .four_grid_column {
        gap: 10px;
    }
    
    .four_grid_card {
        height: 150px;
    }
    
    .four_grid_content {
        padding: 10px;
    }
    
    .four_grid_title {
        font-size: 0.9rem;
    }
}
  .mm{
    margin-top: -5%;
  }
/* footer ---------------------

-------------------------------------*/
  .footer_wrapper {
    background: #2f4354;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    padding: 50px 20px 20px;
    margin-top:400px;
  }
  
  .footer_top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer_column {
    flex: 1 1 120px;
    min-width: 250px;
  }
  
  .footer_logo {
    height: 50px;
    margin-bottom: 20px;
  }
  
  .footer_title {
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-weight: bold;
  }
  
  .footer_newsletter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .footer_input {
    padding: 12px 16px;
    border-radius: 999px;
    border: none;
    outline: none;
    flex: 1;
    min-width: 200px;
    font-size: 1rem;
  }
  
  .footer_button {
    background: #ffd400;
    color: #222;
    border: none;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
  }
  
  .footer_links {
    list-style: none;
    padding: 0;
  }
  
  .footer_links li {
    margin-bottom: 10px;
  }
  
  .footer_links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  
  .footer_links a:hover {
    color: #ffd400;
  }
  
  .footer_social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .footer_social a {
    color: white;
    border: 1px solid white;
    border-radius: 50%;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    transition: background 0.3s;
  }
  
  .footer_social a:hover {
    background: #ffd400;
    color: #000;
  }
  
  .footer_badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
  }
  
  .footer_badges img {
    height: 40px;
    border-radius: 6px;
  }
  
  .footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: #ccc;
    max-width: 1200px;
    margin-inline: auto;
  }
  
  .footer_infinity {
    font-size: 1.4rem;
    vertical-align: middle;
  }
  
  @media (max-width: 768px) {
    .footer_top,
    .footer_bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer_newsletter {
      justify-content: center;
    }
  
    .footer_input {
      text-align: center;
    }
  
    .footer_social {
      justify-content: center;
    }
  
    .footer_badges {
      justify-content: center;
    }
  }
  
  /* team member page start -------------
  ---------------------------------- */
  /* CSS */
.team_banner_container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.team_banner_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.team_banner_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team_banner_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.team_banner_content {
    position: relative;
    z-index: 2;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.team_banner_title {
    font-size: calc(17.53846px + 1.79487vw);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.team_banner_subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: calc(15.76923px + 0.0641vw);
    font-weight: 400;
    line-height: calc(25.07692px + 0.25641vw);
    max-width: 600px;
    opacity: 0.9;
    letter-spacing: 0.03em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team_banner_content {
        padding: 0 5%;
    }
    
    .team_banner_title {
        margin-bottom: 1rem;
    }
    
    .team_banner_subtitle {
        max-width: 80%;
    }
    .team_banner_container{
        height: 50vh;
    }
}
/* CSS */
 .team_nav_wrapper {
    position: sticky;
    top: 75px; 
    background: var(--nav-bg);
    z-index: 100;
    display: none;
  }

  @media (min-width: 768px) {
    .team_nav_wrapper {
      display: block;
    }
  }

  .team_nav_container {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    user-select: none;
    scroll-behavior: smooth;
    background-color: white;
  }

  .team_nav_container::-webkit-scrollbar {
    display: none;
  }

  .team_nav_item {
    font-size: 1rem;
    color: var(--nav-text);
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    padding-bottom: 0.5rem;
    white-space: nowrap;
  }

  .team_nav_item:hover {
    color: var(--primary);
  }

  .team_nav_item.active {
    color: var(--primary);
  }

  .team_nav_item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: var(--primary);
    border-radius: 1px;
  }

  @media (max-width: 767px) {
    .team_nav_wrapper {
      position: static;
    }

    .team_nav_container {
      gap: 1rem;
      padding: 0.5rem 1rem;
    }

    .team_nav_item {
      font-size: 0.85rem;
    }
  }


   .team_member_section {
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
  }

  .team_member_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .team_member_card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
    user-select: none;
  }

  .team_member_card:hover {
    transform: translateY(-5px);
  }

  .team_member_card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
  }

  .team_member_name {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 0.5rem;
    color: var(--text);
  }

  .team_member_role {
    font-size: 0.95rem;
    color: gray;
  }

  @media (max-width: 767px) {
    .team_member_grid {
      grid-template-columns: 1fr;
    }
  }

  /* Drawer */
  .team_member_drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--bg-blue);
    z-index: 999;
    display: flex;
    flex-direction: row;
    transition: left 0.5s ease;
    overflow-y: auto;
  }

  .team_member_drawer.active {
    left: 0;
  }

  .team_member_drawer_image {
    flex: 1;
    background: #cce0ff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }

  .team_member_drawer_image img {
    width: 100%;
    max-width: 300px;
    border-radius: 16px;
    object-fit: cover;
  }

  .team_member_drawer_content {
    flex: 2;
    padding: 2rem;
    color: #003366;
    position: relative;
  }

  .team_member_drawer_content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .team_member_drawer_content h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #0055aa;
  }

  .team_member_drawer_content p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .team_member_close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #003366;
    color: white;
    border: none;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
  }

  @media (max-width: 767px) {
    .team_member_drawer {
      flex-direction: column;
    }

    .team_member_drawer_image,
    .team_member_drawer_content {
      flex: unset;
      padding: 1rem;
    }

    .team_member_drawer_content h2 {
      font-size: 1.5rem;
    }
  }

    .team_member_section {
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
  }

  .team_member_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .team_member_card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
    user-select: none;
  }

  .team_member_card:hover {
    transform: translateY(-5px);
  }

  .team_member_card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
  }
  @keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.team_member_card {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s;
  user-select: none;
  opacity: 0;
  transform: translateY(30px);
}

.team_member_card.in-view {
  animation: fadeInUp 0.6s ease forwards;
}

.team_member_card:hover {
  transform: translateY(-5px);
}

.team_member_card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}


  .team_member_name {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 0.5rem;
    color: var(--text);
  }

  .team_member_role {
    font-size: 0.95rem;
    color: gray;
  }

  @media (max-width: 767px) {
    .team_member_grid {
      grid-template-columns: 1fr;
    }
  }

  /* Drawer */
  .team_member_drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgb(156, 156, 225);
    z-index: 9999;
    display: flex;
    flex-direction: row;
    transition: left 0.5s ease;
    overflow-y: auto;
  }

  .team_member_drawer.active {
    left: 0;
  }

  .team_member_drawer_image {
    flex: 1;
    background: #cce0ff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }

  .team_member_drawer_image img {
    width: 100%;
    max-width: 300px;
    border-radius: 16px;
    object-fit: cover;
  }

  .team_member_drawer_content {
    flex: 2;
    padding: 2rem;
    color: #003366;
    position: relative;
  }

  .team_member_drawer_content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .team_member_drawer_content h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #0055aa;
  }

  .team_member_drawer_content p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .team_member_close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #003366;
    color: white;
    border: none;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
  }

  @media (max-width: 767px) {
    .team_member_drawer {
      flex-direction: column;
    }

    .team_member_drawer_image,
    .team_member_drawer_content {
      flex: unset;
      padding: 1rem;
    }
    .team_member_drawer_image{
        position: sticky;
        top: 0;
    }
    .team_member_drawer_image img {
      max-width: 200px;

    }
    .team_member_drawer_content {
      height: 200px;
        overflow-y: auto;
    }

    .team_member_drawer_content h2 {
      font-size: 1.5rem;
    }
  }
  .team_section_title{
    text-align: center;
    color: var(--primary);
    text-spacing-trim: 0.1em;
    font-size: 2rem;
  }

     .contact_container {
            display: flex;
            gap: 40px;
            padding: 50px 5%;
            background-color: #f9f9f9;
            min-height: 100vh;
            animation: contact_fadeIn 1s ease-in;
        }

        @keyframes contact_fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .contact_left {
            flex: 1;
            padding: 40px;
            background: #2c3e50;
            border-radius: 15px;
            color: white;
            transform: translateX(-50px);
            animation: contact_slideIn 1s ease-out forwards;
        }

        @keyframes contact_slideIn {
            to { transform: translateX(0); }
        }

        .contact_right {
            flex: 1;
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }

        .contact_icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #3498db;
        }

        .contact_left h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .contact_info {
            margin: 30px 0;
        }

        .contact_info p {
            margin: 15px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact_form_group {
            margin-bottom: 20px;
        }

        .contact_form_group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 500;
        }

        .contact_form_group input,
        .contact_form_group select,
        .contact_form_group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .contact_form_group input:focus,
        .contact_form_group select:focus,
        .contact_form_group textarea:focus {
            border-color: #3498db;
            outline: none;
        }

        .contact_flex_group {
            display: flex;
            gap: 15px;
        }

        .contact_flex_group > div {
            flex: 1;
        }

        .contact_form_group textarea {
            height: 120px;
            resize: vertical;
        }

        .contact_submit_btn {
            background: #3498db;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.3s ease;
        }

        .contact_submit_btn:hover {
            background: #2980b9;
        }

        @media (max-width: 768px) {
            .contact_container {
                flex-direction: column;
                padding: 30px 5%;
            }

            .contact_left,
            .contact_right {
                width: 100%;
                padding: 30px;
            }

            .contact_flex_group {
                flex-direction: column;
                gap: 0;
            }
        }

         .contact_office {
        padding: 80px 5%;
        z-index: 1;
        background-color: var(--primary);

    }

    .contact_office h2 {
        color: #2c3e50;
        font-size: 2.5rem;
        margin-bottom: 30px;
        animation: contact_slideIn 1s ease-out;
    }

    .office_card {
        background: #ffffff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        max-width: 500px;
        position: relative;
        z-index: 3;
        animation: contact_slideUp 1s ease-out;
    }

    /* Map Section Styles */
    .contact_map {
        position: relative;
        z-index: 2;
        height: 500px;
        width: 55%;
        float: right;
        margin-top: -20%;
        margin-right: 5%;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        overflow: hidden;
    }

    /* Content Styling */
    .office_card h3 {
        color: #3498db;
        margin-bottom: 15px;
        font-size: 1.5rem;
    }

    .office_card p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    /* Map Iframe */
    .contact_map iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 15px;
    }
.contact_space_div{
  margin-bottom: 210px;
}
    /* Responsive Design */
    @media (max-width: 768px) {
              .contact_space_div{
        display: none;
      }
        .office_card {
            margin-left: 5%;
            margin-right: 5%;
            max-width: 100%;
            width: 90%;
        }

        .contact_map {
            width: 90%;
            height: 400px;
            float: none;
            margin: -10% auto 0;
            position: relative;
        }
    }

    @media (max-width: 576px) {
        .contact_office {
            padding: 40px 5%;
        }

        .contact_map {
            height: 300px;
            margin-top: -15%;
        }

        .office_card {
            padding: 25px;
        }

        .contact_office h2 {
            font-size: 2rem;
        }
    }

    /* Animation */
    @keyframes contact_slideUp {
        from { transform: translateY(50px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    .footer_bottom p{
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    /*blogs */
    .blog_detail_wrapper {
        margin-top: 40px;
        padding: 3rem 1rem;
        background-color: #fdfdfd;
        font-family: 'Segoe UI', sans-serif;
    }

    .blog_detail_container {
        max-width: 960px;
        margin: 0 auto;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    .blog_detail_image_wrapper {
        width: 100%;
        overflow: hidden;
    }

    .blog_detail_image {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .blog_detail_content {
        padding: 2rem;
    }

    .blog_detail_title {
        font-size: 2rem;
        color: #2b0752;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .blog_detail_date {
        color: #999;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .blog_detail_text {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #333;
    }

    .blog_detail_text img {
        max-width: 100%;
        height: auto;
        margin: 1rem 0;
        border-radius: 8px;
    }

    @media (max-width: 768px) {
        .blog_detail_title {
            font-size: 1.5rem;
        }

        .blog_detail_content {
            padding: 1.5rem;
        }

        .blog_detail_text {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .blog_detail_title {
            font-size: 1.3rem;
        }

        .blog_detail_text {
            font-size: 0.95rem;
        }
    }

      .blogs_container {
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 20px;
        }
        
        .blogs_header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .blogs_title {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .blogs_title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #3498db, #2ecc71);
            border-radius: 2px;
        }
        
        .blogs_subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .blogs_grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .blogs_item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: block;
            text-decoration: none;
            color: inherit;
            position: relative;
        }
        
        .blogs_item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .blogs_image-container {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .blogs_image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blogs_item:hover .blogs_image {
            transform: scale(1.05);
        }
        
        .blogs_content {
            padding: 25px;
        }
        
        .blogs_item-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 15px;
            color: #2c3e50;
            transition: color 0.3s;
        }
        
        .blogs_item:hover .blogs_item-title {
            color: #3498db;
        }
        
        .blogs_details {
            color: #7f8c8d;
            margin-bottom: 20px;
            font-size: 0.95rem;
            line-height: 1.7;
            min-height: 80px;
        }
        
        .blogs_read-more {
            display: inline-flex;
            align-items: center;
            font-weight: 600;
            color: #3498db;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            transition: all 0.3s;
        }
        
        .blogs_read-more i {
            margin-left: 8px;
            transition: transform 0.3s;
        }
        
        .blogs_item:hover .blogs_read-more {
            color: #2ecc71;
        }
        
        .blogs_item:hover .blogs_read-more i {
            transform: translateX(5px);
        }
        
        .blogs_empty {
            grid-column: 1 / -1;
            text-align: center;
            padding: 40px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .blogs_empty i {
            font-size: 3rem;
            color: #bdc3c7;
            margin-bottom: 20px;
        }
        
        .blogs_empty h3 {
            color: #7f8c8d;
            font-weight: 500;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .blogs_grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
             .blogs_grid {
                grid-template-columns: repeat(2, 1fr);
                gap:15px;
                padding-inline: 5px;
            }
            .blogs_item-title{
                    font-size: 1rem;
            }
            .blogs_title {
                font-size: 2.3rem;
            }
            
            .blogs_subtitle {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 576px) {
            .blogs_grid {
                grid-template-columns: repeat(2, 1fr);
                gap:15px;
                padding-inline: 5px;
            }
            .blogs_header {
                margin-bottom: 35px;
            }
            
            .blogs_title {
                font-size: 2rem;
            }
          }

   footer{
        z-index:100;
    }
    
.notice_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 27px;
    display: flex;
    align-items: center;
    height:27px;
    background: #f0fdf4;
    border-top: 1px solid #10b981;
    border-bottom: 1px solid #10b981;
    font-family: 'Noto Sans Bengali', sans-serif;
}

.notice_label {
    background-color: #10b981;
    color: #fff;
    font-weight: bold;
    padding: 4px 12px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.notice_marquee {
    flex: 1;
    overflow: hidden;
    height: 100%;
    background: #fef4e5;
    border-top: 1px solid #ffcc80;
    border-bottom: 1px solid #ffcc80;
    display: flex;
    align-items: center;
    position: relative;
}

.notice_track {
    display: flex;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

.notice_items {
    display: flex;
    white-space: nowrap;
}

.notice_item {
    white-space: nowrap;
    display: inline-block;
    margin-right: 40px;
    font-size: 14px;
    color: #065f46;
    line-height: 38px;
}

/* Smooth infinite scroll */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.notice_marquee:hover .notice_track {
    animation-play-state: paused;
}

/*about start*/
.st_section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem 1.5rem;
    background-color: #f9fafb;
    border-left: 5px solid #6366f1; /* accent stripe */
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    text-align: left;
    font-family: "Segoe UI", Roboto, sans-serif;
    color: #1e293b;
  }
  
  .st_heading {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
  }
  
  .st_paragraph {
    font-size: 1rem;
    line-height: 1.8;
    color: #334155;
  }
  
  .st_paragraph strong {
    color: #000;
  }
  .sto_container{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .sto_image_box{
    flex: 2;
  }
  .sto_image_box img{
    width: 80%;
    height: auto;
  }
  .sto_card{
    flex: 1;
    margin-left: -20%;
    background-color: #f9fafb;
    padding: 40px;
  }
  .sto_wrapper{
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
  @media (max-width: 768px) {
    .sto_container {
      flex-direction: column;
      align-items: center;
      text-align: center; /* optional for centering text on mobile */
    }
  
    .sto_card {
      margin-left: 0;
      margin-top: -80px; /* overlap from bottom to up */
      z-index: 2;
      width: 90%;
    }
  
    .sto_image_box img {
      width: 100%;
    }
  }
  
  .jour_wrapper {
    background: #fef9c3;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .jour_container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .jour_left {
    text-align: center;
  }
  
  .jour_title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1e293b;
    font-weight: 700;
  }
  
  .jour_display {
    position: relative;
  }
  
  .jour_image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .jour_info {
    margin-top: 15px;
  }
  
  .jour_year {
    font-size: 1.3rem;
    font-weight: 600;
    color: #92400e;
  }
  
  .jour_desc {
    font-size: 1rem;
    color: #374151;
    margin-top: 5px;
  }
  
  .jour_right {
    width: 100%;
  }
  
  .jour_tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .jour_tab {
    padding: 12px 20px;
    background-color: #fff;
    border: 2px solid #facc15;
    color: #92400e;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .jour_tab:hover,
  .jour_tab.active {
    background-color: #facc15;
    color: #1e293b;
    transform: scale(1.05);
  }
  
  /* Responsive */
  @media (min-width: 768px) {
    .jour_container {
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
    }
  
    .jour_left {
      width: 65%;
      text-align: left;
    }
  
    .jour_right {
      width: 30%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .jour_tabs {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .jour_tab {
      width: 100%;
      text-align: center;
    }
  }
  .para{
    text-align: left;
    max-width: 1200px;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    font-family: Poppins, sans-serif;
    font-size: calc(15.76923px + .0641vw);
    font-weight: 400;
    line-height: calc(25.07692px + .25641vw);
    margin-bottom: 40px;
}
@media(max-width:768px){
    .para{
        padding: 30px;
    }
}
.im_cen_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
  }
  
  .im_cen_image {
    max-width: 100%;
    height: auto;
    display: inline-block;
  }
  .bar_wrapper {
    padding: 60px 20px;
    background: #f8fafc;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .bar_container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .bar_content {
    flex: 1;
  }
  
  .bar_title {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
  }
  
  .bar_desc {
    font-size: 1rem;
    color: #334155;
    line-height: 1.6;
    max-width: 600px;
  }
  
  .bar_chart {
    flex: 1;
    overflow-x: auto;
  }
  
  .bar_bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    min-width: 600px;
    height: 220px;
    padding: 10px;
  }
  
  .bar_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30px;
  }
  
  .bar_column {
    width: 100%;
    background-color: #1e3a8a; /* Deep Blue */
    border-radius: 6px 6px 0 0;
    transition: height 0.3s ease;
  }
  
  .bar_year {
    font-size: 0.75rem;
    margin-top: 6px;
    color: #475569;
  }
  
  /* Responsive layout for desktop */
  @media (min-width: 768px) {
    .bar_container {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
  
    .bar_content {
      max-width: 45%;
    }
  
    .bar_chart {
      max-width: 50%;
    }
  
    .bar_bars {
      min-width: unset;
      width: 100%;
    }
  
    .bar_item {
      width: calc(100% / 20 - 5px);
    }
  }
  .guiding_section {
    padding: 6rem 0;
    background: #ffffff;
}

.guiding_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.guiding_title {
    text-align: center;
    font-family: 'Kaushan Script', cursive;
    color: #2A9D8F;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.guiding_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.guiding_item {
    padding: 2.5rem;
    background: #f8fafc;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.guiding_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(42, 157, 143, 0.15);
}

.guiding_icon {
    font-size: 3.5rem !important;
    color: #2A9D8F;
    margin-bottom: 1.5rem;
    display: block;
}

.guiding_heading {
    color: #264653;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.guiding_text {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .guiding_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guiding_item {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .guiding_grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .guiding_item {
        text-align: left;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .guiding_icon {
        font-size: 2.8rem !important;
    }
    
    .guiding_title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .guiding_container {
        padding: 0 1rem;
    }
    
    .guiding_title {
        font-size: 2rem;
    }
    
    .guiding_heading {
        font-size: 1.2rem;
    }
}

.person_sec_section {
    padding: 6rem 0;
    background: #ffffff;
}

.person_sec_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.person_sec_content {
    flex: 2;
}

.person_sec_image_container {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.person_sec_image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.person_sec_image:hover {
    transform: scale(1.02);
}

.person_sec_title {
    font-family: 'Kaushan Script', cursive;
    color: #2A9D8F;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.person_sec_subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.person_sec_speech {
    border-left: 4px solid #E9C46A;
    padding-left: 2rem;
    color: #64748b;
    line-height: 1.8;
}

.person_sec_speech p {
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .person_sec_container {
        gap: 3rem;
    }
    
    .person_sec_image {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .person_sec_container {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    
    .person_sec_image {
        height: 400px;
        width: 100%;
    }
    
    .person_sec_title {
        font-size: 2rem;
        text-align: center;
    }
    
    .person_sec_subtitle {
        text-align: center;
    }
    
    .person_sec_speech {
        padding-left: 1rem;
        border-left-width: 3px;
    }
}

@media (max-width: 480px) {
    .person_sec_image {
        height: 300px;
    }
    
    .person_sec_title {
        font-size: 1.8rem;
    }
    
    .person_sec_subtitle {
        font-size: 1rem;
    }
}

/* glance -------
------------------------ */
.hero_ {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}
.hero_left-content {
    position: relative;
    z-index: 2;
    width: 40%;
    color: white;
}

.hero_tagline {
    font-family: 'Kaushan Script', cursive;
    font-size: 2.8rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero_highlight {
    color: #FFD700;
    font-size: 3.2rem;
}

.hero_map-container {
    position: relative;
    z-index: 2;
    width: 50%;
    filter: drop-shadow(-20px 24px 34px rgba(0, 0, 0, 0.3));
}

.hero_map-svg {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: 0 auto;
    cursor: pointer;
    margin-top: 50px;
}

.hero_district-info {
    position: absolute;
    left: -30%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    width: 280px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero_district-info::before {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.hero_district-info.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero_ {
        flex-direction: column;
        justify-content: center;
        padding-top: 120px;
    }
    
    .hero_left-content {
        width: 100%;
        text-align: center;
        margin-top: 20%;
    }
    
    .hero_map-container {
        width: 90%;
        margin-top: -20%;
    }
    
    .hero_district-info {
        left: 50%;
        top: -80px;
        transform: translateX(-50%);
        width: 80%;
    }
    
    .hero_district-info::before {
        right: auto;
        left: 50%;
        top: 100%;
        transform: translateX(-50%);
        border-color: #fff transparent transparent transparent;
    }
}

.glance_grid_section {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 2%;
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('../image/glance.webp') center center/cover;
}

.glance_grid_container {

    position: relative;
    z-index: 2;
    margin: 5%;
}

.glance_grid_wrapper {
    display: flex;
    justify-content: space-between;
    grid-row: (4,1fr);
    align-items: center;
    position: relative;
}

.glance_grid_item {
    text-align: center;
    padding: 0 40px;
    position: relative;
    flex: 1;
}

.glance_grid_item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 1px;
    background: rgba(255,255,255,0.3);
}

.glance_grid_number {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.glance_grid_item:hover .glance_grid_number {
    transform: scale(1.05);
}

.glance_grid_subtitle {
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .glance_grid_wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .glance_grid_item {
        padding: 20px 0;
        width: 100%;
    }
    
    .glance_grid_item:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -20px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        height: 1px;
        width: 100px;
    }
    
    .glance_grid_number {
        font-size: 2.5rem;
    }
    
    .glance_grid_subtitle {
        font-size: 1rem;
    }
}
.accer_sec{
    max-width: 1200px;
    margin: 0 auto;

}
.mt{
    margin-top: 20px;
}

.hero_leader{
  font-size: 40px;
  color: white;
}
.hero_leader2{
  font-size: 20px;
  color: white;
  font-weight: 200;
}

.hero_leader_ {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero_leader_bg_shadow {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark shadow overlay */
  z-index: 1;
}

.hero_leader_content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 4rem 8rem;
  text-align: left;
}
@media (max-width:768px){
  .hero_leader_content{
    padding: 2rem 3rem;
  }
}

.hero_leader_title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero_leader_line {
  width: 60px;
  border: 2px solid #fff;
  margin: 1.5rem 0;
}

.hero_leader_subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  display: block;
}

/*about end*/

