.hero-banner p {
  width: 85%;
}

.web-design-section {
  padding: 80px 0 60px;
  overflow: hidden;
}

.design-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
}

.design-content-area h2 {
  width: 70%;
}

/* Image Side Styles */
.design-image-area {
  position: relative;
}

.image-wrapper {
  position: relative;
  z-index: 2;
}

.main-person-img {
  max-width: 580px;
  width: 100%;
  display: block;
  position: relative;
  z-index: 3;
}

.section-desc {
  margin-bottom: 12px;
}

/* Feature Item Grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-icon {
  width: 60px;
  margin-bottom: 18px;
}

.feature-item h3 {
  font-size: var(--fs-large-bold);
  line-height: var(--lh-large-bold);
  margin-bottom: 4px;
}

.seo-growth-section {
  padding: 50px 0 80px;
  background-color: #ebf2ff; /* Light blue background tint */
  overflow: hidden;
}

.seo-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Header takes less space than the 4-card grid */
  gap: 20px;
}

.seo-content-header h2 {
  width: 90%;
}

.decorative-arrow {
  position: absolute;
  left: 31%;
  bottom: 8%;
  max-width: 210px;
  width: 100%;
animation: arrowSwirl 5s ease-in-out infinite;
}

@keyframes arrowSwirl {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(10px, -10px) rotate(3deg);
  }
}

/* Feature Card Grid */
.seo-feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.seo-card {
  background: #fff;
  padding: 15px 16px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.even-seo-card {
  transform: translateY(30px);
}

.seo-card:hover {
  box-shadow: 0 10px 30px rgba(0, 83, 199, 0.05); /* Soft blue shadow */
}

.card-icon {
  width: 40px;
  margin: 0 auto 16px;
}

.seo-card h3 {
  font-size: var(--fs-large-bold);
  line-height: var(--lh-large-bold);
  margin-bottom: 4px;
}

.paid-ads-section {
  padding: 60px 0;
  background-color: #fff;
  overflow: hidden;
}

.ads-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 53px;
  align-items: center;
}

