:root {
  --color-primary: #25D366;
  --color-primary-hover: #019875;
  --color-secondary: #007bff;
  --color-tertiary: #0e0e0e;
  --color-text-secondary: #555;
  --color-background: #f4f4f4;
  --color-footer: #00b894;
  --color-footer-span: #585858;
  --color-text: #333;
  --color-text1: #ffffff;
  --font-family-base: 'Times New Roman', Times, serif;
  --border-radius: 8px;
  --box-shadow-light: 0 2px 4px rgba(0,0,0,0.1);
  --box-shadow-dropdown: 0 4px 6px rgba(0,0,0,0.1);
}

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

html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

body {
  font-family: var(--font-family-base);
  margin: 0;
  padding-top: 60px;
}

main {
  flex: 1;
  background-color: var(--color-background);
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #e3e1e1;
  box-shadow: var(--box-shadow-light);
  z-index: 1000;
  transition: all 0.3s ease;
}

.top-nav.scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  background-color: #fff;
}

.top-nav-container {
  margin: auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 60px;
}

.skillooprobd-logo {
  height: 45px;
}

.top-nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.top-nav-hamburger .bar {
  width: 100%;
  height: 3px;
  background: var(--color-text);
  border-radius: 2px;
}

.top-nav-nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-nav-nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.top-nav-nav-links li a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
}

.top-nav-nav-links li a:hover {
  color: var(--color-secondary);
}

.top-nav-btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--border-radius);
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.top-nav-btn-outline:hover {
  background-color: var(--color-primary);
  color: white;
}

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

  .top-nav-nav-menu {
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 2rem;
    display: none;
    box-shadow: var(--box-shadow-dropdown);
  }

  .top-nav-nav-menu.active {
    display: flex;
  }

  .top-nav-nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .top-nav-btn-outline {
    width: 100%;
    margin-top: 0.1rem;
    text-align: center;
  }
}
/* 🔹 Navbar Scroll Effect */
.top-nav.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

/* 🔹 Hamburger Animation (optional) */
.top-nav-hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.top-nav-hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.top-nav-hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =============================
   OFFER BAR MODERN DESIGN
