/* =========================================
   Global Reset & Variables Start
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  
  /* স্টিকি ফুটারের জন্য নতুন কোড */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ফুটারকে সবসময় নিচে ঠেলে দেওয়ার জন্য */
#footer-placeholder {
  margin-top: auto;
  width: 100%;
}

:root {
  --primary-color: #0a3d2f;
  --secondary-color: #0b5340;
  --background-color: #f9f9f9;
  --text-dark: #222;
  --text-light: #ffffff;
}

.clear {
  clear: both;
}
/* =========================================
   Global Reset & Variables End
========================================= */

/* =========================================
   Header Section Start
========================================= */
.main-header {
  display: flex;
  align-items: center;
  justify-content: center; 
  background-color: #0a3d2f;
  color: white;
  padding: 10px 20px; 
  min-height: 90px;
  position: relative; 
}

.logo-section {
  position: absolute;
  left: 120px; 
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center; 
  z-index: 10;
}

.logo-section .logo {
  height: 70px; 
  width: auto; 
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease; 
  animation: slideInLogo 3s ease-out forwards, flipLogo 10s infinite 3s; 
}

.logo-section .logo:hover {
  transform: scale(1.05) !important; 
  filter: drop-shadow(0px 4px 10px rgba(255, 255, 255, 0.3));
  animation-play-state: paused; 
}

.info-section {
  text-align: center;
  z-index: 5;
}

.info-section h1 { font-size: 2.2rem; letter-spacing: 1px; margin-bottom: 5px; }
.info-section h3 { font-size: 1.2rem; font-weight: 400; }
.info-section h4 { font-size: 1rem; font-weight: 300; margin-top: 3px; }

