
        .about-section {
  padding: var(--global-section-padding) 60px;
  background: var(--themeWhite);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}.about-header {
  text-align: center;
  margin-bottom: 20px;
}.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}.about-subtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a227;
  margin-bottom: 15px;
}.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}.about-intro {
  max-width: 800px;
  text-align: center;
  margin: 0 auto 50px;
}.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto 40px;
}.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}.about-tagline {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}.about-card {
  background: #f5f4f0;
  padding: 35px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}.scroll-reveal-delay-1 {
  transition-delay: 0.1s;
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}.about-card-icon {
  width: 55px;
  height: 55px;
  background: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  color: #c9a227;
}.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #c9a227;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.about-card {
  background: #f5f4f0;
  padding: 35px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}.banner-card {
  background-color: #020210;
  border-radius: 15px;
  position: relative;
  padding: 10px;
  overflow: hidden;
  z-index: 2;
  margin-top: 40px;
}
/* GRID */
.overlay-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.overlay-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.overlay-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.overlay-card:hover img {
    transform: scale(1.05);
}

/* OVERLAY */
.overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* BADGE */
.overlay-content .badge {
    display: inline-block;
    background: #e11d48;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 8px;
}

/* TITLE */
.overlay-title {
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .overlay-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px) {
    .overlay-grid {
        grid-template-columns: 1fr;
    }
}
.trusted-network-section {
    background: #fff;
}

.logo-strip {
    background: #f2f7ff;
    overflow: hidden;
    padding: 25px 0;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll 25s linear infinite;
}

.logo-track img {
    height: 45px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.9;
    transition: 0.3s;
}

.logo-track img:hover {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .logo-track img {
        height: 35px;
    }

    .logo-track {
        gap: 35px;
    }
}
.logo-track img {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.9;
    transition: 0.3s ease;
}

.logo-track img:hover {
    filter: grayscale(0);
    opacity: 1;
    height: 99px;
  width: 180px !important;
}

@media (max-width: 575px) {
    .logo-track img {
        height: 45px;
    }
}
.title-area2 {
  margin-bottom: 30px;
}.sub-title2 {
    font-family: Caveat;
  font-size: 30px;
  color: #D92234;
  display: inline-block;
  position: relative;
  margin-top: -0.35em;
  margin-bottom: 20px;
}
span {
  line-height: 1.4;
  display: inline-block;
}.sub-title2 .title-shape {
  position: absolute;
  left: calc(100% + 12px);
}.spkmb {
  margin-bottom: 10px;
}.team-grid {
  -webkit-box-shadow: 0px 10px 25px 0px rgba(148, 148, 148, 0.07);
  box-shadow: 0px 10px 25px 0px rgba(148, 148, 148, 0.07);
  border-radius: 30px;
  overflow: hidden;
}
.team-grid {
  margin-bottom: 25px;
  vertical-align: top;
}.team-grid_img {
  position: relative;
}a {
  color: #D92234;
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}.team-grid_info {
  background-color: #fff;
  padding: 27px 27px;
  position: relative;
  z-index: 2;
  min-height: 195px;
}.team-grid_title {
  font-size: 20px;
  color: black;
  margin-bottom: 2px;
}

.team-grid_info::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #D92234;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -1;
}
.team-grid_desig {
  color: #D92234;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
  span {
  line-height: 1.4;
  display: inline-block;
}
}.vs-btn.btn-white {
  background-color: #D92234;
  color: #ffffff;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}.vs-btn {
  background-color: #CF153C;
  background-image: linear-gradient(to right, #ef476a, #cc293b, #cf153c, #CF153C);
  background-size: 300% 100%;
  -webkit-box-shadow: 0px 11px 21px 0px rgba(240, 64, 27, 0.31);
  box-shadow: 0px 11px 21px 0px rgba(240, 64, 27, 0.31);
  color: var(--white-color);
  font-size: 14px;
  font-weight: 700;
  padding: 20.5px 35px;
  line-height: 1;
  text-transform: uppercase;
  min-width: 150px;
  text-align: center;
  border-radius: 0;
  border: none;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border-radius: 9999px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.ultra-editorial {
    background: #ffffff;
    padding: 120px 0;
    color: #000;
    font-family: 'Inter', sans-serif;
}

/* HEADING */
.media-heading {
    margin-bottom: 70px;
}

.media-svg {
    width: 100%;
    max-width: 900px;
    height: 120px;
}

.media-title {
    font-size: 72px;
    font-weight: 900;
    fill: #000;
    letter-spacing: -2px;
}

.media-badge {
    fill: #000;
}

.media-badge-text {
    font-family: 'DM Serif Display', serif;
    font-size: 42px;
    fill: #fff;
}

/* GRID */
.editorial-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 60px;
}

/* FEATURED */
.featured-story {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0,0,0,.18);
}

.featured-story img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    transition: transform .8s ease;
}

