/* Hero Section */
.hero {
  background: #0a0118;
  color: #fff;
  padding: 80px 0px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 6%;
}

.hero-text {
  flex: 1;
  min-width: 320px;
}

.hero-text .sub-heading {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
  color: #cfcfcf;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.hero-text .description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #ccc;
}

.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #2d3dff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #1a28cc;
  color: #fff;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text .description {
    font-size: 15px;
  }
}

/* Mobile Responsive (only affects screens <= 768px) */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;   /* Stack text and image */
    text-align: center;       /* Center align text */
    gap: 20px;
  }

  .hero-text h1 {
    font-size: 1.8rem;        /* Smaller heading for mobile */
    line-height: 1.3;
  }

  .hero-text .description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .cta-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
  }

  .hero-image img {
    max-width: 90%;          /* Keep image smaller on mobile */
    height: auto;
  }
}


/* road map */


body {
  font-family: Arial;
  background: #fff;
  margin: 0;
  padding: 0;
}

.social-media-marketing-roadmap {
  padding: 60px 20px;
  text-align: center;
}

.social-media-marketing-roadmap-title {
  font-size: 32px;
  font-weight: bold;
  color: #031273;
  margin-bottom: 60px;
}

.social-media-marketing-roadmap-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
  position: relative;
  padding: 0% 10%;
}

.social-media-marketing-roadmap-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
  position: relative;
}

.social-media-marketing-circle {
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, #033b96, #031273);
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(3,59,150,0.5);
  z-index: 2;
}

.social-media-marketing-content img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.social-media-marketing-content h3 {
  font-size: 18px;
  font-weight: bold;
  color: #031273;
  margin-bottom: 10px;
}

.social-media-marketing-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.social-media-marketing-roadmap-line {
  flex: 1;
  height: 4px;
  background: linear-gradient(to right, #033b96, #031273);
  position: relative;
  top: -35px;
  z-index: 1;
  border-radius: 2px;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
  .social-media-marketing-roadmap-container {
    gap: 30px;
  }

  .social-media-marketing-roadmap-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .social-media-marketing-roadmap-step {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .social-media-marketing-roadmap-container {
    flex-direction: column;
    align-items: center;
  }

  .social-media-marketing-roadmap-step {
    width: 100%;
    max-width: 300px;
  }

  .social-media-marketing-roadmap-line {
    width: 4px;
    height: 60px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, #033b96, #031273);
  }
}

@media (max-width: 480px) {
  .social-media-marketing-roadmap-title {
    font-size: 24px;
  }

  .social-media-marketing-circle {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
  }

  .social-media-marketing-content h3 {
    font-size: 16px;
  }

  .social-media-marketing-content p {
    font-size: 13px;
  }
}





/* card section */

.social-media-marketing-card-section{
background-color: #cce5ff;

}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

.content-wrapper {
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 0.5rem;
}

.card-section-heading{
text-align: center;
font-size: 25px;
padding-top: 35px;
padding-bottom: 15px;
font-family:Arial, Helvetica, sans-serif
}
.news-card {
  border: 0px solid aqua;
  margin: 0.5rem;
  position: relative;
  height: 12rem; /* mobile */
  overflow: hidden;
  border-radius: 0.5rem;
  flex: 1;
  min-width: 290px;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 80%);
  z-index: 0;
}

.news-card__card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.news-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  z-index: -1;
}

.news-card__text-wrapper {
  position: absolute;
  bottom: 0rem;
  padding: 1rem;
  color: white;
  transition: background-color 1.5s ease;
}

.news-card__title {
  transition: color 1s ease;
  margin-bottom: 0.5rem;
  color: #fff;
}

.news-card__post-date {
  font-size: 0.7rem;
  margin-bottom: 0.5rem;
  color: #CCC;
}

.news-card__details-wrapper {
  max-height: 0;
  opacity: 0;
  transition: max-height 1.5s ease, opacity 1s ease;
}

