html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  font-weight: 400; 
  background: #fff;
}

/* =========================
   GLOBAL STYLE
========================= */
p {
  font-size: 16px;
  line-height: 1.75;
  color: #4a4a4a;
  font-weight: 500; 
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.3;
  font-weight: 700;
}

h3 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
}

.hero-section{
    background: linear-gradient(
        -45deg,
        #1e3a8a,
        #0a2540,
        #007cf0,
        #00c6ff
    );

    background-size:400% 400%;
    animation:heroGradient 12s ease infinite;

    padding:100px 20px;
}

@keyframes heroGradient{
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}

.hero-title{
    font-size:3rem;
    font-weight:700;
    margin-bottom:15px;
    color:#ffffff;
    text-shadow:0 0 20px rgba(0,198,255,.4);
}

.hero-subtitle{
    font-size:1.15rem;
    color:rgba(255,255,255,0.85);
    max-width:700px;
    margin:0 auto 40px;
     padding-top:20px;
}

.input-wrapper{
    position:relative;
    max-width:600px;
    margin:0 auto;
}

.typing-input{
    width:100%;
    height:160px;
    border:none !important;
    border-radius:24px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    padding:0 80px 0 25px;
    font-size:1.05rem;
    position:relative;
    z-index:1;
}

.typing-input:focus{
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    outline:none;
}

.typing-placeholder{
    position:absolute;
    left:25px;
    right:80px;
    top:0;
    height:80px;

    display:flex;
    align-items:center;

    color:#6c757d;
    font-size:1.05rem;

    pointer-events:none;
    z-index:2;
    overflow:hidden;
    white-space:nowrap;
}

.cursor{
    display:inline-block;
    width:2px;
    height:20px;
    background:#333;
    margin-left:2px;
    animation:blink .8s infinite;
}

.submit-btn{
    position:absolute;
    right:14px;
    top:80%;
    transform:translateY(-50%);

    width:44px;
    height:44px;

    border:none;
    border-radius:50%;

    background:#0d6efd;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:3;
    box-shadow:0 6px 16px rgba(13,110,253,.3);
}

.submit-btn i{
    font-size:1.1rem;
}

@keyframes blink{
    50%{
        opacity:0;
    }
}

