/* Exact landing page design – blue, grey, white, yellow accents, rounded corners */
:root {
  --color-dark: #1C2B42;
  --color-dark-rgb: 28, 43, 66;
  --color-text: #2d3748;
  --color-text-light: #718096;
  --color-white: #ffffff;
  --color-light-blue: #7ba3c9;
  --color-accent-yellow: #f6e05e;
  --color-faq-bar: #e2e8f0;
  --color-card-bg: #f7fafc;
  --color-card-bg: #fdfdfe;
  --font-sans: 'Poppins', 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-btn: 12px;
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --container: 1200px;
  --container-padding: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* ----- Header: white bg, circular dark blue logo, nav, dark blue rounded button ----- */
.header {
  position: relative;
  z-index: 100;
  background: var(--color-white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.logo__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--color-white);
  border-radius: 50%;
}

.logo__icon {
  width: 90px;
  height: 90px;
  background-image: url(../assets/images/logo.png);
  background-size: cover;
  /* border-radius: 50%; */
  opacity: 0.95;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
}

.nav__link:hover {
  color: var(--color-dark);
}

.nav__dropdown {
  position: relative;
}

.nav__link--dropdown {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link--dropdown::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 2px;
}

.nav__dropdown:hover .nav__link--dropdown,
.nav__dropdown.is-open .nav__link--dropdown {
  color: var(--color-dark);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  min-width: 200px;
  padding: 8px 0;
  background: var(--color-white);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  transition: background 0.15s, color 0.15s;
}

.nav__dropdown-menu a:hover {
  background: var(--color-card-bg);
  color: var(--color-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
}

.btn:hover {
  opacity: 0.92;
}

.btn--primary {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn--lg {
  padding: 14px 28px;
  font-size: 16px;
}

.header__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.header__menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
}

@media (max-width: 768px) {

  .nav,
  .btn--primary {
    display: none;
  }

  .service-cta {
    display: table;
  }

  .header--open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px;
    box-shadow: var(--shadow);
    align-items: stretch;
  }

  .header--open .btn--primary {
    display: inline-flex;
  }

  .header__menu {
    display: flex;
  }

  .service-cta {
    display: table;
  }

  .header--open .nav__dropdown {
    position: static;
  }

  .header--open .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 4px;
    margin-bottom: 8px;
    box-shadow: none;
    border: none;
    padding-left: 12px;
    border-left: 2px solid var(--color-light-blue);
  }

  .cta-section__img {
    display: none;
  }

  .btn--plan {
    display: flex;
    flex-direction: column;
  }
}

/* ----- Hero: kitchen bg, dark overlay left ~2/3, headline + CTA + 3 feature circles, image right ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding-left: 80px;
  background-image: url("../assets/images/ChatGPT\ Image\ Feb\ 17\,\ 2026\,\ 10_36_13\ PM.jpg");
  background-size: cover;
  background-position: center;
}

.check-box {
  height: 20px;
  width: 20px;
  background-image: url("../assets/images/check.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

/* Glass overlay card */

.hero-overlay {
  max-width: 650px;
  padding: 50px;

  border-radius: 30px;

  background: rgba(160, 170, 185, 0.65);
  backdrop-filter: blur(8px);

  color: white;
}

.hero-overlay h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-overlay p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Button */

.cta-btn {
  display: inline-block;
  background: #1f2f46;
  color: white;
  padding: 16px 28px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 35px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #162233;
}

/* Features */

.features {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

.feature {
  font-size: 14px;
  opacity: 0.95;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero {
  position: relative;
  min-height: 520px;
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, #e8eef4 0%, #d4dce6 50%, #c5d0dc 100%); */
  background-image: url("../assets/images/furniture.webp");
  background-size: cover;
  background-position: center;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, #f5f3ef 0%, #e8e6e0 40%, #ddd8d0 70%, #d0c8b8 100%); */
  opacity: 0.7;
}

.hero__overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 65%;
  background: linear-gradient(90deg, rgba(var(--color-dark-rgb), 0.92) 0%, rgba(var(--color-dark-rgb), 0.75) 70%, transparent 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero__content {
  max-width: 560px;
}

.hero__title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-light-blue);
  opacity: 0.9;
  flex-shrink: 0;
}

.hero__feature-icon--clock {
  background: var(--color-light-blue);
}

.hero__feature-icon--star {
  background: var(--color-light-blue);
}

.hero__feature-icon--shield {
  background: var(--color-light-blue);
}

.hero__feature-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
}

