/* bKash Student Account CSS */
@import url("https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: #e2146c;
  --primary-dark: #c01259;
  --primary-light: #f5a0c5;
  --secondary-color: #ffdd00;
  --text-color: #333333;
  --light-text: #666666;
  --white: #ffffff;
  --light-bg: #fff5f8;
  --dark-bg: #222222;
  --border-light: #eeeeee;
  --border-dark: #444444;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hind Siliguri", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Main Content Styles */
.main-content {
  padding-top: 40px; /* Increased padding to move content down from nav */
}

.nav-item {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  white-space: nowrap;
  
}


.hero-section {
  padding: 40px 0;
}

.main-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-color);
  text-align: left; /* Changed from center to left */
  margin-bottom: 30px;
  margin-left: 15px; /* Added left margin */
}

.download-btn {
  display: block;
  width: max-content;
  margin: 0 0 40px 15px; /* Changed from center to left margin */
  padding: 12px 40px;
  background-color: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
}

.download-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(226, 20, 108, 0.2);
}

.video-container {
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.content-text {
  margin-bottom: 60px;
  margin-top: 50px;
  
}

.content-text p {
  font-size: 18px; /* Increased from 16px */
  margin-bottom: 20px;
  line-height: 1.8;
}

.warning-section {
  background-color: #fff5f8;
  border-radius: var(--radius-md);
  padding: 30px;
  margin-bottom: 60px;
}

.warning-title {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 20px; /* Increased from 18px */
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.warning-title i {
  color: #ff8800;
}

.warning-list {
  list-style-position: inside;
  padding-left: 20px;
}

.warning-list li {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 18px; /* Increased font size */
}

.promo-image {
  margin: 40px 0;
  text-align: center;
}

.promo-image img {
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.links-section {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Increased from 15px */
  margin-bottom: 60px;
}

.info-link {
  color: var(--primary-color);
  font-size: 20px; /* Increased from 16px */
  font-weight: 700; /* Increased from 500 to make bolder */
  transition: var(--transition);
  display: block;
}

.info-link:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

/* Footer Styles */
.bkash-footer {
  background-color: #1f1f1f;
  color: white;
  padding: 40px 0 20px;
  font-family: "Hind Siliguri", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo-section {
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 40px;
}

.footer-tagline {
  color: #ddd;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 800px;
}

.footer-app-download {
  margin-bottom: 30px;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 500;
}

.app-store-buttons {
  display: flex;
  gap: 10px;
}

.app-store-buttons .app-button {
  border: none;
  padding: 0;
}

.app-store-buttons .app-button img {
  height: 40px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.footer-column-title {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 500;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-menu a:hover {
  color: var(--primary-color);
}

.certification-logos {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.certification-logos img {
  height: 40px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #333;
  padding-top: 20px;
}

.copyright-text {
  color: #999;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.social-icon i {
  color: #222;
  font-size: 16px;
}

.social-icon:hover {
  background-color: var(--primary-color);
}

.social-icon:hover i {
  color: #fff;
}

/* Live Chat Button */
.live-chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
  z-index: 100;
}

.live-chat:hover {
  transform: translateY(-3px);
}

.live-chat i {
  font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header {
    justify-content: space-between;
  }

  .main-title {
    font-size: 28px;
  }

  .download-btn {
    padding: 10px 30px;
    font-size: 16px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .right-nav {
    gap: 10px;
  }

  .app-button {
    padding: 5px 10px;
    font-size: 12px;
  }

  .main-title {
    font-size: 24px;
  }

  .download-btn {
    padding: 8px 25px;
    font-size: 14px;
  }

  .warning-title {
    font-size: 16px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }
}


/* Popup Styles */
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    overflow: hidden;
    animation: fadeIn 0.3s ease-in-out;
}

.popup-content {
    position: relative;
    background-color: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.4s ease-out;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #1c2e58;
    color: white;
    position: sticky;
    top: 0;
    z-index: 2;
}

.popup-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.popup-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.popup-body {
    padding: 0;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

.terms-content {
    padding: 30px;
}

.terms-content h3 {
    color: #1c2e58;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 600;
}

.terms-content h4 {
    color: #1c2e58;
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.terms-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: justify;
    font-size: 16px;
}

.terms-footer {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff5f8;
    border-radius: 8px;
    border-left: 4px solid #1c2e58;
}

.terms-footer p {
    margin: 0;
    font-weight: 500;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        transform: translateY(50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

/* Active State */
.popup-container.active {
    display: block;
}

/* Scrollbar Styling */
.popup-body::-webkit-scrollbar {
    width: 10px;
}

.popup-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.popup-body::-webkit-scrollbar-thumb {
    background: #1c2e58;
    border-radius: 5px;
}

.popup-body::-webkit-scrollbar-thumb:hover {
    background: #1c2e58;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 20px auto;
    }
    
    .popup-header h2 {
        font-size: 1.5rem;
    }
    
    .terms-content {
        padding: 20px;
    }
    
    .terms-content p {
        font-size: 15px;
    }
}


/* Offer Details Popup Styles */
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    overflow: hidden;
    animation: fadeIn 0.3s ease-in-out;
}

.popup-content {
    position: relative;
    background-color: #fff;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.4s ease-out;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #1c2e58;
    color: white;
    position: sticky;
    top: 0;
    z-index: 2;
}

.popup-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.popup-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.popup-body {
    padding: 0;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

.offer-content {
    padding: 30px;
}

.offer-content h3 {
    color: #1c2e58;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #1c2e58;
    padding-bottom: 8px;
    display: inline-block;
}

.offer-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 16px;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.offer-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e0e0e0;
}

.offer-table th, 
.offer-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.offer-table th {
    background-color: #f8f8f8;
    font-weight: 600;
    color: #333;
}

.offer-table thead {
    background-color: #f0f0f0;
}

.section-header {
    background-color: #fff5f8;
    color: #1c2e58;
    font-weight: 600;
    text-align: center;
}

.total-row {
    background-color: #fff5f8;
    font-weight: 700;
}

.total-row td {
    border-top: 2px solid #1c2e58;
}

/* Bullet Points Styles */
.bullet-points {
    margin: 25px 0;
    padding-left: 20px;
}

.bullet-points li {
    margin-bottom: 15px;
    line-height: 1.7;
    position: relative;
    padding-left: 10px;
}

.bullet-points li::before {
    content: "•";
    color: #1c2e58;
    font-size: 18px;
    position: absolute;
    left: -15px;
    top: 0px;
}

.note {
    background-color: #fff5f8;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #1c2e58;
    font-style: italic;
    margin: 20px 0;
}

/* Terms List Styles */
.terms-list {
    margin: 25px 0;
    padding-left: 20px;
}

.terms-list li {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        transform: translateY(50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

/* Active State */
.popup-container.active {
    display: block;
}

/* Scrollbar Styling */
.popup-body::-webkit-scrollbar {
    width: 10px;
}

.popup-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.popup-body::-webkit-scrollbar-thumb {
    background: #1c2e58;
    border-radius: 5px;
}

.popup-body::-webkit-scrollbar-thumb:hover {
    background: #1c2e58;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 20px auto;
    }
    
    .popup-header h2 {
        font-size: 1.3rem;
    }
    
    .offer-content {
        padding: 20px;
    }
    
    .offer-table th, 
    .offer-table td {
        padding: 10px;
        font-size: 14px;
    }
}

/* FAQ Popup Styles */
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    overflow: hidden;
    animation: fadeIn 0.3s ease-in-out;
}

.popup-content {
    position: relative;
    background-color: #fff;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.4s ease-out;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #1c2e58;
    color: white;
    position: sticky;
    top: 0;
    z-index: 2;
}

.popup-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.popup-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.popup-body {
    padding: 0;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

.faq-content {
    padding: 30px;
}

/* FAQ Item Styles */
.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 25px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
}

.question-number {
    color: #1c2e58;
    margin-right: 8px;
    font-weight: 700;
}

.faq-answer {
    line-height: 1.7;
    color: #555;
    padding-left: 25px;
}

.answer-label {
    color: #1c2e58;
    font-weight: 600;
    margin-right: 8px;
}

/* Numbered List Styles */
.numbered-list {
    margin: 15px 0;
    padding-left: 20px;
}

.numbered-list li {
    margin-bottom: 10px;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.limits-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e0e0e0;
}

.limits-table th, 
.limits-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.limits-table th {
    background-color: #f8f8f8;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.limits-table thead {
    background-color: #f0f0f0;
}

.limits-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.limits-table tr:hover {
    background-color: #fff5f8;
}

/* Links in Answer */
.faq-answer a {
    color: #1c2e58;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        transform: translateY(50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

/* Active State */
.popup-container.active {
    display: block;
}

/* Scrollbar Styling */
.popup-body::-webkit-scrollbar {
    width: 10px;
}

.popup-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.popup-body::-webkit-scrollbar-thumb {
    background: #1c2e58;
    border-radius: 5px;
}

.popup-body::-webkit-scrollbar-thumb:hover {
    background: #1c2e58;
}

/* Highlight Effect */
.highlight {
    background-color: #fff5f8;
    border-left: 3px solid #1c2e58;
    padding-left: 22px;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 20px auto;
    }
    
    .popup-header h2 {
        font-size: 1.2rem;
    }
    
    .faq-content {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .limits-table th, 
    .limits-table td {
        padding: 8px 10px;
        font-size: 14px;
    }
}


