/* Custom overrides to improve the visual appearance of the homepage
   - Loaded after template's default styles so these take precedence
   - Keep rules minimal and targeted so layout remains intact
*/

/* Base typography and color tuning */
:root{
    --primary: #d84315; /* warm accent */
    --muted: #6c757d;
    --bg-soft: #fbfbfb;
    --card-bg: #ffffff;
}

body{
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: var(--bg-soft);
}

/* Header / Navbar tweaks */
.header-bottom{ background: #fff; box-shadow: 0 6px 20px rgba(25,25,25,0.06); }
.logo img{ max-height:80px; object-fit:contain; display:block; margin:auto 0; }
.main-menu ul#navigation > li > a{ color:#333; font-weight:600; padding:18px 14px; }
.main-menu ul#navigation > li > a:hover{ color:var(--primary); }
.header-right-btn .btn.header-btn{ background:var(--primary); color:#fff; padding:10px 18px; border-radius:6px; }
.header-right-btn .btn.header-btn:hover{ opacity:0.95; }

/* Hero */
.slider-area{ padding-top:70px; }
.slider-height{ min-height:520px; display:flex; align-items:center; }
.hero__caption h1{ font-size:40px; line-height:1.15; color:#171717; font-weight:700; }
.hero__caption p{ color:var(--muted); font-size:16px; margin-top:18px; }
.hero-btn{ background:var(--primary); color:#fff; padding:10px 20px; border-radius:8px; display:inline-block; }
.hero-btn:hover{ opacity:0.95; }
.cal-btn{ display:inline-flex; align-items:center; gap:10px; padding:8px 14px; background:#f7f7f7; border-radius:8px; color:#333; }



/* -----------------------------
   🌟 Services Cards (Final Version)
---------------------------------- */

.single-cat {
    background: var(--card-bg, #ffffff);
    border-radius: 12px;
    padding: 26px 20px;
    box-shadow: 0 6px 18px rgba(25, 25, 25, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
}

.single-cat:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(25, 25, 25, 0.10);
}

/* ✅ Service Image (Rectangle Style) */
.service-img-box {
    width: 100%;
    height: 220px; /* adjust for your layout */
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.06);
    margin-bottom: 15px;
}

.service-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.service-img-box img:hover {
    transform: scale(1.05);
}

/* ✅ Text Content */
.cat-cap h5 {
    margin-top: 10px;
    font-weight: 700;
    font-size: 20px;
    color: #222;
    transition: color 0.3s ease;
}

.cat-cap h5 a {
    text-decoration: none;
    color: inherit;
}

.cat-cap h5:hover {
    color: #f15a29; /* accent color */
}

.cat-cap p {
    color: var(--muted, #6c757d);
    font-size: 15px;
    line-height: 1.6;
    margin-top: 10px;
}


/* Cases / progress */
/* 🌸 OUR CASES AREA */
.our-cases-area {
  background: radial-gradient(circle at 30% 30%, #fff9f3, #f7f3ff, #f0f8ff);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  z-index: 1;
}

/* ✨ Section Heading */
.section-tittle .section-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: #ff6f61;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 2.1rem;
  color: #1c1c1c;
  background: linear-gradient(90deg, #ff6f61, #ff9a76);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(255, 120, 90, 0.25);
}

.section-desc {
  color: #444;
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 🪷 Case Card Styling */
.case-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.6s ease;
  transform: translateY(0);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 111, 97, 0.2);
}

.case-card:hover {
  transform: translateY(-15px) scale(1.04);
  box-shadow: 0 20px 60px rgba(255, 111, 97, 0.4);
}

/* 🌈 Rotating glow aura */
.case-glow {
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(255, 111, 97, 0.15), transparent 60%);
  transform: rotate(0deg);
  animation: glowRotate 12s linear infinite;
  z-index: 0;
}

@keyframes glowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 🖼️ Case Image */
.case-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease, filter 1.2s ease;
  filter: brightness(0.9);
}

.case-card:hover .case-img img {
  transform: scale(1.08);
  filter: brightness(1);
}

/* 🕊️ Case Content */
.case-content {
  padding: 25px 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.case-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.case-description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* 📊 Progress Bar */
.progress-container {
  background: #e9e9e9;
  border-radius: 30px;
  height: 12px;
  overflow: hidden;
  position: relative;
  margin-top: 8px;
}

.progress-bar {
  background: linear-gradient(90deg, #ff6f61, #ffa751);
  height: 100%;
  border-radius: 30px;
  position: relative;
  animation: progressGrow 2s ease forwards;
  box-shadow: 0 0 10px rgba(255, 111, 97, 0.7);
}

.progress-bar span {
  position: absolute;
  right: 10px;
  top: -22px;
  color: #ff6f61;
  font-weight: 600;
  font-size: 0.9rem;
}

@keyframes progressGrow {
  from { width: 0; }
  to { width: var(--progress, 100%); }
}

/* 💰 Donation Info */
.price-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-top: 15px;
  color: #333;
}

.price-info span {
  color: #ff6f61;
  font-weight: bold;
}

/* ❤️ Donate Button */
.donate-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 34px;
  background: linear-gradient(90deg, #ff6f61, #ff8a65);
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(255, 111, 97, 0.4);
  transition: all 0.4s ease;
}

.donate-btn:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(90deg, #ff8a65, #ff6f61);
  box-shadow: 0 10px 25px rgba(255, 111, 97, 0.6);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}


/* 🌟 Event Card */
.event-card {
  background: rgba(255,255,255,0.9);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.6s ease;
  transform: perspective(1000px) rotateY(0deg);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.event-card:hover {
  transform: perspective(1000px) rotateY(-6deg) scale(1.03);
  box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

/* 🖼️ Left Image */
.event-img {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}

.event-img img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: all 0.8s ease;
}

.event-card:hover .event-img img {
  transform: scale(1.1) rotateY(5deg);
  filter: brightness(1.15);
}

/* 📜 Right Info */
.event-info {
  flex: 1;
  padding: 30px 35px;
  background: rgba(255,255,255,0.85);
  border-radius: 0 20px 20px 0;
}

.event-info h3 {
  font-size: 24px;
  color: #222;
  font-weight: 700;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.event-info h3:hover {
  color: #0d6efd;
}

.event-info p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* 🕓 Event Details */
.event-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.event-info ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}

.event-info ul li i {
  color: #0d6efd;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.event-info ul li:hover i {
  transform: rotate(20deg);
}

/* ✨ Glow effect */
.event-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: -50%;
  width: 80%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.event-card:hover::after {
  opacity: 1;
}

/* Team */
.team-area {
  background: linear-gradient(145deg, #f8f8f8, #ffffff);
  padding: 120px 0;
}

.section-tittle span {
  color: #ff6b00;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.section-tittle h4 {
  color: #333;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}

.single-team {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
}

.single-team:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

.team-img {
  position: relative;
  width: 100%;
  height: 320px; /* fixed uniform height */
  overflow: hidden;
  border-bottom: 4px solid #ff6b00;
  background: #fff;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures image fits cleanly */
  object-position: center; /* centers image */
  transition: all 0.5s ease;
  border-radius: 0;
}

.single-team:hover .team-img img {
  opacity: 0.45;
  transform: scale(1.08);
  filter: blur(0.8px);
}

.team-social {
  list-style: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  display: flex;
  gap: 15px;
  transition: all 0.4s ease;
  z-index: 2;
}

.single-team:hover .team-social {
  transform: translate(-50%, -50%) scale(1);
}

.team-social li a {
  background: #ffffffcc;
  color: #ff6b00;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.team-social li a:hover {
  background: #ff6b00;
  color: #fff;
  transform: translateY(-5px);
}

.team-caption {
  padding: 22px 18px 35px;
}

.team-caption h3 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.team-caption h4 {
  color: #ff6b00;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.team-caption p {
  color: #666;
  font-size: 15px;
  line-height: 1.5;
}

/* 🌟 WANT TO WORK AREA 🌟 */
.wantToWork-area {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #e6f0ff 0%, #ffffff 100%);
  overflow: hidden;
  perspective: 1000px;
}

/* Animated Color Flow Background */
.wantToWork-area::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #ffd89b, #19547b, #a1c4fd, #c2e9fb, #ffd89b);
  animation: rotateBG 18s linear infinite;
  opacity: 0.25;
  z-index: 0;
}
@keyframes rotateBG {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Glass Wrapper */
.wants-wrapper {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  padding: 60px 50px;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}
.wants-wrapper:hover {
  transform: rotateY(5deg) scale(1.02);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}

/* Text Section */
.wantToWork-caption h3 {
  color: #08203e;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.7);
  animation: fadeInUp 1.5s ease;
}
@keyframes fadeInUp {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ✨ Button Style ✨ */
.white-btn {
  display: inline-block;
  background: linear-gradient(45deg, #007bff, #00c6ff);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.45);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.white-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.5s ease;
  z-index: 0;
}
.white-btn:hover::before {
  left: 100%;
}
.white-btn:hover {
  background: linear-gradient(45deg, #0056b3, #00aaff);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .wants-wrapper {
    text-align: center;
    padding: 40px 25px;
  }
  .wantToWork-caption h3 {
    font-size: 22px;
    text-align: center;
  }
  .white-btn {
    margin-top: 25px;
  }
}

/* 🌟 Testimonial Section */
.testimonial-area {
  background: linear-gradient(135deg, #f8faff, #ffffff);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

/* Rotating Gradient Animation */
.testimonial-area::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 90deg, #a1c4fd, #c2e9fb, #d4fc79, #96e6a1, #a1c4fd);
  animation: rotateBG 20s linear infinite;
  opacity: 0.15;
  z-index: 0;
}
@keyframes rotateBG {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.section-tittle span {
  display: block;
  color: #0066cc;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.section-tittle h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0a2342;
}

/* 🌈 Testimonial Slider */
.testimonial-slider {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 30px;
  padding: 20px 0;
}
.testimonial-slider::-webkit-scrollbar {
  display: none;
}

/* 💎 Testimonial Card */
.testimonial-card {
  flex: 0 0 340px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 40px 25px;
  position: relative;
  transition: all 0.5s ease;
  transform-style: preserve-3d;
}
.testimonial-card:hover {
  transform: rotateY(10deg) scale(1.05);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
}

/* 👤 Image */
.testimonial-img {
  width: 110px;
  height: 110px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(0, 102, 255, 0.5);
  box-shadow: 0 0 25px rgba(0, 123, 255, 0.35);
}
.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ✨ Text Styling */
.testimonial-name {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 5px;
  color: #0c1e33;
}
.testimonial-role {
  color: #007bff;
  font-weight: 500;
  margin-bottom: 15px;
}
.testimonial-message {
  font-size: 16px;
  color: #333;
  font-style: italic;
  line-height: 1.6;
  position: relative;
  padding: 0 15px;
}
.testimonial-message::before,
.testimonial-message::after {
  content: "“";
  color: #007bff;
  font-size: 30px;
  position: absolute;
  opacity: 0.3;
}
.testimonial-message::before { left: -10px; top: -5px; }
.testimonial-message::after { right: -10px; bottom: -10px; content: "”"; }

/* 🌠 Animation */
.testimonial-card {
  animation: fadeInUp 1.5s ease both;
}
@keyframes fadeInUp {
  0% { transform: translateY(50px) scale(0.9); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* 🌐 Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 90%;
  }
  .section-tittle h2 {
    font-size: 24px;
  }
}




/* Responsive adjustments */
@media (max-width: 991px){
    .hero__caption h1{ font-size:30px; }
    .slider-height{ min-height:420px; }
}

@media (max-width: 575px){
    .logo img{ max-height:52px; }
    .hero__caption h1{ font-size:24px; }
}

/* Utility small fixes */
.text-muted{ color:var(--muted) !important; }
.btn{ border:0; }

/* Keep form and contact look neat */
.form-control{ border-radius:8px; box-shadow:none; border:1px solid #e6e6e6; }

/* small subtle animation for progress fill */
.barfiller .fill{ transition: width 1s ease-in-out; }
/* 🌌 Ultra Futuristic 3D Blog Section (Only Blog Area Animation - Safe Version) */

.home-blog-area {
  background: radial-gradient(circle at 30% 50%, rgba(0, 255, 255, 0.12), transparent 40%),
              radial-gradient(circle at 70% 50%, rgba(255, 0, 255, 0.12), transparent 40%),
              linear-gradient(160deg, #050510 0%, #000013 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  perspective: 2000px;
}

/* ✨ Floating Particles */
.home-blog-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://i.imgur.com/0z9Jp2K.png') repeat;
  opacity: 0.07;
  mix-blend-mode: lighten;
  animation: floatParticles 80s linear infinite;
}

@keyframes floatParticles {
  from { background-position: 0 0; }
  to { background-position: 10000px 4000px; }
}

/* 🌈 Aurora Light Flow */
.home-blog-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(0,255,255,0.05) 10%, rgba(255,0,255,0.05) 40%, rgba(0,255,255,0.08) 70%);
  animation: aurora 15s ease-in-out infinite alternate;
  mix-blend-mode: screen;
  z-index: 0;
}

@keyframes aurora {
  0% { transform: translateX(-10%) skewY(2deg); opacity: 0.3; }
  50% { transform: translateX(10%) skewY(-2deg); opacity: 0.6; }
  100% { transform: translateX(-10%) skewY(1deg); opacity: 0.3; }
}

/* Keep Blog Content Above Background */
.home-blog-area .container {
  position: relative;
  z-index: 2;
}

/* 💎 Blog Card */
.single-blog {
  background: rgba(15, 15, 25, 0.9);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
  transform-style: preserve-3d;
  transition: all 0.6s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.single-blog:hover {
  transform: rotateY(10deg) scale(1.05);
  box-shadow: 0 0 80px rgba(0, 255, 255, 0.5), 0 0 120px rgba(255, 0, 255, 0.3);
}

/* 🖼 Blog Image */
.blog-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.blog-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s ease;
  transform-origin: center;
  border-bottom: 2px solid rgba(0,255,255,0.2);
  box-shadow: 0 10px 30px rgba(0,255,255,0.2);
}

.single-blog:hover .blog-img img {
  transform: scale(1.25) rotateY(10deg);
  filter: brightness(1.3) saturate(1.4);
}

/* 🕒 Floating Date Badge */
.post-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ff00cc, #00fff9);
  color: #fff;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
  transform: rotateY(25deg) translateZ(10px);
  transition: transform 0.6s, box-shadow 0.4s;
}

.single-blog:hover .post-date {
  transform: rotateY(0deg) translateZ(25px);
  box-shadow: 0 0 35px rgba(255, 0, 255, 0.7);
}

/* 📜 Blog Caption */
.blog-caption {
  padding: 25px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* 🧠 Title & Text (kept original colors) */
.blog-caption h4 a {
  color: inherit;
  font-weight: 700;
  font-size: 1.4rem;
  transition: color 0.3s, text-shadow 0.3s;
}

.blog-caption h4 a:hover {
  color: #00fff9;
  text-shadow: 0 0 25px #00fff9, 0 0 45px #00fff9;
}

/* 🗓 Date Text */
.blog-caption p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px rgba(255,255,255,0.1);
}

/* 🚀 Read More Button */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00fff9;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.read-more-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff00cc, #00fff9);
  transition: left 0.4s;
}

.read-more-btn:hover::after {
  left: 0;
}

.read-more-btn:hover {
  color: #ff00cc;
  transform: scale(1.1);
  text-shadow: 0 0 20px #ff00cc;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .single-blog {
    transform: none !important;
  }
  .blog-img img {
    height: 220px;
  }
}



/* ------------------------------
   ULTRA-GOAT CINEMATIC BLOG CSS
   Use with the provided blog templates
   ------------------------------ */

/* ---------- Base Typography & Vars ---------- */
:root{
  --accent1: #ff6f61;
  --accent2: #ff9a76;
  --dark: #0f1724;
  --muted: #6b7280;
  --bg: #f6f8fb;
  --glass: rgba(255,255,255,0.65);
  --glass-2: rgba(255,255,255,0.85);
  --card-shadow: 0 20px 50px rgba(15,23,36,0.12);
  --radius: 16px;
  --max-width: 1200px;
  --ease: cubic-bezier(.2,.9,.3,1);
}

/* Global reset for this area */
main, section, article { box-sizing: border-box; }

body { 
  background: var(--bg); 
  font-family: "Inter", "Roboto", Arial, sans-serif; 
  color: var(--dark); 
  -webkit-font-smoothing:antialiased; 
  -moz-osx-font-smoothing:grayscale; 
}
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ---------- Slider / Hero cinematic ---------- */
.slider-area2 {
  background: linear-gradient(180deg, rgba(255,250,248,1) 0%, rgba(247,243,255,0.9) 50%, rgba(240,248,255,0.95) 100%);
  padding: 72px 0 36px;
  position: relative;
  overflow: visible;
}
.slider-area2::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
  width: 90%;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(255,111,97,0.06), transparent 40%);
  pointer-events: none;
}
.slider-area2 h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0;
  color: var(--dark);
  background: linear-gradient(90deg,var(--accent1),var(--accent2));
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  text-shadow: 0 6px 30px rgba(255,150,120,0.08);
}

/* ---------- Blog Area Layout ---------- */
.blog_area { padding: 60px 0 110px; }
.blog_left_sidebar { display: block; }

/* ---------- Blog Item ---------- */
.blog_item {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.96));
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--card-shadow);
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
  border: 1px solid rgba(15,23,36,0.04);
  position: relative;
  display: flex;
  flex-direction: column;
}
.blog_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(15,23,36,0.14);
}

/* ---------- Image & Cinematic effect ---------- */
.blog_item_img { position: relative; height: 320px; overflow: hidden; }
.blog_item_img img.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
  filter: saturate(0.96) contrast(1.02) brightness(0.96);
}
.blog_item:hover .blog_item_img img.card-img { transform: scale(1.08); filter: brightness(1) saturate(1.05); }