.news-card__excerpt {
  font-weight: 300;
}

.news-card__read-more {
  background: black;
  color: #bbb;
  display: block;
  padding: 0.4rem 0.6rem;
  border-radius: 0.3rem;
  margin-top: 1rem;
  border: 1px solid #444;
  font-size: 0.8rem;
  text-decoration: none;
  width: 7rem;
  margin-left: auto;
  position: relative;
  z-index: 5;
}

.news-card__read-more i {
  position: relative;
  left: 0.2rem;
  color: #888;
  transition: left 0.5s ease, color 0.6s ease;
}

.news-card__read-more:hover i {
  left: 0.5rem;
  color: yellow;
}

/* ---------- Media Queries ---------- */
@media (min-width: 900px) {
  .news-card {
    height: 20rem; /* large screen */
  }

  .news-card:hover .news-card__details-wrapper {
    max-height: 20rem;
    opacity: 1;
  }

  .news-card:hover .news-card__text-wrapper {
    background-color: rgba(0, 0, 0, 0.6);
  }

  .news-card:hover .news-card__title {
    color: yellow;
  }

  .news-card:hover .news-card__image {
    transform: scale(1.2);
    z-index: -1;
  }
}





/* What Are You Looking For */



.social-media-marketing-section-container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  font-family: Arial;
  text-align: center;
}

.social-media-marketing-section-container h2 {
  font-size: 1.8rem;
  margin-bottom: 50px;
  font-weight: bold;
  color: #222;
  margin-top: 50px;
}

/* Grid Layouts */
.social-media-marketing-items-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* 3D Card Style with Blue Border */
.social-media-marketing-item.social-media-marketing-card,
.social-media-marketing-stat.social-media-marketing-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #007BFF; /* Blue border */
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.social-media-marketing-item.social-media-marketing-card:hover,
.social-media-marketing-stat.social-media-marketing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
  border-color: #0056b3; /* Darker blue on hover */
}

.social-media-marketing-item img,
.social-media-marketing-stat img {
  width: 70px;
  height: auto;
  margin-bottom: 10px;
}

.social-media-marketing-item p,
.social-media-marketing-stat p {
  font-size: 0.95rem;
  color: #444;
  margin: 0;
}

.social-media-marketing-stat h3 {
  font-size: 1.4rem;
  margin: 5px 0;
  color: #0056b3;
  font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .social-media-marketing-items-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .social-media-marketing-items-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}



/* 3 box */

.social-media-marketing-skills-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color:lightsteelblue;
}

.social-media-marketing-skills-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1200px;
  width: 100%;
}

.social-media-marketing-skill-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-media-marketing-skill-card:hover {
  background: #031273;
  color: #fff;
  border-color: #031273;
  transform: translateY(-5px);
}

.social-media-marketing-skill-card:hover b {
  color: #fff;
}

.social-media-marketing-skill-title {
  display: inline-block;
  padding: 6px 14px;
  border: 2px solid #031273;
  border-radius: 6px;
  color: #031273;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.social-media-marketing-skill-card:hover .social-media-marketing-skill-title {
  background: #fff;
  color: #031273;
}

.social-media-marketing-skill-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-media-marketing-skill-card li {
  margin-bottom: 12px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .social-media-marketing-skills-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .social-media-marketing-skills-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 899px) {
  .news-card__details-wrapper {
    max-height: 20rem;
    opacity: 1;
  }

  .news-card__text-wrapper {
    background-color: rgba(0, 0, 0, 0.6);
  }

  .news-card__title {
    color: yellow;
  }
}



/* section */

