#jin_main_content {
    background-color: #ffffff; 
    padding: 8px 0;
    border-bottom: 1px solid #eee; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky; 
    top: 0;         
    z-index: 9999;   
}

.jin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.loge_section {
    display: flex;
    justify-content: space-between;
    align-items: center; 
}

.left_site_logo img {
    height: 45px;
    width: auto;
}

.right_site_login a {
    background-color: #007bff; 
    color: white;
    text-decoration: none;
    padding: 8px 25px;
    border-radius: 25px; 
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s ease;
}

.right_site_login a:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color: #fff;
}
 
/* ================baner img======================== */
.baner_img_row {
    text-align: center; 
    margin: 15px auto 25px;
    max-width: 1200px;  
    padding: 0 15px;
    background-color: #fff;
}
 
.banar_img {
	width: 100%;
	margin-bottom: 20px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	margin-top: -50px;
}
.banar_img img {
    width: 100%;
    height: auto; 
    display: block;
    object-fit: cover;  
    object-position: center;  
}
 
.baner_img_row p {
	color: #0076d6;
	font-size: 34px;
	font-weight: 700;
	margin: 25px 0;
	font-family: "Hind Siliguri", serif;
	letter-spacing: 0.5px;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
	line-height: 32px;
}
 
/*=========================== main-container==============  */
.main-container {
    background-color: #e1dbff;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 30px;
}
.content-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: 0.3s;
}
.content-card:hover {
    transform: translateY(-4px);
    background: linear-gradient(90deg, #2ecc71, #3498db);
}

.content-card:hover span {
    color: #fff;
}
.content-card img {
    width: 45px;
    height: 45px;
}
.content-card span {
    flex: 1;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    font-family: "Hind Siliguri", serif;
}
.search-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.search-section input {
	width: 100%;
	padding: 6px 20px;
	border-radius: 8px;
	border: 1px solid #ddd;
	font-size: 16px;
	outline: none;
	box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
	margin-top: 45px;
}
 
/*================ couse section==================  */
.course-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Tabs */
.tabs {
    text-align: center;
    margin-bottom: 40px;
}

.jintab-btn {
    padding: 10px 22px;
    margin: 0 6px;
    border: 1px solid #ff4d4d;
    background: transparent;
    color: #ff4d4d;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.jintab-btn:hover,
.jintab-btn.active {
    background: #ff4d4d;
    color: #fff;
}

/* Grid */
.card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

/* Card */
.course-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    transition: 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Image */
.card-image {
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content */
.card-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
	font-family: "Hind Siliguri", serif;
}

.card-content h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* List */
.card-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 14px;
}

.card-content ul li {
    margin-bottom: 6px;
}

/* Buttons */
.card-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;   /* ⭐ Magic line */
}

.btn-jin {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.details {
    background: linear-gradient(90deg, #3b82f6, #9333ea);
    color: #fff;
}

.enroll {
    background: linear-gradient(90deg, #ff4d4d, #ff0066);
    color: #fff;
}

.btn-jin:hover {
    opacity: 0.9;
}

/*==================== book section====================  */
.book-section {
	padding: 101px;
	background-color: #f3f4f6;
	margin-top: 1px;
    font-family: "Hind Siliguri", serif;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
	font-size: 24px;
	font-weight: 900;
}

.view-all {
    text-decoration: none;
    color: #2563eb;
    font-weight: 500;
}
.book-card {
	width: 344px;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    
}

.book-image {
    position: relative;
}

.book-image img {
    width: 100%;
    display: block;
}

.stock-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffe4e4;
    color: #b91c1c;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 600;
}

.book-content {
    padding: 25px;
}

.book-content h3 {
	font-size: 17px;
	margin-bottom: 15px;
	font-weight: 600;
	line-height: 26px;
}
.author,
.publisher {
font-size: 14px;
  color: #555;
  margin-bottom: 5px;
  font-weight: 600;
}

.tags {
    margin: 15px 0;
}

.tags span {
	display: inline-block;
	background: #e0e7ff;
	color: #2563eb;
	padding: 6px 13px;
	border-radius: 20px;
	font-size: 12px;
	margin-right: 8px;
	font-weight: 600;
}

.price-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 14px;
    display: block;
}

.new-price {
    color: #e11d48;
    font-size: 18px;
    font-weight: bold;
}
 

.price-area a{
    	background: #2563eb;
	color: #fff;
	padding: 6px 16px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 14px;
}
.price-area a:hover{
    color: #fff;
}

 
/* ----------------main_book_section-------------  */
.book-banner-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    font-family: "Hind Siliguri", serif;
}

