html {
  scroll-behavior: smooth;
}
.site-header {
    /* position: fixed; */
    top: 0;
    width: 100%;
    background: white;
    z-index: 30;
    box-shadow: 0 2px 6px rgba(15,23,42,0.05);
    opacity: 0;
    transform: translateY(-30px);
    animation: navbarDrop 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.container {
    width: 90%;
    max-width: var(--container, 1200px);
    margin: 0 auto;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: #5D4037;
    text-align: center;
    display: flex;
}

.nav {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
    /* border: 1px solid red;; */
    /* width: 100%;; */

}

.nav a {
    color: #5D4037;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.6; 
}

.nav a.active,.nav a:hover {
    opacity: 1.0; 
    color: black;
}

.btn-primary {
    padding: 8px 16px;
    background: #5D4037;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    width: 13%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #5D4037;
    border-radius: 3px;
}

/* Navbar Drop Animation */
@keyframes navbarDrop {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 980px) {
    .hero-inner { flex-direction: column; text-align: center; }
    .hero-image { width: 80%; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .site-header{position: fixed;}
}

@media (max-width: 600px) {
    .nav {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background: white;
        flex-direction: column;
        width: 200px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        padding: 10px;
        border-radius: 4px;
    }

    .nav a {
        padding: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav.active {
        display: flex;
    }

    .header-inner { justify-content: space-between; }
    .dt-hero-content
    {
      margin-top: -80px;
    }
    
}
body {
    opacity: 0;
    transform: translateY(-30px);
    animation: navbarDrop 0.8s ease-out forwards;
    animation-delay: 0.2s;
    background-color: #f5f0eb;
    color: #5D4037;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* KEYFRAME */
@keyframes navbarDrop {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Root variables */
:root{
  --container: 1100px;
}

/* Basic resets */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  -webkit-font-smoothing:antialiased;
}

/* container */
.container{
  width:90%;
  max-width:var(--container);
  margin:0 auto;
}

/* Header base */
.site-header{
  background:white;
  position:sticky;
  top:0;
  width: 100%;
  z-index:30;
  box-shadow:0 2px 6px rgba(15,23,42,0.05);
}
.site-header {
    /* position: fixed; */
    top: 0;
    width: 100%;
    background: white;
    z-index: 30;
    box-shadow: 0 2px 6px rgba(15,23,42,0.05);
    opacity: 0;
    transform: translateY(-30px);
    animation: navbarDrop 0.8s ease-out forwards;
    animation-delay: 0.2s;
}
/* Inner layout */
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}

/* Logo */
.logo{
  font-weight:700; 
  font-size:1.25rem; 
  display:flex; 
  text-align:center;
}

/* Navigation */
.nav{
  display:flex; 
  gap:18px; 
  justify-content:flex-end; 
  width:100%;
}

.nav a{
  color:#5D4037; 
  text-decoration:none; 
  font-weight:500;
}

/* CTA Button */
.btn-primary {
  background-color: #5D4037;
  padding: 10px;
  color: #FFF5E1;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 600;
  margin-right: 30px;
  box-shadow: 0px 10px 25px rgba(0,0,0,.15);
}

.btn-primary:hover {
  background-color: #FFF5E1;
  color: #5D4037;
  box-shadow: 0px 10px 25px rgba(0,0,0,.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Mobile responsive */
@media (max-width:600px){
  .nav{display:none}
  .header-inner{justify-content:space-between}
}
/* HAMBURGER BUTTON */
.hamburger {
    width: 32px;
    height: 26px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 200;
}

.hamburger span {
    width: 100%;
    height: 4px;
    background: #5D4037;
    border-radius: 5px;
    transition: 0.3s ease;
}

/* Hamburger → Cross */
.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ------------------------------
   MOBILE MENU (Vertical Dropdown)
------------------------------- */
@media (max-width: 600px) {

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Hide menu by default */
    .nav {
        display: none;
        flex-direction: column !important;
        width: 100%;
        background: white;
        padding: 15px 0;
        gap: 18px;
        border-top: 1px solid #e0e0e0;
        text-align: center;
    }

    /* Show vertically when active */
    .nav.active {
        display: flex;
    }

    /* Make each link full-width centered */
    .nav a {
        padding: 10px 0;
        font-size: 1rem;
        border-bottom: none;
        display: block;
    }

    /* Fix header layout */
    .header-inner {
        justify-content: space-between;
    }
}

/* MOBILE DROPDOWN MENU */
@media (max-width: 600px) {

  .nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 15px;
    background: white;
    flex-direction: column;
    width: 200px;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    z-index: 100;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .hamburger {
    display: flex;
  }

  /* Fix CTA alignment */
  #cta {
    margin-right: 0;
  }
}
/* Hide CTA on screens below 1024px (tablets & mobile) */
@media (max-width: 1024px) {
    #cta {
        display: none !important;
    }
}

/* Show CTA on laptop/desktop */
@media (min-width: 1025px) {
    #cta {
        display: inline-block !important;
    }
}

/* footer */
/* FOOTER MAIN */
.dt-footer {
  background: #5D4037; /* Rich Brown */
  color: #FFF5E1; /* Cream */
  padding: 60px 0 20px;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

/* Footer Logo */
.footer-logo {
  font-size: 28px;
  color: #FFF5E1;
  font-weight: 800;
  margin-bottom: 15px;
}

/* Description */
.footer-desc {
  font-size: 14px;
  color: #fbe8cb;
  margin-bottom: 20px;
}

/* Social Icons */
.social-icons i {
  font-size: 20px;
  margin-right: 12px;
  cursor: pointer;
  transition: 0.3s;
}
.social-icons
{
  color: #FFF5E1;
}
.social-icons i:hover {
  color: #f58f00; /* orange accent */
}

/* Columns */
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #FFF5E1;
}

.footer-col ul {
  padding: 0;
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #fbe8cb;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col ul li a {
  color: #fbe8cb;
  transition: 0.3s;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #f58f00;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}

.footer-bottom p {
  font-size: 14px;
  color: #fbe8cb;
}

.policy-links a {
  font-size: 14px;
  color: #fbe8cb;
  margin-left: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.policy-links a:hover {
  color: #f58f00;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

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

/* =========================
   DUTYTAP HERO SECTION
========================= */

.dt-hero {
  background: #f5f0eb;
  padding: 80px 0;
}

.dt-hero-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .dt-hero-container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* LEFT CONTENT */
.dt-hero-content h1 {
  font-size: 36px;
  line-height: 1.2;
  color: #5D4037;
  font-weight: 700;
  margin-bottom: 20px;
}

.dt-hero-content h1 span {
  color: #000;
  font-weight: 600;
}

.dt-hero-subtext {
  font-size: 16px;
  color: #333;
  max-width: 520px;
  margin-bottom: 25px;
}

.dt-hero-points {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.dt-hero-points li {
  font-size: 15px;
  color: #000;
  margin-bottom: 10px;
}

/* ACTION BUTTONS */
.dt-hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.dt-btn-primary {
  background: #5D4037;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dt-btn-primary:hover {
  background: #4b332c;
}

.dt-btn-secondary {
  border: 2px solid #5D4037;
  color: #5D4037;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dt-btn-secondary:hover {
  background: #5D4037;
  color: #fff;
}

/* RIGHT VISUAL */
.dt-hero-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
/* =========================
   HOW DUTYTAP HELPS
========================= */

.dt-help {
  background: #fff;
  padding: 80px 0;
}

.dt-help-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 5%;
  text-align: center;
}

.dt-help h2 {
  font-size: 32px;
  color: #5D4037;
  font-weight: 700;
  margin-bottom: 15px;
}

.dt-help-subtitle {
  font-size: 15px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 50px;
}

/* GRID */
.dt-help-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 768px) {
  .dt-help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CARD */
.dt-help-card {
  background: #f5f0eb;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dt-help-card h3 {
  font-size: 18px;
  color: #5D4037;
  margin-bottom: 10px;
}

.dt-help-card p {
  font-size: 14.5px;
  color: #000;
  line-height: 1.6;
}

/* HOVER */
.dt-help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
/* =========================
   TRAINING PATTERN SECTION
========================= */

.dt-pattern {
  background: #f5f0eb;
  padding: 80px 0;
}

.dt-pattern-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 5%;
  text-align: center;
}

.dt-pattern h2 {
  font-size: 32px;
  color: #5D4037;
  font-weight: 700;
  margin-bottom: 15px;
}

.dt-pattern-subtitle {
  font-size: 15px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 60px;
}

/* STEPS GRID */
.dt-pattern-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .dt-pattern-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* STEP CARD */
.dt-step {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dt-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

/* STEP NUMBER */
.dt-step-number {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #5D4037;
  margin-bottom: 12px;
}

/* STEP TITLE */
.dt-step h3 {
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}

/* STEP TEXT */
.dt-step p {
  font-size: 14.5px;
  color: #333;
  line-height: 1.6;
}
/* =========================
   COURSE CURRICULUM
========================= */

.dt-curriculum {
  background: #fff;
  padding: 80px 0;
}

.dt-curriculum-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 5%;
  text-align: center;
}

.dt-curriculum h2 {
  font-size: 32px;
  color: #5D4037;
  font-weight: 700;
  margin-bottom: 15px;
}

.dt-curriculum-subtitle {
  font-size: 15px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 50px;
}

/* GRID */
.dt-curriculum-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 768px) {
  .dt-curriculum-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ITEM */
.dt-curriculum-item {
  background: #f5f0eb;
  padding: 28px;
  border-radius: 14px;
  text-align: left;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.dt-curriculum-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.08);
}

.dt-curriculum-item h3 {
  font-size: 18px;
  color: #5D4037;
  margin-bottom: 12px;
}

/* LIST */
.dt-curriculum-item ul {
  padding-left: 18px;
}

.dt-curriculum-item li {
  font-size: 14.5px;
  color: #000;
  margin-bottom: 8px;
}
/* =========================
   UPCOMING BATCHES
========================= */

.dt-batches {
  background: #f5f0eb;
  padding: 80px 0;
}

.dt-batches-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 5%;
  text-align: center;
}

.dt-batches h2 {
  font-size: 32px;
  color: #5D4037;
  font-weight: 700;
  margin-bottom: 12px;
}

.dt-batches-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 40px;
}

/* TABLE WRAPPER */
.dt-batch-table-wrapper {
  overflow-x: auto;
}

/* TABLE */
.dt-batch-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.dt-batch-table th,
.dt-batch-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 14.5px;
}

