/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   font-family: "Poppins", Arial, sans-serif;
}


/* ===== Topbar ===== */
.topbar {
  background-color: #13409a;
  color: #ffffff;
  font-size: 14px;
}

.topbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* ===== Contact Info ===== */
.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}

.item i {
  color: white;
  font-size: large;
}

/* ===== Social Icons ===== */
.social {
  display: flex;
  gap: 10px;
}

.social a {
  text-decoration: none;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e2e1e1;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* Brand Colors */
.social a.facebook {
  color: #1877f2;
}
.social a.instagram {
  color: #e1306c;
}
.social a.linkedin {
  color: #0077b5;
}
.social a.twitter {
  color: #1da1f2;
}

/* Hover Effect */
.social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .topbar .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .contact {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .item {
    justify-content: center;
  }

  .social {
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .topbar .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .contact {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .item {
    justify-content: center;
    font-size: 13px;
  }

  .social {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
}

/* ===== HEADER ===== */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  max-width: 1200px;
  margin: auto;
  padding: 8px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 90px;
  height: auto;
}
/* ===== NAVBAR ===== */
.navbar ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navbar ul li {
    
  position: relative;
}

.navbar ul li a {
  text-decoration: none;
  color: #0b1220;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
  padding: 10px 5px;
  display: block;
}

.navbar ul li a:hover {
  color: #0b84ff;
}

/* ===== DROPDOWN ===== */
.navbar ul li ul.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: none;
  min-width: 220px;
  z-index: 999;
}

/* Show dropdown on hover */
.navbar ul li:hover > ul.dropdown {
  display: block;
}

/* Dropdown links */
.navbar ul li ul.dropdown li a {
  color: #0b1220;
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.navbar ul li ul.dropdown li a:hover {
  background: #f5f5f5;
  color: #0b84ff;
}

/* ===== SUB-DROPDOWN (second level) ===== */
.navbar ul li ul.dropdown li {
  position: relative;
}

.navbar ul li ul.dropdown li ul.sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: none;
  min-width: 220px;
  z-index: 999;
}

/* Show sub-dropdown on hover */
.navbar ul li ul.dropdown li:hover > ul.sub-dropdown {
  display: block;
}

/* Smooth hover transition fix (so dropdown doesn’t disappear when moving to sub-menu) */
.navbar ul li ul.dropdown li:hover > a {
  background: #f5f5f5;
  color: #0b84ff;
}


/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
  display: none;              /* hidden by default */
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* Show only on hover */
.dropdown:hover > .dropdown-menu {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown links style */
.dropdown-menu li {
  border-bottom: 1px solid #eee;
}
.dropdown-menu li:last-child {
  border-bottom: none;
}
.dropdown-menu li a {
  padding: 10px 15px;
  display: block;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}
.dropdown-menu li a:hover {
  background: #e5e7e9;
  color: #fff;
}

/* ===== SUB-DROPDOWN (dropdown inside dropdown) ===== */
.dropdown-menu .dropdown {
  
  position: relative;
}


.dropdown-menu .dropdown > .dropdown-menu {
  top: 0;
  left: 60%;
  margin-left: 5px;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  
}

/* Show sub-dropdown on hover only */
.dropdown-menu .dropdown:hover > .dropdown-menu {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
    
}

/* ===== BUTTON (Right Side) ===== */
.header-btn .quote-btn {
  background: linear-gradient(135deg, #054b91);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px 8px 50px 8px;   /* unique shape */
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 14px rgba(11, 132, 255, 0.35);
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: none;
}

/* Hover effect */
.header-btn .quote-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #1c52a4);
  box-shadow: 0 10px 20px rgba(11, 132, 255, 0.5);
}

/* Shine animation */
.header-btn .quote-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
}

.header-btn .quote-btn:hover::after {
  left: 100%;
}


/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #0b1220;
}




/* ===== RESPONSIVE (Mobile) ===== */
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
  }

   .menu-toggle {
    display: block;
    position: absolute; /* new */
    top: 25px;          /* adjust as needed */
    right: 20px;        /* adjust as needed */
    z-index: 1100;  
     /* stay above navbar */
  }

  .navbar {
    display: none;
    width: 100%;
    background: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  }

  .navbar.active {
    display: block;
  }

  .navbar ul {
    flex-direction: column;
    padding: 0;
  }

  .navbar ul li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .navbar ul li a {
    padding: 12px 20px;
    font-size: 15px;
  }

  /* Dropdown compact view */
  .navbar ul li ul.dropdown {
    position: static;
    background: #f9f9f9;
    box-shadow: none;
    padding: 0;
    display: none;
   
  }

  .navbar ul li.open > ul.dropdown {
    display: flex;
    flex-direction: column;
    
  }

  .navbar ul li ul.dropdown li a {
    padding: 10px 30px;
    font-size: 14px;
    
  }

  /* Sub-dropdown compact */
  .navbar ul li ul.dropdown li ul.sub-dropdown {
    position: static;
    display: none;
    padding: 0;
    background: #f0f0f0;
    
    
  }

  .navbar ul li ul.dropdown li.open > ul.sub-dropdown {
    display: flex;
    flex-direction: column;
    
    
  }

  .navbar ul li ul.dropdown li ul.sub-dropdown a {
    padding: 10px 40px;
    font-size: 13px;
    
    
  }

  .header-btn {
    display: none;
  }

}