.hamburger { display: none; flex-direction: column; cursor: pointer; }
.hamburger span { background: #fff; height: 3px; width: 25px; margin: 4px 0; }

@keyframes slideInLogo {
  0% { transform: translateX(-50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
@keyframes flipLogo {
  0%, 90% { transform: perspective(600px) rotateY(0deg); }
  95% { transform: perspective(600px) rotateY(180deg); }
  100% { transform: perspective(600px) rotateY(360deg); }
}

@media (max-width: 768px) {
  .main-header { flex-direction: column; padding-top: 15px; }
  .logo-section { position: relative; left: 0; margin-bottom: 10px; justify-content: center; }
  .logo-section .logo { height: 50px; }
}
/* =========================================
   Header Section End
========================================= */

/* =========================================
   Menu & Sticky Navbar Start
========================================= */
.menu {
  background: #0b5340; display: flex; justify-content: space-between; align-items: center;
  padding: 0 15px; position: -webkit-sticky; position: sticky; top: 0; z-index: 9999; box-shadow: 0 4px 10px rgba(0,0,0,0.15); 
}
.menu-left, .menu-center, .menu-right { display: flex; align-items: center; }

.nav-search { display: flex; align-items: center; background: #fff; border-radius: 25px; padding: 2px 10px; margin: 8px 15px 8px 0; }
.nav-search input { border: none; outline: none; padding: 6px 10px; font-size: 15px; border-radius: 25px; width: 160px; transition: width 0.3s ease; }
.nav-search input:focus { width: 220px; }
.nav-search button { background: transparent; border: none; color: #0b5340; cursor: pointer; font-size: 16px; padding: 5px; }

.menu .nav-link { color: white; text-decoration: none; padding: 14px 20px; font-size: 17px; display: block; transition: background 0.3s ease; }
.menu .nav-link:hover { background: #10755a; color: white; }

/* Placeholder-কে Sticky করার কোড */
#menu-placeholder {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10000; /* মেনু যেন সবকিছুর ওপরে থাকে */
  display: block;
  width: 100%;
}

.dropdown { position: relative; }
.dropdown-content { display: none; position: absolute; background-color: #ffffff; min-width: 220px; box-shadow: 0px 8px 20px rgba(0,0,0,0.2); z-index: 10000; border-radius: 4px; top: 100%; left: 0; border-top: 3px solid #10755a; padding: 5px 0; }
.dropdown-content .dropdown-item { color: #333 !important; padding: 12px 18px; font-size: 14px; text-decoration: none; display: flex; align-items: center; gap: 10px; text-align: left; border-bottom: 1px solid #f1f1f1; transition: background 0.2s ease, padding-left 0.2s ease; }
.dropdown-content .dropdown-item i { color: #0b5340; width: 16px; text-align: center; }
.dropdown-content .dropdown-item:last-child { border-bottom: none; }
.dropdown-content .dropdown-item:hover { background-color: #f4f6f8; color: #10755a !important; padding-left: 24px; }
.dropdown:hover .dropdown-content { display: block; }

@media (max-width: 950px) { .menu { justify-content: center; } }
@media (max-width: 768px) {
  .hamburger { display: flex; position: absolute; top: 25px; right: 25px; }
  .menu { display: none; flex-direction: column; align-items: stretch; padding: 0; }
  .menu.active { display: flex; }
  .menu-left, .menu-center, .menu-right { flex-direction: column; width: 100%; }
  .nav-search { margin: 10px auto; width: 90%; justify-content: space-between; }
  .nav-search input { width: 100%; }
  .nav-search input:focus { width: 100%; }
  .menu .nav-link { text-align: center; width: 100%; border-bottom: 1px solid #0a3d2f; }
  .dropdown-content { position: static; box-shadow: none; background: #0a4d3b; width: 100%; border-top: none; padding: 0; }
  .dropdown-content .dropdown-item { color: #fff !important; text-align: center; justify-content: center; padding: 12px; border-bottom: 1px solid #0b5340; }
  .dropdown-content .dropdown-item i { color: #fff; }
  .dropdown-content .dropdown-item:hover { padding-left: 12px; background: #10755a; }
}
/* =========================================
   Menu & Sticky Navbar End
========================================= */

/* =========================================
   Motion Notice Section Start
========================================= */
.notice-bar {
  display: flex; align-items: center; border: none; border-bottom: 2px solid rgba(10, 61, 47, 0.4); 
  width: 100%; background: rgb(255, 255, 255, 50%); position: absolute; top: 0; left: 0; z-index: 10;
}
.notice-left { background: rgba(10, 61, 47, 0.8); color: #fff; font-weight: 700; font-size: 18px; padding: 1px 25px; flex-shrink: 0; line-height: 1; }
.notice-right { flex: 1; overflow: hidden; position: relative; height: 20px; display: flex; align-items: center; }
.notice-text {
  position: absolute; white-space: nowrap; font-size: 16px; color: #000000; font-weight: bold; line-height: 1; letter-spacing: 4px;
  -webkit-text-stroke: 0px rgb(0, 0, 0); paint-order: stroke fill; left: 100%; will-change: transform; 
  animation: scroll-left 25s linear infinite; 
}
@keyframes scroll-left { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(calc(-100% - 100vw), 0, 0); } }
/* =========================================
   Motion Notice Section End
========================================= */

/* =========================================
   Banner Section Start
========================================= */
.banner { position: relative; width: 100%; height: 400px; overflow: hidden; background-color: #0a3d2f; background-size: 100% 100% !important; background-position: center !important; background-repeat: no-repeat !important; }
.banner img { width: 100%; height: 100%; object-fit: fill; transition: opacity 1s ease-in-out; position: absolute; top: 0; left: 0; }
.motion-text { position: absolute; top: 50%; left: 0; width: 100%; text-align: center; color: white; font-size: 4rem; font-weight: bold; text-shadow: 3px 3px 8px black; animation: moveRight 20s linear infinite; z-index: 5; }
@keyframes moveRight { 0% { transform: translate(-100%, -50%); } 100% { transform: translate(100%, -50%); } }
/* =========================================
   Banner Section End
========================================= */


/* =========================================
   Banner Welcome Text (Loading State) Start
========================================= */
.banner-welcome-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 45px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 5;
    width: 100%;
    transition: opacity 0.8s ease-in-out;
}

@media (max-width: 768px) {
    .banner-welcome-text {
        font-size: 26px;
    }
}
/* =========================================
   Banner Welcome Text (Loading State) End
========================================= */


/* =========================================
   Profile Card / Layout Section Start
========================================= */
.school-layout { display: flex; justify-content: space-between; background: #fff; border-radius: 12px; padding: 25px 30px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); max-width: 95%; margin: 10px auto; gap: 25px; }
.left-section { flex: 70%; }
.left-section h2 { color: #0a3d2f; font-size: 22px; margin-bottom: 15px; border-left: 4px solid #0a3d2f; padding-left: 10px; }
.left-section h3 { color: #0b5340; font-size: 17px; margin: 10px 0 5px 0; }
.left-section p { text-align: justify; font-size: 15px; color: #333; margin-bottom: 12px; line-height: 1.6; }
.right-section { flex: 30%; display: flex; flex-direction: column; align-items: center; gap: 25px; }
.profile-card { text-align: center; background: #f8f9fb; border-radius: 10px; padding: 15px; width: 100%; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: 0.3s; }
.profile-card:hover { transform: translateY(-5px); box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
.profile-card img { width: 100%; max-width: 300px; height: 300px; object-fit: cover; border-radius: 6px; border: 3px solid #0a3d2f; margin-bottom: 10px; }
.profile-card h3 { font-size: 16px; color: #111; font-weight: bold; }
.profile-card p { font-size: 14px; color: #555; }
@media (max-width: 900px) { .school-layout { flex-direction: column; } .left-section, .right-section { flex: 100%; } }
/* =========================================
   Profile Card / Layout Section End
========================================= */

/* =========================================
   Gallery Slide Section Start
========================================= */
.gallery-section { max-width: 95%; height: 400px; margin: 40px auto; background-color: #fff; padding: 20px; border-radius: 12px; text-align: center; flex-direction: column; }
.gallery-section h2 { margin-bottom: 20px; font-size: 24px; color: #222; }
.gallery-container { display: flex; overflow: hidden; white-space: nowrap; width: 100%; position: relative; }
.gallery-track { display: flex; flex-shrink: 0; animation: scrollLeft 25s linear infinite; }
.gallery-container:hover .gallery-track { animation-play-state: paused; }
.gallery-track img { width: 380px; height: 280px; margin: 0 15px; border-radius: 10px; object-fit: cover; transition: transform 0.3s; flex-shrink: 0; }
.gallery-track img:hover { transform: scale(1.05); }
@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
/* =========================================
   Gallery Slide Section End
========================================= */

/* =========================================
   Pagination Section Start
========================================= */
.pagination-container { display: flex; justify-content: center; align-items: center; margin: 30px 0; }
.pagination { display: inline-block; }
.pagination a { color: #0a3d2f; float: left; padding: 8px 16px; text-decoration: none; font-size: 18px; font-weight: bold; border: 1px solid #ddd; margin: 0 4px; border-radius: 5px; transition: 0.3s; }
.pagination a.active { background-color: #0a3d2f; color: white; border: 1px solid #0a3d2f; }
.pagination a:hover:not(.active) { background-color: #0b5340; color: white; }
/* =========================================
   Pagination Section End
========================================= */

/* =========================================
   Footer Section Start
========================================= */
.footer { background-color: #0B1A2A; color: white; width: 100%; padding: 50px 0 20px 0; }
.footer-container { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; max-width: 1200px; margin: auto; padding: 0 15px; gap: 15px;}
.footer-section { flex: 1; min-width: 180px; }
.footer-section h3 { color: #00a8ff; margin-bottom: 15px; border-bottom: 2px solid #00a8ff; display: inline-block; padding-bottom: 5px; font-size: 18px; }
.footer-section p, .footer-section ul li a { line-height: 1.8; font-size: 14px; color: #ddd; text-decoration: none; }
.footer-section ul { list-style: none; }
.footer-section ul li a:hover { color: #00a8ff; }
.footer-section .btn { border: none; background: white; margin: 5px 5px 5px 0; padding: 10px; border-radius: 50%; font-size: 18px; cursor: pointer; width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; }
.footer-section .btn:hover { background-color: #00a8ff; color: white; }
.footer-bottom { text-align: center; border-top: 1px solid #555; margin-top: 30px; padding-top: 15px; font-size: 14px; color: #ccc; }
/* =========================================
   Footer Section End
========================================= */

/* =========================================
   Modal System (Login/Cart) Section Start
========================================= */
.custom-modal { display: none; position: fixed; z-index: 100000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); align-items: center; justify-content: center; }
.custom-modal.show-modal { display: flex; }
.modal-content { background-color: #ffffff; padding: 30px; border-radius: 10px; width: 100%; max-width: 450px; position: relative; box-shadow: 0 5px 15px rgba(0,0,0,0.3); animation: fadeInModal 0.3s ease; }
@keyframes fadeInModal { from { transform: translateY(-30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.close-modal { position: absolute; right: 20px; top: 15px; font-size: 28px; font-weight: bold; color: #aaa; cursor: pointer; }
.close-modal:hover { color: var(--primary-color); }
.modal-content h2 { color: var(--primary-color); margin-bottom: 20px; font-size: 22px; border-bottom: 2px solid var(--primary-color); padding-bottom: 8px; text-align: left; }
.form-group { margin-bottom: 15px; text-align: left; }
.form-group label { display: block; font-size: 14px; margin-bottom: 5px; color: #333; font-weight: bold; }
.form-group input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; outline: none; }
.form-group input:focus { border-color: var(--secondary-color); }
.modal-btn { width: 100%; background-color: var(--primary-color); color: white; border: none; padding: 12px; font-size: 16px; font-weight: bold; border-radius: 5px; cursor: pointer; margin-top: 10px; }
.modal-btn:disabled { background-color: #ccc; cursor: not-allowed; }
.switch-text { margin-top: 15px; font-size: 14px; text-align: center; }
.switch-text a { color: #0b8b3a; text-decoration: none; font-weight: bold; }
.empty-cart-msg { text-align: center; color: #777; padding: 20px 0; }
.cart-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #eee; }
.cart-item-name { font-size: 15px; color: #333; }
.remove-cart-item { background: transparent; border: none; color: #ff4d4d; cursor: pointer; font-size: 16px; }
.cart-footer { margin-top: 20px; border-top: 2px solid #eee; padding-top: 15px; }
.cart-total { display: flex; justify-content: space-between; font-size: 16px; margin-bottom: 15px; }
/* =========================================
   Modal System (Login/Cart) Section End
========================================= */

/* গুগল থেকে প্রিমিয়াম Montserrat ফন্ট ইমপোর্ট করা হলো */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&display=swap');

/* =========================================
   Premium Hexagon Glassmorphism Start
========================================= */
.hexagon-gallery-section { width: 100%; max-width: 900px; margin: 40px auto 20px auto; padding: 0; text-align: center; background: transparent; display: flex; flex-direction: column !important; align-items: center !important; justify-content: center !important; }
.hexagon-gallery-section h2 { color: #0a3d2f; font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 900; margin-top: 0; margin-bottom: 40px; text-align: center; width: 100%; text-transform: uppercase; }
.hex-container { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hex-row { display: flex; justify-content: center; margin-bottom: -40px; }
.hex-row:last-child { margin-bottom: 0; }

/* বাইরের হেক্সাগন (উজ্জ্বল কালার) */
.hex { 
  width: 200px; 
  height: 230px; 
  margin: 0 10px; 
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  cursor: pointer; 
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* মাউস হোভার করলে শুধু সেন্টার থেকে চারদিকে বড় হবে */
.hex:hover {
  transform: scale(1.1);
}

/* ভেতরের হেক্সাগন (রিয়েলিস্টিক 3D কাঁচের ইফেক্ট) */
.hex-inner { 
  width: 192px; 
  height: 222px; 
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); 
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* গ্লাসমরফিজম বা কাঁচের সেটিং (আরও চকচকে) */
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
  backdrop-filter: blur(15px); 
  -webkit-backdrop-filter: blur(15px);
  box-shadow: inset 2px 2px 15px rgba(255, 255, 255, 0.7), inset -2px -2px 15px rgba(0, 0, 0, 0.1); 
}

/* 🌟 স্টাইলিশ এবং গ্লোয়িং টেক্সট ডিজাইন 🌟 */
.hex-inner h3 {
  font-family: 'Montserrat', sans-serif; /* আধুনিক প্রিমিয়াম ফন্ট */
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  margin: 0;
  /* লেখার চারপাশের 3D শ্যাডো এবং গ্লো (Glow) ইফেক্ট */
  text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 255, 255, 0.6); 
  transition: transform 0.4s ease;
}

.hex:hover .hex-inner h3 {
  transform: scale(1.05); /* মাউস রাখলে লেখাটিও হালকা জুম হবে */
}

/* ৭টি উজ্জ্বল কালার গ্রেডিয়েন্ট */
.bg-services { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); } 
.bg-about    { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); } 
.bg-it       { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); } 
.bg-erp      { background: linear-gradient(135deg, #f6d365 0%, #fda085 100%); } 
.bg-training { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); } 
.bg-tutorial { background: linear-gradient(135deg, #ff0844 0%, #ffb199 100%); } 
.bg-updates  { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); } 

/* মোবাইলের জন্য রেসপন্সিভ ডিজাইন */
@media (max-width: 768px) {
  .hex { width: 110px; height: 125px; margin: 0 5px; }
  .hex-inner { width: 104px; height: 119px; }
  .hex-row { margin-bottom: -21px; }
  .hexagon-gallery-section h2 { margin-bottom: 30px; font-size: 20px; }
  .hex-inner h3 { font-size: 11px; letter-spacing: 1px; }
}
/* =========================================
   Premium Hexagon Glassmorphism End
========================================= */

/* =========================================
   Services Posts (Page 2) CSS - Updated Layout
========================================= */
.page-title-banner {
    background-color: #008000;
    color: white;
    padding: 30px 20px;
    text-align: center;
}
.page-title-banner .services-container {
    max-width: 1100px;
    margin: 0 auto;
}
.page-title-banner h2 {
    font-size: 32px;
    margin: 0;
}

.new-services-page {
    display: block !important; 
    width: 100%;
    background-color: #fff;
    padding: 30px 0 0 0;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 10px;
}

.services-header h2 {
    color: #008000;
    font-size: 28px;
    margin-bottom: 10px;
}

.services-header p {
    color: #555;
    font-size: 15px;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 40px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1 1 50%;
}

.service-image {
    flex: 1 1 50%;
    text-align: center;
}

.service-image img {
    width: 100%;
    max-width: 500px; 
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-text h3 {
    color: #008000;
    font-size: 22px;
    margin-bottom: 15px;
}

.service-text p {
    color: #444;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.service-list li i {
    color: #008000;
    margin-right: 10px;
    margin-top: 3px;
    font-size: 12px;
}

/* Why Choose Us & Request Quote Sections */
.services-why-choose {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.services-why-choose .section-title {
    color: #008000;
    font-size: 24px;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item i {
    font-size: 40px;
    color: #008000;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: #008000;
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.request-quote-banner {
    background-color: #3b8e41;
    background: linear-gradient(rgba(10, 61, 47, 0.8), rgba(41, 140, 65, 0.8)), url('images/banner1.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-top: 60px;
}

.request-quote-banner h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.request-quote-banner p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.quote-btn {
    background-color: #008000;
    color: white;
    border: 2px solid #fff;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.quote-btn:hover {
    background-color: #fff;
    color: #008000;
}

/* Mobile Adjustments for Services */
@media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .service-row, .service-row.reverse {
        flex-direction: column !important;
        gap: 20px;
    }
    .service-image {
        text-align: center;
    }
    .service-image img {
        max-width: 100%;
    }
    .features-grid { grid-template-columns: 1fr; }
}


/* =========================================
   Registration Form Styles
========================================= */
.registration-container {
    max-width: 800px;
    margin: 50px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    font-family: inherit;
    border-top: 5px solid #0b8b3a;
}

.form-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 35px;
    font-size: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.input-group input, .input-group select {
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fdfdfd;
}

.input-group input:focus, .input-group select:focus {
    border-color: #0b8b3a;
    background: #fff;
    outline: none;
    box-shadow: 0 0 8px rgba(11, 139, 58, 0.2);
}

/* Password Wrapper */
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    width: 100%;
    padding-right: 45px;
}

.password-wrapper .toggle-password {
    position: absolute;
    right: 15px;
    cursor: pointer;
    color: #888;
    font-size: 18px;
    transition: color 0.3s;
}

.password-wrapper .toggle-password:hover {
    color: #0b8b3a;
}

/* Submit Button */
.register-btn {
    width: 100%;
    padding: 15px;
    background: #0b8b3a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 35px;
    transition: background 0.3s ease;
}

.register-btn:hover {
    background: #096b2d;
}

@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
    .registration-container { padding: 25px; margin: 20px; }
}

/* =========================================
   Mobile Responsiveness Fixes Start (Final Update)
========================================= */
@media (max-width: 768px) {
    /* ১. ব্যানারের উচ্চতা কমানো */
    .banner { height: 250px !important; }
    .motion-text { font-size: 2.2rem !important; }
    
    /* ২. গ্যালারির ছবির সাইজ ছোট করা */
    .gallery-track img { width: 260px !important; height: 180px !important; margin: 0 10px !important; }
    .gallery-section { height: 300px !important; }
    
    /* ৩. হেক্সাগন বক্সের লেখার সাইজ পড়ার উপযোগী করা */
    .hex-inner h3 { font-size: 13px !important; font-weight: 800 !important; }
    
    /* ৪. মডেল (Login/Register) ফর্মের প্যাডিং কমানো */
    .modal-content { padding: 20px 15px !important; width: 95% !important; margin: 0 auto; }
    
    /* ৫. হামবার্গার আইকনের পজিশন ফিক্স */
    .hamburger { top: 20px !important; right: 15px !important; }

    /* ৬. হেডার এবং মেনুর পজিশন ফিক্স */
    .main-header { 
        position: relative !important; 
        z-index: 1000 !important; 
    }
    #menu-placeholder {
        position: static !important; 
        display: block !important;
        z-index: 999 !important;
    }
    
    /* ৭. ফ্লেক্সবক্স বাগ ফিক্স (মেনুর উপরের অংশ হারিয়ে যাওয়ার মূল সমাধান) */
    .menu.active { 
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important; /* এটি আইটেমগুলোকে উপরে লক করবে যেন হারিয়ে না যায় */
        max-height: 75vh !important; 
        overflow-y: auto !important; 
        margin-top: 0 !important;
        padding-top: 10px !important; 
        padding-bottom: 20px !important;
        border-top: 3px solid #05261d !important; 
    }
    
    /* ৮. মোবাইলে ড্রপডাউন মেনু ফিক্স */
    .dropdown-content { display: block !important; background-color: #083b2a !important; position: static !important; width: 100% !important; box-shadow: none !important; border-top: none !important;}
    .dropdown-content .dropdown-item { padding-left: 20px !important; font-size: 13px !important; color: #fff !important; text-align: center; justify-content: center; border-bottom: 1px solid #10755a !important;}
    .dropdown-content .dropdown-item:hover { background-color: #10755a !important; }
}
/* =========================================
   Mobile Responsiveness Fixes End
========================================= */