/* ================= BASE ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #f4f7fb;
  color: #333;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h2 {
  font-size: 34px;
  margin-bottom: 35px;
  text-align: center;
  color: #1a1a1a;
}

.section {
  padding: 15px 0;
}

.section.light {
  background: #ffffff;
}

/* ================= HEADER ================= */
/* HEADER */
.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* LOGO */
.logo img {
  height: 50px;
}

/* MENU */
.menu {
  display: flex;
  gap: 25px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #007bff;
  transition: 0.3s;
}

.menu a:hover {
  color: #007bff;
}

.menu a:hover::after {
  width: 100%;
}

/* SEARCH BOX */
.search-box {
  position: relative;
}

.search-box input {
  padding: 8px 35px 8px 12px;
  border-radius: 20px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

.search-box i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

/* 🔥 MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    padding: 15px;
    gap: 15px;
    display: none;
    border-radius: 8px 0 0 8px;
  }

  .menu.active {
    display: flex;
  }

  .search-box {
    display: none; /* hides search on small screens */
  }

  .menu-toggle {
    display: block;
  }
}

/* ================= HERO ================= */
/* HERO SECTION WITH IMAGE (NO WHITE OVERLAY) */
.hero {
  position: relative;
  background: url("../img/hero-bg.png") center/cover no-repeat;
  padding: 40px 20px;
  color: #fff;
  min-height: 600px; /* ensures full section height */
}

/* HERO WRAPPER */
.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

/* LEFT CONTENT */
.hero-left {
  flex: 1 1 480px;
}

.hero-left h1 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6); /* makes text readable */
}

.hero-left p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points li {
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-points li i {
  color: #0d6efd;
  margin-right: 10px;
}

/* RIGHT FORM */
.hero-right {
  flex: 1 1 380px;
}

.form-box {
  background: rgba(0,0,0,0.5); /* semi-transparent so it shows image */
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  max-width: 400px;
  width: 100%;
  box-sizing: border-box;
}

.form-box h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: #fff;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

.form-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 6px;
  border: none;
  font-size: 15px;
  box-sizing: border-box;
  background: rgba(255,255,255,0.9);
  color: #000;
}

.form-box button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: #0d6efd;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
}

.form-box button:hover {
  background: #003f9e;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-left {
    margin-bottom: 30px;
  }

  .hero-left h1 {
    font-size: 34px;
  }

  .hero-left p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 50px 15px;
    min-height: 500px;
  }

  .hero-left h1 {
    font-size: 28px;
  }

  .hero-left p {
    font-size: 14px;
  }

  .form-box {
    padding: 20px 15px;
    max-width: 100%;
  }

  .form-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .form-box input {
    padding: 11px;
    font-size: 14px;
  }

  .form-box button {
    padding: 12px;
    font-size: 15px;
  }
}

/* GRID LAYOUT */
.achievements-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* CARD STYLE */
.achievement-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.icon {
  font-size: 32px;
  color: #007bff;
  margin-bottom: 15px;
}

.achievement-card h3 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #111;
}

.achievement-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* 📱 TABLET */
@media (max-width: 992px) {
  .achievements-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱 MOBILE — 2 PER ROW */
@media (max-width: 600px) {
  .achievements-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .achievement-card {
    padding: 20px 15px;
  }

  .achievement-card h3 {
    font-size: 22px;
  }

  .achievement-card p {
    font-size: 13px;
  }
}

/* ================= writer ================= */
/* SECTION BASE */
.writers-section {
  padding: 70px 20px;
  background: #f9fafc;
  text-align: center;
}

.writers-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
}

/* GRID LAYOUT */
.writers-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1150px;
  margin: auto;
}

/* CARD DESIGN */
.writer-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.writer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.writer-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #007bff20;
}

.writer-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.qualification {
  font-size: 13px;
  color: #007bff;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.writer-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.writer-meta {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
}

/* BUTTON */
.hire-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #007bff;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.hire-btn:hover {
  background: #0056b3;
}