.dt-batch-table thead {
  background: #5D4037;
  color: #fff;
}

.dt-batch-table tbody tr {
  border-bottom: 1px solid #eee;
}

.dt-batch-table tbody tr:hover {
  background: #faf7f4;
}

/* STATUS */
.dt-batch-table td.open {
  color: green;
  font-weight: 600;
}

.dt-batch-table td.limited {
  color: #d35400;
  font-weight: 600;
}

.dt-batch-table td.upcoming {
  color: #555;
  font-weight: 600;
}

/* CTA */
.dt-batch-cta {
  margin-top: 40px;
}
/* =========================
   PRICING SECTION
========================= */

.dt-pricing {
  background: #fff;
  padding: 80px 0;
}

.dt-pricing-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 5%;
  text-align: center;
}

.dt-pricing h2 {
  font-size: 32px;
  color: #5D4037;
  font-weight: 700;
  margin-bottom: 10px;
}

.dt-pricing-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 50px;
}

/* GRID */
.dt-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 900px) {
  .dt-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CARD */
.dt-price-card {
  background: #f5f0eb;
  padding: 35px 25px;
  border-radius: 14px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dt-price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* FEATURED */
.dt-price-card.featured {
  background: #fff;
  border: 2px solid #5D4037;
}

.dt-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #5D4037;
  color: #fff;
  padding: 5px 14px;
  font-size: 12px;
  border-radius: 20px;
}

/* TEXT */
.dt-price-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.dt-plan-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
}