============================= */
.offer-bar{
  width:100%;
  background:linear-gradient(90deg,#0a66c2,#0047ab,#002f6c);
  color:#fff;
  padding:12px 0;
  font-size:14px;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

.offer-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:0 20px;
  flex-wrap:wrap;
}

.offer-text{
  display:flex;
  align-items:center;
  gap:12px;
  flex:1;
  min-width:200px;
  overflow:hidden;
}

.offer-badge{
  background:linear-gradient(45deg,#ff3b3b,#ff0000);
  padding:4px 10px;
  border-radius:6px;
  font-weight:700;
  font-size:12px;
  white-space:nowrap;
  box-shadow:0 0 8px rgba(255,0,0,0.5);
}

.offer-ticker{
  overflow:hidden;
  position:relative;
  flex:1;
}

.ticker-move{
  display:inline-block;
  white-space:nowrap;
  padding-left:100%;
  animation: ticker 15s linear infinite;
}

.offer-ticker:hover .ticker-move{
  animation-play-state:paused;
}

@keyframes ticker{
  0% { transform:translateX(0%);}
  100% { transform:translateX(-100%);}
}

.offer-timer{
  background:rgba(255,255,255,0.1);
  padding:6px 12px;
  border-radius:6px;
  font-weight:600;
  backdrop-filter:blur(6px);
  white-space:nowrap;
}

.offer-timer span{
  background:#ffcc00;
  color:#000;
  padding:3px 6px;
  border-radius:4px;
  margin:0 2px;
  font-weight:700;
}

.offer-btn{
  background:linear-gradient(45deg,#ffcc00,#ffd633);
  color:#000;
  padding:8px 16px;
  border-radius:6px;
  text-decoration:none;
  font-weight:700;
  transition:all .3s ease;
  box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

.offer-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(0,0,0,0.25);
  background:linear-gradient(45deg,#ffd633,#ffcc00);
}

/* =============================
   MOBILE DESIGN
============================= */
@media(max-width:992px){
  .offer-container{
    justify-content:center;
    text-align:center;
    gap:10px;
  }
  .offer-text{
    justify-content:center;
  }
  .offer-timer{
    font-size:13px;
  }
}

@media(max-width:600px){
  .offer-container{
    flex-direction:column; 
    align-items:center;
    text-align:center;
    gap:8px;
  }

  .offer-text{
    justify-content:center;
    width:100%; 
  }

  .offer-ticker .ticker-move{
    font-size:13px; 
  }

  .offer-timer{
    font-size:12px;
    padding:4px 8px;
  }

  .offer-btn{
    padding:6px 14px;
    font-size:13px;
    margin-top:5px; 
  }
}

.hero {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
  text-align: center;
  padding: 80px 20px;
  font-family: var(--font-family-base);
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--color-text1);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--color-text1);
}

.hero-btn-primary {
  background-color: var(--color-primary);
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: bold;
  transition: background-color 0.3s;
  display: inline-block;
}

.hero-btn-primary:hover {
  background-color: var(--color-primary-hover);
}
.hero-stats {
  padding: 40px 20px;
  background-color: var(--color-background);
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.stat-card {
  background-color: var(--color-text1); /* white for light mode */
  padding: 20px 25px;
  flex: 1 1 180px;
  width: 200px;
  text-align: center;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card i {
  font-size: 36px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.stat-card h3 {
  font-size: 28px;
  margin: 5px 0;
  color: var(--color-text);
  font-family: var(--font-family-base);
}

.stat-card p {
  font-size: 16px;
  color: var(--color-text-secondary);
  font-family: var(--font-family-base);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .stats-container{
    flex-direction: column;
    align-items: center;
    width: auto;
    gap: 20px;
  }
  .hero-btn-primary{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 15px;
  }
}

/* Innovation Hub Section */
.innovation-hub {
  padding: 80px 0;
  background: #f9fafb;
}

.innovation-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}

.innovation-text {
  flex: 1 1 500px;
}

.innovation-text h2 {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 10px;
}

.innovation-text p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.innovation-text ul {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
}

.innovation-text li {
  margin: 6px 0;
}

.innovation-btn {
  display: inline-block;
  background: #0d6efd;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.innovation-btn:hover {
  background: #0a58ca;
}

.innovation-image img {
  max-width: 450px;
  border-radius: 12px;
}

@media (max-width: 992px) {
  .innovation-container {
    gap: 1.5rem;
  }
  
  .innovation-image img {
    max-width: 350px;
  }

  .innovation-text h2 {
    font-size: 1.8rem;
  }
  
  .innovation-text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .innovation-container {
    flex-direction: column;
    text-align: center;
  }

  .innovation-text {
    flex: 1 1 100%;
  }

  .innovation-text h2 {
    font-size: 1.6rem;
  }

  .innovation-text p {
    font-size: 0.95rem;
  }

  .innovation-btn {
    margin-top: 15px;
  }

  .innovation-image img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .innovation-text h2 {
    font-size: 1.4rem;
  }

  .innovation-text p {
    font-size: 0.9rem;
  }

  .innovation-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

.about {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: var(--font-family-base);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.about-text {
  flex: 1 1 400px;
}

.about-text h2 {
  font-size: 32px;
  color: var(--color-text);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 15px;
  }
}

.features-section {
  background-color: white;
  padding: 60px 20px;
  font-family: var(--font-family-base);
}

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

.features-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
  color: var(--color-text);
}

.features-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-card {
  background-color: #ffffff;
  box-shadow: var(--box-shadow-light);
  border-radius: var(--border-radius);
  padding: 30px 20px;
  flex: 1 1 calc(33.333% - 30px); 
  max-width: calc(33.333% - 30px);
  transition: transform 0.3s ease;
  color: var(--color-text-secondary);
  box-sizing: border-box;
}

.features-card:hover {
  transform: translateY(-5px);
}

.features-card i {
  font-size: 40px;
  color: var(--color-primary);
  margin-bottom: 15px;
  text-align: center;
  margin: 0 auto 15px auto;
  display: block;
}

.features-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--color-text);
  text-align: center;
}

.features-card p {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 768px) {
  .features-section h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 60px 10px;
  }

  .features-card {
    max-width: 100%;
  }
  .features-card i {
    font-size: 40px;
    color: var(--color-primary);
    margin: 0 auto 15px auto;
    display: block;
    text-align: center;
  }

  .features-card h3,
  .features-card p {
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .features-card {
    flex: 1 1 200px;
    max-width: 300px;
  }
  .features-card i {
    font-size: 40px;
    color: var(--color-primary);
    margin: 0 auto 15px auto;
    display: block;
    text-align: center;
  }

  .features-card h3,
  .features-card p {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .features-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .features-card i {
    font-size: 40px;
    color: var(--color-primary);
    margin: 0 auto 15px auto;
    display: block;
    text-align: center;
  }

  .features-card h3,
  .features-card p {
    text-align: center;
  }
}

/* ========== index page Featured Course Card ========== */
.home_courses{
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.home_courses_container h2 {
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 28px;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #00bfff; 
}

.home_courses_see_more{
  margin-top: 20px;
}

.home_courses_see_more a{
  display: inline-block;
  padding: 12px 25px;
  background-color: #00bfff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: 0.3s;
}

.home_courses_see_more a:hover {
  background-color: #0080cc;
}

/* Main Course cards container */
.section_courses_cards_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  align-items: flex-start;  
  gap: 20px;           
  width: 100%;       
  max-width: 1400px;
  margin: 0 auto;
}

.card_section {
  flex: 0 0 360px;              
  max-width: 400px;
  min-width: 360px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card_section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card_content {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.title_block {
  display: flex;
  justify-content: flex-start; 
  align-items: flex-start;
  width: 100%;
}

.title_text h2 {
  font-size: 18px;
  color: #1c1c1c;
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}

.price_column {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto; 
}

.free_text {
  color: #00b894;
  font-weight: 900;
  font-size: 16px;
}

.discount_row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 2px;
  gap: 8px;
}

.discount_badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  line-height: 1.1;
}

.discount_percent {
  font-size: 14px;
  font-weight: 700;
  color: #27ae60;
}

.discount_text {
  font-size: 11px;
  font-weight: 600;
  color: #27ae60;
}

.old_price {
  color: #e74c3c;
  font-weight: 700;
  font-size: 14px;
}

.beginner_tag {
  display: block;
  background: #00a8ff;
  color: #fff;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 5px;
  margin-top: 8px;
  text-align: left; 
}

.instructor {
  font-size: 14px;
  color: #444;
  margin-top: 5px;
  text-align: left;
}

.details_btn {
  display: block;
  width: 100%;
  background: #00b894;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  border: none;
  border-radius: 0 0 12px 12px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 15px;
  text-decoration: none;
}

.details_btn:hover {
  background: #019267;
}

@media (max-width: 1200px) {
  .card_section {
    flex: 0 0 320px;
  }
}

@media (max-width: 992px) {
  .card_section {
    flex: 0 0 300px;
  }
}

@media (max-width: 768px) {
  .section_courses_cards_container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap; 
    overflow-x: hidden; 
  }
  .card_section {
    flex: 0 0 100%;  
    max-width: 100%;
    margin: 0 auto; 
  }
  .card_content {
    padding: 15px;
  }
  .title_text h2 {
    font-size: 16px;
  }
  .free_text {
    font-size: 14px;
  }
  .beginner_tag {
    text-align: left; 
  }
  .instructor {
    text-align: left;
  }
  .details_btn {
    font-size: 14px;
    padding: 8px 0;
  }
}

@media (max-width: 480px) {
  .card_section {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 auto;      
  }
  .card_content {
    padding: 12px;
  }
  .title_text h2 {
    font-size: 14px;
  }
  .free_text {
    font-size: 13px;
  }
  .details_btn {
    font-size: 13px;
    padding: 6px 0;
  }
}

.home_courses_subtitle {
    font-size: 1rem; 
    color: var(--color-text-secondary); 
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.5px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    transition: color 0.3s;
}

.home_courses_subtitle:hover {
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .home_courses_subtitle {
        font-size: 0.95rem;
        max-width: 90%;
    }
}

.course_tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 40px 0 30px;
  flex-wrap: wrap;
}

.course_tabs_tab_btn {
  background: #f2f6ff;
  color: #333;
  border: 2px solid #00bfff;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.course_tabs_tab_btn.active,
.course_tabs_tab_btn:hover {
  background: #00bfff;
  color: #fff;
}
@media (max-width: 480px) {
  .course_tabs_tab_btn { padding: 8px 16px; font-size: 14px; }
}

/* ======== Index Page WHY CHOOSE LEARNLOOP SECTION ======== */
.why_choose_us {
  background: #f3f6ff;
  padding: 70px 20px;
  text-align: center;
}

.container_home h2 {
  color: #00bfff;
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.features_home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.feature_card_home {
  background: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.feature_card_home:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.feature_card_home i {
  color: #00bfff;
  font-size: 38px;
  margin-bottom: 15px;
}

.feature_card_home h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #0a0a23;
}

.feature_card_home p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  max-width: 250px;
}

/* ========== GALLERY SECTION ========== */
.home_gallery {
  padding: 50px 20px;
  text-align: center;
}

.container_home_gallery h2 {
  font-size: 28px;
  color: #00bfff;
  margin-bottom: 20px;
}

.home_gallery_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 15px;
}

.home_gallery_grid img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s;
}