/* ---------- Fixed & Glowing Date Badge ---------- */
.blog_item_date{
  position: absolute;
  right: 18px;
  top: 18px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,111,97,0.95), rgba(255,154,118,0.85));
  display:flex; 
  align-items:center; 
  justify-content:center; 
  flex-direction:column;
  box-shadow: 0 0 20px rgba(255,111,97,0.3), inset 0 0 10px rgba(255,255,255,0.5);
  border: 2px solid rgba(255,255,255,0.8);
  z-index: 5;
  text-decoration: none;
  backdrop-filter: blur(6px);
  animation: glowPulse 3s infinite ease-in-out;
}
.blog_item_date h3 { 
  margin:0; 
  font-size:21px; 
  font-weight:800; 
  color:#fff; 
  line-height:1; 
}
.blog_item_date p  { 
  margin:0; 
  font-size:12px; 
  color:rgba(255,255,255,0.9); 
  letter-spacing:1px; 
  text-transform:uppercase; 
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 18px rgba(255,111,97,0.3), inset 0 0 10px rgba(255,255,255,0.6); }
  50% { box-shadow: 0 0 28px rgba(255,154,118,0.45), inset 0 0 15px rgba(255,255,255,0.7); }
}

/* ---------- Blog Details ---------- */
.blog_details { padding: 24px; text-align: left; }
.blog-head {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--dark);
  margin: 0 0 12px 0;
  line-height: 1.18;
  transition: color 300ms var(--ease);
}
.blog_item:hover .blog-head { color: var(--accent1); }

.blog_details p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-info-link { list-style:none; padding:0; margin:0; display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.blog-info-link li { color:var(--muted); font-size:14px; display:flex; align-items:center; gap:6px; }
.blog-info-link li i { color: #c7c7c7; }

/* ---------- Sidebar & Others remain same ---------- */
/* (no changes below this line, rest code same as you provided) */