/* Section Background */
.why-choose-us {
  background: #eaf0ff; /* light blue */
  padding: 50px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Section Content */
.why-choose-us .content {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.why-choose-us h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #222;
}

.why-choose-us .tagline {
  color: #0066cc;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
      justify-self: center;
}
 .why-choose-us .tagline::before{
  position: absolute;
  content: '';
  width: 40px;
  height: 2px;
  background: #091d3e;
  top: 12px;
  left: -44px;
  justify-content: center;
}
.why-choose-us .tagline::after{
  position: absolute;
  content: '';
  width: 40px;
  height: 2px;
  background: #091d3e;
  top: 12px;
  right: -44px;
  justify-content: center;
} 


.why-choose-us .description {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}

/* Cards Grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 90%;
  margin: 0 auto;
}

/* Card Style */
.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  font-size: 18px;
  margin: 0 0 10px;
  font-weight: bold;
  color: #222;
}

.card-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
.card {
  width: 420px;   /* increase from 250px or whatever you had */
  max-width: 100%;
}

.card img {
  width: 100%;
  height: 200px;  /* increase this if you want taller images */
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}


/* Hover Effects */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}


/* section */

.social-media-marketing-engage-section {
  padding: 60px 20px;
}

.social-media-marketing-engage-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.social-media-marketing-engage-image img {
  max-width: 100%;
  height: auto;
}

.social-media-marketing-engage-content {
  flex: 1;
  min-width: 300px;
}

.social-media-marketing-subtitle {
  color: #252fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.social-media-marketing-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #0f0f0f;
}

.social-media-marketing-engage-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.social-media-marketing-engage-icon {
  margin-right: 15px;
  flex-shrink: 0;
}

.social-media-marketing-engage-icon img {
  width: 40px;
  height: 40px;
}

.social-media-marketing-engage-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.social-media-marketing-engage-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 991px) {
  .social-media-marketing-engage-container {
    flex-direction: column;
    text-align: center;
  }

  .social-media-marketing-engage-item {
    justify-content: center;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .social-media-marketing-title {
    font-size: 28px;
  }
  .social-media-marketing-engage-text h3 {
    font-size: 18px;
  }
  .social-media-marketing-engage-text p {
    font-size: 15px;
  }
}




/* section 4 */

.social-media-marketing-cta-banner {
  background: linear-gradient(135deg, #0056b3, #003d80); /* Blue gradient */
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.social-media-marketing-cta-box {
  background: #003366; /* Dark blue inner box */
  padding: 20px 30px;
  border-radius: 8px;
  display: inline-block;
  border: 2px solid #007bff; /* Blue border */
  box-shadow: 0 8px 20px rgba(0,0,0,0.3); /* 3D shadow effect */
}

.social-media-marketing-cta-box p {
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.social-media-marketing-cta-btn {
  background: #ff9800; /* Orange button */
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
}

.social-media-marketing-cta-btn:hover {
  background: #e68900;
}




/* section 5 */
.social-media-marketing-clients-section {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}

.social-media-marketing-clients-section h2 {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #222;
}

.social-media-marketing-clients-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.social-media-marketing-clients-track {
  display: flex;
  width: calc(200%); /* Double for looping */
  animation: slide 20s linear infinite;
}

.social-media-marketing-client-logo {
  flex: 0 0 auto;
  width: 200px; /* adjust logo box size */
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-media-marketing-client-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s;
}

.social-media-marketing-client-logo img:hover {
  filter: grayscale(0);
  transform: scale(1.05);
}

@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}







/* section 6 */
.social-media-marketing-industries-section {
  text-align: center;
  background: #313c96;
  padding: 60px 20px;
  color: #fff;
}

.social-media-marketing-industries-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color:white
}

.social-media-marketing-industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.social-media-marketing-industry-card {
  background: #ffffff10;
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-media-marketing-industry-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  margin-bottom: 15px;
}

.social-media-marketing-industry-card p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.social-media-marketing-industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}



/* faq */
.digital-marketing-faq-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}

