Copy CSS

a {
  text-decoration: none;
}

/* ============ HERO ============ */
.sitemap-hero {
  padding: 64px 24px 48px;
  text-align: center;
  overflow: hidden;
  margin-top: 180px;
}

.skyline {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 170px;
  opacity: 0.05;
  background-repeat: repeat-x;
  background-position: bottom;
  pointer-events: none;
}

.skyline-left {
  left: 0;
  background-image:
    linear-gradient(to top, #152a52 0 60px, transparent 60px),
    linear-gradient(to top, #152a52 0 110px, transparent 110px),
    linear-gradient(to top, #152a52 0 85px, transparent 85px);
  background-size: 60px 100%, 40px 100%, 50px 100%;
  background-position: left bottom, 70px bottom, 130px bottom;
}

.skyline-right {
  right: 0;
  background-image:
    linear-gradient(to top, #152a52 0 95px, transparent 95px),
    linear-gradient(to top, #152a52 0 60px, transparent 60px),
    linear-gradient(to top, #152a52 0 130px, transparent 130px);
  background-size: 50px 100%, 35px 100%, 45px 100%;
  background-position: right bottom, calc(100% - 80px) bottom, calc(100% - 140px) bottom;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
}

.deco-line {
  width: 90px;
  height: 1px;
  background: linear-gradient(to right, transparent, #152a52 40%, #152a52 60%, transparent);
  opacity: 0.35;
}

.deco-dot {
  width: 7px;
  height: 7px;
  background: #152a52;
  transform: rotate(45deg);
  opacity: 0.6;
  flex-shrink: 0;
}

.deco-line.right {
  background: linear-gradient(to left, transparent, #152a52 40%, #152a52 60%, transparent);
}

h1.site-title {
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: 3px;
  color: #152a52;
}

.hero-sub {
  font-size: 25px;
  color: #3b3f49;
  font-weight: 400;
}

/* ============ GRID OF CARDS ============ */
.sitemap-grid {
  max-width: 1880px;
  padding: 0 24px 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
  margin: 0 20px;
}

.card {
  background: #ffffff;
  border: 1px solid #e6e9f0;
  border-radius: 12px;
  padding: 20px 20px;
  box-shadow: 0 6px 18px rgba(20, 30, 60, 0.04);
  text-align: center;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.card h2 {
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.4;
}

.card ul {
  list-style: none;
  text-align: left;
    list-style:none;
    padding:0;
    margin:0;
}

.card ul li a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: #3c4456;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
  
}

.card ul li a i {
  font-size: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}

.card ul li a:hover {
  transform: translateX(2px);
}

.sub-heading {
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-align: left;
  margin: 18px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e6e9f0;
}

.sub-heading:first-of-type {
  margin-top: 0;
}

.legal-block {
  margin-top: 24px;
}

.legal-block .card-icon {
  margin-bottom: 14px;
}

/* ============ THEME COLORS ============ */
.home .card-icon        { background: #1e88e5; }
.home h2                { color: #1e88e5; }
.home ul li a i         { color: #1e88e5; margin: 8px; }
.home ul li a:hover     { color: #1e88e5; }

.realestate .card-icon      { background: #5d9c2e; }
.realestate h2              { color: #5d9c2e; }
.realestate ul li a i       { color: #5d9c2e; margin: 8px; }
.realestate ul li a:hover   { color: #5d9c2e; }

.photo .card-icon       { background: #ef5a23; }
.photo h2               { color: #ef5a23; }
.photo ul li a i        { color: #ef5a23; margin: 8px; }
.photo .sub-heading     { color: #ef5a23; }
.photo ul li a:hover    { color: #ef5a23; }

.industries .card-icon      { background: #8e3fad; }
.industries h2              { color: #8e3fad; }
.industries ul li a i       { color: #8e3fad; margin: 8px; }
.industries ul li a:hover   { color: #8e3fad; }

.photography .card-icon     { background: #039083; }
.photography h2             { color: #039083; }
.photography ul li a i      { color: #039083; margin: 8px; }
.photography ul li a:hover  { color: #039083; }

.resources .card-icon       { background: #d8326f; }
.resources h2               { color: #d8326f; }
.resources ul li a i        { color: #d8326f; margin: 8px; }
.resources ul li a:hover    { color: #d8326f; }

.company .card-icon         { background: #152a52; }
.company h2                 { color: #152a52; }
.company ul li a i          { color: #152a52; margin: 8px; }
.company .sub-heading       { color: #152a52; }
.company ul li a:hover      { color: #152a52; }

/* ============ FEATURES STRIP ============ */
.features {
  width: 100%;
  background: linear-gradient(90deg, #082c67, #0b3b82);
  padding: 25px 40px;
}

.feature-box {
  max-width: 1500px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  white-space: nowrap;
}

.icon {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 18px;
  font-weight: 600;
}

.line {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.45);
  margin: 0 30px;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   Large Desktop  : 1440px+
   Desktop        : 1200px – 1439px
   Small Laptop   : 992px  – 1199px
   Tablet         : 768px  – 991px
   Mobile Large   : 481px  – 767px
   Mobile Small   : 320px  – 480px
============================================================ */

/* Large Desktop — 1440px and above (default layout holds, just cap widths) */
@media (min-width: 1440px) {
  .sitemap-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }

  .feature-box {
    max-width: 1600px;
  }
}

/* Desktop — 1200px to 1439px */
@media (max-width: 1439px) and (min-width: 1200px) {
  .sitemap-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }

  .card h2 {
    font-size: 18px;
  }

  .sub-heading {
    font-size: 15px;
  }
}

/* Small Laptop — 992px to 1199px */
@media (max-width: 1199px) and (min-width: 992px) {
  .sitemap-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 0 20px 48px;
  }

  .card {
    padding: 22px 18px 24px;
  }

  .card h2 {
    font-size: 16px;
  }

  .sub-heading {
    font-size: 14px;
  }

  .card ul li a {
    font-size: 15px;
  }

  h1.site-title {
    letter-spacing: 2px;
  }

  .features {
    padding: 22px 30px;
  }

  .feature-item span {
    font-size: 16px;
  }

  .line {
    margin: 0 20px;
  }
}

/* Tablet — 768px to 991px */
@media (max-width: 991px) and (min-width: 768px) {
  .sitemap-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 18px 40px;
  }

  .card {
    padding: 20px 16px 22px;
  }

  .card h2 {
    font-size: 20px;
  }

  .sub-heading {
    font-size: 18px;
  }

  .card ul li a {
    font-size: 15.5px;
  }

  .sitemap-hero {
    padding: 48px 18px 36px;
    margin-top: 50px;
  }

  h1.site-title {
    letter-spacing: 2px;
  }

  .hero-sub {
    font-size: 25px;
  }

  .deco-line {
    width: 60px;
  }

  .features {
    padding: 20px 24px;
  }

  .feature-box {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .line {
    display: none;
  }

  .feature-item {
    white-space: normal;
  }

  .feature-item span {
    font-size: 15px;
  }
}

/* Mobile Large — 481px to 767px */
@media (max-width: 767px) and (min-width: 481px) {
  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 0 16px 36px;
    margin-top: 28px;
  }

  .card {
    padding: 18px 14px 20px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
    margin-bottom: 12px;
  }

  .card h2 {
    font-size: 19px;
    margin-bottom: 14px;
  }

  .sub-heading {
    font-size: 15px;
    margin: 14px 0 8px;
  }

  .card ul li a {
    font-size: 16px;
  }

  .sitemap-hero {
    padding: 40px 16px 30px;
    margin-top: 50px;
  }

  h1.site-title {
    letter-spacing: 1.5px;
  }

  .hero-sub {
    font-size: 23px;
  }

  .deco-line {
    width: 50px;
  }

  .features {
    padding: 18px 20px;
  }

  .feature-box {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .line {
    display: none;
  }

  .feature-item {
    white-space: normal;
    justify-content: center;
  }

  .feature-item span {
    font-size: 14px;
  }

  .icon {
    width: 36px;
    height: 36px;
  }
}

/* Mobile Small — 320px to 480px */
@media (max-width: 480px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 14px 32px;
    margin-top: 24px;
  }

  .card {
    padding: 16px 14px 18px;
  }

  .card-icon {
    width: 66px;
    height: 66px;
    font-size: 17px;
    margin-bottom: 10px;
  }

  .card h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .sub-heading {
    font-size: 15px;
    margin: 12px 0 7px;
  }

  .card ul li a {
    font-size: 15px;
    gap: 6px;
  }

  .sitemap-hero {
    padding: 32px 14px 24px;
    margin-top: 50px;
  }

  h1.site-title {
    letter-spacing: 1px;
    font-size: clamp(28px, 8vw, 40px);
  }

  .hero-sub {
    font-size: 21px;
  }

  .deco-line {
    width: 30px;
  }

  .title-row {
    gap: 10px;
  }

  .features {
    padding: 16px;
  }

  .feature-box {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .line {
    display: none;
  }

  .feature-item {
    width: 100%;
    white-space: normal;
  }

  .feature-item span {
    font-size: 14px;
  }

  .icon {
    width: 32px;
    height: 32px;
  }
}