.hero-actions{
    margin-top:25px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.hero-btn{
    text-decoration:none;
    padding:12px 28px;
    border-radius:30px;
    font-weight:600;
    transition:all .3s ease;
}

.white-btn{
    background:#ffffff;
    color:#0d6efd;
    border:1px solid rgba(255,255,255,.4);
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.white-btn:hover{
    transform:translateY(-2px);
    color:#0d6efd;
    background:#f8f9fa;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.primary-btn{
    background:#0d6efd;
    color:#fff;
}

.primary-btn:hover{
    background:#0b5ed7;
    color:#fff;
}

.secondary-btn{
    background:#fff;
    color:#0d6efd;
    border:2px solid #0d6efd;
}

.secondary-btn:hover{
    background:#0d6efd;
    color:#fff;
}

@media (max-width:768px){

    .hero-section{
        padding:70px 15px;
    }

    .hero-title{
        font-size:2rem;
    }

    .hero-subtitle{
        font-size:1rem;
    }

    .typing-input{
        height:65px;
    }

    .typing-placeholder{
        height:65px;
        font-size:.95rem;
    }

    .submit-btn{
        width:40px;
        height:40px;
    }
}
/* =========================
   HERO + SECTIONS
========================= */

.hero {
  background: linear-gradient(135deg, #eef2ff, #f8f9fa);
  padding: 80px 0;
}

.section-padding {
  padding: 60px 0;
}

.cta-section {
  background: #f1f5ff;
  padding: 60px 0;
  text-align: center;
}

.btn-custom {
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 8px;
}

/* =========================
   HERO TEXT
========================= */

.hero-text {
  font-size: 4.4rem;
  line-height: 1.05;
  max-width: 600px;
}

/* =========================
   IMAGE CLUSTER (DESKTOP)
========================= */

.image-cluster {
  position: relative;
  width: 350px;
  height: 350px;
  margin: auto;
}

.img-box {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: visible;
  transition: transform 0.4s ease;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Positioning */
.img1 { top: 0; left: 35%; }
.img2 { top: 30%; left: 80%; }
.img3 { top: 70%; left: 80%; }
.img4 { top: 30%; left: 0; }
.img5 { top: 80%; left: 0; }

/* Icon */
.icon {
  position: absolute;
  top: 8px;
  right: 8px;
    background: #1591EA;
  width: 36px;
  height: 36px;

  
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 10px rgba(0,0,0,0.12);

  opacity: 0;
  transform: scale(0.6);
}
.icon i {
  color: #8DB3D2;
}

/* =========================
   ANIMATION KEYFRAMES
========================= */

@keyframes highlightCycle {
  0%   { transform: rotate(0deg) scale(1); }
  8%   { transform: rotate(6deg) scale(1.15); }
  15%  { transform: rotate(10deg) scale(1.32); }
  22%  { transform: rotate(10deg) scale(1.32); }
  30%  { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(0deg) scale(1); }
}

@keyframes iconCycle {
  0%   { opacity: 0; transform: scale(0.6); }
  8%   { opacity: 1; transform: scale(0.9); }
  15%  { opacity: 1; transform: scale(1.1); }
  22%  { opacity: 1; transform: scale(1); }
  30%  { opacity: 0; transform: scale(0.6); }
  100% { opacity: 0; transform: scale(0.6); }
}

/* Sequence */
.img1 { animation: highlightCycle 10s infinite 0s; }
.img3 { animation: highlightCycle 10s infinite 2s; }
.img4 { animation: highlightCycle 10s infinite 4s; }
.img2 { animation: highlightCycle 10s infinite 6s; }
.img5 { animation: highlightCycle 10s infinite 8s; }

.img1 .icon { animation: iconCycle 10s infinite 0s; }
.img3 .icon { animation: iconCycle 10s infinite 2s; }
.img4 .icon { animation: iconCycle 10s infinite 4s; }
.img2 .icon { animation: iconCycle 10s infinite 6s; }
.img5 .icon { animation: iconCycle 10s infinite 8s; }

@media (max-width: 768px) {
   p {
    font-size: 14px;
    line-height: 1.65;
  }
  .business-heading {
    margin-top: 80px;
  }
  .text-content {
    padding: 0 20px;
    text-align: center; /* optional but looks better on mobile */
  }

  .text-content h2 {
    margin-top: 30px;
  }
}

/* =========================
   FOOTER LINKS
========================= */

.footer-link {
  text-decoration: none;
  color: inherit;
  position: relative;
}

.footer-link:hover {
  text-decoration: underline;
  text-decoration-color: grey;
}

/* disabled link indicator */
.footer-link.disabled-link::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid red;
  border-radius: 50%;
  top: 50%;
  right: -14px;
  transform: translateY(-50%) scale(0);
  transition: 0.2s ease;
}

.footer-link.disabled-link:hover::after {
  transform: translateY(-50%) scale(1);
}

/* =========================
   IMAGE SLIDER
========================= */

.image-slider {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 16px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: slideFade 21s infinite;
  overflow: hidden;
}

@keyframes slideFade {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  14%  { opacity: 1; }
  17%  { opacity: 0; }
  100% { opacity: 0; }
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomMotion 21s infinite;
}

@keyframes zoomMotion {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1.12); }
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.1)
  );
  z-index: 1;
}

/* =========================
   TEXT OVER SLIDER
========================= */

.text {
  position: absolute;
  z-index: 5;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  opacity: 0;
}

@keyframes textFade {
  0%   { opacity: 0; transform: translateY(25px); }
  10%  { opacity: 1; transform: translateY(0); }
  70%  { opacity: 1; }
  85%  { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 0; }
}