.header {
    padding: 20px 0;
    margin-bottom: 10px;
}

.header h1 {
    font-size: 32px; 
    font-weight: 800;
    margin: 0;
    color: #1a1a1a;
    line-height: 1.3;
}

.header p {
    font-size: 18px;
    color: #28a745;
    margin-top: 10px;
    font-weight: 600;
    background: #e8f5e9; 
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
}

.banner {
    margin-top: 25px;
    max-width: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.banner:hover {
    transform: scale(1.01);
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
 






/*============== vedio slider===========  */
.about_title {
	text-align: center;
	color: #000;
	margin-top: -60px;
	margin-bottom: 64px;
}
.about_title h2 {
	color: #0f0254;
	font-weight: revert;
	font-size: 35px;
}
.success-stories {
	margin: 40px auto;
	padding: 0 20px;
	font-family: 'Hind Siliguri', sans-serif;
	background-color: #e5ecff;
	margin-top: 13px;
}

    .tab-filter {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px;
    }
.tab-btn {
	padding: 8px 22px;
	border: 2px solid #ef4444;
	background: #fff;
	color: #ef4444;
	border-radius: 6px;
	cursor: pointer;
	font-weight: bold;
	transition: 0.3s;
	margin-top: 54px;
}
    .tab-btn.active {
        background: #ef4444;
        color: #fff;
    }
.mySwiper {
	width: 100%;
	padding: 10px 0 50px !important;
	margin-top: 58px;
}
    .video-card {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: 15px;
        overflow: hidden;
        background: #000;
        cursor: pointer;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .video-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .play-overlay {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.25);
        display: flex; align-items: center; justify-content: center;
        color: white; font-size: 55px;
        transition: 0.3s;
    }

    .video-card:hover .play-overlay {
        background: rgba(0,0,0,0.45);
        font-size: 65px;
    }
    .video-modal {
        display: none;
        position: fixed;
        z-index: 10000;
        left: 0; top: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.92);
        align-items: center; justify-content: center;
    }
    .modal-content {
        position: relative;
        width: 90%;
        max-width: 850px;
        height: 100%;
    }
    .modal-body {
        position: relative;
        padding-bottom: 56.25%; 
        height: 0;
    }
    .modal-body iframe {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        border-radius: 8px;
    }
    .close-modal {
        position: absolute;
        top: -45px; right: 0;
        color: white; font-size: 40px; cursor: pointer;
    }
    .tab_title_jin{
        color: #ef4444;
    }
    .swiper-button-next, .swiper-button-prev { color: #ef4444 !important; }
    .swiper-pagination-bullet-active { background: #ef4444 !important; }
 
 

/*----------------- dream-section ------------------------ */
  .about-section {
    background: linear-gradient(135deg, #f5eaf8 0%, #ede0f5 50%, #f0e6f8 100%);
    padding: 80px 20px;
    min-height: 500px;
    font-family: "Hind Siliguri", serif;
  }

  .about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }

  /* LEFT IMAGE */
  .about-left {
    flex-shrink: 0;
  }
  .about-left img {
    width: 100%;
    max-width: 420px;
    display: block;
    border-radius: 8px;
  }

  /* RIGHT CONTENT */
  .about-right {
    flex: 1;
    padding: 38px;
  }

.about-right h2 {
	font-size: 27px;
	color: #1565c0;
	margin-bottom: 18px;
	font-weight: 600;
	line-height: 30px;
}

.about-right p {
	font-size: 23px;
	line-height: 27px;
	margin-bottom: 40px;
	color: #333;
	text-align: justify;
	font-weight: 400;
}

.stats-row {
	display: flex;
	gap: 50px;
	margin-top: 10px;
	margin-left: 185px;
}

  .stat-item {
    text-align: center;
  }

  .stat-item img {
    width: 75px;
    height: 75px;
    margin-bottom: 8px;
    object-fit: contain;
  }

  .stat-item h3 {
    font-size: 22px;
    color: #1565c0;
    margin: 6px 0 4px;
    font-weight: 700;
  }

  .stat-item span {
    font-size: 15px;
    color: #555;
  }

 
  .special-features {
    background: #f5f6f8;
    padding: 100px 20px;
    font-family: "Hind Siliguri", serif;
}

 

/* Title */
.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
	font-size: 36px;
	font-weight: 700;
	color: #000;
	margin-bottom: 15px;
	line-height: 36px;
}

.section-title p {
    font-size: 13px;
    color: #7a8594;
}

/* Grid */
.features-wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px 20px;
	text-align: center;
	margin-bottom: 2px;
	padding: 86px;
    margin-top: -100px;
}
/* Feature Box */
.feature-box h4 {
	margin-top: 18px;
	font-size: 15px;
	font-weight: 600;
	color: #2f3b4c;
	line-height: 21px;
}
/* Circle Icon */
.circle {
	width: 100px;
	height: 100px;
	margin: auto;
	border-radius: 50%;
	background: #d9f0e2;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 23px;
	color: #1e8e5a;
	transition: 0.3s;
}

.circle:hover {
    background: #1e8e5a;
    color: #fff;
    transform: translateY(-8px);
}

 
/* ==================boxxxxxxxxxxxxx */
.counter-section {
	background: #b71c1c;
	padding: 38px 20px;
	border-radius: 10px;
	font-family: "Hind Siliguri", serif;
}

.container {
 
    margin: auto;
    text-align: center;
}

/* Title */
.counter-title {
	color: #fff;
	font-size: 27px;
	font-weight: 700;
	margin-bottom: 70px;
	line-height: 30px;
}

/* Cards Wrapper */
.counter-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Card */
.counter-box {
	background: #8e1111;
	padding: 12px 20px;
	border-radius: 25px;
	width: 261px;
	transition: 0.3s ease;
}

.counter-box h3 {
	font-size: 54px;
	color: #fff;
	margin-bottom: 15px;
	font-weight: 700;
	line-height: 54px;
}
.counter-box p {
    font-size: 22px;
    color: #fff;
}

.counter-box:hover {
    transform: translateY(-10px);
    background: #7a0f0f;
}

 

/* foooter ==================== */

.footer-container {
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 41px;
	flex-wrap: wrap;
	background-color: #532356;
	padding: 35px;
    border-bottom: 2px solid #77547b;
    font-family: "Hind Siliguri", serif;
}

  /* ===== LEFT: LOGO + SOCIAL ===== */
  .footer-logo-col {
    flex: 1;
    min-width: 220px;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 10px 16px;
    width: fit-content;
    margin-bottom: 16px;
    gap: 10px;
  }

  .logo-icon {
    background: #c0392b;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    font-style: italic;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
  }

  .logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .logo-name {
    font-size: 24px;
    font-weight: 900;
    color: #222;
    letter-spacing: 1px;
  }

  .logo-name span {
    color: #7b1fa2;
  }

  .logo-tagline {
    font-size: 11px;
    color: #555;
    font-family: 'Hind Siliguri', sans-serif;
  }

  .social-icons {
    display: flex;
    gap: 14px;
    margin-top: 20px;
  }

  .social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
  }

  .social-icons a:hover {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
  }

  /* ===== MIDDLE: তথ্য সমূহ ===== */
  .footer-links-col {
    flex: 1;
    min-width: 200px;
  }

  .footer-col-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
  }

  .footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .footer-links-col ul li a {
    color: #eee;
    text-decoration: none;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
  }

  .footer-links-col ul li a:hover {
    color: #fff;
    text-decoration: underline;
  }

  .footer-links-col ul li a i {
    font-size: 18px;
    color: #ddd;
    width: 22px;
    text-align: center;
  }

  /* ===== RIGHT: যোগাযোগ ===== */
  .footer-contact-col {
    flex: 1.2;
    min-width: 260px;
  }

  .contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #eee;
    line-height: 1.5;
  }

  .contact-item i {
    font-size: 18px;
    color: #ddd;
    margin-top: 3px;
    width: 20px;
    flex-shrink: 0;
  }

  /* ===== BOTTOM BAR ===== */
  .footer-bottom {
    background: #5a0b8a;
    text-align: center;
    padding: 18px 20px;
    color: #ddd;
    font-size: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  /* ===== CHAT BUTTON ===== */
  .chat-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #c0392b;
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s;
    z-index: 999;
  }

  .chat-btn:hover {
    transform: scale(1.1);
  }

 

  /* app pro section=======================  */