.hero__image-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero__image {
  width: 320px;
  height: 380px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #5a7a9e 0%, var(--color-dark) 100%);
  box-shadow: var(--shadow-md);
}

.hero__image--cleaner {
  background: linear-gradient(160deg, #6b8cad 0%, #3d5a78 50%, var(--color-dark) 100%);
}

@media (max-width: 768px) {
  .hero {
    height: 67vh;
  }

  .hero-overlay {
    width: 100%;
    padding: 20px;
    background: linear-gradient(90deg, rgba(var(--color-dark-rgb), 0.92) 0%, rgba(var(--color-dark-rgb), 0.75) 70%, transparent 100%);

  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    margin-bottom: 50px;
    margin-left: -40px;
    width: 87%;
  }

  .hero__content {
    max-width: none;
  }

  .hero__features {
    justify-content: center;
  }

  .hero__image-wrap {
    justify-content: center;
  }

  .hero__image {
    width: 280px;
    height: 320px;
  }

  .hero__title {
    font-size: 19px;
    text-align: left;
  }

  .hero__subtitle {
    font-size: 14px;
    text-align: left;
  }
}

/* ----- Section common ----- */
.section {
  padding: 64px 0;
}

.section__title {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
}

.section__title--center {
  text-align: center;
}

.section__subtitle {
  margin: 0 0 24px;
  font-size: 15px;
  color: var(--color-text-light);
}

.section__subtitle--center {
  text-align: center;
  margin-bottom: 32px;
}

.section__headline {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
}

.section__text {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-light);
}

.section__grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

.section__grid--split {
  grid-template-columns: 380px 1fr;
}

.section__media {
  position: relative;
}

.section__img {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 420px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #d4dce6 0%, #b8c5d4 100%);
  object-fit: cover;
}

.section__img--cleaner-wiping {
  /* background: linear-gradient(160deg, #c5d0dc 0%, #9aadc2 100%); */
  background-image: url("../assets/images/house-cleaning-services-1024x789.jpg");
  align-content: center;
  background-size: cover;

}

.section__img--services {
  /* background: linear-gradient(160deg, #c5d0dc 0%, #9aadc2 100%); */
  background-image: url("../assets/images/1724131557297-couch-cleaning.webp");
  background-size: cover;
}

.section__content {
  min-width: 0;
}

@media (max-width: 768px) {
  .section__grid--split {
    grid-template-columns: 1fr;
  }

  .section__title {
    font-size: 22px;
  }

  .section__img {
    max-height: 0;
  }
}

/* ----- Service bullets (6 in 2 cols) ----- */
.service-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
}

.service-bullets__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-light-blue);
  background-image: url();
  opacity: 0.8;
  flex-shrink: 0;
}

/* ----- What We Offer: 6 cards 3x2, image + dark overlay bottom, title, desc, Learn More circle ----- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offer-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  min-height: 260px;
}

.offer-card__img {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #d4dce6 0%, #a8b8cc 50%, #7a8fa8 100%);
  background-size: cover;
}

.offer-card__img--1 {
  background-image: url("../assets/images/clean-window-1-scaled.jpg");
}

.offer-card__img--2 {
  background-image: url("../assets/images/furniture.webp");
}

.offer-card__img--3 {
  background-image: url("../assets/images/Glas-office-with-mop-bucket.jpg");
}

.offer-card__img--4 {
  background-image: url("../assets/images/porter-scaled.webp");
}

.offer-card__img--5 {
  background-image: url("../assets/images/home-cleaning-calicut.jpg");
}

.offer-card__img--6 {
  background-image: url("../assets/images/professional-cleaning-service-scaled.webp");
}

.offer-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(transparent, rgba(var(--color-dark-rgb), 0.85) 30%, rgba(var(--color-dark-rgb), 0.95));
  color: var(--color-white);
}

.offer-card__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
}

.offer-card__desc {
  margin: 0 0 12px;
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.4;
}

.offer-card__link {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.2s;
}

.offer-card__link:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ----- Why Choose Our Team: 4 cards 2x2 ----- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.why-card {
  padding: 28px 24px;
  display: flex;
  background: var(--color-card-bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);

}

.why-card__icon {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  margin-right: 15px;
  background: var(--color-light-blue);
  opacity: 0.85;
  margin-bottom: 16px;
}

.why-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}

.why-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-light);
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ----- CTA section: dark bg, rounded, left content + right image ----- */
.cta-section {
  padding: 64px 20px;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  margin: 0 var(--container-padding) 32px;
  max-width: var(--container);
  height: 70vh;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}