/* PRICE */
.dt-price {
  margin-bottom: 20px;
}

.dt-old-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  margin-right: 8px;
}

.dt-new-price {
  font-size: 26px;
  font-weight: 700;
  color: #5D4037;
}

/* LIST */
.dt-price-card ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
}

.dt-price-card li {
  font-size: 14.5px;
  margin-bottom: 10px;
}

/* NOTE */
.dt-pricing-note {
  font-size: 13px;
  color: #666;
  margin-top: 30px;
}


/* COURSE TABS */
/* COURSE TABS – MOBILE FIRST */
.dt-pricing-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 16px 8px;
  margin-bottom: 40px;

  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar */
.dt-pricing-tabs::-webkit-scrollbar {
  display: none;
}
.dt-pricing-tabs {
  scrollbar-width: none;
}

/* DESKTOP CENTERING FIX */
@media (min-width: 992px) {
  .dt-pricing-tabs {
    overflow-x: visible;        /* 🔑 key fix */
    justify-content: center;    /* center pills */
  }
}

.dt-course-tab {
  flex-shrink: 0;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid #5D4037;
  background: #fff;
  color: #5D4037;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.dt-course-tab.active {
  background: #5D4037;
  color: #fff;
}


/* PRICE ANIMATIONS */
.dt-price {
  position: relative;
}