.app-hero {
	background: linear-gradient(135deg, #3a0d6b, #6a1b9a);
	padding: 100px 20px;
	color: #fff;
	overflow: hidden;
	font-family: "Hind Siliguri", serif;
}
.hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-left h1 {
	font-size: 45px;
	line-height: 58px;
	font-weight: 700;
}
.hero-left span {
    color: #66c2ff;
}

.play-btn img {
    width: 180px;
    margin-top: 30px;
}

/* Phone Design */
.hero-right {
    position: relative;
    width: 500px;
    height: 550px;
}

.phone {
    width: 250px;
    height: 500px;
    background: #111;
    border-radius: 40px;
    padding: 15px;
    position: absolute;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.phone1 {
    left: 50px;
    transform: rotate(-12deg);
}

.phone2 {
    right: 50px;
    transform: rotate(12deg);
}

/* Top Speaker */
.phone-top {
    height: 20px;
    background: #111;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.phone-top::after {
    content: "";
    width: 60px;
    height: 6px;
    background: #444;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 7px;
    transform: translateX(-50%);
}

/* Screen */
.phone-screen {
    height: calc(100% - 60px);
    overflow: hidden;
    border-radius: 20px;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bottom Nav */
.phone-bottom {
    height: 20px;
    background: #111;
    border-radius: 0 0 20px 20px;
    margin-top: 5px;
}
 

/* arcive page ar css ==================== */

  :root {
    --purple-dark: #1a0a3d;
    --purple-light: #6b35c8;
    --yellow: #f5c518;
    --pink: #e91e8c;
    --green: #00c853;
    --text-dark: #0d1b2a;
  }


  /* Tab Bar */
  .tab-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    background: #fff;
    border-bottom: 1px solid #e8e8f0;
  }
  .tab-btnjin {
    padding: 8px 28px;
    border: 2px solid var(--pink);
    border-radius: 8px;
    background: transparent;
    color: var(--pink);
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
  }
  .tab-btnjin:hover, .tab-btnjin.active { background: var(--pink); color: #fff; }

  /* Tab Content Handling */
  .tab-content { display: none; }
  .tab-content.active { display: block; }

.main-wrapper {
	margin: 0 auto;
	padding: 28px 20px;
	background-color: #121d41;
     margin-bottom: 50px;
     font-family: "Hind Siliguri", serif;
}
  .content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: start;
  }

  /* LEFT: Big Image */
  .course-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    line-height: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  }
  .course-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .course-img-wrap h1 {
	color: white;
	font-size: 37px;
	font-weight: 600;
}
.course-img-wrap p {
	color: #b1b6c3;
	font-size: 19px;
	line-height: 23px;
}
  /* RIGHT: Price Card */
  .price-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    position: sticky;
    top: 20px;
  }
  .price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
  }
  .price-old { color: #999; text-decoration: line-through; font-size: 16px; }
  .discount-badge {
    background: #dc2626;
    font-size: 13px; font-weight: 700;
    padding: 4px 10px; border-radius: 6px;
    color: #fff;
  }
  .off-pct { color: var(--pink); font-size: 13px; font-weight: 700; }
.price-new {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 25px;
	font-weight: bold;
}
  .taka-icon {
    width: 22px; height: 22px; background: #ff6d00; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 12px; font-weight: 900;
  }

  /* Countdown */
  .countdown { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 18px; }
  .count-box { background: #f31260; border-radius: 10px; padding: 12px 6px; text-align: center; color: #fff; }
  .count-box .num {
     font-family: 'Montserrat', sans-serif; 
     font-size: 28px; 
     line-height: 1; 
     display: block; 
    }
  .count-box .lbl { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; display: block; opacity: 0.9; }

  .lifetime-row { display: flex; align-items: center; gap: 8px; color: #666; font-size: 14px; margin-bottom: 18px; }

.buy-btn {
	width: 100%;
	background: #1dbc60;
	color: #fff;
	border: none;
	border-radius: 5px;
	padding: 10px;
	font-family: 'Hind Siliguri', sans-serif;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: background 0.2s, transform 0.2s;
	margin-bottom: 22px;
	box-shadow: 0 4px 16px rgba(0,200,83,0.3);
}
  .features-section h3 {
    color: #000;
    font-size: 15px ;
    font-weight: 600;
  }
.features-section h3::before {
	content: '✓';
	width: 23px;
	height: 18px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
	color: #1dbc60;
}
.features-section li {
	font-size: 13px;
	color: #828487;
  margin-bottom: 10px;
}
  /* Chat FAB */
  .chat-fab {
    position: fixed; bottom: 28px; right: 28px;
    width: 52px; height: 52px; background: var(--pink); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(233,30,140,0.4); cursor: pointer; z-index: 100;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(233,30,140,0.4); }
    50%       { box-shadow: 0 4px 32px rgba(233,30,140,0.7); }
  }

 



  .section-wrapper {
    /* max-width: 1380px; */
    margin: 0 auto 40px auto;
    padding: 0 20px;
    font-family: "Hind Siliguri", serif;
  }

  .section-header {
    background: linear-gradient(to right, #e91e8c, #f44336, #ff6f00);
    color: white;
    text-align: center;
    padding: 16px 24px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 6px 6px 0 0;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
  }

  .section-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
  }

  .cards-grid {
    background: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-top: none;
  }

.card {
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 11px 24px;
	text-align: center;
	font-weight: 500;
	color: #333;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

  .card:hover {
    border-color: #e91e8c;
    color: #e91e8c;
    box-shadow: 0 4px 12px rgba(233,30,140,0.12);
    transform: translateY(-2px);
  }

  .view-more-wrap {
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    padding: 20px;
    text-align: center;
  }

  .view-more-btn {
    background: linear-gradient(to right, #2196F3, #1976D2);
    color: white;
    border: none;
    padding: 10px 32px;
    border-radius: 6px;
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 3px 10px rgba(33,150,243,0.3);
  }

  .view-more-btn:hover {
    background: linear-gradient(to right, #1976D2, #1565C0);
    box-shadow: 0 5px 16px rgba(33,150,243,0.4);
    transform: translateY(-1px);
  }

  /* floating chat button */
  .chat-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #e91e8c, #ff6f00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(233,30,140,0.4);
    transition: transform 0.2s;
    z-index: 100;
  }

  .chat-fab:hover { transform: scale(1.1); }


  /* payment page ==================== */
    /* Section */
.enroll-section {
    background: #f5f6fa;
    padding: 80px 20px;
}

.container {
    max-width: 700px;
    margin: auto;
}

/* Card */
.enroll-card {
	background: #ffffff;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.08);
 
}

/* Header */
.enroll-header {
    text-align: center;
    margin-bottom: 25px;
}

.enroll-header .icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.enroll-header h2 {
    color: #e53935;
    margin-bottom: 10px;
}

.course-title {
	font-size: 13px;
	color: #000;
	font-weight: 600;
}
/* Price */
.price-box {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.price-box .old {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
}

.price-box .new {
    color: #f00;
    font-size: 20px;
    font-weight: bold;
}

/* Addon */
.addon-section h4, .payment-section h4 {
	margin: 25px 0 15px;
	font-size: 13px;
	text-align: left;
	color: #44494c;
}

.addon-item {
    background: #fdeaea;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.addon-item input {
    margin-right: 8px;
}

.addon-amount {
    font-weight: bold;
}

/* Coupon */
.coupon-box {
	margin-bottom: 20px;
	font-size: 16px;
	text-align: left;
}

.coupon-box span {
    color: #e53935;
    cursor: pointer;
    font-weight: 600;
}

/* Total */
.total-amount {
	border: 1px dashed #ff6b6b;
	padding: 12px;
	border-radius: 12px;
	text-align: center;
	color: #e53935;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 25px;
}

/* Payment */
.payment-options {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.payment-btn {
    flex: 1;
    padding: 12px;
    border-radius: 30px;
    border: 2px solid #ddd;
    background: #f2f2f2;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.payment-btn.active {
    background: #e53935;
    color: #fff;
    border: none;
}

/* Confirm Button */
.confirm-enroll {
    width: 100%;
    padding: 18px;
    background: #e53935;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.confirm-enroll:hover {
    background: #c62828;
}

/* ========================= */
/*----- Responsive Design----- */
/* ========================= */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-right {
        margin-top: 50px;
        height: 500px;
    }
    .counter-wrapper {
        gap: 30px;
    }
    .counter-box {
        width: 280px;
        padding: 50px;
    }
    .counter-box h3 {
        font-size: 55px;
    }
    .features-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 30px;
    }
    .about-container {
      flex-direction: column;
      text-align: center;
    }
    .about-right p {
      text-align: center;
    }
    .stats-row {
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
    }
    .card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {

    .enroll-card {
        padding: 25px;
    }

    .price-box {
        flex-direction: column;
        align-items: center;
    }

    .payment-options {
        flex-direction: column;
    }

    .addon-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .total-amount {
        font-size: 18px;
    }
    .content-grid { 
        grid-template-columns: 1fr; 
    }
    .price-card { 
        position: static; 
    }
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    .tab-btn {
    padding: 6px 14px;
    font-size: 13px;
    }
    .success-stories {
    margin: 10px;
    padding: 20px 10px;
    }
        .book-banner-section {
        padding: 15px;
    }
    .header h1 {
        font-size: 24px;
    }
    .header p {
        font-size: 15px;
    }
    .banner {
        border-radius: 10px; 
    }
    .card-grid {
        grid-template-columns: 1fr;
    }

    .content-card span {
        font-size: 16px;
    }
        .banar_img img {
        height: 250px;  
    }
}

@media (max-width: 600px) {
    .card-wrapper {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .left_site_logo img {
        height: 35px;
    }
    .right_site_login a {
        padding: 6px 15px;
        font-size: 14px;
    }
        .features-wrapper {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 32px;
    }
        .left_site_logo img {
        height: 35px;
    }
    .right_site_login a {
        padding: 6px 15px;
        font-size: 14px;
    }
    .book-section {
	padding: 10px;
}
.book-card {
	width: 100%;
}
.about-right h2 {
	line-height: 1.4;
	margin-top: -56px;
}
.stats-row {
	margin-left: 20px;
}
 
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 20px; 
    }
    .book-card{
       width: 320px;
    }
    .book-content {
        padding: 15px; 
    }
    .book-content h3 {
        font-size: 16px;
        line-height: 22px;
    }
    .new-price {
        font-size: 16px;
    }
    .banar_img img {
    height: 152px;
    margin-top: 36px;
    }
    .baner_img_row p {
	font-size: 16px;
	font-weight: bold;
	margin-top: -8px;
}
.book-section {
	padding: 8px 10px;
}
.book-card {
	width: 100%;
}
.about-right h2 {
	line-height: 1.4;
}
.stats-row {
	justify-content: left;
	gap: 30px;
	margin-left: 27px;
}
.features-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	text-align: center;
	padding: 0px;
    margin-top: -31px;
}

.features-wrapper > div {
    width: calc(33.33% - 14px);  /* ৩টা আইটেম এক লাইনে */
}
.hero-left h1 {
	font-size: 35px;
}
.footer-logo-col {
	margin-left: 77px;
}
.social-icons {
	margin-left: 45px;
}
.footer-links-col {
	margin-left: 89px;
}
.footer-col-title {
	text-align: center;
}
.contact-list {
	margin-left: 88px;
}
.counter-box {
	padding: 0px 4px;
}
.counter-box h3 {
	font-size: 30px;
	margin-top: 13px;
}
}

@media (max-width: 360px) {
.section-title h2 {
	font-size: 23px;
	margin-top: -59px;
}
.features-wrapper {
	gap: 20px;
	padding: 2px;
	margin-top: -59px;
	margin-bottom: 24px;
     padding: 0px;
}

.about-right h2 {
	font-weight: 900;
	margin-top: -54px;
}
.footer-links-col {
	margin-left: 7px;
}
.footer-logo-col {
	margin-left: 4px; 
}
.contact-list {
	 margin-left: 4px;
}
}