* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}

.main-header {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #f1f1f1;
}

.header-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo img {
  width: 135px;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar a {
  color: #222;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  transition: 0.3s ease;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: #1e3568; /* Logo dark blue */
  border-radius: 20px;
  transition: 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  color: #1e3568;
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}
.hamburger {
  display: none;
  width: 35px;
  height: 26px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #222;
  border-radius: 50px;
  transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 991px) {
  .logo img {
    width: 140px;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .navbar.active {
    max-height: 350px;
  }

  .navbar a {
    width: 100%;
    text-align: center;
    padding: 18px 0;
    border-top: 1px solid #eee;
  }

  /* Remove desktop underline on mobile */
  .navbar a::after {
    display: none;
  }

  /* Professional active item */
  .navbar a.active {
    color: #1e3568;
    background: #f7f9fc;
    font-weight: 700;
  }
}

/* ==========================
HERO SECTION
========================== */

.hero {
  position: relative;
  min-height: 90vh;

  background: url("../img/hero-bg.jpeg") center center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.hero-content h2 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero-btn {
  display: inline-block;
  padding: 16px 42px;
  background: #fff;
  color: #1e3568;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #1e3568;
  color: #fff;
}

/* ==========================
RESPONSIVE
========================== */

@media (max-width: 991px) {
  .hero {
    min-height: 80vh;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* ==========================
ABOUT SECTION
========================== */

.about {
  padding: 100px 0;
}

.about-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-content span {
  color: #7ebde8;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.about-content h2 {
  font-size: 2.8rem;
  color: #1e3568;
  margin: 15px 0 30px;
}

.about-content p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: justify;
}

.about-content strong {
  color: #1e3568;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-content h2 {
    font-size: 2.2rem;
  }
}

.stats {
  padding: 80px 0;
  background: #f7f9fc;
}

.stats-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-box {
  padding: 35px 20px;
  border-radius: 20px;
  transition: 0.4s ease;
}

.stat-box:hover {
  background: #fff;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stat-box h3,
.stat-box span {
  display: inline-block;
  font-size: 4rem;
  font-weight: 700;
  color: #1e3568;
}

.stat-box p {
  margin-top: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
}

@media (max-width: 991px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* ==========================
EXPERTISE SECTION
========================== */

.expertise {
  padding: 100px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: #7ebde8;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.section-title h2 {
  font-size: 3rem;
  color: #111;
  margin-top: 10px;
}

.expertise-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.expertise-card {
  background: #050505;
  color: #fff;
  border-radius: 28px;
  padding: 70px 55px;
  min-height: 430px;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

.expertise-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(126, 189, 232, 0.18);
  border-radius: 50%;
  top: -70px;
  right: -70px;
  transition: 0.4s ease;
}

.expertise-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

.expertise-card:hover::before {
  transform: scale(1.4);
}

.expertise-card h3 {
  font-size: 3rem;
  color: #7ebde8;
  margin-bottom: 35px;
}

.expertise-card h4 {
  font-size: 1.4rem;
  margin-bottom: 25px;
}

.expertise-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.expertise-card.light {
  background: #f7f9fc;
  color: #111;
  border: 1px solid #eef2f6;
}

.expertise-card.light p {
  color: #555;
}

.expertise-card.light h4 {
  color: #1e3568;
}

@media (max-width: 991px) {
  .expertise-container {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 2.3rem;
  }

  .expertise-card {
    min-height: auto;
    padding: 50px 35px;
  }
}

/* ==========================
WHY CHOOSE US
========================== */

.why-choose {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e3568, #111827);
}

.white-title span,
.white-title h2 {
  color: #fff;
}

.why-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 22px;
  padding: 45px 25px;

  text-align: center;
  color: #fff;

  position: relative;
  overflow: hidden;

  transition: 0.4s ease;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );

  transition: 0.6s ease;
}

.why-card:hover::before {
  left: 100%;
}

.why-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}

/* ICONS */

.why-card i {
  font-size: 3.5rem;
  color: #7ebde8;
  margin-bottom: 30px;
  transition: 0.4s ease;
  position: relative;
  z-index: 2;
}

.why-card:hover i {
  transform: scale(1.15) rotate(5deg);
}

/* TEXT */

.why-card h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.why-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 2;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .why-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .why-container {
    grid-template-columns: 1fr;
  }
}

/* ==========================
OUR VISION
========================== */

.vision {
  padding: 100px 0;
  background: #f7f9fc;
}

.vision-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;

  display: flex;
  flex-direction: column;
  gap: 25px;
}

.vision-item {
  background: #fff;
  padding: 25px 35px;

  display: flex;
  align-items: center;
  gap: 30px;

  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  transition: 0.4s ease;
}