/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;  /* distance from bottom */
  right: 20px;   /* distance from right */
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #25D366; /* WhatsApp green background */
  border-radius: 50%;
  padding: 10px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}


/* ===== hero ===== */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #fff;
}

/* Background (Image or gradient) */
.hero .hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #0b1e63 0%, #0b58a4 80%);
  /* Optionally, add image overlay */
  /* background: url('your-bg.jpg') center/cover no-repeat; */
  opacity: 0.95;
  z-index: 1;
}

/* Inner container */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Text side */
.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  margin-top: 0px;
  font-size: 50px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-text p {
  margin-top: 40px;
  line-height: 1.8;
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Buttons */

.hero-cta .btn {
  text-decoration: none;
  padding: 16px 70px;             /* 🔹 Size increased */
  border-radius: 12px 40px 12px 40px; /* 🔹 Custom mixed corners */
  font-weight: 600;
  font-size: 17px;                /* 🔹 Slightly larger text */
  transition: all 0.3s ease;
  margin-right: 15px;
  display: inline-block;
  background: linear-gradient(135deg, #0b84ff, #0056b3); /* 🔹 Gradient color */
  color: #fff;
  box-shadow: 0 6px 15px rgba(11, 132, 255, 0.4);        /* 🔹 Soft glow */
  border: none;
}

.hero-cta .btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #0056b3, #0b84ff);
  box-shadow: 0 8px 20px rgba(11, 132, 255, 0.5);
}

.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn.secondary:hover {
  background: #fff;
  color: #0b1e63;
}

/* Graphic side */
.hero-graphic {
  flex: 1;
  text-align: center;
  min-width: 280px;
}

.hero-graphic img {
  max-width: 70%;
  height: auto;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 36px;
    margin-top: 30px;
  }
  .hero-text p {
    font-size: 16px;
  }
  .hero-cta .btn {
    margin: 8px 5px;
  }
  .hero-graphic {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding: 60px 15px;
  }
  .hero-text h1 {
    font-size: 28px;
  }
  .hero-text p {
    font-size: 14px;
  }
}


/* ===== ABOUT & FAQ SECTION ===== */
.about-faq-section {
  padding: 80px 100px;
  background: #f9fafc;
}

.about-faq-section .section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #0b1220;
  margin-bottom: 70px;
}

.about-faq-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  min-width: 320px;
}

.about-text h3 {
  font-size: 24px;
  color: #1b56a4;
  margin-bottom: 15px;
}