.cta-section__title {
  margin: 15px 0px 20px 0px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

.cta-section__text {
  margin: 0 0 20px;
  font-size: 16px;
  opacity: 0.92;
  line-height: 1.5;
}

.cta-section__bullets {
  margin: 0 0 24px;
  padding-left: 20px;
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-section__bullets li {
  margin-bottom: 6px;
}

.cta-section .btn--primary {
  background: var(--color-white);
  color: var(--color-dark);
}

.cta-section .btn--primary:hover {
  opacity: 0.95;
}

.cta-section__img {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  background-image: url(../assets/images/professional-cleaning-service-people-working-together-office-1.jpg);
  background-size: cover;
}

@media (max-width: 900px) {
  .cta-section__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-section__bullets {
    list-style-position: inside;
    padding-left: 0;
  }
}

/* ----- Choose Our Plans: 3 buttons ----- */
.section--plans {
  padding: 48px 0;
}

.plans-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 16px;
  margin: 36px 0 72px 0;
}

.btn--plan {
  padding: 24px 60px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .plans-buttons {
    display: grid;
    margin: 5px 5px;
  }

  .reviews-arrow {
    display: none;
  }
}

/* ----- FAQ: light grey bars, rounded, question + plus icon ----- */
.faq-list {
  max-width: 720px;
  margin: 24px auto 0;
}

.faq-item {
  background: var(--color-faq-bar);
  border-radius: var(--radius-btn);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item__question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text);
  flex-shrink: 0;
}

.faq-item[open] .faq-item__question::after {
  content: '−';
}

.faq-item__answer {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-light);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 16px;
  margin-top: 0;
}

/* ----- Customer Reviews: 3 cards, avatar, name, 5 stars (yellow), text, arrows ----- */
.reviews-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 0 8px;
}

.reviews-arrow {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--color-dark);
  background: var(--color-white);
  color: var(--color-dark);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.reviews-arrow:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.review-card {
  padding: 24px;
  background: var(--color-card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4dce6 0%, #b0bcc8 100%);
  flex-shrink: 0;
}

.review-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.review-card__stars {
  font-size: 14px;
  color: var(--color-accent-yellow);
  letter-spacing: 2px;
  margin-top: 2px;
}

.review-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .reviews-track {
    grid-template-columns: 1fr;
  }

  .reviews-arrow {
    display: none;
  }
}

/* ----- Footer: dark blue-grey, logo, about, social, columns, copyright ----- */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding-top: 56px;
  margin-top: 48px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__logo .logo__circle {
  background: rgba(255, 255, 255, 0.15);
  /* background-image: url(/assets/images/logo2.jpg);
  background-size: cover; */
}

.footer__logo .logo__icon {
  /* background: var(--color-light-blue); */
  /* background-image: url(/assets/images/logo2.jpg); */
  background-size: cover;
}

.footer__about {
  margin: 16px 0 20px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.88;
  max-width: 260px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 12px;
  color: var(--color-white);
  transition: background 0.2s;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer__heading {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
}

.footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__contact {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.88;
}

.footer__bottom {
  padding: 20px 0;
}

.footer__copy {
  margin: 0;
  font-size: 13px;
  text-align: center;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}


/* Section */

.features-section {
  padding: 80px 5%;
}

/* Grid */

.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Cards */

.feature-card {

  background: #7c8ba0;
  /* exact bluish grey tone */

  padding: 45px;

  border-radius: 45px;

  color: white;

  transition: 0.3s;
}

/* Hover */

.feature-card:hover {
  transform: translateY(-6px);
}

/* Icon */

/* .feature-card img{
height: 64px;
width: 64px;
border-radius: 50%;
background-image: url("../assets/images/leader.png");
background-size: cover;
} */

/* Title */

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Text */

.feature-card p {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Tablet */

@media(max-width:1024px) {

  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Mobile */

@media(max-width:650px) {

  .features-container {
    grid-template-columns: 1fr;
  }

  .feature-card {
    border-radius: 30px;
    padding: 35px;
  }

}