.vision-item:hover {
  transform: translateX(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.vision-icon {
  width: 75px;
  height: 75px;

  border-radius: 50%;

  background: #1e3568;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.vision-icon i {
  font-size: 2rem;
  animation: pulseVision 2.5s infinite;
}

@keyframes pulseVision {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.vision-item h3 {
  font-size: 1.5rem;
  color: #111;
}

@media (max-width: 991px) {
  .vision-item {
    padding: 20px;
    gap: 20px;
  }

  .vision-icon {
    width: 60px;
    height: 60px;
  }

  .vision-icon i {
    font-size: 1.5rem;
  }

  .vision-item h3 {
    font-size: 1.1rem;
  }
}

/* ==========================
OUR SERVICES
========================== */

.services {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7f9fc, #eef6fb);
}

.services-title {
  text-align: center;
  margin-bottom: 60px;
}

.services-title span {
  color: #7ebde8;
}

.services-title h2 {
  color: #1e3568;
}

.services-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.service-card {
  background: #fff;
  padding: 50px 35px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  background: rgba(126, 189, 232, 0.18);
  border-radius: 50%;
  transition: 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
  transform: scale(1.4);
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: #1e3568;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.service-icon i {
  font-size: 2.5rem;
  color: #7ebde8;
}

.service-card h3 {
  font-size: 1.6rem;
  color: #1e3568;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.service-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.9;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .services-container {
    grid-template-columns: 1fr;
  }
}

/* ==========================
FOOTER
========================== */

/* ==========================
FOOTER
========================== */

.footer {
  background: #ffffff;
  padding: 50px 0;
  border-top: 1px solid #e9eef5;
}

.footer-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.footer-logo img {
  width: 140px;
}

.footer-address {
  text-align: center;
}

.footer-contact {
  text-align: right;
}

/* Titles */

.footer-address h3,
.footer-contact h3 {
  color: #1e3568;
  font-size: 1.4rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-address h3::after,
.footer-contact h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #7ebde8;
  border-radius: 20px;
  margin: 12px auto 0;
}

/* Text */

.footer-address p,
.footer-contact p {
  color: #666;
  line-height: 2;
}

/* Contact alignment */

.footer-contact p {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.footer-contact i {
  color: #7ebde8;
  font-size: 1rem;
}

/* ==========================
RESPONSIVE
========================== */

@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }
}

/* ==========================
CONTACT HERO
========================== */

.contact-hero {
  min-height: 420px;
  background: linear-gradient(135deg, #f7f9fc, #eef6fb);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(126, 189, 232, 0.22);
  top: -120px;
  left: -120px;
}

.contact-hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(30, 53, 104, 0.1);
  bottom: -110px;
  right: -110px;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 850px;
}

.contact-hero-content span {
  color: #7ebde8;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.contact-hero-content h1 {
  color: #1e3568;
  font-size: 4rem;
  margin: 15px 0 25px;
}

.contact-hero-content p {
  color: #555;
  font-size: 1.15rem;
  line-height: 1.9;
}

@media (max-width: 991px) {
  .contact-hero-content h1 {
    font-size: 2.8rem;
  }

  .contact-hero {
    min-height: 360px;
  }
}

/* ==========================
CONTACT INFO
========================== */

.contact-info {
  padding: 100px 0;
}

.contact-info-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-card {
  background: #fff;
  text-align: center;
  padding: 50px 30px;

  border-radius: 25px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  transition: 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 85px;
  height: 85px;

  margin: 0 auto 30px;

  background: #1e3568;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.4s ease;
}

.contact-card:hover .contact-icon {
  background: #7ebde8;
}

.contact-icon i {
  color: #fff;
  font-size: 2rem;
}

.contact-card h3 {
  color: #1e3568;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-card p {
  color: #666;
  line-height: 1.9;
}

@media (max-width: 991px) {
  .contact-info-container {
    grid-template-columns: 1fr;
  }
}

/* ==========================
REQUEST FORM
========================== */

.request-form {
  padding: 100px 0;
}

.request-form .section-title {
  width: 90%;
  max-width: 850px;
  margin: 0 auto 60px;
}

.request-form .section-title p {
  color: #666;
  line-height: 1.9;
  margin-top: 20px;
}

.form-container {
  width: 90%;
  max-width: 900px;
  margin: auto;

  background: #fff;
  padding: 50px;

  border-radius: 30px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 22px;

  border: 1px solid #e5e5e5;
  border-radius: 15px;

  font-family: "Poppins", sans-serif;
  font-size: 1rem;

  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #7ebde8;
}

.form-btn {
  border: none;
  background: #1e3568;
  color: #fff;

  padding: 16px 40px;

  border-radius: 50px;

  font-size: 1rem;
  font-weight: 600;

  cursor: pointer;
  transition: 0.3s;
}

.form-btn:hover {
  background: #7ebde8;
}

.success-message {
  display: none;

  margin-top: 25px;
  padding: 18px 20px;

  background: #eef6fb;

  border-left: 5px solid #7ebde8;

  color: #1e3568;
  font-weight: 600;

  border-radius: 12px;
}

/* ==========================
RESPONSIVE
========================== */

@media (max-width: 991px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 35px 25px;
  }
}