.dt-old-price,
.dt-new-price {
  display: inline-block;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.price-change .dt-old-price {
  transform: translateY(-6px);
  opacity: 0.6;
}

.price-change .dt-new-price {
  animation: popPrice 0.45s ease;
}

@keyframes popPrice {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  60% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* CARD PULSE */
.dt-price-card.price-flash {
  animation: flashBg 0.5s ease;
}

@keyframes flashBg {
  0% {
    box-shadow: 0 0 0 rgba(93,64,55,0.0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(93,64,55,0.12);
  }
  100% {
    box-shadow: 0 0 0 rgba(93,64,55,0.0);
  }
}

/* Rolling number animation */
.dt-new-price {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.roll-animate {
  animation: rollUp 0.6s ease forwards;
}

@keyframes rollUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


/* OUTER SCROLL CONTAINER */
.dt-pricing-scroll {
  overflow-x: auto;
  padding: 10px 0 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* hide scrollbar */
.dt-pricing-scroll::-webkit-scrollbar {
  display: none;
}
.dt-pricing-scroll {
  scrollbar-width: none;
}

/* INNER GRID */
.dt-pricing-grid {
  display: flex;
  gap: 20px;
  padding: 0 16px;
  min-width: max-content;
}
.dt-price-card {
  min-width: 280px;
  max-width: 300px;
  scroll-snap-align: center;

  display: flex;
  flex-direction: column;
}

/* FORCE FEATURE LIST ALIGNMENT */
.dt-price-card ul {
  flex-grow: 1;
}

/* BUTTONS STICK TO BOTTOM */
.dt-price-card a {
  margin-top: auto;
}
@media (min-width: 992px) {
  .dt-pricing-scroll {
    overflow: visible;
  }

  .dt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: auto;
  }

  .dt-price-card {
    min-width: auto;
    max-width: none;
  }
}


/* =========================
   TESTIMONIALS SECTION
========================= */

.dt-testimonials {
  background: #f5f0eb;
  padding: 80px 0;
}

.dt-testimonials-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 5%;
  text-align: center;
}

.dt-testimonials h2 {
  font-size: 32px;
  color: #5D4037;
  font-weight: 700;
  margin-bottom: 10px;
}

.dt-testimonials-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 45px;
}

/* SLIDER */
.dt-testimonial-slider {
  overflow: hidden;
}

.dt-testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* CARD */
.dt-testimonial-card {
  min-width: 280px;
  max-width: 280px;
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.dt-testimonial-card p {
  font-size: 14.5px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 15px;
}

.dt-testimonial-card h4 {
  font-size: 15px;
  color: #5D4037;
  margin-bottom: 3px;
}

.dt-testimonial-card span {
  font-size: 13px;
  color: #666;
}
/* =========================
   FAQ SECTION
========================= */

.dt-faqs {
  background: #ffffff;
  padding: 80px 0;
}

.dt-faqs-container {
  max-width: 900px;
  margin: auto;
  padding: 0 5%;
}

.dt-faqs h2 {
  text-align: center;
  font-size: 32px;
  color: #5D4037;
  margin-bottom: 10px;
}

.dt-faqs-subtitle {
  text-align: center;
  font-size: 15px;
  color: #555;
  margin-bottom: 50px;
}

/* FAQ ITEM */
.dt-faq-item {
  border-bottom: 1px solid #ddd;
}

.dt-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dt-faq-question span {
  font-size: 22px;
  color: #5D4037;
  transition: transform 0.3s ease;
}

.dt-faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 14.5px;
  color: #444;
  line-height: 1.6;
  transition: max-height 0.4s ease;
  padding-right: 25px;
}

/* ACTIVE STATE */
.dt-faq-item.active .dt-faq-answer {
  max-height: 200px;
  margin-bottom: 18px;
}

.dt-faq-item.active .dt-faq-question span {
  transform: rotate(45deg);
}
.cta-section {
  background: #f5f0eb;
  padding: 80px 20px;
}

.cta-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  background: #ffffff;
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.cta-left h2 {
  font-size: 34px;
  color: #5D4037;
  margin-bottom: 16px;
}

.cta-left p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.cta-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.cta-points li {
  margin-bottom: 10px;
  font-weight: 500;
}

.whatsapp-btn {
  display: inline-block;
  background:  #075e54;
  color: 	#dcf8c6;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: 3px solid 	#25d366;
}

.whatsapp-btn:hover {
  opacity: 0.9;
}

/* RIGHT SIDE */
.cta-right {
  display: grid;
  gap: 24px;
}

/* CALENDAR */
.calendar-box {
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 20px;
}

.calendar-box h3 {
  margin-bottom: 12px;
  color: #5D4037;
}

.calendar-box iframe {
  width: 100%;
  height: 420px;
  border-radius: 12px;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .cta-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .cta-left h2 {
    font-size: 28px;
  }
}

/* SMTP SECTION */
.smtp-section {
  background: #f5f0eb;
  padding: 100px 20px;
}

.smtp-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.smtp-info h2 {
  font-size: 34px;
  color: #5D4037;
  margin-bottom: 16px;
}

.smtp-info p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 24px;
}

.smtp-info ul {
  list-style: none;
  padding: 0;
}

.smtp-info li {
  margin-bottom: 12px;
  font-weight: 500;
}

/* FORM BOX */
.smtp-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.smtp-form-box h3 {
  color: #5D4037;
  margin-bottom: 24px;
  font-size: 22px;
}

/* FLOATING INPUTS */
.form-group {
  position: relative;
  margin-bottom: 22px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
  background: transparent;
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 12px;
  color: #777;
  font-size: 13px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.3s;
  background: #fff;
  padding: 0 6px;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label {
  top: -8px;
  font-size: 12px;
  color: #5D4037;
}

/* BUTTON */
.smtp-form-box button {
  width: 100%;
  padding: 14px;
  background: #5D4037;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

.smtp-form-box button:hover {
  opacity: 0.95;
}

/* PRIVACY TEXT */
.privacy-text {
  font-size: 12px;
  color: #666;
  margin-top: 14px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .smtp-container {
    grid-template-columns: 1fr;
  }

  .smtp-info h2 {
    font-size: 28px;
  }
}
/* ---------- FORM BUTTON LOADER ---------- */
.submit-btn {
  position: relative;
  width: 100%;
  padding: 14px;
  background: #5D4037;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
}

.submit-btn.loading .btn-text {
  visibility: hidden;
}

.submit-btn.loading .loader {
  display: block;
}

.loader {
  display: none;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- SUCCESS STATE ---------- */
.success-box {
  display: none;
  text-align: center;
  animation: fadeIn 0.6s ease forwards;
}

.success-box h4 {
  color: #5D4037;
  margin-top: 16px;
}

.success-box p {
  color: #555;
  margin-top: 6px;
}

/* CHECKMARK ANIMATION */
.checkmark-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #5D4037;
  margin: 0 auto;
  position: relative;
}

.checkmark {
  width: 22px;
  height: 38px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 14px;
  left: 22px;
  animation: drawCheck 0.5s ease forwards;
}

@keyframes drawCheck {
  from { height: 0; width: 0; }
  to { height: 38px; width: 22px; }
}

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






/* testing for dynamic pages of course curriculum and pricing */
:root {
  --bg-light: #f7f1ea;
  --card-bg: #ffffff;
  --primary: #6b4a3a;
  --primary-light: #f3e6d8;
  --text-dark: #4a3a2f;
  --text-muted: #8b7b70;
  --border-soft: #e6ddd4;
  --radius-lg: 18px;
  --radius-pill: 999px;
}
.curriculum-section {
  background: var(--bg-light);
  padding: 80px 6%;
  text-align: center;
}

.curriculum-section h2 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 10px;
}

.subtitle {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 16px;
}

/* MOBILE MODULE SCROLL */
@media (max-width: 768px) {

  .curriculum-wrapper {
    grid-template-columns: 1fr;
  }

  /* MODULE LIST → horizontal */
  .module-list {
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .module-list::-webkit-scrollbar {
    display: none;
  }

  .module-card {
    min-width: 260px;
    scroll-snap-align: start;
  }

  /* DETAILS BOX spacing */
  .module-details {
    margin-top: 20px;
  }
}


.course-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Curriculum Card */
.curriculum-card {
  max-width: 900px;
  margin: auto;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.curriculum-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.curriculum-card ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

.curriculum-card li {
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 15px;
}

.download-btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .curriculum-card {
    padding: 25px;
  }

  .curriculum-section h2 {
    font-size: 28px;
  }
}



.curriculum-v2 {
  background: #f5f0eb;
  padding: 90px 6%;
  text-align: center;
}

.curriculum-v2 h2 {
  font-size: 34px;
  color: #5D4037;
  margin-bottom: 8px;
}

.curriculum-v2 .subtitle {
  color: #6d5b52;
  margin-bottom: 40px;
}

/* COURSE SWITCH */
.course-switch {
  display: flex;
  gap: 12px;
  justify-content: center;
  overflow-x: auto;
  margin-bottom: 50px;
}

.course-switch::-webkit-scrollbar {
  display: none;
}

.course-btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid #d8cfc8;
  background: #fff;
  color: #5D4037;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.course-btn.active {
  background: #5D4037;
  color: #fff;
  border-color: transparent;
}

/* GRID */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.stage-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 24px;
  text-align: left;
  border: 1px solid #eee3db;
  transition: transform 0.25s ease;
}

.stage-card:hover {
  transform: translateY(-6px);
}

.stage-number {
  font-size: 12px;
  letter-spacing: 1px;
  color: #8d7b71;
  margin-bottom: 6px;
}

.stage-card h4 {
  color: #5D4037;
  margin-bottom: 10px;
  font-size: 18px;
}

.stage-card ul {
  padding-left: 18px;
}

.stage-card li {
  font-size: 14px;
  color: #3e2f28;
  margin-bottom: 6px;
}

/* MOBILE */
@media (max-width: 900px) {
  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .curriculum-grid {
    grid-template-columns: 1fr;
  }
}

.curriculum-section {
  background: #f5f0eb;
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #5D4037;
  margin-bottom: 40px;
}

.section-title span {
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin-top: 8px;
}

/* COURSE PILLS */
.course-tabs {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 40px;
}
.course-tabs::-webkit-scrollbar {
  display: none;
}
.course-tabs {
  scrollbar-width: none;
}
.course-tab {
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .course-tabs {
    justify-content: center;
    overflow-x: visible;
  }
}


.course-tab {
  flex-shrink: 0;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #5D4037;
  background: white;
  color: #5D4037;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
} 

.course-tab.active {
  background: linear-gradient(135deg, #5D4037, #3e2723);
  color: #fff;
}

/* LAYOUT */
.curriculum-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
}

/* MODULE LIST */
.module-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.module-card {
  background: white;
  border-radius: 14px;
  padding: 18px;
  cursor: pointer;
  border-left: 5px solid transparent;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.module-card.active {
  border-left-color: #5D4037;
  background: linear-gradient(135deg, #fff, #fdf7f4);
}

.module-card h4 {
  margin: 0;
  font-size: 16px;
}

.module-card span {
  font-size: 13px;
  opacity: 0.7;
}

/* DETAILS PANEL */
.module-details {
  background: linear-gradient(135deg, #5D4037, #3e2723);
  color: #fff;
  border-radius: 20px;
  padding: 30px;
}

.module-details h3 {
  margin-bottom: 20px;
}

.module-details ul {
  padding-left: 18px;
  margin-bottom: 30px;
}

.module-details li {
  margin-bottom: 10px;
}

.download-btn {
  display: inline-block;
  background: #fff;
  color: #5D4037;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .curriculum-wrapper {
    grid-template-columns: 1fr;
  }
}


/* Smooth fade animation */
.fade-out {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s ease;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.45s ease;
}

/* Module list animation wrapper */
.module-list,
.module-details {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* When switching course */
.switching {
  opacity: 0;
  transform: translateY(12px);
}

/* Module card entrance */
.module-card {
  animation: cardEnter 0.45s ease forwards;
}

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


/* form validation */
.error-text {
  color: #d32f2f;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.input-error {
  border: 1.5px solid #d32f2f !important;
}
.form-group {
  position: relative;
}

.form-group .error-text {
  display: none;
  color: #d32f2f;
  font-size: 12px;
  margin-top: 6px;
}

.form-group input.input-error,
.form-group select.input-error {
  border-color: #d32f2f !important;
}
/* popup message design */
.form-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.form-popup.show {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: #fff;
  padding: 30px 35px;
  border-radius: 14px;
  text-align: center;
  max-width: 380px;
  animation: scaleIn 0.4s ease;
}

.popup-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #5D4037;
}

.popup-box p {
  font-size: 14px;
  color: #444;
}

@keyframes scaleIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


/* ===== SUBMIT LOADER ===== */
.submit-btn {
  position: relative;
  overflow: hidden;
}

.submit-btn .loader {
  width: 18px;
  height: 18px;
  border: 2.5px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  display: none;
  animation: spin 0.8s linear infinite;
}

.submit-btn.loading .btn-text {
  visibility: hidden;
}

.submit-btn.loading .loader {
  display: inline-block;
}

.submit-btn.loading {
  pointer-events: none;
  opacity: 0.85;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* =========================
   FULL SCREEN LOADER
========================= */
.global-loader {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.global-loader.show {
  opacity: 1;
  visibility: visible;
}

.loader-circle {
  width: 60px;
  height: 60px;
  border: 5px solid #eee;
  border-top-color: #5D4037;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
/* Fullscreen loader */
.page-loader {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.page-loader.active {
  display: flex;
}

.page-loader .spinner {
  width: 60px;
  height: 60px;
  border: 5px solid #ddd;
  border-top-color: #0d6efd;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =========================
   POPUP
========================= */
.form-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 10001;
  transition: all 0.3s ease;
}

.form-popup.show {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: #fff;
  padding: 30px 35px;
  border-radius: 14px;
  text-align: center;
  max-width: 380px;
  animation: scaleIn 0.4s ease;
}

.popup-box h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #5D4037;
}

.popup-box p {
  font-size: 14px;
  color: #444;
}

@keyframes scaleIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* FULLSCREEN OVERLAY */
.form-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* SHOW STATE */
.form-popup.show {
  opacity: 1;
  pointer-events: auto;
}

/* POPUP CARD */
.popup-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 14px;
  width: 90%;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  animation: scaleIn 0.3s ease;
}

/* ICON */
.popup-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}

/* SUCCESS */
.form-popup.success .popup-icon {
  background: #22c55e;
}

/* ERROR */
.form-popup.error .popup-icon {
  background: #ef4444;
}

/* TEXT */
.popup-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.popup-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.4;
}

/* ANIMATION */
@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* FULL SCREEN LOCK */
#globalLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  background: rgba(0, 0, 0, 0.65);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 2147483647; /* 🔥 higher than anything */
}

#globalLoader.show {
  display: flex;
}

/* Prevent background scroll */
body.loading {
  overflow: hidden;
}

.loader-box {
  background: #fff;
  padding: 28px 36px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.spinner {
  width: 46px;
  height: 46px;
  border: 5px solid #e5e7eb;
  border-top-color: #4f46e5;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin-bottom: 14px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
