/* =========================================================
   EduSpark — Global Styles (common for all pages)
   Uses Bootstrap as base; this file adds brand theme + components
   ========================================================= */

/* ===== Theme Variables ===== */
:root{
  --bg: #F6FAFF;
  --surface: #ffffff;
  --elevated: rgba(255,255,255,.7);
  --text: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;

  --brand: #0EA5E9;      /* Sky / focus */
  --brand-2: #2563EB;    /* Indigo / primary */
  --brand-3: #10B981;    /* Emerald / accents */

  --radius: 18px;
  --shadow: 0 16px 40px rgba(2,6,23,.08);
  --glow: 0 18px 50px rgba(37,99,235,.25);
}

/* ===== Base ===== */
html,body{
  height:100%;
  background:var(--bg);
  color:var(--text);
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, "Helvetica Neue", Arial;
  scroll-behavior:smooth;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{max-width:100%; display:block;}
a{text-decoration:none}

/* ===== Utilities & Primitives ===== */
.btn-gradient{
  background:linear-gradient(90deg,var(--brand),var(--brand-2));
  border:none;color:#fff;border-radius:14px;padding:.9rem 1.2rem;font-weight:700;
  box-shadow:var(--glow); transition:transform .25s, box-shadow .25s, opacity .25s;
}
.btn-gradient:hover{opacity:.98; transform:translateY(-2px)}
.btn-ghost{
  border:1px solid var(--brand);
  color:var(--brand);
  border-radius:14px;padding:.9rem 1.2rem;background:rgba(14,165,233,.06);font-weight:600;transition:.25s;
}
.btn-ghost:hover{background:rgba(14,165,233,.12)}
.chip{border:1px solid var(--line);padding:.35rem .7rem;border-radius:999px;font-size:.85rem;color:var(--muted);backdrop-filter:saturate(140%) blur(2px)}
.cardx{background:var(--surface);border-radius:var(--radius);border:1px solid var(--line);box-shadow:var(--shadow);}
.glass{background:var(--elevated); backdrop-filter:saturate(160%) blur(10px); border:1px solid rgba(226,232,240,.7)}
.gradient-text{background:linear-gradient(90deg,var(--brand),var(--brand-2));-webkit-background-clip:text;background-clip:text;color:transparent;}
.gradient-border{position:relative;border-radius:20px;}
.gradient-border::before{content:"";position:absolute;inset:0;padding:1px;border-radius:inherit;background:linear-gradient(135deg,var(--brand),var(--brand-2));-webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);-webkit-mask-composite:xor;mask-composite:exclude;}
.badge-soft{background:rgba(37,99,235,.10)!important;color:var(--brand-2)!important;border:1px solid rgba(37,99,235,.25)!important}