.digital-marketing-faq-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.digital-marketing-faq-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.digital-marketing-faq-column {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.digital-marketing-faq-item {
  background: #f9f9f9;
  border: 1px solid #00a0e3;
  border-radius: 5px;
  overflow: hidden;
}

.digital-marketing-faq-question {
  width: 100%;
  padding: 12px 15px;
  background: #fff;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.digital-marketing-faq-question::after {
  content: "›";
  position: absolute;
  right: 15px;
  transition: transform 0.3s;
  font-size: 20px;
  color: #00a0e3;
}

.digital-marketing-faq-question.active::after {
  transform: rotate(90deg);
}

.digital-marketing-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 15px;
  background: #f9f9f9;
}

.digital-marketing-faq-answer p {
  font-size: 14px;
  padding: 10px 0;
  color: #444;
  line-height: 1.5;
}
.digital-marketing-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.digital-marketing-faq-question.active {
  color: #031273; /* highlight active question */
  font-weight: bold;
}



/* section */

/* ---- Container Layout ---- */
.team-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Left Column */
.team-section .left-col {
  flex: 1;
}
.team-section .left-col h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}
.team-section .left-col p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #555;
  line-height: 1.5;
}
.team-section .left-col button {
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  background: #041273;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.team-section .left-col button:hover {
  background: #0822ce;
}

/* Right Column */
.team-section .right-col {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ---- Image Style ---- */
.team-section .right-col img {
  --s: 200px; /* image size */
  --b: 6px; /* border thickness */
  --cb: #e9ecef; /* background color */
  --f: 1; /* initial scale */
  
  width: var(--s);
  aspect-ratio: 1;
  cursor: pointer;
  --_o: calc((1/var(--f) - 1)*var(--s)/2 - var(--b));
  outline: var(--b) solid var(--c);
  outline-offset: var(--_o);
  background: 
    radial-gradient(
      circle closest-side,
      var(--cb) calc(99% - var(--b)),var(--c) calc(100% - var(--b)) 99%,#0000
    ) var(--_g);
  -webkit-mask:
    linear-gradient(#000 0 0) no-repeat
    50% calc(1px - var(--_o)) / calc(100%/var(--f) - 2*var(--b) - 2px) 50%,
    radial-gradient(circle closest-side,#000 99%,#0000) var(--_g);
  transform: scale(var(--f));
  transition: .5s;
  object-fit: cover;
}
.team-section .right-col img:hover {
  --f: 1.4; /* hover scale */
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .team-section {
    flex-direction: column;
    text-align: center;
  }
  .team-section .right-col {
    justify-content: center;
  }
}




/* section 7 */
.social-media-marketing-services {
  text-align: center;
  padding: 50px 50px;
}

.social-media-marketing-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #002147;
  position: relative;
}

.social-media-marketing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
}

.social-media-marketing-card {
  background: #f0f8ff;
  padding: 30px 20px;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.social-media-marketing-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: #031273;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
}

.social-media-marketing-icon span {
  transform: rotate(-45deg);
}

.social-media-marketing-heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #002147;
}

.social-media-marketing-text {
  font-size: 14px;
  color: #555;
}

.social-media-marketing-arrow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: #031273;
  color: #fff;
  padding: 10px 15px;
  font-size: 18px;
  border-radius: 4px;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-media-marketing-card:hover .social-media-marketing-arrow {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.social-media-marketing-quote {
  background: #031273;
  color: #fff;
  padding: 40px 20px;
  border-radius: 6px;
}

.social-media-marketing-quote h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.social-media-marketing-phone {
  font-size: 22px;
  font-weight: bold;
  margin-top: 10px;
}
.social-media-marketing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* exactly 3 boxes per row */
  gap: 20px;
}
.social-media-marketing-arrow {
  display: inline-block;
  background: #031273;   /* your blue background */
  color: #fff;           /* arrow color */
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none; /* removes underline */
  font-size: 18px;
}
.social-media-marketing-arrow:hover {
  background: #031273;   /* darker blue on hover */
  text-decoration: none; /* make sure hover also has no underline */
}