 body {
  background-color: #F6F1E4;
  font-family: 'Noto Sans Bengali', sans-serif;
  margin-top: -33px;
}

.top-bar {
  background-color: #005181;
  font-size: 14px;
}

.top-left {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-left: 40px;
}

.top-bar .top-left i {
  color: #ffc107; /* আইকনের জন্য হলুদ */
}

.top-bar select {
  font-size: 14px;
}

.form-select {
  display: block;
  width: 100%;
  max-width: 120px;
  padding: .375rem 2rem .375rem .75rem;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  background-color: #005181;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 19px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* ---------- Responsive Style ---------- */

/* Tablet view */
@media (max-width: 991px) {
  .top-left {
    gap: 20px;
    margin-left: 20px;
    font-size: 13px;
  }
  .form-select {
    max-width: 100px;
    font-size: 13px;
  }
}

/* Mobile view */
@media (max-width: 576px) {
  .top-bar .container {
    flex-direction: row;          /* row রাখলাম */
    justify-content: space-between; /* বাম-ডানে ভাগ হবে */
    align-items: center;
    text-align: center;
    gap: 5px;
  }

  /* শুধু আইকন থাকবে */
  .top-left span {
    font-size: 0; /* টেক্সট লুকানো */
  }
  .top-left span i {
    font-size: 18px; /* আইকন ঠিক থাকবে */
    margin: 0 6px;
  }

  .top-left {
    flex-direction: row;
    margin-left: 0;
    gap: 10px;
  }

  .top-right {
    margin-right: 10px;
  }

  .form-select {
    max-width: 90px;
    font-size: 12px;
    padding: .25rem 1.5rem .25rem .5rem;
  }
}
/* ---------- Logo Section ---------- */
.logo-section {
  background-color: #005c91;
  padding: 20px 0;
  text-align: center;
}

/* ডিফল্ট লোগো (ডেস্কটপ) */
.site-logo {
  height: 115px;
  width: auto;
  max-width: 100%;
}

/* ---------- Responsive ---------- */

/* Tablet view */
@media (max-width: 991px) {
  .site-logo {
    height: 75px; /* ট্যাবে মাঝারি লোগো */
  }
}

/* Mobile view: শুধু ফোন আইকন দেখলে লোগো বড় হবে */
@media (max-width: 576px) {
  .site-logo {
    height: 95px; /* মোবাইলে বড় লোগো */
  }
}


.main-menu {
    background-color: #005181;
    position: relative;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  /* Container Flex */
  .main-menu .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 20px;
  }

  /* Hamburger Icon */
  .menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    padding: 10px;
  }

  /* Menu Desktop */
  .menu {
    list-style: none;
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .menu > li {
    position: relative;
  }

  .menu > li > a {
    color: white;
    text-decoration: none;
    padding: 7px 20px;
    display: block;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
  }

  .menu > li > a i {
    margin-right: 5px;
  }

  .menu > li:hover > a {
    background-color: #007bb5;
    transform: translateY(-2px);
  }

  /* Dropdown Menu */
  .submenu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #007bb5;
    min-width: 180px;
    display: none;
    padding: 8px 0;
    border-radius: 8px;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }

  .submenu li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .submenu li:last-child a {
    border-bottom: none;
  }

  .submenu li a:hover {
    background-color: #0d6efd;
    color: #ffc107;
    padding-left: 25px;
  }

  /* Show submenu on hover (desktop) */
  .menu > li:hover .submenu {
    display: block;
  }

  /* ===== Mobile ===== */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }

    .menu {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: #005181;
      position: absolute;
      top: 60px;
      left: 0;
      gap: 0;
    }

    .menu.show {
      display: flex;
      z-index: 999;
    }

    .menu > li {
      width: 100%;
    }

    .menu > li > a {
      padding: 15px 25px;
      border-radius: 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      font-size: 16px;
    }

    .submenu {
      position: relative;
      top: 0;
      left: 0;
      display: none;
      flex-direction: column;
      background-color: #007bb5;
      border-radius: 0;
      box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
    }

    .menu li.active > .submenu {
      display: flex;
    }

    .submenu li a {
      padding: 12px 40px;
    }
  }

  /* Extra small screens */
  @media (max-width: 480px) {
    .main-menu .container {
      padding: 0 10px;
    }
    
    .menu > li > a {
      padding: 12px 15px;
    }
    
    .submenu li a {
      padding: 10px 30px;
    }
  }

  /*=================== scroll notice============== */
    .news-wrapper {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 8px 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    gap: 10px;
    flex-wrap: nowrap;
}

/* Updates Button */
.updates-button {
    flex: 0 0 auto;
    background-color: #005c91;
    color: white;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.updates-button:hover {
    background-color: #007bb5;
    transform: scale(1.05);
}

/* Ticker */
.news-ticker {
    flex: 1 1 auto;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 500;
    font-size: 18px;
    color: #333;
}

/* Ticker Content */
.news-ticker__content {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 60s linear infinite;
}

.news-ticker__content span {
    margin-right: 60px;
    display: inline-block;
}

.news-ticker__content:hover {
    animation-play-state: paused;
}

/* Scroll Animation */
@keyframes scroll-left {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .news-ticker__content {
        animation-duration: 50s;
    }
}

@media (max-width: 768px) {
    .news-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 6px 10px;
    }
    .updates-button {
        width: 100%;
        text-align: center;
        font-size: 14px;
    }
    .news-ticker {
        font-size: 16px;
        width: 100%;
    }
    .news-ticker__content span {
        margin-right: 40px;
    }
}

@media (max-width: 480px) {
    .news-ticker {
        font-size: 14px;
    }
    .news-ticker__content span {
        margin-right: 30px;
    }
}

/*================== 3ta item ==================== */
.text-center {
    text-align: center !important;
}

.corner-area {
    padding: 10px;
    margin: 10px 0px;
    border: 1px solid #e1e1e1;
    background-color: antiquewhite;
    text-align: center;
    border-radius: 18px;
}

.corner-area a {
    padding: 10px;
    font-size: 16px;
    text-decoration: none;
}

.corner-area h3 {
    border: 2px solid #005c91;
    padding: 7px 113px;
    display: inline-block;
    font-size: 16px;
    border-radius: 20px;
    margin-top: 5px;
    background-color: #005c91;
    color: white;
}

/*====================== Responsive ==================*/