.about-text p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: justify;
}

/* ===== FAQ BOXES ===== */
.faq-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 12px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.faq-box h4 {
  color: #292a2c;
  font-size: 17px;
  margin-bottom: 8px;
}

.faq-box .answer {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  transition: all 0.4s ease;
}

/* Hover Effect */
.faq-box:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(11, 132, 255, 0.15);
}

.faq-box:hover .answer {
  max-height: 250px;
  opacity: 1;
}

/* ===== RESPONSIVE DESIGN ===== */

/* ===== Tablet view (max-width: 992px) ===== */
@media (max-width: 992px) {
  .about-faq-section {
    padding: 70px 40px; /* Reduced side padding for balance */
    background: #f9fafc;
  }

  .about-faq-section .section-title {
    font-size: 26px;
    margin-bottom: 60px;
    line-height: 1.4;
    text-align: center; /* Ensures title stays centered */
  }

  .about-faq-content {
    flex-direction: column;
    align-items: center; /* Centers image & text */
    justify-content: center;
    text-align: center;
    gap: 30px;
    margin: 0 auto; /* Centers the container */
  }

  .about-image img {
    display: block;
    max-width: 400px;
    margin: 0 auto; /* Ensures perfect center alignment */
  }

  .about-text {
    width: 100%;
    max-width: 700px; /* Keeps text nicely contained */
    margin: 0 auto;
  }

  .about-text h3 {
    font-size: 22px;
    margin-top: 30px;
    line-height: 1.6;
    text-align: center;
  }

  .about-text p {
    font-size: 14.5px;
    text-align: justify;
  }

  .faq-boxes {
    width: 100%;
    max-width: 700px;
    margin: 0 auto; /* Center FAQ section too */
  }

  .faq-box {
    padding: 12px 18px;
    text-align: left;
  }

  .faq-box h4 {
    font-size: 16px;
  }
}


/* ===== Mobile view (max-width: 600px) ===== */
@media (max-width: 600px) {
  .about-faq-section {
    padding: 50px 25px;
  }

  .about-faq-section .section-title {
    font-size: 24px;
    margin-bottom: 45px;
   
  }

  .about-faq-content {
    text-align: center;
    gap: 25px;
  }

  .about-image img {
    max-width: 100%;
  }

  .about-text h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .about-text p {
    font-size: 14px;
    text-align: justify;
  }

  .faq-box {
    padding: 10px 14px;
  }

  .faq-box h4 {
    font-size: 15px;
  }

  .faq-box .answer {
    font-size: 13px;
  }
}



/* ===== OUR SERVICES SECTION ===== */
.services-section {
  background: #f9fbfd;
  padding: 80px 100px;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-section .section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #20110b;
  margin-bottom: 10px;
  margin-top: -30px;
}

.services-section .section-subtitle {
  text-align: justify;
  font-size: 16px;
  color: #555;
  margin-bottom: 60px;
  line-height: 1.6;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* ===== CARD STYLE ===== */
.service-card {
  background: linear-gradient(135deg, #ffffff, #f3f6ff); /* soft gradient base */
  border-radius: 40px 10px 40px 10px;
  padding: 40px 25px;
  box-shadow: 0 8px 20px rgba(11, 132, 255, 0.1);
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* gradient overlay effect */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #041b4c, #0e34b4);
  opacity: 0.8;
  z-index: 0;
  transition: 0.5s;
}

.service-card > * {
  position: relative;
  z-index: 2;
}


/* Hover animation */
.service-card:hover {
  transform: translateY(-10px) scale(1.05);
  color: #fff;
  box-shadow: 0 10px 25px rgba(11, 132, 255, 0.3);
}

.service-card i {
  font-size: 45px;
  color:  white;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: white;
  line-height: 1.6;
 
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgb(238, 82, 82);
  color: #fff;
  box-shadow: 0 10px 25px rgba(11, 132, 255, 0.3);
}

.service-card:hover i {
  color: #fff;
}

.service-card:hover h3,
.service-card:hover p {
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
 
  .services-grid {
    padding: 0 20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .services-section {
    padding: 60px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 30px 20px;
  }
}




/* ===== about ===== */
.about-section {
  padding: 80px 100px;
  background: #f9fbff;
}

.about-section .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #0b5197;
}

.about-section .about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  gap: 60px;
}

.about-content {
  flex: 1;
}

.about-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
}