.home_gallery_grid img:hover {
  transform: scale(1.05);
}

.button_small {
  font-size: 14px;
  padding: 10px 20px;
}

.button_home{
  display: inline-block;
  padding: 12px 25px;
  background-color: #fff;
  color: #00bfff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: 0.3s;
}

.button_home:hover {
  background-color: #e6e6e6;
}

.button_home a{
  background-color: #fff;
  color: #00bfff;
}

.home_cta_wrapper {
  background: #f3f6ff;
  padding: 60px 20px;
}

.home_cta {
  background: #00bfff;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  border-radius: 8px;
  margin: 40px auto;
}

.home_cta h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .container_home h2 {
    font-size: 28px;
  }
  .feature_card_home h3 {
    font-size: 17px;
  }
  .feature_card_home p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .why_choose_us {
    padding: 50px 15px;
  }
  .container_home h2 {
    font-size: 26px;
    margin-bottom: 35px;
  }
  .features_home {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }
  .feature_card_home {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .why_choose_us {
    padding: 40px 10px;
  }
  .container_home h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }
  .features_home {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .feature_card_home {
    padding: 18px 15px;
  }
  .feature_card_home i {
    font-size: 34px;
  }
  .feature_card_home h3 {
    font-size: 16px;
  }
  .feature_card_home p {
    font-size: 14px;
  }
}
/* ======== Video Section Styling ======== */
.video-section-wrapper{
    background-color: var(--color-background);
    padding: 40px 0;
}