/* 📱 TABLET */
@media (max-width: 992px) {
  .writers-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱 MOBILE — ONE PER ROW */
@media (max-width: 600px) {
  .writers-row {
    grid-template-columns: 1fr; /* ONE CARD PER ROW */
    gap: 20px;
  }

  .writers-section {
    padding: 30px 12px;
  }

  .writers-section h2 {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .writer-card {
    padding: 20px 15px;
  }

  .writer-card img {
    width: 80px;
    height: 80px;
  }
}

/* FORCE 4 COLUMNS ON DESKTOP */
/* ================= STEPS SECTION ================= */

.steps-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #f5f7ff, #eef1ff);
  text-align: center;
}

.steps-section h2 {
  font-size: 32px;
  margin-bottom: 50px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1150px;
  margin: auto;
}

.step-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  position: relative;
  transition: 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.step-icon {
  font-size: 32px;
  color: #007bff;
  margin-bottom: 15px;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: #666;
}

.step-number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 14px;
  font-weight: bold;
  color: #007bff;
  background: #eaf1ff;
  padding: 6px 10px;
  border-radius: 20px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .steps-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .steps-section {
    padding: 50px 15px;
  }

  .steps-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .steps-row {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 15px;
  }

  .step-card {
    padding: 20px 15px;
  }

  .step-icon {
    font-size: 26px;
  }

  .step-card h3 {
    font-size: 15px;
  }

  .step-card p {
    font-size: 13px;
  }

  .step-number {
    font-size: 12px;
    padding: 5px 8px;
  }
}

/* ===== SECTION TITLE CENTER ===== */
/* =============== WHY CHOOSE US SECTION =============== */

.why-section {
  padding: 70px 20px;
  background: #f9fbff;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-left p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}

.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-list i {
  color: #007bff;
  font-size: 18px;
}

.why-right iframe {
  width: 100%;
  height: 315px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* =============== RESPONSIVE =============== */

@media (max-width: 900px) {
  .why-row {
    grid-template-columns: 1fr; /* ONE column */
    text-align: center;
  }

  .why-left {
    order: 2;
  }

  .why-right {
    order: 1;
  }

  .why-left p {
    font-size: 15px;
  }

  .why-list li {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .why-section {
    padding: 30px 15px;
  }

  .why-right iframe {
    height: 220px;
  }
}


/* ===== SERVICES SECTION ===== */
/* =============== SERVICES SECTION =============== */

.services-section {
  padding: 70px 20px;
  background: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 50px;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row */
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.service-card {
  background: #f8faff;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 28px;
  color: #007bff;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* =============== RESPONSIVE =============== */

/* Tablet */
@media (max-width: 900px) {
  .services-row {
    grid-template-columns: 1fr; /* 1 per row */
  }

  .service-card {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 500px) {
  .services-section {
    padding: 30px 15px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .service-card {
    padding: 22px 18px;
  }

  .service-icon {
    font-size: 24px;
  }

  .service-card h3 {
    font-size: 17px;
  }

  .service-card p {
    font-size: 13px;
  }
}


/* Make all cards equal height */
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.advantages-section {
  padding: 30px 0;
  background: #f1f5f9;
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  color: #1e293b;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns desktop */
  gap: 30px;
}

.adv-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.adv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.adv-card i {
  font-size: 34px;
  color: #2563eb;
  margin-bottom: 15px;
}

.adv-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f172a;
}

.adv-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.advantages-section {
  padding: 30px 0;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  color: #1e293b;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
}

.adv-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  padding: 18px 22px;
}

.adv-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.adv-header h3 {
  font-size: 17px;
  margin: 0;
}

.toggle-btn {
  font-size: 22px;
  font-weight: bold;
  color: #2563eb;
}

.adv-content {
  display: none;
  font-size: 14px;
  color: #64748b;
  margin-top: 12px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}
.faq-section {
  padding: 30px 0;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  color: #1e293b;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  padding: 18px 22px;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-header h3 {
  font-size: 16px;
  margin: 0;
}

.faq-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #2563eb;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle i {
  transform: rotate(180deg);
}

.faq-content {
  display: none;
  font-size: 14px;
  color: #64748b;
  margin-top: 12px;
  line-height: 1.6;
}

.faq-item:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
.samples-section {
  padding: 30px 0;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  color: #1e293b;
}

.samples-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sample-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sample-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.sample-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1e293b;
}

.sample-card p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 15px;
}

.sample-card .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2563eb;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.sample-card .btn:hover {
  background-color: #1e40af;
}

@media (max-width: 1024px) {
  .samples-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .samples-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= FAQ ================= */
details {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

summary {
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 992px) {
  .hero-wrapper {
    flex-direction: column; /* stack content */
    gap: 0;                 /* remove flex gap */
    align-items: center;     /* center columns */
  }

  .hero-left,
  .hero-right {
    flex: 1 1 100%;
    text-align: center;
    max-width: 100%;
  }

  
  .hero-left p {
    margin-bottom: 8px;
  }

  .hero-points li {
    margin-bottom: 5px;
  }

  /* Form adjustments */
  .form-box {
    padding: 15px 10px; /* minimal padding */
    width: 100%;
    margin: 0 auto;
  }

  .form-box input,
  .form-box button {
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .hero-left h1,
  .form-box h1 {
    font-size: 24px;
  }

  .hero-left p,
  .hero-points li,
  .form-box input,
  .form-box button {
  }

  .form-box {
    padding: 12px 8px;
  }
}

/* ================= LOCATIONS SECTION ================= */

.locations-section {
  padding: 70px 20px;
  background: #f8faff;
  text-align: center;
}

.locations-section .section-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr); /* Desktop: 8 per row */
  gap: 15px;
  max-width: 1200px;
  margin: auto;
}

.location-btn {
  padding: 10px 0;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
  width: 100%; /* full width of grid cell */
  box-sizing: border-box;
  text-align: center;
}

.location-btn:hover {
  background: #0056b3;
}

/* =============== RESPONSIVE =============== */

/* Tablet */
@media (max-width: 992px) {
  .locations-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 per row */
    gap: 15px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .locations-section {
    padding: 30px 15px;
  }

  .locations-section .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .locations-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 per row */
    gap: 10px;
  }

  .location-btn {
    font-size: 13px;
    padding: 8px 0;
  }
}

/* ================= TESTIMONIAL ================= */
/* ================= TESTIMONIAL SECTION ================= */
.testimonial-section {
  padding: 40px 20px; /* reduced from 80px to 40px */
  background: #f8fafc;
}

.testimonial-section .section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 25px; /* reduced from 50px */
  color: #1e293b;
}

/* Testimonial boxes */
.testimonial-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  margin: 10px 0; /* reduce top/bottom margin */
  position: relative;
}