.about-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-btn {
  display: inline-block;
  background: #0757a8;
  color: #fff;
  padding: 12px 30px;
  border-radius: 40px 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  background: #0673e0;
  transform: scale(1.05);
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 30px 10px 30px 10px;
  box-shadow: 0 8px 20px rgba(11, 132, 255, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-section {
    padding: 60px 30px;
  }
}


/* ===== stats SECTION ===== */
.stats-section {
  background: #fff;
  padding: 80px 10%;
  text-align: center;
  color: #0b1220;
}

.stats-heading {
 
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1e1f20;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap;
}

.stat-box {
  flex: 1 1 250px;
}

.stat-box h3 {
  font-size: 80px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #a5370b; /* number color */
  letter-spacing: 1px;
}

.stat-box p {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

/* Hover animation (optional) */
.stat-box:hover h3 {
  transform: scale(1.08);
  transition: 0.3s;
  color: #0b84ff;
}

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;  /* stacked vertically */
    gap: 20px;               /* chhota gap, 0.01px se zyada practical */
    align-items: center;     /* center alignment */
  }

  .stat-box {
    flex: unset;             /* flex width remove karo taaki box tight ho */
    width: auto;             /* natural width */
    margin-bottom: 10px;     /* chhota margin bottom */
  }

  .stat-box h3 {
    font-size: 50px;
    margin-bottom: 5px;      /* numbers aur text ke beech ka gap kam kiya */
  }

  .stat-box p {
    font-size: 16px; 
    text-align: justify;        /* text thoda chhota karke space bacha sakte ho */
  }
}





/* ===== consultancy ===== */
.consultancy-section {
  padding: 80px 20px;
  background: whitesmoke;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1100px;
  box-sizing: border-box;
}

.consultancy-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* allow wrapping */
  gap: 60px;
}

.consultancy-content {
  flex: 1 1 500px;
  width: 100%;
  box-sizing: border-box;
}

.consultancy-content h2 {
  font-size: 32px;
  color: #222;
  line-height: 1.4;
  margin-bottom: 20px;
}

.consultancy-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.consultancy-content strong {
  color: #0056ff;
}

.consultancy-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #1a50bc;
  color: #fff;
  border-radius: 10px 30px 10px 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.consultancy-btn:hover {
  background: #003bb5;
  transform: scale(1.05);
}

.agency-text {
  margin-top: 15px;
  font-weight: 500;
  color: #333;
  font-style: italic;
}

.consultancy-image {
  flex: 1 1 450px;
  width: 100%;
  text-align: right;
  box-sizing: border-box;
}

.consultancy-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .consultancy-section {
   
    padding-bottom: -60px;
  }

  .consultancy-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .consultancy-image {
    text-align: center;
  }

  .consultancy-image img {
    margin-top: -110px;
    max-width: 90%;
   
  }

  .consultancy-content h2 {
    font-size: 28px;
  }

  .consultancy-content p {
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
  }
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .consultancy-section {
    margin-top: -30px;       /* negative margin hata diya */
    padding: 2px 20px;  /* padding reduce ki */
  }

  .consultancy-container {
    gap: 0px;           /* thoda gap rakha elements ke beech */
  }

  .consultancy-content h2 {
    font-size: 24px;
    margin-bottom: 45px; /* bottom margin reduce ki */
    margin-top: 95px;
  }

  .consultancy-content p {
    font-size: 14px;
    line-height: 1.9;    /* tight line-height */
    margin-bottom: 40px;
    text-align: justify;
  }

  .consultancy-btn {
    padding: 20px 24px;
    font-size: 14px;
  }

  .consultancy-image img {
    width: 100%;
    max-width: 100%;
    margin-top: 80px;       /* negative top margin remove ki */
    margin-bottom: 0;    /* extra bottom space remove ki */
  }
}


