 
.sm-full-hero {
  position: relative;
  width: 100%;
  height: 100vh;

  /* FULL IMAGE */
  background: url("images/socialMedia.jpg") no-repeat center center/cover;

  object-position: top;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

/* DARK OVERLAY */
.sm-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* CONTENT */
.sm-hero-content {
  position: relative;
  color: #fff;
  max-width: 800px;
  z-index: 2;
}

.sm-hero-content h1 {
  font-size: 52px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.sm-hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}



.sm-btn-main {
  padding: 12px 30px;
  background: #6a5acd;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.sm-btn-main:hover {
  background: #5848c2;
}

.sm-btn-alt {
  padding: 12px 30px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.sm-btn-alt:hover {
  background: #fff;
  color: #6a5acd;
}

/* =======================
   LAPTOP / SMALL DESKTOP (1024px)
======================= */
@media (max-width: 1024px) {
  .sm-hero-content h1 {
    font-size: 42px;
  }

  .sm-hero-content p {
    font-size: 17px;
  }

  .sm-hero-content {
    max-width: 700px;
  }
}

/* =======================
   TABLET (768px)
======================= */
@media (max-width: 768px) {
  .sm-full-hero {
    height: 90vh;
    padding: 0 15px;
  }

  .sm-hero-content h1 {
    font-size: 34px;
  }

  .sm-hero-content p {
    font-size: 16px;
    line-height: 1.6;
  }

  .sm-hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  .sm-btn-main,
  .sm-btn-alt {
    width: 200px;
    text-align: center;
    margin: 0 auto;
  }
}

/* =======================
   MOBILE (480px)
======================= */
@media (max-width: 480px) {
  .sm-full-hero {
    height: 85vh;
    padding: 0 10px;
  }

  .sm-hero-content h1 {
    font-size: 28px;
  }

  .sm-hero-content p {
    font-size: 16px;
  }

  .sm-hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  
}


/* -----------------zig zag section code ----------------------- */

/* ===== SECTION ===== */
.zz-section {
  position: relative;
  padding: 100px 10%;
  overflow: hidden;
  color: #fff;
}

/* FIXED BACKGROUND */
.zz-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: url("images/socialMediabackground.jpg") no-repeat center/cover;
  background-attachment: fixed;

  z-index: -2;
}

/* DARK OVERLAY */
.zz-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(169, 162, 162, 0.8);
  z-index: -1;
}

/* CONTAINER */
.zz-container {
  max-width: 1200px;
  margin: auto;
}

/* ROW */
.zz-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

/* REVERSE ROW */
.zz-row.reverse {
  flex-direction: row-reverse;
}

/* TEXT */
.zz-text {
  flex: 1;
}

.zz-text h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color:rgb(32, 32, 138);
  position:relative;
  padding:15px;
  display:inline-block;
}
.zz-text h2::after {
  content: "";
  position: absolute;
  left: 20%;
  bottom: -6px;
  width: 40%;
  height: 4px;
 background: linear-gradient(190deg,#b6074a , #1f1378);
  /*underlinecolor*/border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}
.zz-text p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
  color:black;
}

/* IMAGE */
.zz-img {
  flex: 1;
}

.zz-img img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: 0.4s;
}

.zz-img img:hover {
  transform: scale(1.05);
}
/* =======================
   LAPTOP / SMALL DESKTOP (1024px)
======================= */
@media (max-width: 1024px) {
  .zz-section {
    padding: 80px 6%;
  }

  .zz-row {
    gap: 35px;
    margin-bottom: 60px;
  }

  .zz-text h2 {
    font-size: 30px;
  }

  .zz-text p {
    font-size: 16px;
  }
}

/* =======================
   TABLET (768px)
======================= */
@media (max-width: 768px) {
  .zz-section {
    padding: 70px 5%;
  }

  .zz-row,
  .zz-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .zz-text h2 {
    font-size: 26px;
  }

  .zz-text p {
    font-size: 15px;
    line-height: 1.6;
  }

  .zz-text h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
  }

  .zz-img img {
    max-width: 70%;
  }
}