/* ==========================
PRODUCTS HERO
========================== */

.products-hero {
  position: relative;
  height: 390px;
  background: url("../img/products-hero.jpeg") center center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.products-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 53, 104, 0.62);
}

.products-hero-content {
  position: relative;
  z-index: 2;
}

.products-hero-content h1 {
  color: #fff;
  font-size: 4.5rem;
  font-weight: 800;
}

@media (max-width: 991px) {
  .products-hero {
    height: 320px;
  }

  .products-hero-content h1 {
    font-size: 3rem;
  }
}

/* ==========================
PRODUCTS SECTION
========================== */

.products-section {
  padding: 100px 0;
  background: #fff;
}

.products-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.product-card {
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 22px;
  padding: 25px;

  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
  border-color: #7ebde8;
}

.product-img {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.07);
}

.product-card h3 {
  color: #1e3568;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
}

@media (max-width: 991px) {
  .products-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-container {
    grid-template-columns: 1fr;
  }
}

/* ==========================
BLOG HERO
========================== */

.blog-hero {
  position: relative;
  min-height: 420px;

  background: url("../img/blog-hero.jpg") center center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;

  background: rgba(30, 53, 104, 0.65);
}

.blog-hero-content {
  position: relative;
  z-index: 2;

  width: 90%;
  max-width: 850px;
}

.blog-hero-content span {
  color: #7ebde8;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.blog-hero-content h1 {
  color: #fff;
  font-size: 4.5rem;
  font-weight: 800;

  margin: 20px 0;
}

.blog-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.9;
}

@media (max-width: 991px) {
  .blog-hero {
    min-height: 350px;
  }

  .blog-hero-content h1 {
    font-size: 3rem;
  }

  .blog-hero-content p {
    font-size: 1rem;
  }
}

/* ==========================
BLOG SECTION
========================== */

.blog-section{
  padding:100px 0;
  background:#f8fafc;
}

.blog-container{
  width:90%;
  max-width:1000px;
  margin:auto;

  display:flex;
  flex-direction:column;
  gap:25px;
}

.blog-item{
  background:#fff;
  border-radius:20px;
  overflow:hidden;

  border:1px solid #edf1f6;

  box-shadow:0 15px 40px rgba(0,0,0,.06);

  transition:.4s ease;
}

.blog-item:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.blog-header{
  padding:30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.blog-header h3{
  color:#1E3568;
  font-size:1.3rem;
  line-height:1.5;
}

.blog-header span{
  font-size:2rem;
  color:#7EBDE8;
  font-weight:700;
  transition:.3s ease;
}

.blog-item.active .blog-header span{
  transform:rotate(45deg);
}

.blog-body{
  max-height:0;
  overflow:hidden;
  transition:max-height .5s ease;
}

.blog-item.active .blog-body{
  max-height:8000px;
}

.blog-body h4{
  color:#1E3568;
  margin:20px 30px 12px;
  font-size:1.1rem;
}

.blog-body p{
  padding:0 30px 20px;
  color:#666;
  line-height:1.9;
}

.blog-body ul{
  padding:0 30px 25px 55px;
  color:#666;
  line-height:1.9;
}

.blog-body li{
  margin-bottom:10px;
}

@media(max-width:991px){

  .blog-header{
    padding:25px;
  }

  .blog-header h3{
    font-size:1.1rem;
  }

  .blog-header span{
    font-size:1.7rem;
  }

}

@media (max-width: 991px) {

  .blog-section{
    padding:80px 0;
  }

  .blog-header{
    padding:22px;
  }

  .blog-header h3{
    font-size:1.05rem;
    line-height:1.6;
  }

  .blog-header span{
    font-size:1.6rem;
  }

  .blog-body h4{
    font-size:1rem;
    margin:18px 22px 10px;
  }

  .blog-body p{
    padding:0 22px 18px;
    font-size:.95rem;
  }

  .blog-body ul{
    padding:0 22px 20px 45px;
    font-size:.95rem;
  }

}