/* ===== creative ===== */
.creative-section {
  position: relative;
  overflow: hidden;
  padding: 100px 100px;
  color: #fff;
  box-sizing: border-box;
}

/* Stylish curved gradient background */
.creative-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #083ba1, #d35313);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  z-index: -1;
}

.creative-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.creative-left {
  flex: 1 1 500px;
  width: 100%;
}

.creative-left h2 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
}

.creative-left p {
  font-size: 17px;
  line-height: 1.7;
  color: #eef3ff;
  margin-bottom: 25px;
}

.creative-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: #0056ff;
  border-radius: 12px 40px 12px 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.creative-btn:hover {
  background: #e5eeff;
  transform: translateY(-3px);
}

.creative-right {
  flex: 1 1 450px;
  width: 100%;
  text-align: right;
}

.creative-right img {
  width: 90%;
  max-width: 520px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

/* 📱 Tablet Responsive */
@media (max-width: 992px) {
  .creative-section {
    padding: 100px 50px;
    padding-bottom: 20px;
  }

  .creative-container {
    flex-direction: column;
    text-align: center;
    gap: 0px;
  }

  .creative-left h2 {
    margin-bottom: 40px;
    font-size: 30px;
  }

  .creative-left p {
    line-height: 1.9;
    font-size: 16px;
    text-align: justify;
  }

  .creative-right {
    text-align: center;
  }

  
.creative-btn {
  margin-top: 10px;
}

  .creative-right img {
    width: 85%;
    max-width: 450px;
    margin: 2px auto 0;
    margin-top: 20px;
   
  }
}

/* 📱 Mobile Responsive */
@media (max-width: 600px) {
  .creative-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
 background: linear-gradient(135deg, #2567ec, #873005);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  z-index: -1;
}

  .creative-section {
    padding: 20px 25px;
    margin-top: -40px;
    margin-bottom: 30px;
   
  }

  .creative-left h2 {
    font-size: 24px;
  }

  .creative-left p {
    text-align: justify;
    font-size: 15px;
  }

  .creative-btn {
    padding: 20px 25px;
    font-size: 14px;
   
  }

  .creative-right img {
    
    width: 100%;
    max-width: 100%;
    
  }
}



/* ===== trusted ===== */
.trusted-section {
  padding: 80px 100px;
  background: linear-gradient(135deg, #f9fbff, #eef3ff);
  text-align: center;
  box-sizing: border-box;
}

.trusted-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0b2f6a;
  margin-bottom: 60px;
  position: relative;
}

.trusted-section h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #0b84ff;
  margin: 15px auto 0;
  border-radius: 2px;
}

.trusted-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
  padding: 0 20px;
}