/* Small devices (mobile phones, <768px) */
@media (max-width: 767px) {
    .corner-area {
        padding: 10px 5px;
    }
    .row.justify-content-center.corner-area {
        display: flex;
        flex-direction: column; /* এক কলামে নেমে যাবে */
        align-items: center;
    }
    .corner-area h3 {
        padding: 6px 100px;
        font-size: 14px;
        margin-bottom: 10px;
    }
}

/* Medium devices (tablets, 768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .corner-area h3 {
        padding: 6px 35px;
        font-size: 15px;
    }
}


/*------------Slider CSS ==============-------*/
.swiper.jin-slider {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    height: 400px;
}

/* প্রতিটি স্লাইড */
.swiper-slide {
    background-size: cover;
    background-position: center;
    height: 100%;
}

/* Pagination dots */
.swiper-pagination-bullet {
    background: #005c91;
    opacity: 0.8;
}
.swiper-pagination-bullet-active {
    background: #ff6b6b;
}

/* Navigation arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(0,0,0,0.4);
    padding: 8px;
    border-radius: 50%;
}

/*================ Responsive =================*/

/* Tablets */
@media (max-width: 991px) {
    .swiper.jin-slider {
        height: 300px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .swiper.jin-slider {
        width: 100%;
        height: 200px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        display: none; /* ছোট স্ক্রিনে arrows লুকাবে */
    }
}


/*------------Teacher group--------------------*/
 /*====================== Team Section =====================*/
        .team-section {
            padding: 60px 20px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #005c91;
            font-size: 2.5rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            padding: 20px 0;
        }

        .team-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 92, 145, 0.15);
            transition: all 0.3s ease;
            position: relative;
            border: 2px solid transparent;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 92, 145, 0.25);
            border-color: #005c91;
        }

        .role {
            background: linear-gradient(135deg, #005c91 0%, #007bb5 100%);
            color: white;
            padding: 15px 20px;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .role::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .team-card:hover .role::before {
            left: 100%;
        }

        .card-content {
            padding: 25px;
            text-align: center;
        }

        .image-box {
            width: 150px;
            height: 150px;
            margin: 0 auto 20px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid #005c91;
            position: relative;
            transition: all 0.3s ease;
        }

        .team-card:hover .image-box {
            transform: scale(1.05);
            border-color: #007bb5;
        }

        .image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .team-card:hover .image-box img {
            transform: scale(1.1);
        }

        .name {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .details-btn {
            background: linear-gradient(135deg, #005c91 0%, #007bb5 100%);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 92, 145, 0.3);
            position: relative;
            overflow: hidden;
        }

        .details-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 92, 145, 0.4);
        }

        .details-btn:active {
            transform: translateY(0);
        }

        .details {
            margin-top: 20px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 10px;
            text-align: left;
            font-size: 14px;
            line-height: 1.6;
            display: none;
            border-left: 4px solid #005c91;
            animation: slideDown 0.3s ease;
        }

        .details.show {
            display: block;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /*====================== Responsive Design =====================*/

        /* Large Desktop (1200px+) */
        @media (min-width: 1200px) {
            .team-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Desktop (992px - 1199px) */
        @media (min-width: 992px) and (max-width: 1199px) {
            .team-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Tablet (768px - 991px) */
        @media (min-width: 768px) and (max-width: 991px) {
            .team-section {
                padding: 40px 15px;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }
            
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .image-box {
                width: 120px;
                height: 120px;
            }
            
            .name {
                font-size: 18px;
            }
            
            .role {
                font-size: 16px;
                padding: 12px 15px;
            }
        }

        /* Mobile (576px - 767px) */
        @media (min-width: 576px) and (max-width: 767px) {
            .team-section {
                padding: 30px 10px;
            }
            
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .team-card {
                border-radius: 15px;
            }
            
            .card-content {
                padding: 20px 15px;
            }
            
            .image-box {
                width: 100px;
                height: 100px;
                margin-bottom: 15px;
            }
            
            .name {
                font-size: 16px;
                margin-bottom: 12px;
            }
            
            .role {
                font-size: 14px;
                padding: 10px 12px;
            }
            
            .details-btn {
                padding: 10px 20px;
                font-size: 12px;
            }
        }

        /* Small Mobile (<576px) */
        @media (max-width: 575px) {
            .team-section {
                padding: 20px 10px;
            }
            
            .section-title {
                font-size: 1.5rem;
                margin-bottom: 25px;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .team-card {
                max-width: 300px;
                margin: 0 auto;
                border-radius: 15px;
            }
            
            .card-content {
                padding: 6px 61px;
            }
            
            .image-box {
                width: 120px;
                height: 120px;
                margin-bottom: 15px;
            }
            
            .name {
                font-size: 16px;
                margin-bottom: 12px;
            }
            
            .role {
                font-size: 14px;
                padding: 12px 15px;
            }
            
            .details-btn {
                padding: 10px 20px;
                font-size: 12px;
            }
            
            .details {
                font-size: 13px;
                padding: 12px;
            }
        }

        /* Extra animations */
        .team-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .team-card:nth-child(1) { animation-delay: 0.1s; }
        .team-card:nth-child(2) { animation-delay: 0.2s; }
        .team-card:nth-child(3) { animation-delay: 0.3s; }
        .team-card:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Loading animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

/*=============== Big Men / Founder Section =================*/
.founder-row {
  background: #e6f2fa;
  box-shadow: 0 4px 15px rgba(0, 92, 145, 0.15);
  align-items: stretch; /* সমান উচ্চতা */
  margin-bottom: 30px;
}

.founder-box,
.founder-message {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.founder-box h4,
.founder-message h4 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #005c91;
}

.founder-box img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}

.founder-box h5 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 10px;
}

.asocial-iicons {
  margin-top: 10px;
}

.asocial-iicons a {
  color: #005c91;
  margin: 0 5px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.asocial-iicons a:hover {
  color: #003f64;
}

.founder-message p {
  text-align: justify;
  line-height: 1.5;
  margin-bottom: 0;
  flex-grow: 1;
}

.founder-message p a {
  color: #005c91;
  font-weight: 600;
  text-decoration: none;
}

.founder-message p a:hover {
  text-decoration: underline;
  color: #003f5c;
}

/*================== Responsive =================*/

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .founder-row {
    flex-direction: column;
    padding: 20px;
  }
  .founder-box,
  .founder-message {
    margin-bottom: 20px;
  }
}

/* Mobile devices (<768px) */
@media (max-width: 767px) {
  .founder-row {
    flex-direction: column;
    padding: 15px;
  }
  .founder-box h4,
  .founder-message h4 {
    font-size: 1.3rem;
  }
  .founder-box h5 {
    font-size: 1rem;
  }
  .founder-message p {
    font-size: 0.9rem;
  }
  .asocial-iicons a {
    font-size: 16px;
    margin: 0 4px;
  }
}

/* Import Google Fonts for Bengali */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@400;700&display=swap');

/* General Styles */
body {
    font-family: 'Noto Sans Bengali', sans-serif;
    background-color: #f0f2f5;
}

.card-section {
    padding: 2rem 0;
}

.card-section .card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.card-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-section .card-icon {
    font-size: 2.5rem;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    background-color: #e2e8f0;
    border-radius: 50%;
    margin: 0 auto 1rem;
    color: #4b5563;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -1.5rem;
}

.card-section .card:hover .card-icon {
    background-color: #4a90e2;
    color: #ffffff;
}

.card-section .card-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a202c;
    transition: color 0.3s;
}

.card-section .card-title {
    font-size: 1rem;
    color: #6b7280;
    transition: color 0.3s;
    font-weight: 400;
}

.card-section .card:hover .card-number,
.card-section .card:hover .card-title {
    color: #4a90e2;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .card-section .card {
        margin-bottom: 1.5rem;
    }
}

/*===================== hestory at notoce============== */
      .main-content {
            background: linear-gradient(135deg, #1e6091 0%, #2c5282 100%);
            border-radius: 15px;
            padding: 30px;
            color: white;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .main-content h2 {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 25px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .main-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
            margin-bottom: 20px;
        }
        
        .read-more {
            color: #ffd700;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px dotted #ffd700;
            transition: all 0.3s ease;
            margin-left: 20px;
        }
        
        .read-more:hover {
            color: #fff;
            border-bottom-color: #fff;
        }
        
        
        .sidebar {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .sidebar-header {
            background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px 20px;
            border-radius: 10px;
            margin: -25px -25px 25px -25px;
            text-align: center;
        }
        
        .sidebar-header h4 {
            margin: 0;
            font-weight: 600;
        }
        
        .news-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .news-item:hover {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding-left: 10px;
        }
        
        .news-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #ff6b6b, #ffa500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .news-icon i {
            color: white;
            font-size: 16px;
        }
        
        .news-content {
            flex: 1;
        }
        
        .news-content h6 {
            margin: 0 0 5px 0;
            color: #333;
            font-weight: 500;
            font-size: 0.95rem;
            line-height: 1.4;
        }
        
        .news-date {
            color: #666;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
        }
        
        .news-date i {
            margin-right: 5px;
            color: #999;
        }
        
        .container-fluid {
            max-width: 1200px;
        }
        
        @media (max-width: 768px) {
            .main-content {
                padding: 20px;
                margin-bottom: 20px;
            }
            
            .main-content h2 {
                font-size: 2rem;
            }
            
            .sidebar {
                margin-top: 20px;
            }
        }

/*============================= tescher+stydent==============  */
       .teachers-section {
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-weight: bold;
  color: #005c91;
}

.teacher-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.teacher-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.teacher-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.teacher-card:hover .teacher-img img {
  transform: scale(1.05);
}

.teacher-info {
  padding: 15px;
}

.teacher-info h5 {
  margin-bottom: 5px;
  color: #005c91;
  font-weight: bold;
}

.teacher-info p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}


  .section-title {
  font-size: 22px;
  color: #005c91;
}

.testimonial-card {
  background: #f1f1f1;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.quote-icon {
    font-size: 46px;
  color: #005c91;
}
.testimonial-card p {
  font-size: 15px;
  color: #555;
  margin: 15px 0;
  line-height: 1.5;
}

.testimonial-img {
  width: 78px;
  height: 71px;
  border-radius: 15px;
  object-fit: cover;
  margin-top: 10px;
  border: 4px solid #005c91;
}
.testimonial-card h4 {
  margin: 10px 0 3px;
  font-size: 20px;
  color: #005c91;
  font-weight: bold;
}

.testimonial-card span {
  font-size: 14px;
  color: #777;
}


/*================== vigit sonkha */

.visitor-counter-section {
  background-color: #ffffff;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  color: #005c91;
}

.visitor-counter-box {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.visitor-counter-box:hover {
  background-color: #005c91;
  transform: translateY(-5px);
}

.visitor-counter-box:hover .visitor-icon,
.visitor-counter-box:hover .visitor-number,
.visitor-counter-box:hover .visitor-text {
  color: #ffffff;
}

.visitor-icon {
  font-size: 30px;
  color: #005c91;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.visitor-number {
  font-size: 22px;
  font-weight: bold;
  color: #005c91;
  margin: 0;
  transition: color 0.3s ease;
}

.visitor-text {
  font-size: 14px;
  color: #555;
  margin: 5px 0 0;
  transition: color 0.3s ease;
}


.section-title {
  font-size: 24px;
  font-weight: bold;
  color: #005c91;
}

.notice-box {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.notice-box:hover {
  background-color: #005c91;
  color: #ffffff;
  transform: translateY(-5px);
}

.notice-date {
  font-size: 14px;
  color: #777;
  margin-bottom: 8px;
}

.notice-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.notice-text {
  font-size: 14px;
  color: #555;
}

.notice-box:hover .notice-date,
.notice-box:hover .notice-title,
.notice-box:hover .notice-text {
  color: #ffffff;
}

.notice-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #005c91;
  font-weight: bold;
  text-decoration: none;
}

.notice-box:hover .notice-link {
  color: #ffeb3b;
}

/*==================== motamott =====================*/

     .testimonial-section {
    background-color: #f8f9fa;
    padding: 3rem 0;
}

.testimonial-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #005c91;
    margin-bottom: 1rem;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card .quote-icon {
    font-size: 3rem;
    color: #005c91;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-card .testimonial-text {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-card .testimonial-img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #005c91;
    margin-bottom: 0.75rem;
}

.testimonial-card .testimonial-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.testimonial-card .testimonial-country {
    font-size: 0.875rem;
    color: #718096;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
}

/*========================= notice borfr=================== */
  /* Import Google Fonts for Bengali */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@400;700&display=swap');

/* General Styles */
body {
    font-family: 'Noto Sans Bengali', sans-serif;
}

.notice-section {
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #005c91;
}

.notice-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.notice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.notice-header {
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.notice-date {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 0.5rem;
}

.notice-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.notice-text {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.notice-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #005c91;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.notice-link:hover {
    color: #00406d;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .notice-card {
        margin-bottom: 1.5rem;
    }
}

/* General Footer Styles */
.main-footer {
    background-color: #004d77;
    color: #ffffff;
    font-family: 'Noto Sans Bengali', sans-serif;
    /* এই পরিবর্তনগুলো ফুটারকে নিচে এবং দুই পাশে লেগে থাকতে সাহায্য করবে */
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.main-footer .container {
    padding-top: 3rem;
    max-width: 1400px !important;
}

.footer-widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #005c91;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.widget-list,
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list li,
.contact-list li {
    margin-bottom: 0.75rem;
}

.widget-list li a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.widget-list li a:hover {
    color: #ffcc00;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: #e2e8f0;
}

.contact-list li .fas {
    margin-right: 0.75rem;
    color: #ffcc00;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    justify-content: start;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #005c91;
    color: #ffffff;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    background-color: #ffcc00;
    color: #004d77;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #004066;
    border-top: 1px solid #005c91;
}

.copyright-text,
.credit-text {
    font-size: 0.875rem;
    color: #a0aec0;
}

.credit-link {
    color: #ffcc00;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.credit-link:hover {
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .footer-widget.text-md-start {
        text-align: center !important;
    }
    .footer-social-icons {
        justify-content: center;
    }
    .footer-bottom {
        text-align: center;
    }
}



/*======================== index3 ar css ======================*/

.info-section {
      background: linear-gradient(135deg, #e3f2fd, #f0f6ff);
      padding: 3rem 0;
      border-radius: 0 0 20px 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .info-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
  }

  .card-column {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
  }

  .info-card {
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
      padding: 1.5rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  }

  .card-title {
      color: #0d47a1;
      font-weight: 700;
      font-size: 1.2rem;
      margin: 0;
      padding-bottom: 0.4rem;
      border-bottom: 2px solid #0d47a1;
      display: inline-block;
  }

  .card-list {
      list-style: none;
      padding: 0;
      margin: 1rem 0 0;
  }

  .card-list li {
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
  }

  .card-list a {
      color: #333;
      text-decoration: none;
      transition: color 0.3s ease;
      flex: 1;
  }

  .card-list a:hover {
      color: #0d47a1;
  }

  .arrow {
      color: #0d47a1;
      font-size: 0.9rem;
      margin-right: 0.5rem;
  }

  .language-select select {
  width: 100%;
  padding: 0.5rem;
  border-radius: 19px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
  margin-top: 10px;
  }

  .language-select select:focus {
      border-color: #0d47a1;
  }

  /* Visitor Counter */
  .visitor-counter .counter-list {
      list-style: none;
      padding: 0;
      margin: 1rem 0 0;
  }

  .visitor-counter .counter-list li {
      font-size: 0.95rem;
      color: #333;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
  }

  .visitor-counter .counter-list li i {
      color: #0d47a1;
      margin-right: 10px;
      font-size: 18px;
      min-width: 20px;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .info-container {
          grid-template-columns: 1fr;
      }
  }


.student-corner-section {
    background-color: #f5f5f5;
    padding: 40px 20px;
    font-family: 'Noto Sans Bengali', sans-serif;
    text-align: center;
  }
  .student-corner-section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .section-zeetitle {
    color: #333;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
  }
  .icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
  }
  .icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s ease;
  }
  .icon-item:hover {
    transform: translateY(-5px);
  }
  .icon-item:hover .icon-circle {
    background-color: #0d6efd; /* Bootstrap primary blue */
  }
  .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 30px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.2);
    transition: background-color 0.3s ease;
  }
  .icon-label {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    word-wrap: break-word;
  }

  /* Colors */
  .bg-green { background-color: #4caf50; }
  .bg-orange { background-color: #ff9800; }
  .bg-purple { background-color: #9c27b0; }
  .bg-blue { background-color: #2196f3; }
  .bg-pink { background-color: #e91e63; }
  .bg-dark-blue { background-color: #3f51b5; }
  .bg-brown { background-color: #795548; }
  .bg-dark-grey { background-color: #607d8b; }
  .bg-light-orange { background-color: #ffc107; }
  .bg-light-blue { background-color: #03a9f4; }
  .bg-dark-purple { background-color: #673ab7; }
  .bg-teal { background-color: #009688; }

  /* Responsive */
  @media (max-width: 992px) {
    .icon-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 576px) {
    .icon-grid {
      grid-template-columns: 1fr;
    }
    .icon-circle {
      width: 60px;
      height: 60px;
      font-size: 24px;
      margin-bottom: 5px;
    }
    .icon-label {
      font-size: 12px;
    }
  }

/*============================= index4 ar css ================== */

.student-corner-section {
    background-color: #f5f5f5;
    padding: 40px 20px;
    font-family: 'Noto Sans Bengali', sans-serif;
    text-align: center;
  }
  .student-corner-section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .section-zeetitle {
    color: #333;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
  }
  .icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
  }
  .icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s ease;
  }
  .icon-item:hover {
    transform: translateY(-5px);
  }
  .icon-item:hover .icon-circle {
    background-color: #0d6efd; /* Bootstrap primary blue */
  }
  .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 30px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.2);
    transition: background-color 0.3s ease;
  }
  .icon-label {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    word-wrap: break-word;
  }

  /* Colors */
  .bg-green { background-color: #4caf50; }
  .bg-orange { background-color: #ff9800; }
  .bg-purple { background-color: #9c27b0; }
  .bg-blue { background-color: #2196f3; }
  .bg-pink { background-color: #e91e63; }
  .bg-dark-blue { background-color: #3f51b5; }
  .bg-brown { background-color: #795548; }
  .bg-dark-grey { background-color: #607d8b; }
  .bg-light-orange { background-color: #ffc107; }
  .bg-light-blue { background-color: #03a9f4; }
  .bg-dark-purple { background-color: #673ab7; }
  .bg-teal { background-color: #009688; }

  /* Responsive */
  @media (max-width: 992px) {
    .icon-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 576px) {
    .icon-grid {
      grid-template-columns: 1fr;
    }
    .icon-circle {
      width: 60px;
      height: 60px;
      font-size: 24px;
      margin-bottom: 5px;
    }
    .icon-label {
      font-size: 12px;
    }
  }

  /*======================== institute1 html ar css =============== */
  /* === General Table Improvements === */
.info-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-table th,
.info-table td {
    padding: 12px 16px;
    text-align: center;
    border: 1px solid #e9eff5;
    font-size: 15px;
}

.info-table th {
    background: #f7f9fc;
    font-weight: 600;
    color: #4b6cb7;
}

/* মোট সারি */
.info-table .total-row {
    font-weight: 700;
    color: #1a2a47;
    background: #eef3fb;
}

.info-table .total-row td {
    border-top: 2px solid #4b6cb7 !important;
}

/* === Tablet Responsive (≤ 991px) === */
@media (max-width: 991px) {
    .info-table th,
    .info-table td {
        font-size: 14px;
        padding: 10px 12px;
    }
}

/* === Mobile Responsive (≤ 576px) === */
@media (max-width: 576px) {
    .info-table {
        display: block;
        border: none;
        box-shadow: none;
    }

    .info-table thead {
        display: none; /* হেডার লুকানো */
    }

    .info-table tr {
        display: block;
        background: #fff;
        margin-bottom: 15px;
        border: 1px solid #e9eff5;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        overflow: hidden;
    }

    .info-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 14px;
        font-size: 14px;
        border: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .info-table td:last-child {
        border-bottom: none;
    }

    /* লেবেল যোগ করার জন্য data-label ব্যবহার করা যাবে */
    .info-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #4b6cb7;
        margin-right: 10px;
    }

    /* টোটাল সারির স্টাইল */
    .info-table .total-row {
        background: #f7f9fc;
        border: 2px solid #4b6cb7;
    }

    .info-table .total-row td {
        justify-content: center;
        font-weight: 700;
        color: #1a2a47;
        font-size: 15px;
    }

    .info-table .total-row td::before {
        content: "";
    }
}

    /* Desktop and Common Styles */
    .institute-intro {
        font-family: 'Poppins', sans-serif;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        margin: 20px auto;
        max-width: 800px;
        transition: transform 0.3s ease-in-out;
    }

    .institute-intro:hover {
        transform: translateY(-5px);
    }

    .section-title {
        font-size: 28px;
        font-weight: 700;
        color: #1a2a47;
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 12px;
        position: relative;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
        border-radius: 2px;
    }

    .info-table-container {
        overflow-x: auto;
    }

    .info-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 10px;
        margin-top: 20px;
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .info-table tr {
        background-color: #ffffff;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .info-table tr:hover {
        background-color: #f7f9fc;
        transform: scale(1.01);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        border-radius: 8px;
    }

    .info-table td {
        padding: 15px 20px;
        font-size: 16px;
        vertical-align: middle;
        border-top: 1px solid #e9eff5;
        text-align: center;
    }

    .info-table td:first-child {
        width: 200px;
        font-weight: 600;
        background-color: #fdfdfd;
        color: #4b6cb7;
        border-right: 1px solid #e9eff5;
        border-radius: 8px 0 0 8px;
        text-align: left;
    }

    .info-table td:last-child {
        color: #333;
        border-radius: 0 8px 8px 0;
    }

    .icon {
        color: #4b6cb7;
        margin-right: 10px;
        font-size: 18px;
        vertical-align: middle;
    }

    .info-table a {
        color: #1a2a47;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .info-table a:hover {
        color: #4b6cb7;
        border-bottom-color: #4b6cb7;
    }

    .info-table img {
        display: block;
        margin: 0 auto;
        height: 104px;
        border-radius: 5px;
    }

    /* --- Tablet (max-width: 991px) --- */
@media (max-width: 991px) {
    .institute-intro {
        padding: 25px;
        margin: 15px;
    }

    .section-title {
        font-size: 22px;
    }

    .info-table {
        border-spacing: 0;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .info-table td {
        font-size: 15px;
        padding: 12px 15px;
    }

    .info-table td:first-child {
        width: 40%;
        text-align: left;
    }

    .info-table td:last-child {
        width: 60%;
        text-align: right;
    }
}

/* --- Mobile (max-width: 576px) --- */
@media (max-width: 576px) {
    .institute-intro {
        padding: 15px;
        margin: 8px;
        box-shadow: none;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .info-table {
        display: block;
        border-spacing: 0;
        background: none;
        box-shadow: none;
    }

    .info-table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #e9eff5;
        border-radius: 10px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }

    .info-table td {
        display: block;
        width: 100%;
        padding: 10px 14px;
        font-size: 14px;
        text-align: left;
        border: none;
    }

    .info-table td:first-child {
        font-weight: 600;
        background-color: #f7f9fc;
        color: #4b6cb7;
        border-bottom: 1px solid #e9eff5;
        border-radius: 10px 10px 0 0;
    }

    .info-table td:last-child {
        color: #333;
        border-radius: 0 0 10px 10px;
    }
}
/* Banner Section */
.page-banner {
  background: linear-gradient(90deg, #005181, #0073aa);
  padding: 50px 0;
  color: #fff;
}
.page-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 36px;
}
.breadcrumb-wrap {
  font-size: 15px;
}
.breadcrumb-wrap a {
  color: #ffd500;
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb-wrap a:hover {
  text-decoration: none;
  color: whitesmoke;
}
.breadcrumb-wrap span {
  color: #ccc;
  margin: 0 5px;
}


/*======================== institute2 html ar css============== */
  /* Monthly Summary Section Styles */
.monthly-summary-section {
    background-color: #f0f4f8;
    font-family: 'Poppins', sans-serif;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 20px auto;
    max-width: 1200px;
    transition: transform 0.3s ease-in-out;
}

.monthly-summary-section:hover {
    transform: translateY(-5px);
}

.monthly-summary-section .section-title {
    color: #1a2a47;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 12px;
}

.monthly-summary-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
    border-radius: 2px;
}

.monthly-summary-container {
    overflow-x: auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.monthly-summary-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px; /* prevent too small tables */
}

.monthly-summary-table th,
.monthly-summary-table td {
    padding: 12px 15px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #e9eff5;
    white-space: nowrap;
}

.monthly-summary-table th {
    background-color: #4b6cb7;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.monthly-summary-table tbody tr:nth-child(even) {
    background-color: #f7f9fc;
}

.monthly-summary-table tbody tr:hover {
    background-color: #e9eff5;
    transition: background-color 0.3s ease;
}

.monthly-summary-table .total-row {
    font-weight: 700;
    background-color: #1a2a47;
    color: #fff;
}

.monthly-summary-table .total-row td:first-child {
    text-align: left;
}

.button-group {
    text-align: center;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.action-btn {
    background-color: #4b6cb7;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background-color: #1a2a47;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.action-btn i {
    margin-right: 8px;
}

/* ================= Responsive Styles ================= */
@media (max-width: 992px) {
    .monthly-summary-section {
        padding: 30px 20px;
    }
    .monthly-summary-section .section-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .monthly-summary-section {
        padding: 20px;
    }
    .monthly-summary-section .section-title {
        font-size: 20px;
    }
    .monthly-summary-table th,
    .monthly-summary-table td {
        font-size: 12px;
        padding: 8px 10px;
    }
    .monthly-summary-table th:first-child,
    .monthly-summary-table td:first-child {
        position: sticky;
        left: 0;
        z-index: 2;
        background-color: #fff;
    }
    .monthly-summary-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 576px) {
    .monthly-summary-table {
        min-width: 480px;
    }
    .action-btn {
        font-size: 14px;
        padding: 10px 20px;
        flex: 1 1 auto;
    }
    .button-group {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 400px) {
    .monthly-summary-section {
        padding: 15px;
    }
    .monthly-summary-section .section-title {
        font-size: 18px;
    }
    .action-btn {
        width: 100%;
    }
}
 /* Monthly Summary Section Styles */
    .monthly-summary-section {
        background-color: #f0f4f8;
        font-family: 'Poppins', sans-serif;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        margin: 20px auto;
        max-width: 1200px;
        transition: transform 0.3s ease-in-out;
    }

    .monthly-summary-section:hover {
        transform: translateY(-5px);
    }

    .monthly-summary-section .section-title {
        color: #1a2a47;
        margin-bottom: 30px;
        text-align: center;
        position: relative;
        font-size: 28px;
        font-weight: 700;
        padding-bottom: 12px;
    }

    .monthly-summary-section .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
        border-radius: 2px;
    }

    .monthly-summary-container {
        overflow-x: auto; /* ছোট স্ক্রিনে টেবিল স্ক্রল করার সুবিধা */
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .monthly-summary-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 720px; /* ছোট স্ক্রিনে যেন টেবিলটি অতিরিক্ত ছোট না হয় */
    }

    .monthly-summary-table th,
    .monthly-summary-table td {
        padding: 12px 15px;
        text-align: center;
        font-size: 14px;
        border: 1px solid #e9eff5;
        white-space: nowrap; /* টেক্সট যাতে নতুন লাইনে না ভাঙে */
    }

    .monthly-summary-table th {
        background-color: #4b6cb7;
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
    }

    .monthly-summary-table tbody tr:nth-child(even) {
        background-color: #f7f9fc;
    }

    .monthly-summary-table tbody tr:hover {
        background-color: #e9eff5;
        transition: background-color 0.3s ease;
    }

    .monthly-summary-table .total-row {
        font-weight: 700;
        background-color: #1a2a47;
        color: #fff;
    }

    .monthly-summary-table .total-row td:first-child {
        text-align: left;
    }

    .button-group {
        text-align: center;
        margin-top: 30px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .action-btn {
        background-color: #4b6cb7;
        color: #fff;
        border: none;
        padding: 12px 25px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .action-btn:hover {
        background-color: #1a2a47;
        transform: translateY(-3px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .action-btn i {
        margin-right: 8px;
    }

    /* ================= রেসপন্সিভ স্টাইল ================= */
    @media (max-width: 992px) {
        .monthly-summary-section {
            padding: 30px 20px;
        }
        .monthly-summary-section .section-title {
            font-size: 24px;
        }
    }

    @media (max-width: 768px) {
        .monthly-summary-section {
            padding: 20px;
        }
        .monthly-summary-section .section-title {
            font-size: 20px;
        }
        .monthly-summary-table th,
        .monthly-summary-table td {
            font-size: 12px;
            padding: 8px 10px;
        }
        /* প্রথম কলামটিকে স্টিকি রাখা */
        .monthly-summary-table th:first-child,
        .monthly-summary-table td:first-child {
            position: sticky;
            left: 0;
            z-index: 2;
            background-color: inherit; /* ব্যাকগ্রাউন্ড কালার ঠিক রাখার জন্য */
        }
        .monthly-summary-container {
            overflow-x: auto; /* অনুভূমিক স্ক্রলিং চালু */
            -webkit-overflow-scrolling: touch; /* iOS ডিভাইসের জন্য স্মুথ স্ক্রলিং */
        }
    }

    @media (max-width: 576px) {
        .monthly-summary-table {
            min-width: 480px;
        }
        .action-btn {
            font-size: 14px;
            padding: 10px 20px;
            flex: 1 1 auto; /* বোতামগুলি ছোট স্ক্রিনে সমানভাবে জায়গা নেয় */
        }
        .button-group {
            flex-direction: column; /* বোতামগুলি উল্লম্বভাবে সাজানো */
            gap: 10px;
        }
    }

    @media (max-width: 400px) {
        .monthly-summary-section {
            padding: 15px;
        }
        .monthly-summary-section .section-title {
            font-size: 18px;
        }
        .action-btn {
            width: 100%; /* বোতামগুলি পুরো প্রস্থ নেয় */
        }
    }

  /*===================== institute html4 ar css================= */
   /* General styling and layout */
.teachers-section {
  padding: 50px 0;
  background-color: #f9f9f9;
  font-family: sans-serif;
}
.teachers-title {
  color: #00bfa5;
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 49px;
}
.teacher-card {
  text-align: center;
  background-color: #fff;
  padding: 10px;
  border-radius: 20px;
  border: 2px solid #ff69b4;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}
.teacher-image-box {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 10px;
}
.teacher-image {
  width: 100%;
  height: auto;
  display: block;
}
.teacher-name {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  margin: 5px 0;
  position: relative;
  z-index: 1;
}
.teacher-designation {
  font-size: 0.9em;
  color: #666;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Icon Styling and Hover Effect */
.share-box {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}
.share-icon-box {
  background-color: #fff;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.share-icon {
  width: 20px;
  height: 20px;
  color: #ff69b4;
  fill: #ff69b4;
}
.share-links {
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease-in-out;
}
.share-box:hover .share-links {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.share-link {
  background-color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  color: #ff69b4;
  text-decoration: none;
}

/* Responsive breakpoints */
@media (max-width: 575.98px) {
  .teachers-section {
    padding: 24px 0;
  }
  .teacher-name {
    font-size: 1rem;
  }
  .teacher-designation {
    font-size: .9rem;
  }
  .teacher-card {
    border-radius: 16px;
    padding: 10px;
  }
  .teacher-image-box {
    aspect-ratio: 16 / 10;
    margin-bottom: 8px;
  }
  .share-box {
    bottom: 8px;
    left: 8px;
  }
  .share-link {
    width: 30px;
    height: 30px;
  }
  .share-icon { width: 18px; height: 18px; }
  .teachers-section .col-sm-6,
  .teachers-section .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .teachers-section .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .teacher-name { font-size: 1.05rem; }
  .teacher-designation { font-size: .92rem; }
  .teacher-image-box { aspect-ratio: 4 / 3; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .teachers-section .col-md-3 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .teacher-name { font-size: 1.15rem; }
  .teacher-designation { font-size: .95rem; }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .teacher-name { font-size: 1.2rem; }
  .teacher-designation { font-size: 1rem; }
}

@media (min-width: 1200px) {
  .teachers-section { padding: 48px 0; }
  .teacher-card { padding: 14px; }
  .teacher-name { font-size: 1.25rem; }
  .teacher-designation { font-size: 1.05rem; }
}

.container, .container-lg, .container-md, .container-sm, .container-xl {
  max-width: 1225px;
}
/* Phone and Tablet devices: always show share links */
@media (max-width: 991.98px) {
  .share-links {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
  }
}

/*=========================== people1 html ar css==================== */
.founder-profile {
    background: #f9f9f9;
    padding: 30px 0;
    font-family: 'Noto Sans Bengali', sans-serif;
  }

  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  .col-md-4, .col-md-8 {
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
    flex: 0 0 100%;
    max-width: 100%;
  }

  @media (min-width: 768px) {
    .col-md-4 {
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
    .col-md-8 {
      flex: 0 0 66.666667%;
      max-width: 66.666667%;
    }
  }

  .founder-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }

  .founder-photo {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .founder-name {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
  }

  .founder-title {
    color: #777;
    font-size: 15px;
    margin-bottom: 20px;
  }

  .bigvai-social-icons {
    margin-bottom: 15px;
  }

  .zeensocial-icon {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #555;
    margin: 0 5px;
    transition: all 0.3s ease;
  }

  .zeensocial-icon:hover {
    background-color: #004d77;
    color: #fff;
    border-color: #004d77;
  }

  .founder-info {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0;
  }

  .founder-info li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
  }

  .founder-info li:last-child {
    border-bottom: none;
  }

  .founder-info strong {
    font-weight: bold;
  }

  .bio-section, .speech-section {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }

  .bio-section h4, .speech-section h4 {
    font-size: 21px;
    margin-bottom: 10px;
    color: #004d77;
    font-weight: bold;
  }

  .bio-section p, .speech-section p {
    font-size: 17px;
    color: #555;
  }

  /*=============== corner html ar css============= */
      .bg-red { background-color: #dc3545; }
.bg-yellow { background-color: #ffc107; }
.bg-light-green { background-color: #20c997; }
.bg-cyan { background-color: #17a2b8; }
.bg-light-pink { background-color: #ff85a2; }
.bg-dark-red { background-color: #8b0000; }
.bg-indigo { background-color: #6610f2; }
.bg-light-purple { background-color: #b19cd9; }
.bg-navy { background-color: #001f3f; }


/*======================= studen_corner html ar css==================  */
/* Login Container */
.login-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 480px;   /* desktop max width */
    text-align: center;
    margin: 30px auto;  /* center horizontally */
}

/* Heading */
.login-container h2 {
  margin-bottom: 30px;
  font-size: 30px;
  color: #333;
  font-weight: revert;
}

/* Input Group */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 12px 40px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 16px;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #6a11cb;
}

/* Icons */
.input-group .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6a11cb;
    font-size: 18px;
}

/* Login Button */
.login-btn {
    width: 100%;
    padding: 12px;
    background: #6a11cb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    background: #2575fc;
}

/* Signup Link */
.signup-link {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.signup-link a {
    color: #6a11cb;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 768px) {
  .login-container {
    padding: 30px 20px;
    margin: 20px auto;
  }
  .login-container h2 {
    font-size: 24px;
  }
  .input-group input {
    font-size: 15px;
    padding: 10px 38px;
  }
  .login-btn {
    font-size: 16px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .login-container {
    padding: 20px 15px;
    margin: 15px auto;
    border-radius: 8px;
  }
  .login-container h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .input-group input {
    font-size: 14px;
    padding: 10px 36px;
  }
  .login-btn {
    font-size: 15px;
    padding: 10px;
  }
  .signup-link {
    font-size: 13px;
  }
}

/*========================= games_corner ar html ar css=======================  */
.games-corner {
  padding: 50px 20px;
  background: #f9fafc;
  text-align: center;
}

.section-title {
  font-size: 28px;
  margin-bottom: 40px;
  color: #333;
  font-weight: 700;
}

/* Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Card */
.game-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Icon */
.game-icon {
  font-size: 40px;
  color: #6a11cb;
  margin-bottom: 15px;
}

/* Title */
.game-card h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}

/* Text */
.game-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 18px;
}

/* Button */
.play-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #6a11cb;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.play-btn:hover {
  background: #2575fc;
}


/*==================== academe1 html ar css=================== */
 .apply_kico{
        background-color:#b3f59d;
        text-align: center;
        border:1px solid blueviolet;
        border-radius: 15px;
        margin: 15px;
        margin-top: 20px;
        margin-right: 20px;
        color: #010101;
        font-size: 13px;
        padding: 10px;
    }
      .admission-wrap {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .admission-card {
            background: #fff;
            max-width: 800px;
            width: 100%;
            padding: 32px;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .title {
            margin-top: 0;
            margin-bottom: 28px;
            font-size: 28px;
            text-align: center;
            color: #1e1e1e;
            border-bottom: 2px solid #6a11cb;
            display: inline-block;
            padding-bottom: 8px;
            width: 100%;
        }

        .admission-form .form-row {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 18px;
        }

        .form-group {
            flex: 1 1 45%;
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            flex: 1 1 100%;
        }

        .form-group label {
            margin-bottom: 6px;
            font-weight: 600;
            font-size: 15px;
            color: #333;
        }

        .form-group input,
        .form-group select {
            padding: 12px 14px;
            font-size: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            outline: none;
            transition: border .2s;
            width: 100%;
            box-sizing: border-box;
        }
        
        .form-group input:focus,
        .form-group select:focus {
            border-color: #6a11cb;
            box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.2);
        }

        .file-group input[type="file"] {
            padding: 8px 0;
        }

        .checkbox-group label {
            font-weight: normal;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .checkbox-group input[type="checkbox"] {
            width: auto;
        }

        .submit-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(45deg, #6a11cb, #2575fc);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 17px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            background: linear-gradient(45deg, #2575fc, #6a11cb);
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .form-group {
                flex: 1 1 100%;
            }

            .admission-card {
                padding: 24px;
            }

            .title {
                font-size: 24px;
            }
        }

/*================================== academec2 html ar csss ======================= */
 .admission-formzzz {
    width: 90%;
    max-width: 1000px;
    margin: 30px auto;
    background: #fff;
    padding: 20px 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Noto Sans Bengali', sans-serif;
}

.form-headerzzz {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.form-headerzzz .logo img {
    width: 60px;
}

.form-headerzzz .infozzz {
    text-align: center;
    flex-grow: 1;
}

.form-headerzzz .photo-boxzzz {
    width: 120px;
    height: 140px;
    border: 2px dashed #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #777;
}

.form-titlezzz {
    text-align: center;
    margin: 20px 0;
    font-size: 24px;
    font-weight: bold;
}

.fieldsetzzz {
    border: 2px dashed #666;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 15px;
}

.legendzzz {
    font-weight: bold;
    color: #333;
    padding: 0 8px;
}

.form-gridzzz {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.form-gridzzz label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: bold;
    color: #444;
}

.form-gridzzz input,
.form-gridzzz select {
    margin-top: 5px;
    padding: 10px;
    border: 1px solid #aaa;
    border-radius: 6px;
}

.signature-boxzzz {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.form-actionszzz {
    text-align: center;
    margin-top: 20px;
}

.buttonzzz {
    padding: 12px 25px;
    margin: 5px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: #fff;
    transition: 0.3s;
}

.buttonzzz:hover {
    background: linear-gradient(45deg, #2575fc, #6a11cb);
}

/*======================= academic html ar css ======================== */
  .routine-container {
    width: 95%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-family: 'Noto Sans Bengali', sans-serif;
}

.routine-header {
    text-align: center;
    margin-bottom: 25px;
}

.routine-header h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 5px;
}

.routine-header p {
    font-size: 1rem;
    color: #777;
}

.routine-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    text-align: center;
}

.routine-table th,
.routine-table td {
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.routine-table th {
    background-color: #6a11cb;
    color: #fff;
    font-weight: bold;
}

.routine-table td {
    background-color: #f9f9f9;
}

.routine-table tr:nth-child(even) td {
    background-color: #eef2fb;
}

@media (max-width: 992px) {
    .routine-table th,
    .routine-table td {
        font-size: 0.95rem;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .routine-table th,
    .routine-table td {
        font-size: 0.9rem;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .routine-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .routine-table th,
    .routine-table td {
        font-size: 0.85rem;
        padding: 6px;
    }
}


/*============================= academic4 html ar css ==================== */
 .result-search-card {
    width: 90%;
    max-width: 500px;
    margin: 40px auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    font-family: 'Noto Sans Bengali', sans-serif;
}

.result-search-card h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #222;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1.5px solid #ccc;
    border-radius: 25px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #d32f2f;
}

.clear-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #d32f2f;
    cursor: pointer;
    display: none;
}

.form-group input:not(:placeholder-shown) + .clear-btn {
    display: block;
}

.search-form button {
    padding: 12px;
    border: none;
    border-radius: 25px;
    background-color: #0d47a1;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.search-form button:hover {
    background-color: #1565c0;
}

@media (max-width: 480px) {
    .result-search-card {
        padding: 20px;
    }
}


.nav-tabs .nav-link.active{
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
 
 /* ======== BASIC RESET ======== */
body {
  font-family: "Noto Sans Bengali", sans-serif;
  background: #f8f9fb;
  margin: 0;
  padding: 0;
}

/* ======== WRAPPER ======== */
.teacher-profile-wrapper {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

/* ======== CARD ======== */
.teacher-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 30px;
  overflow: hidden;
  transition: 0.3s ease;
}

.teacher-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

/* ======== HEADER ======== */
.teacher-header {
  text-align: center;
  margin-bottom: 25px;
}

.teacher-photo {
  width: 140px;
  height: 140px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 2px solid #f0f0f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.teacher-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teacher-name {
  font-size: 26px;
  color: #222;
  margin: 8px 0 5px;
}

.teacher-designation {
  color: #777;
  font-size: 15px;
}

/* ======== INFO GRID ======== */
.teacher-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 15px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  margin-bottom: 25px;
}

.teacher-info {
  padding: 8px 0;
  border-bottom: 1px dashed #f1f1f1;
  font-size: 15px;
  color: #333;
}

.teacher-info strong {
  color: #000;
  font-weight: 600;
}

.teacher-full-width {
  grid-column: 1 / -1;
  border-bottom: none;
}

/* ======== BIO ======== */
.teacher-bio {
  color: #444;
  text-align: justify;
  line-height: 1.9;
  font-size: 16px;
}

.teacher-bio p {
  margin-bottom: 16px;
}

/* ======== FOOTER BUTTON ======== */
.teacher-footer {
  text-align: center;
  margin-top: 35px;
}

.teacher-print-btn {
  background: linear-gradient(45deg, #007bff, #0062cc);
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
}

.teacher-print-btn:hover {
  background: linear-gradient(45deg, #0056b3, #004699);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
  .teacher-details-grid {
    grid-template-columns: 1fr;
  }
  .teacher-card {
    padding: 20px;
  }
  .teacher-photo {
    width: 120px;
    height: 120px;
  }
  .teacher-name {
    font-size: 22px;
  }
}


