@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --black: #000000;
  --navy: #163757;
  --steel: #6d8aa3;
  --gray: #b1b4bb;
  --gray-50: #f9f9f9;
  --gray-100: #f4f4f4;
  --gray-200: #ededed;
  --gray-250: #e9e9e9;
  --gray-300: #e5e5e5;
  --white: #ffffff;
  --accent: #5a8fc4;
  --accent-light: #7ba8d1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #fafbfc;
  color: var(--navy);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* Sidebar */
.mobile-navbar {
  display: none;
}

.menu-toggle {
  width: 45px;
  height: 45px;
  background-color: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.05);
}

.mobile-logo {
  display: none;
  height: 40px;
}

.mobile-logo img {
  height: 100%;
  width: auto;
  display: block;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 230px;
  height: 100vh;
  background: var(--navy);
  padding: 40px 25px;
  z-index: 1000;
  overflow-y: auto;
}

.sidebar a {
  display: block;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
}

.sidebar a:hover {
  opacity: 0.7;
}
.blog-date {
    display: block;
    font-size: 14px;
    color: #999; /* soft grey */
    margin-bottom: 8px;
    font-weight: 500;
}


.logo {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo img {
  width: 100%;
  max-width: 210px;
  height: auto;
  display: block;
}

/* =========================
   BLOG – MODERN ATTRACTIVE STYLE
========================= */

.main {
  background: linear-gradient(135deg, #f8f9fc 0%, #f0f3f8 100%);
  margin-left: 230px;
  padding: 50px 7% 60px;
  animation: fadeUp 1s ease;
  min-height: 100vh;
}

.section {
  margin-bottom: 50px;
}

/* Blog Header - Hero Style */
.section h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--navy);
  position: relative;
  display: inline-block;
  font-weight: 700;
  letter-spacing: -1px;
}

.section h1::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 90px;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--navy) 0%,
    var(--accent) 60%,
    var(--accent-light) 100%
  );
  border-radius: 3px;
  animation: slideIn 0.8s ease 0.3s both;
}

@keyframes slideIn {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 90px;
    opacity: 1;
  }
}

.section-intro {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #5a6c7d;
  line-height: 1.8;
  max-width: 750px;
  opacity: 0;
  animation: fadeIn 1s ease 0.3s forwards;
  font-weight: 400;
}

/* Blog Grid - Masonry Card Layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* Blog Card - Premium Design */
.blog-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 25px rgba(22, 55, 87, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
  border: 1px solid rgba(22, 55, 87, 0.06);
}

.blog-card:nth-child(1) {
  animation-delay: 0.1s;
}
.blog-card:nth-child(2) {
  animation-delay: 0.2s;
}
.blog-card:nth-child(3) {
  animation-delay: 0.3s;
}
.blog-card:nth-child(4) {
  animation-delay: 0.4s;
}
.blog-card:nth-child(5) {
  animation-delay: 0.5s;
}
.blog-card:nth-child(6) {
  animation-delay: 0.6s;
}
.blog-card:nth-child(7) {
  animation-delay: 0.7s;
}
.blog-card:nth-child(8) {
  animation-delay: 0.8s;
}
.blog-card:nth-child(9) {
  animation-delay: 0.9s;
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(90, 143, 196, 0.03),
    rgba(22, 55, 87, 0.06)
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
  border-radius: 24px;
}

.blog-card:hover::before {
  opacity: 1;
}

.blog-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(22, 55, 87, 0.14);
  border-color: rgba(90, 143, 196, 0.2);
}

/* Image with Modern Overlay */
.blog-thumb {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, #e8eef5 0%, #dce4ed 100%);
}

.blog-thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.03) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.blog-card:hover .blog-thumb::after {
  opacity: 1;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.98) contrast(1.02);
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.1);
  filter: brightness(1) contrast(1.05);
}

/* Content Area with Better Spacing */
.blog-content {
  padding: 28px 26px 32px;
  position: relative;
  z-index: 2;
  background: var(--white);
}

/* Label - Modern Badge with Icon */
.blog-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(90, 143, 196, 0.08);
  border-radius: 25px;
  transition: all 0.4s ease;
  border: 1px solid rgba(90, 143, 196, 0.12);
}

.blog-label::before {
  content: "●";
  font-size: 0.5rem;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.blog-card:hover .blog-label {
  background: rgba(90, 143, 196, 0.15);
  transform: translateY(-2px);
  border-color: rgba(90, 143, 196, 0.25);
}

/* Title with Better Typography */
.blog-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  line-height: 1.35;
  margin-bottom: 14px;
  color: var(--navy);
  font-weight: 600;
  transition: color 0.4s ease;
  letter-spacing: -0.3px;
}