.testimonial-box blockquote {
  font-style: italic;
  color: #2563eb;
  margin-bottom: 10px;
}

.testimonial-box p {
  font-weight: bold;
  font-size: 14px;
  color: #1e293b;
  text-align: right;
}

.stars {
  color: #facc15;
  margin-bottom: 10px;
  font-size: 16px;
}

/* Owl carousel nav */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2563eb;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 18px;
  z-index: 10;
}

.owl-nav .owl-prev { left: -25px; }
.owl-nav .owl-next { right: -25px; }

.owl-nav button:hover { background: #1e40af; }

.owl-dots {
  text-align: center;
  margin-top: 15px;
}

/* ================= BLOGS SECTION ================= */
.blogs-section {
  padding: 40px 20px; /* reduced padding to match testimonial */
  background: #f8fafc;
  text-align: center;
}

.blogs-section .section-title {
  font-size: 30px;
  margin-bottom: 25px; /* reduced from 50px */
  color: #1e293b;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.blog-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  font-size: 16px;
  color: #1e293b;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-section, .blogs-section {
    padding: 30px 15px; /* minimal padding on mobile */
  }

  .testimonial-section .section-title,
  .blogs-section .section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-box, .blog-card {
    margin: 5px auto; /* minimal spacing */
  }
}

/* ================= FOOTER ================= */
.footer {
  background: #111;
  color: #ccc;
  padding: 60px 20px 25px;
  font-size: 14px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Headings */
.footer-col h4 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 16px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #007bff;
  margin-top: 6px;
  display: block;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-col p {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Social */
.social-icons a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #ccc;
  text-decoration: none;
}

.social-icons a i {
  width: 28px;
  height: 28px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  transition: 0.3s;
}

.social-icons a:hover { color: #fff; }
.social-icons a:hover i { background: #007bff; }

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 18px;
  font-size: 13px;
  color: #888;
}

/* 📱 TABLET */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* 📱 MOBILE */
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    gap: 20px;
    text-align: center;
  }

  .footer-col h4::after {
    margin-left: auto;
    margin-right: auto;
  }

  .social-icons a {
    justify-content: center;
  }

  .footer {
    padding: 40px 15px 20px;
  }

  .footer-bottom {
    margin-top: 25px;
    padding-top: 15px;
  }
}