/* ===== Navbar (shared) ===== */
.navbar{transition:background .35s ease, box-shadow .35s ease;}
.navbar.stuck{background:#fff!important; box-shadow:var(--shadow);}
.navbar-brand span{width:28px;height:28px;border-radius:8px;background:linear-gradient(135deg,var(--brand),var(--brand-2));display:inline-block;}
.nav-link{font-weight:600}
.nav-link:hover{color:var(--brand-2)!important}
.nav-link.active{color:var(--brand-2)!important}
.navbar-light .navbar-toggler-icon{
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(15,23,42,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== Hero (shared) ===== */
header.hero{position:relative;overflow:hidden;}
.hero-bg{position:absolute;inset:0;
  background:
    radial-gradient(60% 60% at 10% 10%, rgba(14,165,233,.20), transparent 60%),
    radial-gradient(60% 60% at 90% 30%, rgba(37,99,235,.20), transparent 60%),
    radial-gradient(50% 50% at 30% 90%, rgba(16,185,129,.10), transparent 60%);
  pointer-events:none;
}
.hero-grid{position:absolute;inset:-40px 0 0 0;background-image:radial-gradient(circle at 1px 1px, rgba(2,6,23,.07) 1px, transparent 0);background-size:22px 22px;opacity:.32;}
.blob{position:absolute;border-radius:50%;filter:blur(40px);opacity:.5;pointer-events:none}
.blob.b1{width:360px;height:360px;background:linear-gradient(135deg,var(--brand),transparent);left:-120px;top:-60px}
.blob.b2{width:300px;height:300px;background:linear-gradient(135deg,var(--brand-2),transparent);right:-80px;bottom:0}
.floating{animation:float 6s ease-in-out infinite;}
@keyframes float{0%{transform:translateY(0)}50%{transform:translateY(-10px)}100%{transform:translateY(0)}}

/* ===== Sections ===== */
section{padding:50px 0;}
.section-title{font-weight:800;letter-spacing:-.02em;}
.section-sub{color:var(--muted)}

/* ===== Features ===== */
.feature{transition:transform .28s ease, box-shadow .28s ease}
.feature:hover{transform:translateY(-8px); box-shadow:0 22px 48px rgba(2,6,23,.12)}
.feature-icon{width:56px;height:56px;border-radius:14px;display:grid;place-items:center;background:linear-gradient(135deg, rgba(14,165,233,.12), rgba(37,99,235,.12));border:1px solid rgba(37,99,235,.18)}

/* ===== Courses (listing + cards) ===== */
.course-card{transition:transform .32s ease, box-shadow .32s ease;overflow:hidden}
.course-card:hover{transform:translateY(-6px);box-shadow:0 22px 44px rgba(2,6,23,.12)}
.course-card img{height:220px;object-fit:cover}
.filter-controls .btn{padding:.55rem 1rem}
.filter-controls .btn.active{background:linear-gradient(90deg,var(--brand),var(--brand-2)); color:#fff; border-color:transparent}

/* Page header variants to help sticky observer on non-home pages */
/* .about-hero{padding:120px 0 40px;} */
.course-hero{padding:120px 0 20px; background:#F1F8FF;}

/* ===== Video Intro ===== */
.video-card{box-shadow:var(--glow); overflow:hidden}
.video-points li{margin-bottom:.4rem}

/* ===== Why Choose ===== */
.why .cardx{transition:transform .25s ease, box-shadow .25s ease;}
.why .cardx:hover{transform:translateY(-6px); box-shadow:0 22px 44px rgba(2,6,23,.12)}

/* ===== Testimonials ===== */
.ts-wrap{overflow:hidden}
.ts-track{display:flex;gap:1rem;transition:transform .5s ease}
.ts-item{min-width:360px; max-width: 420px}
.quote{position:relative;padding-left:36px}
.quote::before{content:"“";position:absolute;left:0;top:-14px;font-size:42px;line-height:1;color:var(--brand-2);opacity:.25}

/* ===== Pricing ===== */
.pricing .cardx{height:100%}

/* ===== FAQ (styled accordion) ===== */
.faq-accordion .accordion-item{
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 22px rgba(2,6,23,.05);
}
.faq-accordion .accordion-button{
  font-weight:600;
  gap:.5rem;
}
.faq-accordion .accordion-button::after{
  filter:contrast(.6);
}

/* ===== Footer ===== */
.footer a{color:var(--brand-3)}
.footer a:hover{text-decoration:underline}

/* ===== Reveal Animations ===== */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .7s ease,transform .7s cubic-bezier(.2,.7,.2,1)}
.reveal.show{opacity:1;transform:none}

/* ===== Responsive tweaks ===== */
@media (max-width: 992px){
  header.hero{padding:120px 0;}
  .ts-item{min-width:300px;}
	a.btn.btn-gradient.ms-lg-2.mt-2.mt-lg-0 {
    display: none;
}
}

/* ===== Accessibility / Motion ===== */
@media (prefers-reduced-motion: reduce){
  *{animation:none!important; transition:none!important}
}
/* ===== Floating Actions (Updated) ===== */

/* Common Fab buttons */
.fab{
  display: inline-grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(2,6,23,.1);
  transition: all 0.25s ease;
  position: fixed;
  z-index: 1100;
}

/* WhatsApp Button — Left Bottom */
.fab-whatsapp{
  left: 18px;
  bottom: 18px;
  background: #25D366;
  color: #fff;
  animation: wa-pulse 2s ease-out infinite;
}
.fab-whatsapp svg{ width: 28px; height: 28px; }

/* WhatsApp Popup */
.wa-pop{
  position: absolute;
  left: 68px;
  bottom: 50%;
  transform: translateY(50%) translateX(8px);
  background: #0f172a;
  color: #fff;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(2,6,23,.25);
  opacity: 0; visibility: hidden;
}
.wa-pop::after{
  content:"";
  position:absolute; left:-6px; top:50%;
  transform:translateY(-50%) rotate(45deg);
  width:12px; height:12px; background:#0f172a;
}
.fab-whatsapp.show-pop .wa-pop{
  visibility: visible;
  opacity: 1;
  animation: wa-pop-in .4s ease forwards;
}
@keyframes wa-pop-in{
  from{ opacity:0; transform:translateY(50%) translateX(16px); }
  to{ opacity:1; transform:translateY(50%) translateX(8px); }
}

/* WhatsApp Pulse Animation */
@keyframes wa-pulse{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%{ box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Scroll-to-Top Button — Right Bottom */
.fab-top{
  right: 18px;
  bottom: 18px;
  font-size: 22px;
  color: #fff;
  background: linear-gradient(90deg,var(--brand),var(--brand-2));
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  border: none;
}
.fab-top.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fab-top:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,99,235,.4);
}

/* Mobile adjustments */
@media (max-width: 480px){
  .fab{ width:48px; height:48px; }
  .wa-pop{ font-size:12px; left:60px; }
}
/* ===== Floating Buttons ===== */
.fab{
  position: fixed; z-index: 1200;
  display: grid; place-items: center;
  width: 54px; height: 54px; border-radius: 50%;
  border: none; cursor: pointer;
  box-shadow: 0 10px 28px rgba(2,6,23,.12);
  transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
}

/* WhatsApp — LEFT */
.fab-whatsapp{
  left: 18px; bottom: 18px;
  background: #25D366; color: #fff;
}
.fab-whatsapp svg{ width: 28px; height: 28px; }

/* WhatsApp popup label */
.wa-pop{
  position: absolute; left: 68px; bottom: 50%;
  transform: translateY(50%) translateX(8px);
  background: #0f172a; color: #fff; white-space: nowrap;
  padding: 8px 12px; border-radius: 12px; font-size: 13px;
  box-shadow: 0 8px 22px rgba(2,6,23,.25);
  opacity: 0; visibility: hidden; pointer-events: none;
}
.wa-pop::after{
  content: ""; position: absolute; left: -6px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px; height: 12px; background: #0f172a; border-radius: 2px;
}
.fab-whatsapp.show-pop .wa-pop{
  opacity: 1; visibility: visible;
}

/* Scroll-to-top — RIGHT with brand gradient */
.fab-top{
  right: 18px; bottom: 18px; color: #fff;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  font-size: 22px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
}
.fab-top.show{ opacity: 1; visibility: visible; transform: translateY(0); }
.fab-top:hover{ transform: translateY(-3px); box-shadow: 0 12px 26px rgba(37,99,235,.5); }

/* Small screens */
@media (max-width: 480px){
  .fab{ width: 48px; height: 48px; }
  .wa-pop{ left: 60px; font-size: 12px; }
}
/* ===== WhatsApp Notification Badge ===== */
.fab-whatsapp::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  background: #ff3b30;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 59, 48, 0.6);
  animation: pulse-dot 2s infinite ease-in-out;
}

/* Optional: For number badge instead of dot */
.fab-whatsapp[data-badge]:after {
  content: attr(data-badge);
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff3b30;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 0 6px rgba(255, 59, 48, 0.6);
  animation: pulse-badge 2s infinite ease-in-out;
}

/* Soft pulsing animation */
@keyframes pulse-dot {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes pulse-badge {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}
/* ===== New Footer ===== */
.site-footer{
  background: #4e576e; /* deep slate/indigo base */
  color: #e5e7eb;
  border-top: 1px solid rgba(226,232,240,.06);
  position: relative;
  overflow: hidden;
}
#footer a {
  color: white !important;
}


/* subtle glow background like your hero */
.site-footer::before{
  content:"";
  position:absolute; inset:-40px -10% auto -10%;
  height:260px;
  background:
    radial-gradient(50% 60% at 12% 0%, rgba(14,165,233,.18), transparent 60%),
    radial-gradient(50% 60% at 88% 10%, rgba(37,99,235,.18), transparent 60%);
  opacity:.6; pointer-events:none;
}

.footer-logo{
  width:28px; height:28px; border-radius:8px;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  display:inline-block; flex:0 0 auto;
  box-shadow: 0 6px 18px rgba(37,99,235,.35);
}

.footer-title{
  font-weight:700; letter-spacing:.2px; margin-bottom:.6rem;
}

.footer-sub{ color:#94a3b8; }

.footer-list{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:.35rem; }
.footer-link{
  color:#cbd5e1; text-decoration:none;
}
.footer-link:hover{ color:#fff; text-decoration:underline; }

.footer-newsletter{
  display:flex; gap:.5rem; align-items:center; margin-bottom:.25rem;
}
.footer-input{
  flex:1; height:44px; border-radius:12px; border:1px solid rgba(226,232,240,.2);
  background: rgba(255,255,255,.06); color:#fff; padding:0 .9rem;
  outline: none;
}
.footer-input::placeholder{ color:#94a3b8; }
.footer-btn{ height:44px; border-radius:12px; padding:0 1rem; }

.footer-contact{ color:#a3b2c6; }
.footer-contact .footer-link{ color:#a3b2c6; }
.footer-contact .footer-link:hover{ color:#fff; }

.social{
  width:36px; height:36px; border-radius:999px; display:grid; place-items:center;
  background: rgba(255,255,255,.06); color:#e2e8f0;
  border:1px solid rgba(226,232,240,.12);
  transition: transform .2s ease, background .2s ease;
}
.social:hover{ transform: translateY(-2px); background: rgba(255,255,255,.12); color:#fff; }

/* bottom bar */
.footer-bottom{
  border-top:1px solid rgba(226,232,240,.08);
  background: rgba(2,6,23,.4);
  padding: .9rem 0;
  margin-top: .25rem;
}
.footer-inline{
  list-style:none; display:flex; gap:1rem; padding:0;
}
.footer-inline .footer-link{ color:#cbd5e1; }
.footer-inline .footer-link:hover{ color:#fff; }

@media (max-width: 768px){
  .footer-newsletter{ flex-direction: column; align-items: stretch; }
  .footer-btn{ width:100%; }
}
/* ===== Always-solid, fixed navbar (no fading anywhere) ===== */
#siteNav,
.solid-navbar {
  background: #fff !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: none !important;
  z-index: 1200;
  border-bottom: 1px solid var(--line);
}

/* Brand cube */
#siteNav .navbar-brand span {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: inline-block;
}

/* Links */
#siteNav .nav-link {
  font-weight: 600;
  color: var(--text) !important;
}
#siteNav .nav-link:hover,
#siteNav .nav-link.active { color: var(--brand-2) !important; }

/* Prevent content from hiding under the fixed bar */       
@media (max-width: 991.98px){ }  /* mobile/tablet */
/* ===== Left-Aligned Page Banner (Unified for Blog & Courses) ===== */
.page-banner {
  background: linear-gradient(120deg, rgba(14,165,233,0.08), rgba(37,99,235,0.08));
  min-height: 280px; /* same height as blog */
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--line);
}

.page-banner h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

.page-banner p {
  color: var(--muted);
  max-width: 600px;
  font-size: 1.05rem;
}

/* Optional subtle grid background like the home hero */
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(2,6,23,.06) 1px, transparent 0);
  background-size: 22px 22px;
  opacity: .3;
  pointer-events: none;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .page-banner { min-height: 220px; padding: 80px 0 60px; }
  .page-banner h1 { font-size: 2rem; }
}


/* For Cross Breadcrump in responsive */
/* Default hamburger icon */
.navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3e%3cpath stroke='%23000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M2 4h12M2 8h12M2 12h12'/%3e%3c/svg%3e");
}

/* When menu is open → change icon to X */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='%23000' stroke-linecap='round' stroke-width='2' d='M2 2l12 12M14 2L2 14'/%3e%3c/svg%3e");
}

/* New home Page Faq Specific Tweak for this FAQ style to hide the default blue focus ring and shadow artifacts */
.faq-custom .accordion-button:focus {
    box-shadow: none;
    background-color: var(--surface);
    color: var(--brand-2);
}
.faq-custom .accordion-button:not(.collapsed) {
    background-color: var(--surface);
    color: var(--brand-2);
    box-shadow: none; 
}
/* Remove the default line if you want a cleaner look, or keep it */
.faq-custom .accordion-item {
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: transform 0.2s ease;
}
.faq-custom .accordion-item:hover {
    transform: translateY(-2px);
}

/* Contact page map style */
.map-wrapper {
    width: 100%;
    height: 490px; /* change height as you want */
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}
.page-banner {
  position: relative;
  min-height: 380px; /* adjust section height */
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-banner .banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes the image behave like a background */
  z-index: 1;
}

.page-banner .container {
  position: relative;
  z-index: 3;
}

/* Optional overlay for better text readability */
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2); /* light overlay */
  z-index: 2;
}

/* Pagination Style */
.kfa-pagination ul {
    display: flex;
    gap: 6px;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.kfa-pagination li a,
.kfa-pagination li span {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
    text-decoration: none;
    font-size: 14px;
}

.kfa-pagination li span.current {
    background-color: #000; /* main color diye change kore nio */
    color: #fff;
    border-color: #000;
}


/* Inner Blog Page Comment Form */
/* ===== Comment Form Wrapper ===== */
.comment-form {
  max-width: 700px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  font-size: 15px;
}

/* Logged in message + required text */
.comment-form .logged-in-as {
  font-size: 13px;
  margin-bottom: 1rem;
  color: #6c757d;
}

.comment-form .logged-in-as a {
  color: #0077ff;
  text-decoration: none;
}

.comment-form .logged-in-as a:hover {
  text-decoration: underline;
}

.comment-form .required-field-message {
  display: block;
  margin-top: .25rem;
}

/* Label + textarea wrapper */
.comment-form-comment {
  margin-bottom: 1.2rem;
}

.comment-form-comment label {
  display: block;
  font-weight: 600;
  margin-bottom: .35rem;
  color: #212529;
}

/* Textarea style */
.comment-form-comment textarea {
  width: 100%;
  min-height: 160px;
  padding: .8rem 1rem;
  border-radius: 10px;
  border: 1px solid #dcdfe4;
  resize: vertical;
  font-size: 14px;
  line-height: 1.5;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.comment-form-comment textarea:focus {
  outline: none;
  border-color: #0077ff;
  box-shadow: 0 0 0 3px rgba(0,119,255,0.12);
  background-color: #fbfcff;
}

/* Submit button area */
.form-submit {
  margin-top: .5rem;
}

.form-submit .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .6rem 1.8rem;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(135deg, #4b6bff, #2a9df4);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.form-submit .submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0,0,0,.18);
}

.form-submit .submit:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0,0,0,.16);
}

/* Small responsive tweaks */
@media (max-width: 768px) {
  .comment-form {
    margin: 1.5rem 1rem;
    padding: 1.2rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  }

  .comment-form .logged-in-as {
    font-size: 12px;
  }

  .comment-form-comment textarea {
    font-size: 13px;
  }

  .form-submit .submit {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .comment-form {
    margin: 1rem .5rem;
    border-radius: 12px;
  }
}

/* ===== Name / Email / Website fields ===== */
.comment-form-author,
.comment-form-email,
.comment-form-url {
  margin-bottom: 1rem;
}

.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
  display: block;
  font-weight: 600;
  margin-bottom: .35rem;
  color: #212529;
}

/* INPUT style */
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
  width: 100%;
  max-width: 100%;
  display: block;
  padding: .6rem 1rem;
  border-radius: 10px;
  border: 1px solid #dcdfe4;
  font-size: 14px;
  line-height: 1.4;
  box-sizing: border-box;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus {
  outline: none;
  border-color: #0077ff;
  box-shadow: 0 0 0 3px rgba(0,119,255,0.12);
  background-color: #fbfcff;
}

/* Mobile-friendly tweaks */
@media (max-width: 768px) {
  .comment-form-author,
  .comment-form-email,
  .comment-form-url {
    width: 100%;
  }
}

/* Inner Blog page Latest post sidebar */
.latest-post-card {
	background: linear-gradient(90deg, var(--brand), var(--brand-2)) !important;
	border-radius: 1rem;
	padding: 1.5rem;
	color: #fff;
}

.latest-post-card h6,
.latest-post-card a,
.latest-post-card span {
	color: #fff !important;
}


textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.form-control {
    font-size: 13px;
}

h1.display-5.fw-bold.lh-tight.mb-3 {
    margin-top: 20px;
}

.copy-right {
	padding-left: 20px;
}
.footer-bottom.mt-4.pt-3.d-flex.flex-column.flex-md-row.justify-content-between.align-items-center {
    border-radius: 15px;
}