.featured-story:hover img {
    transform: scale(1.08);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.15),
        transparent
    );
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.featured-overlay span {
    font-size: 12px;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
}

.featured-overlay h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-top: 12px;
    max-width: 90%;
}

/* LIST */
.story-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.story-row {
    display: flex;
    align-items: center;
    gap: 24px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #ddd;
    padding-bottom: 18px;
}

.story-row img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 14px;
}

.story-text span {
    font-size: 11px;
    letter-spacing: 2px;
    color: #777;
}

.story-text h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 6px;
}

/* MOBILE */
@media(max-width:992px){
    .editorial-grid {
        grid-template-columns: 1fr;
    }

    .featured-story img {
        height: 400px;
    }

    .media-title {
        font-size: 48px;
    }
}
    
    /* Hide on Mobile (below 576px) */
@media (max-width: 575px) {
    .hideinmobile {
        display: none !important;
    }
}

/* Hide on Desktop (576px and above) */
@media (min-width: 576px) {
    .hideindesktop {
        display: none !important;
    }
}
/* ===============================
   ULTRA EDITORIAL SECTION
================================ */
.ultra-editorial {
    padding: 80px 0;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

/* ===============================
   REAL STATE HEADING
================================ */
.realstate-heading {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.realstate-svg {
    width: 100%;
    max-width: 720px;
    height: auto;
}

.real-text {
    font-size: 58px;
    font-weight: 800;
    fill: #000;
}

.state-box {
    fill: #000;
}

.state-text {
    fill: #fff;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ===============================
   GRID LAYOUT
================================ */
.editorial-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
}

/* ===============================
   FEATURED STORY
================================ */
.featured-story {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    height: 520px;
    display: block;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.featured-story img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.featured-overlay {
    position: absolute;
    inset: 0;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.25),
        transparent
    );
}

.featured-overlay span {
    color: #ffd54f;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.featured-overlay h2 {
    color: #fff;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
}

/* ===============================
   SMALL STORIES
================================ */
.story-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.story-row {
    display: grid;
    grid-template-columns: 1fr 90px;
    gap: 16px;
    align-items: center;
    padding: 18px;
    background: #f8f8f8;
    border-radius: 18px;
    text-decoration: none;
    transition: all .35s ease;
}

.story-row:hover {
    background: #000;
    transform: translateY(-3px);
}

.story-text span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #999;
    text-transform: uppercase;
}

.story-row:hover span {
    color: #ffd54f;
}

.story-text h4 {
    margin-top: 6px;
    font-size: 17px;
    font-weight: 600;
    color: #111;
    line-height: 1.35;
}

.story-row:hover h4 {
    color: #fff;
}

.story-row img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
}

/* ===============================
   MOBILE — FIXED & BIG 🔥
================================ */
@media (max-width: 768px) {

    .editorial-grid {
        grid-template-columns: 1fr;
    }

    .featured-story {
        height: 460px;
    }

    .featured-overlay h2 {
        font-size: 28px;
    }

    .real-text {
        font-size: 64px;
    }

    .state-text {
        font-size: 42px;
    }

    .story-row {
        grid-template-columns: 1fr 80px;
        padding: 16px;
    }

    .story-row img {
        height: 65px;
    }
}
.startup-stories {
    padding: 40px 0;
}

.section-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.story-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s ease;
}

.story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.story-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-content {
    padding: 18px;
}

.story-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
}

.story-content h4 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #000;
}

.story-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

.story-author {
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

.show-all-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid #000;
    font-weight: 600;
    transition: 0.3s;
}

.show-all-btn:hover {
    background: #000;
    color: #fff;
}
.red-orb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;

  /* glossy red */
  background: radial-gradient(
    circle at 30% 30%,
    #ff9a9a,
    #ff2d2d 40%,
    #c40000 75%
  );

  /* outer glow */
  box-shadow:
    0 0 0 3px rgba(255, 0, 0, 0.35),
    0 0 8px rgba(255, 0, 0, 0.8);
}

.red-orb {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 3px rgba(255,0,0,.35), 0 0 8px rgba(255,0,0,.8); }
  50%  { box-shadow: 0 0 0 5px rgba(255,0,0,.25), 0 0 14px rgba(255,0,0,1); }
  100% { box-shadow: 0 0 0 3px rgba(255,0,0,.35), 0 0 8px rgba(255,0,0,.8); }
}
.red-orb {
  margin: 6px 0;
}
/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* Sidebar */
.sidebar-item {
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  background: #f8f8f8;
  cursor: pointer;
  transition: all .3s ease;
}
.sidebar-item.active {
  background: radial-gradient(circle at 30% 30%, #ff8a8a, #ff2d2d, #b30000);
  color: white;
  box-shadow: 0 0 18px rgba(255,0,0,.6);
}

/* Section */
.section-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}
.news-card {
  background: white;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  margin-bottom: 14px;
}