/* =======================
   MOBILE (480px)
======================= */
@media (max-width: 480px) {
  .zz-section {
    padding: 60px 4%;
  }

  .zz-row {
    margin-bottom: 45px;
    
  }

  .zz-text h2 {
    font-size: 23px;
    padding: 10px;
  }

  .zz-text p {
    font-size: 15px;
    line-height: 1.5;
  }

  .zz-text h2::after {
    width: 36%;
  }

  .zz-img img {
    border-radius: 10px;
    max-width:100%;
  }
}


/* ----------------------what we do ---------------- */
 
 
.sm-acc-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.sm-acc-heading h2 {
  font-size: 38px;
  color: #1e2a78;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

/* UNDERLINE */
.sm-acc-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: linear-gradient(to right, #181a96, #cb0863);
  border-radius: 2px;
}

.sm-acc-heading p {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
  margin-top: 15px;
}

/* SECTION */
.sm-accordion-sec {
  background: #e7e7fc;
  padding: 70px 8%;
}

/* GRID */
.sm-accordion-container {
  display: flex;
  gap: 40px;
}

.sm-col {
  flex: 1;
}

/* ITEM */
.sm-acc-item {
  margin-bottom: 20px;
}

/* HEADER */
.sm-acc-header {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(60, 75, 159, 0.2), transparent 40%),
    radial-gradient(circle at bottom right, rgba(209, 9, 76, 0.5), transparent 87%),
    #282889;

  color: #fff;
  padding: 20px 25px 18px 70px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 18px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;

  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.sm-acc-header:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* LEFT SHAPE */
.sm-acc-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  height: 100%;
  background: rgba(255,255,255,0.25);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* TEXT */
.sm-acc-header span {
  margin-left: 10px;
  font-weight: 500;
}

/* ARROW */
.arrow {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  padding: 7px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* ACTIVE ARROW */
.sm-acc-item.active .arrow {
  transform: rotate(-135deg);
}

/* CONTENT */
.sm-acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 20px;
  color: #1b2a57;
  background: #ffffff;
  border-radius: 12px;
  margin-top: 8px;
}

/* ACTIVE */
.sm-acc-item.active .sm-acc-content {
  max-height: 200px;
  padding: 15px 20px;
}

/* TEXT INSIDE */
.sm-acc-content p {
  margin: 0;
  line-height: 1.6;
}

/* =======================
   LAPTOP / SMALL DESKTOP (1024px)
======================= */
@media (max-width: 1024px) {
  .sm-accordion-sec {
    padding: 70px 6%;
  }

  .sm-accordion-container {
    gap: 30px;
  }

  .sm-acc-heading h2 {
    font-size: 32px;
  }

  .sm-acc-heading p {
    font-size: 16px;
  }

  .sm-acc-header {
    font-size: 17px;
    padding: 18px 22px 16px 65px;
  }
}

/* =======================
   TABLET (768px)
======================= */
@media (max-width: 768px) {
  .sm-accordion-sec {
    padding: 50px 5%;
    overflow-x: hidden;
  }

  .sm-accordion-container {
    flex-direction: column;
    gap: 20px;
  }

  .sm-acc-heading {
    margin-bottom: 40px;
  }

  .sm-acc-heading h2 {
    font-size: 28px;
  }

  .sm-acc-heading p {
    font-size: 15px;
  }

  .sm-acc-header {
    font-size: 16px;
    padding: 16px 20px 16px 60px;
  }

  .sm-acc-content {
    font-size: 14px;
  }

  .sm-acc-item.active .sm-acc-content {
    max-height: 250px;
  }
}

/* =======================
   MOBILE (480px)
======================= */
@media (max-width: 480px) {
  .sm-accordion-sec {
    padding: 50px 4%;
  }

  .sm-acc-heading h2 {
    font-size: 24px;
  }

  .sm-acc-heading p {
    font-size: 16px;
    line-height: 1.5;
  }

  .sm-acc-header {
    font-size: 15px;
    padding: 16px 18px 14px 55px;
    border-radius: 30px;
  }

  .arrow {
    padding: 5px;
  }

  .sm-acc-content {
    padding: 0 15px;
  }

  .sm-acc-item.active .sm-acc-content {
    padding: 12px 15px;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sm-accordion-container {
    flex-direction: column;
  }
}