.video-section {
    padding: 20px;
    margin: 20px auto;
    width: 90%;
    max-width: 900px;
}

.video-section h2 {
    text-align: center;
    color: var(--color-text); 
    font-size: 25px;
    font-weight: bold;
}

.video-container {
    text-align: center;
    margin: 20px 0;
}

.video-container iframe {
    border: none;
    border-radius: 15px;
    width: 100%;
    max-width: 560px;
    height: 315px;
}

.video-section-description { 
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .video-section {
        width: 95%;
        padding: 15px;
    }

    .video-section h2 {
        font-size: 20px;
    }

    .video-section-description {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .video-section {
        width: 100%;
        padding: 10px;
    }

    .video-section h2 {
        font-size: 18px;
    }

    .video-section-description {
        font-size: 12px;
    }
}

.testimonials {
  background-color: var(--color-background);
  padding: 60px 20px;
  text-align: center;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--color-text-secondary);
}

.testimonials p {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
}

.testimonials-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonials-card {
  background-color: var(--color-text1);
  box-shadow: 0 4px 12px var(--box-shadow-light);
  border-radius: 10px;
  padding: 30px;
  max-width: 400px;
  flex: 1 1 300px;
  transition: transform 0.3s ease;
}

.testimonials-card:hover {
  transform: translateY(-5px);
}

.testimonials-card p {
  font-style: italic;
  color: var(--color-text-secondary);
  font-size: 16px;
}

.testimonials-card h4 {
  margin-top: 20px;
  font-weight: bold;
  color: var(--color-secondary);
  font-size: 16px;
}