/* Image Styling */
.ads-image-container {
  max-width: 540px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-img {
  max-width: 485px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.double-triangle {
  position: absolute;
  top: -5%;
  left: 5%;
}

.light-blue-blob {
  position: absolute;
  bottom: 3%;
  right: 0%;
}

.section-lead {
  margin-bottom: 24px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Diamond Icon Shapes */
.benefit-icon.blue-diamond {
  margin-top: 5px;
  width: 60px;
  height: 60px;
  background-color: #ebf2ff;
  transform: rotate(45deg); /* Creates the diamond look */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #000;
}

.benefit-icon img {
  transform: rotate(-45deg);
  width: 40px;
}

.benefit-item {
  display: flex;
  font-weight: 400;
  gap: 30px;
}

.brand-design-section {
  padding: 60px 0;
  background-color: #ebf2ff; /* Light blue section background */
}

/* Header Styles */
.section-header {
  max-width: 760px;
  margin: 0 auto 36px;
}

.brand-design-section .section-header h2 {
  width: 85%;
  margin-inline: auto;
}

/* Grid Layout */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.brand-card {
  background: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  border: 1px solid #004bb3; /* Light blue border color */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 83, 199, 0.08);
}

.brand-icon {
  width: 50px;
  margin-bottom: 48px;
}

.brand-card h3 {
  margin-bottom: 12px;
}

.lead-growth-section {
  padding: 60px 0;
  background-color: #fff;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: center;
}

.lead-content-area h2 {
  width: 80%;
}

/* Checklist Box Styles */
.lead-checklist-box {
  background: #fff;
  padding: 33px 40px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  margin-top: 15px;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns for checklist */
  gap: 24px;
  list-style: none;
  padding: 0;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.checklist li img {
  width: 32px;
}

/* Image Area with Decorative Border */
.lead-image-area {
  position: relative;
}

.image-frame-container {
  position: relative;
  z-index: 2;
}

.lead-team-img {
  max-width: 445px;
  width: 100%;
  position: relative;
  z-index: 3;
}

.social-reach-section {
  padding: 60px 0;
  background-color: #ebf2ff; /* Light blue section tint */
}

.social-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.text-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.text-header p {
  display: none;
}

/* Overlapping Gallery */
.gallery-wrapper {
  margin-top: 5px;
  max-width: 630px;
  width: 100%;
  position: relative;
  height: 525px;
}

.img-back {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 50%;
  border-radius: 12px;
  display: block;
}

.img-front-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 67%;
  padding: 25px;
  background: #ed7d30; /* Orange border frame */
  border-radius: 12px;
  z-index: 2;
}

.img-front {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Stat Box */
.stat-counter-box {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #0053c7; /* Brand Blue */
  color: #fff;
  padding: 45px 25px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  width: 30%;
  z-index: 3;
}

.stat-counter-box .count {
  display: block;
  font-size: 52px;
  line-height: 68px;
  font-weight: 700;
}

/* Service Boxes */
.social-service-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.social-box {
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid #004bb3;
  padding: 18px 20px;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.social-box:hover {
  transform: translateX(10px);
}

.box-icon {
  width: 50px;
}

.box-text h3 {
  margin-bottom: 8px;
}

@media (max-width: 1300px) {
  .web-design-section {
    padding: 70px 0 50px;
  }
  .design-grid {
    gap: 10px;
  }

  .design-content-area h2 {
    width: 100%;
  }

  .seo-grid {
    gap: 48px;
  }

  .seo-feature-cards {
    gap: 34px 20px;
  }

  .section-lead {
    margin-bottom: 18px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .brand-design-section .section-header h2 {
    width: 100%;
    margin-inline: auto;
  }

  .lead-grid {
    gap: 40px;
  }

  .gallery-wrapper {
    margin-top: 25px;
    height: 460px;
  }

  .stat-counter-box {
    padding: 40px 25px;
  }

  .stat-counter-box .count {
    font-size: 44px;
    line-height: 50px;
  }

  .img-front-wrapper {
    padding: 20px;
  }
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
  .design-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .design-content-area h2 {
    width: 80%;
  }

  .feature-grid {
    text-align: left;
  }

  .image-wrapper {
    margin-left: 100px;
  }

  .main-person-img {
    max-width: 530px;
  }

  .design-image-area {
    display: flex;
    justify-content: center;
  }

  .seo-growth-section {
    padding: 50px 0 140px;
  }

  .seo-content-header h2 {
    margin-inline: auto;
  }

  .seo-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .seo-feature-cards {
    max-width: 590px;
    margin: 0 auto;
  }

  .decorative-arrow {
    bottom: -25%;
    left: 18%;
  }

  .ads-grid {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 26px;
  }

  .ads-image-container {
    max-width: 500px;
    margin: 0 auto;
  }

  .light-blue-blob {
    display: none;
  }

  .brand-design-section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .brand-design-section .section-header {
    width: 80%;
    margin-inline: auto;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr); /* 2-column view for tablet */
  }

  .brand-grid .brand-card:last-child {
    grid-column: span 2;
    width: 50%;
    margin: 0 auto;
  }

  .lead-growth-section {
    padding: 50px 0;
  }

  .lead-grid {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .lead-team-img {
    margin: 0 auto;
  }

  .social-reach-section {
    padding: 50px 0;
  }

  .social-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .social-gallery-area h2 {
    width: 80%;
    margin-inline: auto;
  }

  .text-header {
    width: 90%;
    text-align: center;
    margin: 0 auto 22px;
  }

  .text-header p {
    display: block;
    margin-top: 10px;
  }

  .top-desc {
    display: none;
  }

  .gallery-wrapper {
    max-width: 550px;
    margin: 0 auto;
  }

  .img-front,
  .img-back,
  .img-front-wrapper,
  .stat-counter-box {
    border-radius: 11px;
  }

  .social-service-list {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .hero-banner p {
    width: 100%;
  }

  .web-design-section {
    padding: 60px 0 40px;
  }
  .design-grid {
    gap: 36px;
  }

  .design-content-area h2 {
    width: 100%;
  }

  .image-wrapper {
    margin-left: 60px;
  }

  .section-desc {
    margin-bottom: 32px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-icon {
    width: 50px;
  }

  .seo-growth-section {
    padding: 40px 0;
  }
  .seo-content-header h2 {
    width: 100%;
  }

  .seo-grid {
    gap: 36px;
  }

  .seo-feature-cards {
    grid-template-columns: 1fr;
    max-width: 290px;
    gap: 28px;
  }

  .seo-card {
    padding: 15px 25px;
  }

  .even-seo-card {
    transform: none;
  }

  .decorative-arrow {
    display: none;
  }

  .paid-ads-section {
    padding: 40px 0;
  }

  .double-triangle {
    display: none;
  }

  .benefit-icon.blue-diamond {
    width: 55px;
    height: 55px;
  }

  .benefit-icon img {
    width: 34px;
    height: 34px;
  }

  .brand-design-section {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .brand-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-design-section .section-header {
    width: 100%;
  }

  .brand-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .brand-grid .brand-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .lead-growth-section {
    padding: 40px 0;
  }

  .lead-grid {
    gap: 36px;
  }

  .lead-content-area h2 {
    width: 100%;
  }

  .lead-checklist-box {
    padding: 24px 28px;
  }

  .checklist {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .checklist li img {
    width: 28px;
  }

  .social-reach-section {
    padding: 40px 0;
  }

  .social-grid {
    gap: 32px;
  }

  .social-gallery-area h2 {
    width: 100%;
  }

  .text-header {
    max-width: 600px;
    width: 100%;
  }

  .stat-counter-box .count {
    font-size: 30px;
    line-height: 36px;
  }

  .social-service-list {
    max-width: 600px;
    width: 100%;
    gap: 20px;
  }

  .box-icon {
    width: 40px;
  }

  .gallery-wrapper {
    max-width: 345px;
    height: 290px;
  }

  .img-front,
  .img-back {
    border-radius: 7px;
  }

  .img-front-wrapper {
    border-radius: 7px;
    padding: 10px;
  }

  .stat-counter-box {
    gap: 0;
    border-radius: 7px;
    padding: 20px 10px;
  }
}