/* positions */
.left { left: 8%; top: 50%; transform: translateY(-50%); }
.right { right: 8%; top: 50%; transform: translateY(-50%); }
.center { top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* slide timing */
.s1 { animation-delay: 0s; }
.s2 { animation-delay: 3s; }
.s3 { animation-delay: 6s; }
.s4 { animation-delay: 9s; }
.s5 { animation-delay: 12s; }
.s6 { animation-delay: 15s; }
.s7 { animation-delay: 18s; }

.s1 .text { animation: textFade 21s infinite 0s; }
.s2 .text { animation: textFade 21s infinite 3s; }
.s4 .text { animation: textFade 21s infinite 9s; }
.s6 .text { animation: textFade 21s infinite 15s; }
.s7 .text { animation: textFade 21s infinite 18s; }

/* pause on hover */
.image-slider:hover .slide,
.image-slider:hover .slide img,
.image-slider:hover .text {
  animation-play-state: paused;
}

/* =========================
   RESPONSIVE FIX (FINAL STABLE)
========================= */

@media (max-width: 768px) {

  .hero-text {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .row.align-items-center {
    padding-top: 40px;
    row-gap: 40px;
  }

  .col-md-6.text-center {
    position: relative;
    overflow: hidden;
  }

  .image-cluster {
    width: min(320px, 85vw);
    height: min(320px, 85vw);
  }

  .position-relative.d-inline-block {
    transform: scale(0.85);
    transform-origin: center;
  }

  .img-fluid {
    max-height: 320px;
    object-fit: contain;
  }
}

@media (max-width: 576px) {
  .position-absolute.shadow.rounded-4 {
    display: none;
  }

  .position-relative.d-inline-block {
    transform: scale(0.75);
  }
}

/* SECTION SPACING */
.section-padding {
  padding: 80px 0;
}

/* STEP BOX */
.step-box {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.step-box:hover {
  transform: translateY(-6px);
}

/* ICON */
.step-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgba(13,110,253,0.1);

  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon i {
  color: #0d6efd;
  font-size: 22px;
}

/* ARROWS */
.step-arrow {
  font-size: 28px;
  color: #0d6efd;
  opacity: 0.3;
  display: inline-block;
}

/* ARROW ANIMATION */
@keyframes arrowFlow {
  0%   { opacity: 0.3; transform: translateX(0); }
  25%  { opacity: 1; transform: translateX(6px); }
  50%  { opacity: 0.3; transform: translateX(0); }
  100% { opacity: 0.3; transform: translateX(0); }
}

/* SEQUENCE */
.arrow1 {
  animation: arrowFlow 2s infinite;
}

.arrow2 {
  animation: arrowFlow 2s infinite 1s;
}

/* SWIPER CONTAINER */
.swiper {
  width: 100%;
  padding: 40px 0 60px;

  overflow: hidden !important;  /* KEY FIX */
}

/* WRAPPER */
.swiper-wrapper {
  align-items: center;
}

/* EACH SLIDE */
.swiper-slide {
  text-align: center;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.4;
  transform: scale(0.8);
  transform-origin: center center;

  padding: 0 15px;
  box-sizing: border-box;
}

/* FORCE EXACT 3 SLIDES (DESKTOP) */
.swiper-slide {
  width: calc((100% - 60px) / 3) !important;
}

/* IMAGE (responsive height) */
.swiper-slide img {
  width: 100%;
  height: clamp(120px, 18vw, 160px); /* responsive height */
  object-fit: cover;
  border-radius: 16px;
  transition: all 0.5s ease;
}

/* CENTER SLIDE */
.swiper-slide-active {
  opacity: 1 !important;
  transform: scale(1.25) !important;
  z-index: 2;
}

/* SIDE SLIDES */
.swiper-slide-prev,
.swiper-slide-next {
  opacity: 0.7;
  transform: scale(0.9);
}

/* SHADOW */
.swiper-slide-active img {
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* CAPTION BASE */
.slide-caption {
  margin-top: 12px;

  font-size: clamp(12px, 1.2vw, 14px); /* responsive text */
  font-weight: 500;
  color: #333;

  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 1vw, 8px);

  text-align: center;
}

/* CAPTION VISIBILITY */
.swiper-slide p {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.swiper-slide-active p {
  opacity: 1;
  transform: translateY(0);
}

/* ICON CIRCLE (responsive) */
.icon-circle {
  width: clamp(28px, 3vw, 36px);
  height: clamp(28px, 3vw, 36px);

  background-color: #0d6efd;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

/* ICON */
.icon-circle i {
  color: #ffffff;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1;
}

.mobile-float-links {
  display: flex;
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
  outline: none;
  padding: 6px 10px;
}


/* =========================
   NAV LINK HOVER EFFECTS
========================= */
.navbar-nav .nav-link {
  transition: all 0.2s ease;
  border-radius: 6px;
  padding: 6px 10px;
}

/* hover */
.navbar-nav .nav-link:hover {
  background: rgba(13, 110, 253, 0.08);
  color: #0d6efd;
  transform: translateX(3px);
}

/* tap/click */
.navbar-nav .nav-link:active {
  transform: scale(0.96);
  background: rgba(13, 110, 253, 0.15);
}



/*  MOBILE OPTIMIZATION */
@media (max-width: 768px) {

  /* keep 3 slides visible */
  .swiper-slide {
    padding: 0 8px;
  }

  /* reduce zoom slightly for mobile */
  .swiper-slide-active {
    transform: scale(1.15) !important;
  }

  /* slightly smaller image height */
  .swiper-slide img {
    height: 130px;
  }

  /* better caption spacing */
  .slide-caption {
    font-size: 12.5px;
    gap: 6px;
  }

  /* smaller icon */
  .icon-circle {
    width: 30px;
    height: 30px;
  }

  .icon-circle i {
    font-size: 14px;
  }
}

 


  /* ALL LINKS */
  .navbar-collapse .nav-link {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    text-align: left;
    transition: all 0.2s ease;
  }

  .navbar-collapse .nav-link:hover {
    background: rgba(13, 110, 253, 0.08);
    transform: translateX(3px);
  }

  .navbar-collapse .nav-link:active {
    transform: scale(0.97);
    background: rgba(13, 110, 253, 0.15);
  }

  /* =========================
     CTA BUTTON FIX (IMPORTANT)
  ========================= */
  .navbar-collapse .btn.btn-primary {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 12px;
    border-radius: 6px;

    /* KEEP BUTTON VISIBILITY */
    background-color: #0d6efd !important;
    color: #ffffff !important;
    border: none !important;
  }

  /* hover FIX: keep readable */
  .navbar-collapse .btn.btn-primary:hover {
    background-color: #0b5ed7 !important;
    color: #ffffff !important;
    transform: translateX(3px);
  }

  .navbar-collapse .btn.btn-primary:active {
    transform: scale(0.97);
    background-color: #0a58ca !important;
  }
  
  /* =========================
  BLOG
========================= */


/* =========================
   PAGE TITLE
========================= */
.page-title {
  text-align: center;
  margin-top: 20px;
  font-size: 32px;
}

/* =========================
   FEATURED POST
========================= */
.featured {
  display: flex;
  gap: 20px;
  background: white;
  margin-top: 20px;
  padding: 20px;
  border-radius: 12px;
  align-items: center;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured-left {
  flex: 1;
}

.featured-right {
  flex: 1;
}

.featured img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
}

.featured h1,
.featured h2 {
  font-size: 26px;
  margin: 10px 0;
  color: #111;
}

.meta {
  color: gray;
  font-size: 13px;
}

.excerpt {
  margin-top: 10px;
  line-height: 1.6;
  color: #444;
}

/* =========================
   TAGS
========================= */
.tags {
  margin-top: 10px;
}

.tag {
  display: inline-block;
  font-size: 12px;
  background: #eef3f8;
  color: #333;
  padding: 4px 10px;
  border-radius: 20px;
  margin-right: 5px;
  margin-top: 5px;
}



.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
/* =========================
   BLOG CARD
========================= */
.card {
  flex: 0 0 calc(50% - 10px);
  background: white;
  padding: 15px;
  border-radius: 12px;
  cursor: pointer;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.card h2 {
  font-size: 18px;
  margin: 10px 0;
  color: #111;
}

.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* =========================
   CLICKABLE BLOG CARD WRAPPER
========================= */
.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* hover effect for full featured card */
.blog-card:hover .featured {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* =========================
   FEATURED BLOG ARTICLE (CLICKABLE)
========================= */

.blogarticle.featured {
  display: flex;
  gap: 20px;
  background: white;
  margin-top: 20px;
  padding: 20px;
  border-radius: 12px;
  align-items: center;
   cursor: pointer;

  /* smooth animation */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* hover effect */
.blogarticle.featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* layout split */
.blogarticle.featured .featured-left {
  flex: 1;
}

.blogarticle.featured .featured-right {
  flex: 1;
}

/* image */
.blogarticle.featured img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
}

/* title */
.blogarticle.featured h1,
.blogarticle.featured h2 {
  font-size: 26px;
  margin: 10px 0;
  color: #111;
}

/* meta */
.blogarticle.featured .meta {
  color: gray;
  font-size: 13px;
}

/* excerpt */
.blogarticle.featured .excerpt {
  margin-top: 10px;
  line-height: 1.6;
  color: #444;
}

/* tags */
.blogarticle.featured .tags {
  margin-top: 10px;
}

.blogarticle.featured .tag {
  display: inline-block;
  font-size: 12px;
  background: #eef3f8;
  color: #333;
  padding: 4px 10px;
  border-radius: 20px;
  margin-right: 5px;
  margin-top: 5px;
}

.excerpt-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

/* paragraph takes remaining space */
.excerpt-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  flex: 1;
}

/* date stays inline, never drops */
.meta-inline {
  font-size: 12px;
  color: gray;
  white-space: nowrap;
  flex-shrink: 0;
}
.card.blogarticle {
  flex: 0 0 calc(46% - 10px);
  margin: 1%;
}

/* =========================
   PAGINATION WRAPPER
========================= */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}

/* =========================
   PAGINATION BUTTONS
========================= */
.page-btn {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #0a66c2;
  color: #0a66c2;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;

  transition: all 0.2s ease;
}

/* hover effect */
.page-btn:hover {
  background: #0a66c2;
  color: #fff;
}

/* active page */
.page-btn.active {
  background: #0a66c2;
  color: #fff;
  font-weight: bold;
}

/* =========================
   DOTS (…)
========================= */
.page-dots {
  padding: 6px 8px;
  color: #777;
  font-size: 14px;
}

/* =========================
   INFO TEXT
========================= */
.page-info {
  margin-left: 10px;
  font-size: 13px;
  color: gray;
}

/* =========================
   BLOG POST
========================= */
.blog-post {
  background: #fff;
  margin-top: 30px;
  padding: 25px;
  border-radius: 12px;
}

.post-title {
  font-size: 32px;
  margin-bottom: 10px;
  color: #111;
}

.post-meta {
  font-size: 13px;
  color: gray;
  margin-bottom: 20px;
}

.post-image {
  width: 100%;
  height: 380px;        /* control height */
  object-fit: cover;    /* crop nicely instead of stretching */
  border-radius: 12px;
  margin-bottom: 20px;
}

.post-content {
  font-size: 16px;
  line-height: 1.7;
}

/* =========================
   RELATED SECTION
========================= */
.related-section {
  margin-top: 50px;
}

.related-title {
  font-size: 22px;
  margin-bottom: 20px;
  color: #111;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}



.related-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-card h3 {
  font-size: 16px;
  margin: 10px;
  color: #111;
}

.related-card a {
  display: inline-block;
  margin: 0 10px 15px;
  color: #0a66c2;
  text-decoration: none;
  font-weight: bold;
}



.related-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.blog-faqs{
    margin:60px 0;
}

.blog-faqs h2{
    margin-bottom:25px;
}

.faq-item{
    margin-bottom:15px;
    border:1px solid #e5e5e5;
    border-radius:8px;
    overflow:hidden;
}

.faq-item summary{
    cursor:pointer;
    font-weight:600;
    padding:15px 20px;
    background:#f8f9fa;
    line-height:1.5;
}

.faq-answer{
    padding:15px 20px;
    line-height:1.8;
}

@media (max-width: 768px){

    .blog-faqs{
        margin:40px 0;
    }

    .faq-item summary{
        padding:12px 15px;
        font-size:16px;
    }

    .faq-answer{
        padding:12px 15px;
        font-size:15px;
        line-height:1.7;
    }
}

/* =========================
   TABLET + SMALL LAPTOP (≤768px)
========================= */
@media (max-width: 768px) {

  /* Blog post page */
  .post-title {
    font-size: 24px;
  }

  .post-image {
    height: 220px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  /* Blog listing page */
  .page-title {
    font-size: 24px;
    margin-top: 15px;
  }

  .featured {
    flex-direction: column;
  }

  .featured img {
    height: 200px;
  }

  .row {
    flex-direction: column;
  }
}

/* =========================
   MOBILE (≤480px)
========================= */
@media (max-width: 480px) {

  .page-title {
    font-size: 20px;
    margin-top: 10px;
  }

  .page-btn {
    padding: 5px 10px;
    font-size: 13px;
  }

  .page-info {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }
}