@media (max-width: 768px) {
  .testimonials-cards {
    flex-direction: column;
    align-items: center;
  }

  .testimonials-card {
    width: 100%;
    max-width: 90%;
  }
}

/* ===============================
       Footer Section Styling
   =============================== */
footer {
  background-color: #eceaea;
  color: #0e0e0e;
  padding: 40px 20px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: auto;
  gap: 30px;
}

.footer-container > div {
  flex: 1 1 220px;
}

footer img {
  max-width: 72px;
}

.footer-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  display: block;
  color: var(--color-footer);
}

div span i {
  margin-right: 8px;
  color: var(--color-footer-span);
}

.footer-container p {
  margin-bottom: 8px;
  line-height: 1.5;
}

footer a {
  display: block;
  color: var(--color-tertiary);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #f0a500;
  text-decoration: underline;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-contact-item i {
  min-width: 20px;
  text-align: center;
}

.footer-highlight {
  font-weight: 600;
}

footer small {
  display: block;
  text-align: center;
  padding-top: 20px;
  color: #0e0e0e;
  font-size: 12px;
  border-top: 1px solid #ccc;
  margin-top: 30px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-links a {
  font-size: 24px;
  transition: color 0.3s, transform 0.3s;
  padding: 6px;
  border-radius: 50%;
}

.social-links a:hover { 
  transform: scale(1.2);
  background: rgba(0,0,0,0.05);
}

.social-links a:nth-child(1) { color: #3b5998; } 
.social-links a:nth-child(2) { color: #FF0000; } 
.social-links a:nth-child(3) { color: #0077b5; } 
.social-links a:nth-child(4) { color: #0088cc; }  
.social-links a:nth-child(5) { color: #25D366; }  

/* ===============================
        Footer Trust Section
   =============================== */
.footer-trust {
  list-style: none;       /* Remove bullets */
  padding: 0;
  margin: 15px 0;         /* spacing above and below */
  display: flex;
  flex-direction: column;
  gap: 10px;              /* space between items */
  font-weight: 600;
  font-size: 14px;
  color: #0e0e0e;         /* default text color */
}

.footer-trust li {
  display: flex;
  align-items: center;
  gap: 6px;               /* spacing between icon/emoji and text */
  white-space: nowrap;    /* prevent breaking line */
}

.footer-trust li:hover {
  color: #f0a500;         /* hover effect */
  transition: color 0.3s ease;
}

.footer-trust .verified {
  color: #1aa34a;
  font-weight: 700;
}

/* Responsive adjustments */

/* Tablets & small desktops */
@media (max-width: 1024px) {
  .footer-trust {
    font-size: 13px;
    gap: 15px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .footer-trust {
    flex-direction: column; /* stack vertically */
    font-size: 14px;
    gap: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}

/* ===============================
       Footer Media Queries & Dark Mode
   =============================== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .footer-container > div {
    margin: 10px 0;
    text-align: center;
  }
}


/* ===============================
   Terms & Conditions Page Styling
   =============================== */

.terms_and_conditions {
  background-color: #fafafa;
  padding: 60px 20px;
  font-family: "Noto Sans Bengali", "SolaimanLipi", sans-serif;
  color: #333;
  line-height: 1.8;
}

.terms_and_conditions-container {
  max-width: 950px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.terms_and_conditions-header {
  text-align: center;
  margin-bottom: 40px;
}

.terms_and_conditions-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.terms_and_conditions-header p {
  font-size: 1rem;
  color: #666;
}

.terms_and_conditions-floating_paragraph {
  font-size: 1rem;
  text-align: justify;
}

.terms_and_conditions-floating_paragraph p {
  margin-bottom: 25px;
  font-weight: 500;
}

.terms_and_conditions-floating_paragraph ul {
  list-style: none;
  padding-left: 0;
}

.terms_and_conditions-floating_paragraph ul li {
  background: #f9f9f9;
  border-left: 4px solid #007bff;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Terms title enhancement */
.terms_and_conditions-floating_paragraph ul li strong {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 6px;
  position: relative;
  padding-bottom: 4px;
  color: #000;
}

.terms_and_conditions-floating_paragraph ul li strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
}

.terms_and_conditions-floating_paragraph ul li:hover {
  background: #f0f8ff;
  border-left-color: #0056b3;
}

.terms_and_conditions-floating_paragraph a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.terms_and_conditions-floating_paragraph a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .terms_and_conditions-container {
    padding: 25px 20px;
  }

  .terms_and_conditions-header h1 {
    font-size: 1.6rem;
  }

  .terms_and_conditions-floating_paragraph ul li {
    font-size: 0.95rem;
  }
}

/* ===============================
   Privacy Policy Section
   =============================== */

.privacy_policy {
  padding: 60px 20px;
  background-color: #f9fafc;
  color: #222;
  font-family: 'Poppins', sans-serif;
}

.privacy_policy-container {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 40px 50px;
}

.privacy_policy-header {
  text-align: center;
  margin-bottom: 30px;
}

.privacy_policy-header h1 {
  font-size: 2.2rem;
  color: #2a2a2a;
  font-weight: 700;
}

.privacy_policy-header p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 8px;
}

.privacy_policy-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.privacy_policy-content ul {
  list-style: none;
  padding-left: 0;
}

.privacy_policy-content ul li {
  background: #f5f7fa;
  padding: 18px 20px;
  border-left: 5px solid #007bff;
  margin-bottom: 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.privacy_policy-content ul li:hover {
  background: #eef4ff;
  transform: translateY(-2px);
}

.privacy_policy-content ul li strong {
  color: #007bff;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 6px;
  position: relative;
  padding-bottom: 4px;
}

.privacy_policy-content ul li strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
}

.privacy_policy-content a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.privacy_policy-content a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy_policy-container {
    padding: 25px 20px;
  }

  .privacy_policy-header h1 {
    font-size: 1.8rem;
  }

  .privacy_policy-header p {
    font-size: 1rem;
  }

  .privacy_policy-content ul li {
    padding: 15px;
  }
}

/* ===============================
   Our Team Section
   =============================== */

.our-team-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.team-container {
  max-width: 1100px;
  margin: 0 auto;
}

.team-title {
  font-size: 36px;
  margin-bottom: 10px;
  color: #00b386;
}

.team-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-member {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 260px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100px;
  height: 120px;
  border-radius: 5rem;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #00b386;
}

.team-member h3 {
  margin: 10px 0 5px;
  font-size: 20px;
  color: #333;
}

.team-member .role {
  color: #00b386;
  font-weight: bold;
  margin-bottom: 10px;
}

.team-member .bio {
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
  .team-grid {
    flex-direction: column;
    align-items: center;
  }
}
.team-member .designation {
  font-size: 14px;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 5px;
}

.team-social {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.team-social a {
  font-size: 18px;
  color: #00b386;
  transition: all 0.3s ease;
}

.team-social a:hover {
  color: #084298;
  transform: translateY(-3px) scale(1.1);
}

/* Tablet view */
@media (max-width: 1024px) {
  .team-member {
    width: 240px;
  }
}

/* Mobile view */
@media (max-width: 600px) {
  .team-title {
    font-size: 28px;
  }

  .team-subtitle {
    font-size: 16px;
  }

  .team-member {
    width: 90%;
    padding: 20px;
  }

  .team-member img {
    width: 90px;
    height: 100px;
  }

  .team-member h3 {
    font-size: 18px;
  }

  .team-member .role,
  .team-member .designation {
    font-size: 13px;
  }

  .team-member .bio {
    font-size: 13px;
  }
}

/* ===============================
   Course Details Page Styling
   =============================== */

/* ---------- Filters ---------- */
.filter-buttons {
  margin-bottom: 20px;
  text-align: center;
}

.filter-btn {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  background-color: #ddd;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #2c3e50;
  color: #fff;
}

/* ===============================
   Course Details Page ONLY
   =============================== */

.course-details-main {
  background-color: #1c1c1c;
  flex: 1;
}

.course-details-main #course-details-container {
  width: 100%;
  background-color: #ffffff;
  padding: 40px 0;
}

.course-details-main .course_wrapper_new {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.course-container-new {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  padding: 30px;
  border-radius: 12px;
}

.course-items-new,
.course-curriculum-new {
  flex: 1 1 48%;
  padding: 20px;
  border-radius: 12px;
}

.course-img-new img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
}

.course-title-new {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2c3e50;
}

.course-description-new {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.level-new {
  background-color: #17a2b8;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  font-weight: bold;
  margin-bottom: 20px;
}

.instructor-label-new {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.instructor-info-new {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f5f5f5;
  padding: 15px;
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
}

.instructor-info-new img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.instructor-details-new {
  display: flex;
  flex-direction: column;
}

.instructor-name-new {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}

.instructor-bio-new {
  font-size: 0.95rem;
  color: #666;
}

/* Register Button States */
.register-new {
  margin-top: 20px;
  background-color: #007bff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.register-new:hover {
  background-color: #0056b3;
  transform: translateY(-1px);
}

.register-new.disabled {
  background: #9ca3af; /* grayish */
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none; /* make sure click disabled */
}

.course-curriculum-new {
  max-height: 550px;
  overflow-y: auto;
}

.course-curriculum-new::-webkit-scrollbar {
  width: 8px;
}

.course-curriculum-new::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}

.course-curriculum-new::-webkit-scrollbar-track {
  background: #eee;
}

.curriculum-title-new {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #2d3436;
}

.accordion-item-new {
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header-new {
  background: #e9ecef;
  padding: 14px 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-header-new:hover {
  background: #dfe6e9;
}

.accordion-content-new {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 18px;
  background: #fff;
}

.accordion-item-new.active-new .accordion-content-new {
  max-height: 500px;
  overflow-y: auto;
  padding: 15px 18px;
}

.accordion-content-new ul {
  padding-left: 20px;
  margin: 0;
}

.accordion-content-new ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #444;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .course-container-new {
    flex-direction: column;
  }

  .accordion-item-new.active-new .accordion-content-new {
    max-height: 300px;
  }
}
.course-price-box {
  margin: 14px 0;
  padding: 10px 12px;
  background: #f0fdf4;
  border-left: 4px solid #22c55e;
  border-radius: 6px;
}

.price-free {
  font-size: 20px;
  font-weight: 700;
  color: #166534;
}

.price-note {
  font-size: 15px;
  color: #555;
  margin-top: 4px;
}
.price-paid {
  font-size: 20px;
  font-weight: 700;
  color: #1d4ed8;
  margin: 0;
}

.price-upcoming {
  font-size: 16px;
  font-weight: 600;
  color: #f59e0b;
  margin: 0;
}
.course-disclaimer{
  margin-top: 14px;
  padding: 10px 12px;
  background: #fff3cd;
  border-left: 4px solid #ff9800;
  font-size: 13px;
  color: #ff0000;
  border-radius: 6px;
}
.course-price-box .original-price {
  text-decoration: line-through;
  color: #888;
  margin-bottom: 4px;
}

.course-price-box .discount {
  color: #e53935;
  margin-bottom: 4px;
}

.course-price-box .discounted-price {
  font-weight: bold;
  color: #2e7d32;
}

/* ========== ADMISSION FORM SECTION ========== */
.admission_container {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.admission_container h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #00bfff;
  font-size: 26px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  transition: border 0.3s;
}

input:focus, select:focus, textarea:focus {
  border-color: #00bfff;
  outline: none;
}

.checkbox-group {
    display: flex;
    gap: 8px;                 
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;  
    height: 18px;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    line-height: 1.2;
    cursor: pointer; 
    text-align: left;
}

.admission_container_button {
  width: 100%;
  padding: 12px;
  background-color: #00bfff;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.admission_container_button:hover {
  background-color: #0080cc;
}

.contact-header {
  text-align: center;
  padding: 40px 20px 20px;
  background: #f3f6ff;
  color: #0a0a23;
}

.contact-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  color: #333;
} 

input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

/* =======================
   Terms & Conditions Popup
   ======================= */
#termsPopup {
    display: none; /* default hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
    z-index: 9999;
    justify-content: center;
    align-items: center;
    display: flex; /* flex for centering content */
}

#termsPopup > div {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: popupFade 0.3s ease;
}

#termsPopup p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #333;
}

#termsPopup p a {
    color: blueviolet;
    text-decoration: underline;
}

#termsPopup button {
    padding: 10px 18px;
    margin: 0 8px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

#agreeTerms {
    background-color: #00bfff;
    color: #fff;
}

#agreeTerms:hover {
    background-color: #0080cc;
}

#cancelTerms {
    background-color: #f0f0f0;
    color: #333;
}

