/* web-design-and-development.css */

body {
  background-color: #ffffff;
}

/**************
*****************
*************** hero-section ── 
****************
******************/


.section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 60px;
  background-color: var(--white);
}

.hero-section {
  width: 100%;
  height: 600px;
  padding-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.hero-section .hero-image {
  width: 98%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-section .hero-content {
  width: 87%;
  gap: 10px;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.hero-section .hero-content h1 {
  font-family: var(--secondary-font);
  font-size: 48px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--white);
  line-height: 124%;
  letter-spacing: 0%;
}

.hero-section .hero-content .hero-heading {
  display: block;
  font-size: 58px;
}

.hero-section .hero-content p {
  font-family: var(--primary-font);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 35px;
}

/**************
*****************
*************** second-section ── 
****************
******************/


.deliver-content {
  width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.deliver-content .heading-para {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.heading-para h2 {
  font-family: var(--secondary-font);
  font-size: 48px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text-color-primary);
  line-height: 124%;
}

.heading-para h2 .deliver {
  background: var(--golden-gradient);
  -webkit-text-fill-color: transparent;
  width: fit-content;
  padding: 0 8px;
  border-radius: 4px;
  color: transparent;
  background-clip: text;
}

.heading-para p {
  font-size: 18px;
  font-family: var(--primary-font);
}

.six-cards-circle {
  width: 60%;
  position: relative;
  height: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.six-cards-circle img {
  width: 80%;
  height: auto;
}

.six-cards-circle .card {
  width: 240px;
  height: 190px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 24px;
  border: 1.64px solid #DEDEDE;
  border-radius: 18px;
  box-shadow: 0 0 41.03px rgb(0 0 0 / 13%);
}

.six-cards-circle .card img {
  width: 50% !important;
}

.six-cards-circle .card p {
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  color: var(--text-color-primary);
  text-transform: uppercase;
}

.automation-card {
  position: absolute;
  top: 20px;
}

.integration-card {
  position: absolute;
  top: 230px;
  right: 0;
  margin-right: -130px;
  transform: rotate(20deg)
}

.productivity-card {
  position: absolute;
  bottom: 100px;
  right: 0;
  margin-right: -100px;
  transform: rotate(-20deg)
}

.workflows-card {
  position: absolute;
  bottom: 14px;
}

.reduction-card {
  position: absolute;
  bottom: 140px;
  left: 0;
  margin-left: -100px;
  transform: rotate(20deg)
}

.repetitive-card {
  position: absolute;
  top: 230px;
  left: 0;
  margin-left: -130px;
  transform: rotate(-20deg)
}



/* =====================================================================
   4. OUR TECHNOLOGIES SECTION
   ===================================================================== */

.technologies-section {
  background: #ffffff;
  padding: 80px 60px 90px;
  max-width: 1440px;
  margin: 0 auto;
}

.technologies-container {
  max-width: 1160px;
  margin: 0 auto;
}

.section-heading {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: 2px;
  color: #111;
  margin-bottom: 50px;
  text-align: left;
  line-height: 1;
}

.tech-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid #E6E6E6;
  border-radius: 16px;
  overflow: hidden;
}

.tech-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 18px;
  border-right: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
  transition: background 0.25s ease;
  min-height: 110px;
}

/* .tech-strip-item:last-child {
  border-right: none;
} */

.tech-strip-item:hover {
  background: #FAFAFA;
}

.tech-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  opacity: 0.6;
  transition: opacity 0.25s;
}

.tech-strip-item:hover .tech-logo {
  opacity: 1;
}

.tech-logo svg {
  width: 42px;
  height: 42px;
}

.tech-logo span {
  font-family: var(--primary-font);
  font-size: 0.7rem;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Technologies Responsive ── */

@media (max-width: 900px) {
  .technologies-section {
    padding: 50px 30px 60px;
  }

  .tech-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .technologies-section {
    padding: 40px 20px 50px;
  }

  .section-heading {
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-align: center;
  }

  .tech-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 430px) {
  .technologies-section {
    padding: 44px 16px 52px;
  }

  .section-heading {
    font-size: clamp(2.2rem, 11vw, 3rem);
    margin-bottom: 28px;
    text-align: center;
  }

  .tech-strip {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 12px;
  }

  .tech-strip-item {
    padding: 24px 12px;
    min-height: 88px;
  }

  .tech-logo svg {
    width: 32px;
    height: 32px;
  }

  .tech-logo span {
    font-size: 0.62rem;
  }
}

@media (max-width: 360px) {
  .section-heading {
    font-size: clamp(2rem, 12vw, 2.6rem);
  }

  .tech-strip-item {
    padding: 18px 8px;
    min-height: 76px;
  }

  .tech-logo svg {
    width: 26px;
    height: 26px;
  }
}

/* 390px — iPhone 14 / Pixel 7 */
@media (min-width: 361px) and (max-width: 390px) {
  .section-heading {
    font-size: clamp(2.2rem, 11.5vw, 2.8rem);
  }
}

/* 410px — Mid-range Androids */
@media (min-width: 391px) and (max-width: 410px) {
  .section-heading {
    font-size: clamp(2.3rem, 11.2vw, 2.9rem);
  }
}

/* 430px — iPhone 15 Pro Max / large Androids */
@media (min-width: 411px) and (max-width: 430px) {
  .section-heading {
    font-size: clamp(2.4rem, 11vw, 3rem);
  }
}

/* 768px Landscape — phones rotated */
@media (max-height: 500px) and (min-width: 600px) and (orientation: landscape) {
  .technologies-section {
    padding: 36px 24px 44px;
  }

  .section-heading {
    font-size: 2.6rem;
    margin-bottom: 24px;
    text-align: left;
  }

  .tech-strip {
    grid-template-columns: repeat(6, 1fr);
  }

  .tech-strip-item {
    padding: 20px 10px;
    min-height: 80px;
  }

  .tech-logo svg {
    width: 30px;
    height: 30px;
  }
}

/* Tablet Portrait (431px – 1023px) */
@media (min-width: 431px) and (max-width: 1023px) and (orientation: portrait) {
  .technologies-section {
    padding: 56px 28px 64px;
  }

  .section-heading {
    font-size: clamp(2.6rem, 8vw, 4rem);
    margin-bottom: 32px;
    text-align: center;
  }

  .tech-strip {
    grid-template-columns: repeat(3, 1fr);
    border-radius: 14px;
  }

  .tech-strip-item {
    padding: 28px 16px;
    min-height: 100px;
  }

  .tech-logo svg {
    width: 36px;
    height: 36px;
  }

  .tech-logo span {
    font-size: 0.66rem;
  }
}

/* iPad Mini / iPad Air Portrait */
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .tech-strip {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Tablet Landscape (768px – 1199px) */
@media (min-width: 768px) and (max-width: 1199px) and (orientation: landscape) {
  .technologies-section {
    padding: 64px 44px 72px;
  }

  .section-heading {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 40px;
    text-align: left;
  }

  .tech-strip {
    grid-template-columns: repeat(6, 1fr);
  }

  .tech-strip-item {
    padding: 30px 16px;
  }

  .tech-logo svg {
    width: 38px;
    height: 38px;
  }
}


/* =====================================================================
   5. WHO IT'S FOR SECTION
   ===================================================================== */

.whofor-section {
  background: #F8F8F8;
  padding: 80px 60px 100px;
  max-width: 1440px;
  margin: 0 auto;
}

.whofor-container {
  max-width: 1100px;
  margin: 0 auto;
}

.whofor-content {
  display: flex;
  gap: 70px;
  align-items: center;
}

.whofor-images {
  flex: 0 0 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.whofor-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  background: #d0d0d0;
  min-height: 175px;
  border: solid white;
}

.whofor-img--tall {
  grid-row: 1 / 3;
  grid-column: 2;
  min-height: 362px;
}

.whofor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.whofor-img:hover img {
  transform: scale(1.04);
}

.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: linear-gradient(135deg, #d5d5d5 0%, #bebebe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.whofor-text {
  flex: 1;
}

.whofor-text .section-heading {
  margin-bottom: 20px;
}

.whofor-description {
  font-family: var(--primary-font);
  font-size: 0.85rem;
  font-weight: 500;
  color: #555;
  line-height: 1.75;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  max-width: 370px;
}

.whofor-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-whofor-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--golden-gradient);
  color: #fff;
  padding: 13px 20px 13px 26px;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 55px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-whofor-primary:hover {
  background: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-whofor-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #C8922A;
  color: #111;
  background: transparent;
  padding: 13px 20px 13px 26px;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 55px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-whofor-outline:hover {
  background: var(--golden-gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-arrow-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.btn-whofor-outline .btn-arrow-badge {
  background: rgba(161, 108, 22, 0.12);
  color: var(--gold-mid);
}

/* ── Who It's For Responsive ── */

@media (max-width: 1024px) {
  .whofor-images {
    flex: 0 0 360px;
  }
}

@media (max-width: 900px) {
  .whofor-section {
    padding: 50px 30px 60px;
  }
}

@media (max-width: 820px) {
  .whofor-content {
    flex-direction: column;
    gap: 40px;
  }

  .whofor-images {
    flex: none;
    width: 100%;
  }

  .whofor-description {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .whofor-section {
    padding: 40px 20px 50px;
  }

  .whofor-btns {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 430px) {
  .whofor-section {
    padding: 44px 16px 52px;
  }

  .whofor-content {
    flex-direction: column;
    gap: 32px;
  }

  .whofor-images {
    flex: none;
    width: 100%;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
  }

  .whofor-img {
    min-height: 130px;
    border-radius: 12px;
  }

  .whofor-img--tall {
    min-height: 268px;
  }

  .whofor-text .section-heading {
    text-align: center;
    margin-bottom: 14px;
  }

  .whofor-description {
    font-size: 0.72rem;
    max-width: 100%;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.7;
  }

  .whofor-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn-whofor-primary,
  .btn-whofor-outline {
    width: 100%;
    justify-content: center;
    font-size: 0.72rem;
    padding: 12px 18px;
  }
}

@media (max-width: 360px) {
  .whofor-img {
    min-height: 110px;
  }

  .whofor-img--tall {
    min-height: 228px;
  }
}

/* 768px Landscape — phones rotated */
@media (max-height: 500px) and (min-width: 600px) and (orientation: landscape) {
  .whofor-section {
    padding: 36px 24px 44px;
  }

  .whofor-content {
    flex-direction: row;
    gap: 32px;
    align-items: center;
  }

  .whofor-images {
    flex: 0 0 280px;
    gap: 8px;
  }

  .whofor-img {
    min-height: 110px;
  }

  .whofor-img--tall {
    min-height: 228px;
  }

  .whofor-text .section-heading {
    text-align: left;
    font-size: 2.4rem;
    margin-bottom: 12px;
  }

  .whofor-description {
    font-size: 0.72rem;
    text-align: left;
    margin-bottom: 20px;
  }

  .whofor-btns {
    flex-direction: row;
    gap: 10px;
  }

  .btn-whofor-primary,
  .btn-whofor-outline {
    width: auto;
    font-size: 0.7rem;
    padding: 10px 16px;
  }
}

/* Tablet Portrait (431px – 1023px) */
@media (min-width: 431px) and (max-width: 1023px) and (orientation: portrait) {
  .whofor-section {
    padding: 56px 28px 64px;
  }

  .whofor-content {
    flex-direction: column;
    gap: 36px;
  }

  .whofor-images {
    flex: none;
    width: 85%;
    max-width: 480px;
    margin: 0 auto;
    gap: 10px;
  }

  .whofor-img {
    min-height: 150px;
    border-radius: 14px;
  }

  .whofor-img--tall {
    min-height: 310px;
  }

  .whofor-text {
    width: 100%;
    text-align: center;
  }

  .whofor-text .section-heading {
    text-align: center;
    margin-bottom: 14px;
  }

  .whofor-description {
    font-size: 0.8rem;
    max-width: 100%;
    text-align: center;
    margin-bottom: 28px;
  }

  .whofor-btns {
    justify-content: center;
    gap: 12px;
  }

  .btn-whofor-primary,
  .btn-whofor-outline {
    font-size: 0.76rem;
    padding: 12px 22px;
  }
}

/* iPad Mini / iPad Air Portrait */
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .whofor-content {
    flex-direction: row;
    gap: 48px;
    align-items: center;
  }

  .whofor-images {
    flex: 0 0 42%;
    width: 42%;
    max-width: none;
    margin: 0;
  }

  .whofor-text {
    text-align: left;
  }

  .whofor-text .section-heading {
    text-align: left;
  }

  .whofor-description {
    text-align: left;
  }

  .whofor-btns {
    justify-content: flex-start;
  }
}

/* Tablet Landscape (768px – 1199px) */
@media (min-width: 768px) and (max-width: 1199px) and (orientation: landscape) {
  .whofor-section {
    padding: 64px 44px 80px;
  }

  .whofor-content {
    flex-direction: row;
    gap: 56px;
    align-items: center;
  }

  .whofor-images {
    flex: 0 0 400px;
    gap: 10px;
  }

  .whofor-img {
    min-height: 158px;
    border-radius: 16px;
  }

  .whofor-img--tall {
    min-height: 326px;
  }

  .whofor-text {
    flex: 1;
    text-align: left;
  }

  .whofor-text .section-heading {
    text-align: left;
    margin-bottom: 16px;
  }

  .whofor-description {
    font-size: 0.82rem;
    text-align: left;
    max-width: 400px;
    margin-bottom: 32px;
  }

  .whofor-btns {
    justify-content: flex-start;
    gap: 14px;
  }

  .btn-whofor-primary,
  .btn-whofor-outline {
    font-size: 0.76rem;
  }
}


/**************
*****************
*************** third-section ── 
****************
******************/

/* ============================================================
   RESPONSIVE STYLES — automation.css additions
   Breakpoints: 360, 390, 410, 430 (mobile portrait),
                768 (mobile landscape), tablet portrait (768–1024),
                tablet landscape (1024–1200)
   ============================================================ */

/* ──────────────────────────────────────────────────────────────
   SHARED MOBILE BASE  (≤ 430px — all small phones)
   ────────────────────────────────────────────────────────────── */
@media screen and (max-width: 430px) {

  /* ── Hero ── */
  .hero-section {
    height: auto;
    padding-top: 80px;
    padding-bottom: 0;
  }

  .hero-section .hero-image {
    width: 100%;
    height: 480px;
    border-radius: 12px;
    background-position: center;
  }

  .hero-section .hero-content {
    width: 90%;
    gap: 14px;
    padding: 20px;
  }

  .hero-section .hero-content h1 {
    font-size: 26px;
    line-height: 1.25;
    letter-spacing: 0.02em;
  }

  .hero-section .hero-content p {
    font-size: 13px;
    line-height: 1.8;
  }

  /* ── Deliver Section ── */
  .section {
    padding: 50px 16px;
  }

  .deliver-content {
    width: 100%;
    gap: 32px;
  }

  .heading-para h2 {
    font-size: 28px;
    text-align: center;
  }

  .heading-para p {
    font-size: 14px;
    text-align: center;
  }

  /* Flatten the circle layout into a vertical list on mobile */
  .six-cards-circle {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .six-cards-circle>img {
    display: none;
    /* hide decorative lines SVG */
  }

  .six-cards-circle .card {
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    width: 100%;
    max-width: 320px;
    height: auto;
    padding: 20px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    text-align: left;
  }

  .six-cards-circle .card img {
    width: 44px !important;
    flex-shrink: 0;
  }

  .six-cards-circle .card p {
    font-size: 12px;
    line-height: 1.6;
  }
}

/* ──────────────────────────────────────────────────────────────
   360px — Smallest phones (e.g. Galaxy A series)
   ────────────────────────────────────────────────────────────── */
@media screen and (max-width: 360px) {

  .hero-section .hero-image {
    height: 420px;
  }

  .hero-section .hero-content h1 {
    font-size: 22px;
  }

  .hero-section .hero-content p {
    font-size: 12px;
  }

  .heading-para h2 {
    font-size: 24px;
  }

  .cta-dark h2 {
    font-size: 1.8rem;
  }

  .cta-btns .btn-primary,
  .cta-btns .btn-outline {
    font-size: 0.72rem;
    padding: 9px 9px 9px 18px;
  }
}

/* ──────────────────────────────────────────────────────────────
   390px — iPhone 14/15 Pro
   ────────────────────────────────────────────────────────────── */
@media screen and (min-width: 361px) and (max-width: 390px) {

  .hero-section .hero-image {
    height: 450px;
  }

  .hero-section .hero-content h1 {
    font-size: 24px;
  }

  .hero-section .hero-content p {
    font-size: 12.5px;
  }

  .heading-para h2 {
    font-size: 26px;
  }

  .cta-dark h2 {
    font-size: 2rem;
  }
}

/* ──────────────────────────────────────────────────────────────
   410px — Pixel 7 / Galaxy S23+
   ────────────────────────────────────────────────────────────── */
@media screen and (min-width: 391px) and (max-width: 410px) {

  .hero-section .hero-image {
    height: 460px;
  }

  .hero-section .hero-content h1 {
    font-size: 25px;
  }

  .heading-para h2 {
    font-size: 27px;
  }

  .cta-dark h2 {
    font-size: 2.1rem;
  }
}

/* ──────────────────────────────────────────────────────────────
   430px — iPhone 14 Plus / 15 Plus
   Already covered by max-width 430 base above — fine-tuning:
   ────────────────────────────────────────────────────────────── */
@media screen and (min-width: 411px) and (max-width: 430px) {

  .hero-section .hero-image {
    height: 470px;
  }

  .hero-section .hero-content h1 {
    font-size: 26px;
  }

  .heading-para h2 {
    font-size: 28px;
  }

  .cta-dark h2 {
    font-size: 2.2rem;
  }
}

/* ──────────────────────────────────────────────────────────────
   768px — Mobile Landscape / Small Tablet portrait boundary
   ────────────────────────────────────────────────────────────── */
@media screen and (min-width: 431px) and (max-width: 768px) {

  /* ── Hero ── */
  .hero-section {
    height: auto;
    padding-top: 90px;
    padding-bottom: 0;
  }

  .hero-section .hero-image {
    width: 100%;
    height: 360px;
    border-radius: 14px;
  }

  .hero-section .hero-content {
    width: 88%;
    padding: 0 20px;
  }

  .hero-section .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-section .hero-content p {
    font-size: 13px;
    line-height: 1.9;
  }

  /* ── Deliver ── */
  .section {
    padding: 50px 24px;
  }

  .deliver-content {
    width: 100%;
    gap: 36px;
  }

  .heading-para h2 {
    font-size: 32px;
    text-align: center;
  }

  .heading-para p {
    font-size: 15px;
    text-align: center;
  }

  /* Cards: 2-column grid */
  .six-cards-circle {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
  }

  .six-cards-circle>img {
    display: none;
  }

  .six-cards-circle .card {
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    width: 100%;
    height: auto;
    padding: 20px 16px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .six-cards-circle .card img {
    width: 48px !important;
  }
}

/* ──────────────────────────────────────────────────────────────
   TABLET PORTRAIT  (769px – 1024px)
   ────────────────────────────────────────────────────────────── */
@media screen and (min-width: 769px) and (max-width: 1024px) {

  /* ── Hero ── */
  .hero-section {
    height: auto;
    padding-top: 100px;
    padding-bottom: 0;
  }

  .hero-section .hero-image {
    width: 97%;
    height: 480px;
    border-radius: 18px;
  }

  .hero-section .hero-content {
    width: 76%;
    padding: 0 30px;
  }

  .hero-section .hero-content h1 {
    font-size: 36px;
    line-height: 1.25;
  }

  .hero-section .hero-content p {
    font-size: 15px;
    line-height: 1.9;
  }

  /* ── Deliver ── */
  .section {
    padding: 60px 36px;
  }

  .deliver-content {
    width: 100%;
    gap: 48px;
  }

  .heading-para h2 {
    font-size: 38px;
  }

  /* Cards: 3-column grid */
  .six-cards-circle {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .six-cards-circle>img {
    display: none;
  }

  .six-cards-circle .card {
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    width: 100%;
    height: auto;
    padding: 24px 18px;
    flex-direction: column;
    text-align: center;
  }

  .six-cards-circle .card img {
    width: 52px !important;
  }

  .six-cards-circle .card p {
    font-size: 12px;
  }
}

/* ──────────────────────────────────────────────────────────────
   TABLET LANDSCAPE  (1025px – 1200px)
   ────────────────────────────────────────────────────────────── */
@media screen and (min-width: 1025px) and (max-width: 1200px) {

  /* ── Hero ── */
  .hero-section {
    height: auto;
    padding-top: 108px;
  }

  .hero-section .hero-image {
    width: 97%;
    height: 520px;
  }

  .hero-section .hero-content {
    width: 72%;
  }

  .hero-section .hero-content h1 {
    font-size: 40px;
  }

  .hero-section .hero-content p {
    font-size: 16px;
  }

  /* ── Deliver ── */
  .deliver-content {
    width: 100%;
    gap: 52px;
  }

  .heading-para h2 {
    font-size: 42px;
  }

  /* Cards: keep circular layout but constrained */
  .six-cards-circle {
    width: 75%;
    height: 860px;
  }
}

/* ──────────────────────────────────────────────────────────────
   MOBILE LANDSCAPE ORIENTATION  (any phone rotated sideways)
   Using orientation media query for phones up to ~900px wide
   ────────────────────────────────────────────────────────────── */
@media screen and (orientation: landscape) and (max-width: 900px) and (max-height: 500px) {

  /* ── Hero ── */
  .hero-section {
    height: auto;
    padding-top: 70px;
    padding-bottom: 16px;
  }

  .hero-section .hero-image {
    width: 100%;
    height: 320px;
    border-radius: 12px;
  }

  .hero-section .hero-content {
    width: 60%;
    padding: 0 16px;
  }

  .hero-section .hero-content h1 {
    font-size: 22px;
  }

  .hero-section .hero-content p {
    font-size: 11px;
    line-height: 1.7;
  }

  /* ── Deliver ── */
  .section {
    padding: 40px 28px;
  }

  .deliver-content {
    gap: 28px;
  }

  .heading-para h2 {
    font-size: 28px;
  }

  .six-cards-circle {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .six-cards-circle>img {
    display: none;
  }

  .six-cards-circle .card {
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    width: 100%;
    height: auto;
    padding: 16px;
    flex-direction: column;
    text-align: center;
  }

  .six-cards-circle .card img {
    width: 38px !important;
  }

  .six-cards-circle .card p {
    font-size: 10px;
    line-height: 1.5;
  }

  /* ── CTA / Footer ── */
  .cta-dark {
    padding: 40px 28px 28px;
  }

  .cta-dark h2 {
    font-size: 2rem;
  }

  .cta-dark p {
    max-width: 80%;
    font-size: 0.78rem;
  }

  .cta-btns {
    flex-direction: row;
    gap: 10px;
  }

  .cta-btns .btn-primary,
  .cta-btns .btn-outline {
    font-size: 0.72rem;
    padding: 8px 10px 8px 18px;
  }

  .cta-btns .btn-icon {
    width: 32px;
    height: 32px;
  }
}

/**************
*****************
*************** third-section ── 
****************
******************/


.approach-section {
  padding: 80px 0;
}

.approach-container {
  width: 1440px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.approach-container .img {
  width: 50%;
  /* height: 500px; */
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.text-content {
  width: 86%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.text-content h2 {
  font-family: var(--secondary-font);
  font-size: 48px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text-color-primary);
  line-height: 124%;
}

.text-content p {
  width: 100%;
  font-family: var(--primary-font);
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 124%;
}

.text-content .btn-primary {
  width: 41%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #E6B554, #A16C16);
  color: #fff;
  padding: 10px 14px 10px 34px;
  font-size: clamp(0.85rem, 4vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 55px;
  transition: all .2s;
  height: fit-content;
}

.text-content .btn-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  padding: 7px;
  background-color: #fff;
}


@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .approach-container {
    max-width: 1200px;
  }

  .text-content .btn-primary {
    max-width: 51%;
    width: 100% !important;
  }

  .text-content p {
    font-size: 14px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .approach-container {
    max-width: 1200px;
  }

  .text-content .btn-primary {
    max-width: 70%;
    justify-content: center;
    width: 100% !important;
  }

  .text-content p {
    font-size: 10px;
  }
}

@media screen and (min-width: 431px) and (max-width: 768px) {
  .approach-container {
    /* max-width: 1200px; */
    flex-direction: column;
  }

  .text-content .btn-primary {
    max-width: 70%;
    justify-content: center;
    width: 100% !important;
  }

  .text-content p {
    font-size: 14px;
  }

  .approach-container .img {
    width: 90%;
  }
}

@media screen and (max-width: 430px) {
  .approach-container {
    flex-direction: column;
  }

  .approach-container .img {
    width: 90%;
  }

  .text-content .btn-primary {
    width: 62%;
  }
}

@media screen and (max-width: 410px) {

  .text-content .btn-primary {
    width: 70%;
    justify-content: center;
  }

  .text-content p {
    font-size: 12px;
  }
}

@media screen and (max-width: 390px) {
  .approach-container {
    flex-direction: column;
  }

  .approach-container .img {
    width: 90%;
  }

  .text-content .btn-primary {
    width: 62%;
  }

  .text-content p {
    font-size: 10px;
  }

  .text-content .btn-primary {
    max-width: 70%;
    justify-content: center;
    width: 100% !important;
  }
}