.logo-card {
  background: #fff;
  border-radius: 25px 10px 25px 10px;
  padding: 25px 30px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.logo-card:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.logo-card img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.logo-card:hover img {
  filter: grayscale(0%);
}

/* 📱 Tablet Responsive */
@media (max-width: 992px) {

  .trusted-section {
    padding: 60px 50px;
    margin-top: -120px;
  }

  .trusted-section h2 {
    font-size: 30px;
    margin-bottom: 50px;
  }

  .trusted-logos {
    gap: 30px;
  }
}

/* 📱 Mobile Responsive */
@media (max-width: 600px) {
  .trusted-section {
    padding: 50px 20px;
  }

  .trusted-section h2 {
    font-size: 24px;
  }

  .trusted-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .logo-card {
    padding: 15px 20px;
  }
}



/* ===== faq ===== */
.faq-section {
  position: relative;
  padding: 60px 80px;
  overflow: hidden;
  color: #222;
}

.faq-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  background: linear-gradient(135deg, #06417c 0%, #1266b4 50%, #0a5691 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 90%);
  z-index: 0;
  opacity: 0.2;
}

.faq-title {
  text-align: center;
  font-size: 38px;
  color: #0b84ff;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.faq-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: #f2f6ff;
  padding: 0 25px;
}

.faq-answer p {
  margin: 15px 0;
  color: #444;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 25px;
}

.faq-item.active .arrow {
  transform: rotate(45deg);
}

.arrow {
  font-size: 24px;
  color: #0b84ff;
  transition: transform 0.3s ease;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 30px;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-question {
    font-size: 16px;
  }
}


/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 80px 100px;
  background: linear-gradient(135deg, #f9f9ff 0%, #eef5ff 100%);
  text-align: center;
  box-sizing: border-box;
}

.section-title {
  font-size: 2.5rem;
  color: #1d1f20;
  margin-bottom: 10px;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  justify-items: center;
 

}

.blog-card {
  background: #fff;
  border-radius: 20px 5px 20px 5px;
  box-shadow: 0 8px 20px rgba(11, 132, 255, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: left;
  max-width: 380px;
  width: 100%;
   text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(11, 132, 255, 0.2);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  
  padding: 25px;
}

.blog-content h3 {
  color: #1a1b1d;
  font-size: 1.4rem;
  margin-bottom: 12px;
  line-height: 1.4;
 
  
  
}

.blog-content p {
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
 
}

.read-more {
  color: #0b84ff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.read-more:hover {
  color: #084c9f;
}

/* ===== Tablet (Medium Devices) ===== */
@media (max-width: 992px) {
  .blog-section {
    padding: 70px 7%;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .blog-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .blog-card {
    max-width: 100%;
  }

  .blog-content {
    padding: 20px;
  }
}

/* ===== Mobile (Small Devices) ===== */
@media (max-width: 600px) {
  .blog-section {
    padding: 60px 5%;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 35px;
  }

  .blog-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .blog-card {
    width: 100%;
    border-radius: 15px;
  }

  .blog-card img {
    height: 200px;
  }

  .blog-content h3 {
    font-size: 1.2rem;
  }

  .blog-content p {
    font-size: 0.95rem;
  }
}

/* ===== Extra Small Devices (≤400px) ===== */
@media (max-width: 400px) {
  .blog-section {
    padding: 50px 4%;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .blog-content {
    padding: 18px;
  }

  .blog-card img {
    height: 180px;
  }
}



/* ===== Footer CSS (Social Pulse Solution) ===== */
.sps-footer {
  background: #063176;
  color: #e8eefb;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  padding: 48px 6%;
  box-sizing: border-box;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}

/* Column headings */
.footer-col h3 {
  font-size: 18px;
  margin-bottom: 14px;
  color: #ffffff;
  font-weight: 700;
  position: relative;
}

/* Paragraph */
.footer-col p {
  color: white;
  line-height: 1.7;
  font-size: 14px;
  margin: 0;
}

/* Lists */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color .2s ease;
}

.footer-col ul li a:hover {
  color: #cec6c6;
  text-decoration: none;
}

/* Contact items */
.contact-col .contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.contact-col .contact-item i {
  font-size: 18px;
  color: white;
  margin-top: 3px;
}

.contact-col .contact-item strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
  margin-bottom: 4px;
}

.contact-col .contact-item div {
  font-size: 14px;
  color: #d9e6ff;
}

/* Social icons */
.footer-social {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  color: #cfe6ff;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s ease;
  font-size: 14px;
}

.footer-social a:hover {
  background: #68b6ff;
  color: #071833;
  transform: translateY(-3px);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(233, 219, 219, 0.06);
  margin-top: 30px;
  padding-top: 16px;
  text-align: center;
  color: white;
  font-size: 13px;
}

/* Responsive: tablet */
@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .sps-footer {
    padding: 40px 5%;
  }
}

/* Responsive: mobile (stack, left align) */
@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sps-footer {
    padding: 30px 5%;
  }

  .footer-col h3,
  .footer-col p,
  .footer-col ul,
  .contact-col .contact-item div {
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom {
    text-align: center;
    font-size: 12px;
    line-height: 1.7;
  }

}



/* ===== Contact Section ===== */
.contact-section {
  padding: 80px 10%;
  background: #f9fbff;
  color: #222;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

/* Left Content */
.contact-left {
  flex: 1 1 500px;
}

.contact-left h2 {
  font-size: 36px;
  color: #0b3ba1;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.contact-info p {
  margin: 8px 0;
  font-size: 15px;
  color: #333;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0056ff;
  outline: none;
}

.contact-btn {
  background: #04286e;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px 30px 10px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #003bb5;
  transform: translateY(-2px);
}

/* Right Image */
.contact-right {
  flex: 1 1 450px;
  text-align: right;
}

.contact-right img {
  margin-top: 200px;
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .contact-right {
    text-align: center;
  }

  .contact-right img {
    max-width: 90%;
  }

  .contact-left h2 {
    font-size: 28px;
  }

  .contact-left p {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 60px 25px;
    margin-bottom: -160px;
 
  }

  .contact-left h2 {
    font-size: 24px;
   
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }

  .contact-btn {
    margin-top: 20px;
    font-size: 14px;
    padding: 14px;
  }
  
.contact-right img {
  margin-top: 60px;
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.contact-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
}





/* ===== 7  services page ===== */
.smm-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 100px 10%;
  background: linear-gradient(135deg, #c4c4c5, #eef3ff);
  flex-wrap: wrap;
  line-height: 1.7;
}

.smm-content {
  flex: 1;
  min-width: 300px;
}

.smm-content h1 {
  font-size: 42px;
  color: #0a3d91;
  margin-bottom: 20px;
  line-height: 1.3;
}

.smm-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.smm-btn {
  display: inline-block;
  margin-top: 25px;
  background: #0c3a95;
  color: #fff;
  padding: 14px 35px;
  border-radius: 12px 35px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.smm-btn:hover {
  background: #003bb5;
  transform: scale(1.05);
}

.smm-image {
  flex: 1;
  text-align: right;
}

.smm-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

/* ---------- COMMON SECTION STYLES ---------- */
.smm-about,
.smm-services,
.smm-results,
.smm-cta {
  padding: 40px 10%;
  text-align: justify;
  line-height: 1.8;
  background: #fff;
}

.smm-about h2,
.smm-services h2,
.smm-results h2,
.smm-cta h2 {
  text-align: center;
  font-size: 36px;
  color: #0a3d91;
  margin-bottom: 30px;
}

/* ---------- GRID SECTION ---------- */
.smm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.smm-card {
  background: #f5f7fa;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.smm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 86, 255, 0.15);
}

.smm-card h3 {
  color: #08599c;
  font-size: 22px;
  margin-bottom: 10px;
}

.smm-card p {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- IMAGE BOX ---------- */
.smm-img-box {
  text-align: center;
  margin-top: 40px;
}

.smm-img-box img {
  width: 100%;
  max-width: 700px;
  border-radius: 15px;
}

/* ---------- CTA SECTION ---------- */
.smm-cta {
  background: linear-gradient(135deg, #0e59bc, #a0c2e0);
  color: #fff;
  text-align: center;
  padding: 40px 10%;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}

.smm-cta p {
  font-size: 17px;
  margin-bottom: 30px;
}

.smm-cta .cta-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #fff;
  color: #0056ff;
  border-radius: 12px 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.smm-cta .cta-btn:hover {
  background: #e5eeff;
  transform: translateY(-3px);
}

/* ---------- TABLET VIEW ---------- */
@media (max-width: 992px) {
  .smm-hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 5%;
  }

  .smm-content h1 {
    font-size: 34px;
  }

  .smm-content p {
    font-size: 16px;
  }

  .smm-image {
    text-align: center;
  }

  .smm-image img {
    max-width: 400px;
    margin-top: 25px;
  }

  .smm-about,
  .smm-services,
  .smm-results,
  .smm-cta {
    padding: 30px 10%;
  }
  .smm-services h2{
    padding: 0 10px;
    text-align: center;
    font-weight: 700;
  }

  .smm-grid {
    gap: 20px;
  }
  .smm-card h3{
    text-align: center;
  }
}

/* ---------- MOBILE VIEW ---------- */
@media (max-width: 600px) {
  .smm-hero {
    padding: 60px 20px;
  }

  .smm-content h1 {
    font-size: 26px;
  }

  .smm-content p {
    font-size: 15px;
  }

  .smm-btn {
    padding: 10px 25px;
    font-size: 14px;
  }

  .smm-services h2,
  .smm-about h2,
  .smm-results h2,
  .smm-cta h2 {
    font-size: 26px;
  }

  .smm-card {
    padding: 25px;
  }

  .smm-cta {
    padding: 60px 20px;
    border-radius: 0;
  }

  .smm-cta p {
    font-size: 15px;
  }

  .smm-cta .cta-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}




/* ===== 3 blogs pages ===== */
.blog-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  background: linear-gradient(135deg, #b8b6b5 0%, #eef5ff 100%);
  flex-wrap: wrap;
  gap: 30px;
}

.blog-content {
  flex: 1;
  padding-right: 40px;
  min-width: 300px;
}

.blog-content h1 {
  font-size: 2.8rem;
  color: #1d1f20;
  margin-bottom: 20px;
  line-height: 1.2;
}

.blog-content p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.blog-image {
  flex: 1;
  text-align: center;
}

.blog-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  height: auto;
}

/* ===== Blog Tips Section ===== */
.blog-tips {
  padding: 60px 10%;
  text-align: left;
}

.blog-tips h2 {
  font-size: 1.8rem;
  color: #1248ad;
  margin-top: 30px;
  margin-bottom: 15px;
}

.blog-tips p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.blog-tips ul {
  margin: 20px 0;
  padding-left: 20px;
}

.blog-tips ul li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 8px;
}

/* ===== Blog Summary Section ===== */
.blog-summary {
  padding: 60px 10%;
  text-align: center;
  background: linear-gradient(135deg, #b8b6b5 0%, #eef5ff 100%);
  border-radius: 20px 20px 0 0;
}

.blog-summary h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 20px;
}

.blog-summary p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.8;
}

.smm-btn {
  background: #0c3c9c;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

.smm-btn:hover {
  background: #003bb3;
}

/* ===== Responsive Design ===== */

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .blog-hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 8%;
  }

  .blog-content {
    padding-right: 0;
  }

  .blog-content h1 {
    font-size: 2.2rem;
  }

  .blog-content p {
    font-size: 1rem;
  }

  .blog-image img {
    max-width: 400px;
    margin-top: 20px;
  }

  .blog-tips {
    padding: 50px 8%;
  }

  .blog-tips h2 {
    font-size: 1.6rem;
  }

  .blog-summary {
    padding: 50px 8%;
  }
}

/* Mobile (max-width: 600px) */
@media (max-width: 600px) {
  .blog-hero {
    padding: 50px 6%;
  }

  .blog-content h1 {
    font-size: 1.9rem;
  }

  .blog-content p {
    font-size: 0.95rem;
  }

  .smm-btn {
    padding: 10px 22px;
    font-size: 0.95rem;
  }

  .blog-tips h2 {
    font-size: 1.4rem;
  }

  .blog-tips p {
    font-size: 0.95rem;
  }

  .blog-tips ul li {
    font-size: 0.9rem;
  }

  .blog-summary h2 {
    font-size: 1.6rem;
  }

  .blog-summary p {
    font-size: 1rem;
  }
}