#cancelTerms:hover {
    background-color: #d6d6d6;
}

/* popup fade-in animation */
@keyframes popupFade {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Payment Number Box */
#paymentNumbers {
    display: none;
    background: #fafafa;
    padding: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    animation: fadeIn 0.3s ease;
    margin-bottom: 10px;
}

/* Payment Number text */
#paymentNumbers p {
    font-size: 15px;
    color: #333;
}

/* OfflinePayment Box */
#OfflinePayment {
    display: none;
    background: #fafafa;
    padding: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    animation: fadeIn 0.3s ease;
    margin-bottom: 10px;
}

/* Payment Number text */
#OfflinePayment p {
    font-size: 15px;
    color: #333;
}

/* Transaction label + input */
#transactionLabel {
    display: none;
    font-weight: 600;
}

#transaction {
    display: none;
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

.payment-warning{
  margin-top: 8px;
  padding: 10px;
  background: #fff3f3;
  border-left: 4px solid #e53935;
  color: #b71c1c;
  font-size: 14px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.payment-note {
  color: #666; /* light mode default */
  font-size: 13px;
  margin-bottom: 10px;
}

/* Mobile Devices (max 600px) */
@media (max-width: 600px) {
  .payment-warning {
    font-size: 13px;        /* লেখা একটু ছোট */
    padding: 8px;           /* কম padding */
    line-height: 1.5;       /* পড়তে আরামদায়ক */
    border-left-width: 3px; /* border একটু পাতলা */
    margin-top: 6px;
    margin-bottom: 8px;
  }
}

@media (max-width: 600px) {
  .payment-warning strong {
    display: inline-block;
    margin-top: 4px;
  }
}

/* Small Mobile Devices (max 360px) */
@media (max-width: 360px) {
  .payment-warning {
    font-size: 12.5px;
    padding: 7px;
  }
}

/* Desktop version */
@media (min-width: 768px) {
    #paymentNumbers {
        padding: 20px;
        border-radius: 12px;
    }

    #paymentNumbers p {
        font-size: 16px;
    }

    #OfflinePayment {
        padding: 20px;
        border-radius: 12px;
    }

    #OfflinePayment p {
        font-size: 16px;
    }

    #transaction {
        font-size: 16px;
        padding: 12px;
    }
}