.blog-card:hover .blog-content h2 {
  color: var(--accent);
}

/* Excerpt with Line Clamp */
.blog-content p {
  font-size: 0.92rem;
  color: #5a6c7d;
  line-height: 1.7;
  max-width: 100%;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
}

/* Read More - Animated Arrow */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.4s ease;
  position: relative;
  padding: 10px 20px;
  background: rgba(22, 55, 87, 0.03);
  border-radius: 30px;
  border: 2px solid transparent;
}

.read-more::after {
  content: "→";
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.2rem;
  font-weight: 400;
}

.blog-card:hover .read-more {
  color: var(--accent);
  background: rgba(90, 143, 196, 0.1);
  border-color: rgba(90, 143, 196, 0.2);
  gap: 12px;
}

.blog-card:hover .read-more::after {
  transform: translateX(8px);
}

/* Meta Information (if you want to add date/author) */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--steel);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(22, 55, 87, 0.08);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Single Blog Page */
.single-blog-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 70px;
  border-radius: 24px;
  box-shadow: 0 4px 35px rgba(22, 55, 87, 0.1);
}

.single-blog-thumb img {
  width: 100%;
  margin: 35px 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.blog-body p {
  line-height: 1.95;
  margin-bottom: 22px;
  max-width: 100%;
  color: #4a5568;
  font-size: 1.08rem;
}

/* No Posts Found Message */
.blog-grid p {
  grid-column: 1 / -1;
  text-align: left;
  font-size: 1.1rem;
  color: var(--steel);
  padding: 5px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* Typography */
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
  color: var(--navy);
}

h1 {
  font-size: 2.8rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

p {
  color: var(--steel);
  line-height: 1.8;
  max-width: 800px;
  margin-bottom: 15px;
}

ul {
  color: var(--steel);
  line-height: 1.8;
  margin-left: 20px;
  margin-bottom: 20px;
}

ul li {
  margin-bottom: 12px;
}

/* Image Placeholder */
.image-box {
  width: 100%;
  height: 320px;
  background: var(--gray);
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  position: relative;
  border-radius: 12px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Grid Layouts */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.service-card,
.benefit-item,
.value-item,
.approach-item,
.why-item,
.industry-item,
.reason-item,
.contact-method {
  padding: 30px;
  background: var(--white);
  border-left: 4px solid var(--navy);
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover,
.benefit-item:hover,
.value-item:hover,
.approach-item:hover,
.why-item:hover,
.industry-item:hover,
.reason-item:hover,
.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-card h3,
.benefit-item h3,
.value-item h3,
.approach-item h3,
.why-item h3,
.industry-item h3,
.reason-item h3,
.contact-method h3 {
  color: var(--navy);
  margin-bottom: 15px;
}

.service-card ul,
.benefit-item ul,
.value-item ul {
  margin-left: 0;
  list-style-position: inside;
}

/* Other Grids */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.mission-box,
.vision-box {
  padding: 35px;
  background: #f0f4f8;
  border-left: 4px solid var(--navy);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.expertise-list,
.memberships-list,
.common-enquiries-list {
  max-width: 900px;
  margin-top: 25px;
}

.expertise-list li,
.memberships-list li,
.common-enquiries-list li {
  margin-bottom: 18px;
  line-height: 1.8;
}

/* Buttons */
.btn {
  display: inline-block;
  margin-top: 25px;
  margin-right: 15px;
  padding: 14px 32px;
  border: 2px solid var(--navy);
  color: var(--navy);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
}

.btn.primary {
  background: var(--navy);
  color: var(--white);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn.primary:hover {
  background: #0f2a3f;
  border-color: #0f2a3f;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 60px 40px;
  background: #f0f4f8;
  border-radius: 8px;
}

.cta-section h2 {
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Form Styling */
form {
  max-width: 700px;
  margin-top: 30px;
}

.contact-form {
  max-width: 800px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--gray-200);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--white);
  border-radius: 8px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--navy);
}

select {
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

button[type="submit"] {
  border: none;
  font-size: 1rem;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}
.fade-in:nth-child(4) {
  animation-delay: 0.4s;
}
.fade-in:nth-child(5) {
  animation-delay: 0.5s;
}
.fade-in:nth-child(6) {
  animation-delay: 0.6s;
}
.fade-in:nth-child(7) {
  animation-delay: 0.7s;
}
.fade-in:nth-child(8) {
  animation-delay: 0.8s;
}
.fade-in:nth-child(9) {
  animation-delay: 0.9s;
}
.fade-in:nth-child(10) {
  animation-delay: 1s;
}

/* Floating Buttons - Premium Style */
.floating-buttons {
  position: fixed;
  bottom: 35px;
  right: 35px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1200;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.float-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0;
  animation: ripple 2s ease infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.float-btn:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.float-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  position: relative;
  z-index: 1;
}

.float-btn.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.float-btn.linkedin {
  background: linear-gradient(135deg, #0077b5 0%, #005582 100%);
}

.float-btn.email {
  background: #163757;
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.process-step {
  position: relative;
  padding: 25px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  opacity: 0.3;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.testimonial {
  padding: 35px;
  background: var(--white);
  border-top: 3px solid var(--navy);
  position: relative;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.testimonial .quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial .author {
  color: var(--steel);
  font-size: 0.95rem;
}

/* Alternating Services Layout */
.services-alternating {
  max-width: 1200px;
  margin: 0 auto;
}

.service-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}

.service-row-right {
  grid-template-columns: 1fr 1.2fr;
}

.service-text {
  position: relative;
}

.service-number {
  font-size: 5rem;
  font-weight: 700;
  opacity: 0.15;
  font-family: "Playfair Display", serif;
  line-height: 1;
  margin-bottom: -20px;
}

.service-text h3 {
  color: var(--navy);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.service-text p {
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.service-features li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 12px;
  color: var(--steel);
}

.service-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 700;
}

.service-image {
  position: relative;
}

.image-placeholder-small {
  width: 100%;
  height: 280px;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  border-radius: 12px;
}

.image-placeholder-small::after {
  content: "[ Image Placeholder ]";
  opacity: 0.6;
}

/* Icon Boxes */
.icon-boxes-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.icon-box {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 auto 25px;
}

.icon-box h3 {
  color: var(--navy);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.icon-box p {
  color: var(--steel);
  font-size: 0.95rem;
  max-width: 100%;
}

/* Industry Cards */
.industry-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.industry-card {
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--navy);
}

.card-header {
  padding: 25px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 100%);
  border-bottom: 3px solid;
}

.card-tech .card-header {
  border-bottom-color: #163757;
}

.card-professional .card-header {
  border-bottom-color: #2a4a65;
}

.card-healthcare .card-header {
  border-bottom-color: #3e5d73;
}

.card-manufacturing .card-header {
  border-bottom-color: #527081;
}

.card-retail .card-header {
  border-bottom-color: #66838f;
}

.card-financial .card-header {
  border-bottom-color: #7a969d;
}

.card-header h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.4rem;
}

.card-body {
  padding: 25px;
}

.card-body p {
  margin: 0;
  color: var(--steel);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1100;
    padding: 0 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-logo {
    display: block;
  }

  .sidebar {
    top: 0;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1200;
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .main {
    margin-left: 0;
    padding: 80px 5% 40px;
  }

  .section h1 {
    font-size: 2.8rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .blog-content h2 {
    font-size: 1.3rem;
  }

  .grid,
  .process-grid,
  .service-content-grid,
  .benefits-grid,
  .values-grid,
  .industries-grid,
  .testimonials-grid,
  .mission-vision-grid,
  .approach-grid,
  .why-choose-grid,
  .packages-grid,
  .contact-reasons-grid,
  .contact-methods-grid,
  .consultation-process {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 40px 25px;
  }

  .logo {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .logo img {
    max-width: 150px;
  }

  .section {
    margin-bottom: 40px;
  }

  .floating-buttons {
    bottom: 24px;
    right: 24px;
    gap: 14px;
  }

  .float-btn {
    width: 52px;
    height: 52px;
  }

  .float-btn svg {
    width: 24px;
    height: 24px;
  }

  .service-row,
  .service-row-right {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }

  .service-row-right .service-image {
    order: 2;
  }

  .service-row-right .service-text {
    order: 1;
  }

  .service-number {
    font-size: 3.5rem;
  }

  .image-placeholder-small {
    height: 220px;
  }

  .icon-boxes-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .industry-cards-grid {
    grid-template-columns: 1fr;
  }

  .single-blog-content {
    padding: 40px 25px;
  }

  .blog-card {
    border-radius: 16px;
  }

  .blog-thumb {
    height: 200px;
  }

  .blog-content {
    padding: 24px 22px 28px;
  }

  .read-more {
    padding: 9px 18px;
    font-size: 0.78rem;
  }
}