/* Smooth fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .admission_container {
      margin: 20px;
      padding: 20px;
    }
  
    .admission_container h2 {
      font-size: 22px;
      margin-bottom: 20px;
    }

    input, select, textarea {
      font-size: 13px;
      padding: 9px;
    }

    .admission_container_button {
      font-size: 15px;
      padding: 10px;
    }
}

/* ================= CERTIFICATE PAGE (RESPONSIVE) ================= */

/* Main Box */
.verify-box {
  width: 500px;
  padding: 25px;
}

/* Title */
.title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
}

.title span {
  color: #198754;
}

/* Label */
.form-label {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

/* Input */
.form-control {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

/* Buttons */
.btn-submit {
  background-color: #198754;
  color: #fff;
  border: none;
  padding: 6px 15px;
  border-radius: 4px;
}

.btn-submit:hover {
  background-color: #157347;
}

/* Reset Button */
.btn-reset {
  border: 1px solid orange;
  color: orange;
  padding: 6px 15px;
  border-radius: 4px;
  background: transparent;
}

.btn-reset:hover {
  background-color: orange;
  color: #fff;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 768px) {
  .verify-box {
    width: 90%;
    margin: 60px auto;
    padding: 20px;
  }

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

/* Mobile */
@media (max-width: 480px) {
  .verify-box {
    width: 95%;
    margin: 40px auto;
    padding: 15px;
  }

  .title {
    font-size: 22px;
  }

  .form-control {
    height: 38px;
  }

  /* Buttons full width */
  .btn-submit,
  .btn-reset {
    width: 100%;
    margin-top: 10px;
  }
}