
/* ==================== style.css ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy:       #0F1923;       /* Near-obsidian heading/text */
  --text:       #6B7585;       /* Slate secondary body text */
  --blue:       #1B3A4B;       /* Slate-navy primary brand */
  --blue-hover: #14303F;
  --green:      #10B981;       /* Emerald — Buy / positive only */
  --red:        #DC2626;
  --salmon:     #E05A5C;       /* Legacy coral accent */
  --accent-gold: #B8922A;     /* Muted gold — Invest / premium CTAs only */
  --light-blue:  #ECEEF2;
  --light-green: #ECFDF5;
  --white:       #FFFFFF;
  --border:      #E1E5EB;
  --page-bg:     #F5F6F8;     /* Crisp off-white */
}

html[data-theme="dark"] {
  --navy:       #EEF0F5;
  --text:       #8A96A8;
  --blue:       #6B9BB8;
  --blue-hover: #4A8099;
  --green:      #34D399;      /* Emerald dark variant — Buy / positive */
  --red:        #EF4444;
  --salmon:     #E05A5C;
  --accent-gold: #D4A843;    /* Gold dark variant — Invest */
  --light-blue:  #192435;
  --light-green: rgba(52, 211, 153, 0.12);
  --white:      #111C26;
  --border:     #1E2D3D;
  --page-bg:    #0B1117;     /* True obsidian */
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--page-bg);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==================== navbar.css ==================== */
.navbar,
.dashboard-navbar {
  width: 100%;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10000;
}

.nav-container {
  width: min(var(--container-max-width, 1280px), calc(100% - 32px));
  min-height: var(--navbar-height, 68px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  flex-shrink: 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: var(--navy);
  text-decoration: none;
}

.logo span {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 48px;
  font-size: 15px;
  font-weight: 600;
}

.nav-links a,
.login-link {
  transition: color 0.25s ease;
  text-decoration: none;
  color: var(--heading-color);
}

.nav-links a:hover,
.nav-links a.active,
.login-link:hover {
  color: var(--accent);
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 7px;
  border-radius: 5px;
  color: white;
  font-size: 10px;
  font-weight: 800;
  background: var(--accent);
}

.down-arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg) translateY(-2px);
}

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 600;
}

.get-started-btn,
.reserve-btn {
  background: var(--primary) !important;
  color: white !important;
  box-shadow: none !important;
  transition: all 0.2s ease;
}

/* Buy / Invest CTAs — emerald or gold */
.buy-btn, .btn-buy-public {
  background: var(--accent-buy) !important;
  color: white !important;
  box-shadow: none !important;
  transition: all 0.2s ease;
}
.invest-btn, .btn-invest-public {
  background: var(--accent-gold) !important;
  color: white !important;
  box-shadow: none !important;
  transition: all 0.2s ease;
}

.get-started-btn {
  padding: 10px 22px !important;
  text-align: center;
  border-radius: 9999px !important;
  font-weight: 600 !important;
  min-width: unset !important;
}

.get-started-btn:hover,
.reserve-btn:hover {
  background: var(--primary-hover) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(255, 90, 54, 0.2) !important;
}

/* ==================== hero.css ==================== */
/* Homepage Dark Teal Header Override */
.homepage-body .navbar {
  background: #133D47 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.homepage-body .navbar .logo,
.homepage-body .navbar .nav-links a,
.homepage-body .navbar .login-link {
  color: #ffffff !important;
}

.homepage-body .navbar .logo span {
  color: var(--accent) !important;
}

.homepage-body .navbar .nav-links a:hover,
.homepage-body .navbar .nav-links a.active,
.homepage-body .navbar .login-link:hover {
  color: var(--accent) !important;
}

.homepage-body .navbar .down-arrow {
  border-right: 2px solid #ffffff !important;
  border-bottom: 2px solid #ffffff !important;
}

.homepage-body .navbar .mobile-menu-btn .hamburger-line {
  background: #ffffff !important;
}

.homepage-body .theme-toggle {
  border-color: rgba(255, 255, 255, 0.15) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
}

.homepage-body .theme-toggle:hover {
  border-color: var(--accent) !important;
}

.hero-section {
  min-height: calc(100vh - 76px);
  position: relative;
  overflow: hidden;
  background: #133D47;
}

.hero-section::after {
  display: none;
}

.hero-container {
  width: min(1350px, calc(100% - 48px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-content {
  padding: 60px 0 100px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  max-width: 760px;
  font-size: clamp(48px, 4.8vw, 76px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff !important;
  font-family: Georgia, serif;
  font-weight: 800;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content h1 span {
  display: block;
  margin-top: 12px;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--accent);
}

.hero-content p {
  max-width: 680px;
  margin-top: 24px;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8) !important;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.reserve-btn {
  width: fit-content;
  margin-top: 36px;
  padding: 14px 28px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  background: var(--primary);
  color: white;
  text-decoration: none;
  box-shadow: none;
  transition: all 0.2s ease;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.reserve-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 90, 54, 0.2);
}

.reserve-btn span {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.reserve-btn:hover span {
  transform: translateX(4px);
}

.phone-area {
  min-height: 760px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-area::before {
  display: none;
}

.phone {
  width: 420px;
  transform: rotate(7deg);
  position: relative;
  z-index: 2;
  animation: floatPhone 5s ease-in-out infinite;
}

.phone-frame {
  padding: 11px;
  border-radius: 58px;
  background: linear-gradient(135deg, #cfd5dd, #ffffff 35%, #a9b0bb 68%, #f7f7f7);
  box-shadow:
    0 35px 70px rgba(15, 40, 84, 0.22),
    inset 0 0 0 2px rgba(0,0,0,.12);
}

.phone-screen {
  min-height: 760px;
  border-radius: 49px;
  padding: 24px 24px 20px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(42, 89, 255, 0.25), transparent 30%),
    linear-gradient(180deg, #03142f, #071d3e 55%, #04142d);
  border: 1px solid rgba(255,255,255,.1);
}

.status-bar,
.phone-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-bar {
  font-size: 14px;
  font-weight: 700;
}

.status-icons {
  letter-spacing: 2px;
  font-size: 12px;
}

.phone-topbar {
  margin-top: 26px;
}

.phone-logo {
  font-size: 21px;
  font-weight: 800;
  font-style: italic;
}

.phone-logo span {
  color: var(--green);
}

.phone-icons {
  color: #cbd8f3;
  font-size: 22px;
  letter-spacing: 8px;
}

.phone-screen h2 {
  margin: 39px 0 23px;
  text-align: center;
  font-size: 23px;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.company-card {
  min-height: 207px;
  padding: 14px;
  border-radius: 13px;
  background: rgba(17, 42, 82, 0.78);
  border: 1px solid rgba(255,255,255,.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
}

.available {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 5px;
  color: #56efa6;
  background: rgba(8, 111, 76, 0.7);
  font-size: 9px;
  font-weight: 700;
}

.company-icon {
  width: 44px;
  height: 44px;
  margin-top: 13px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 23px;
  font-weight: 800;
}

.company-icon.blue { background: #3f5cff; }
.company-icon.green { background: #2dc66f; }
.company-icon.purple { background: #8c4dda; }
.company-icon.orange { background: #f0802a; }

.company-card h3 {
  margin-top: 10px;
  font-size: 17px;
}

.company-card small {
  display: block;
  margin-top: 4px;
  color: #aebbd2;
  font-size: 12px;
}

.company-card p {
  margin-top: 24px;
  color: #8fa1bd;
  font-size: 10px;
}

.company-card strong {
  display: block;
  margin-top: 5px;
  font-size: 15px;
}

.phone-nav {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  color: #8494b1;
  font-size: 18px;
}

.phone-nav span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phone-nav small {
  font-size: 8px;
}

.phone-nav .active {
  color: #4b6dff;
}

@keyframes floatPhone {
  0%, 100% { transform: rotate(7deg) translateY(0); }
  50% { transform: rotate(7deg) translateY(-12px); }
}

@media (max-width: 1150px) {
  .nav-links {
    gap: 25px;
    margin-left: 20px;
  }

  .nav-actions {
    gap: 18px;
  }

  .hero-container {
    grid-template-columns: 1fr 0.85fr;
  }

  .phone {
    width: 360px;
  }

  .phone-screen {
    min-height: 660px;
  }

  .company-card {
    min-height: 180px;
  }
}

@media (max-width: 900px) {
  .nav-container {
    width: min(100% - 34px, 760px);
    min-height: 86px;
  }

  .nav-links,
  .login-link {
    display: none;
  }

  .logo {
    font-size: 32px;
  }

  .get-started-btn {
    min-width: 132px;
    padding: 13px 18px;
    font-size: 15px;
  }

  .hero-container {
    width: min(100% - 36px, 760px);
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 35px;
  }

  .hero-content {
    padding: 40px 0 20px;
  }

  .hero-content h1 {
    margin: 0 auto;
    font-size: clamp(48px, 11vw, 72px);
    letter-spacing: -3px;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .reserve-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .phone-area {
    min-height: 720px;
  }
}

@media (max-width: 520px) {
  .nav-container {
    width: calc(100% - 24px);
  }

  .logo {
    font-size: 27px;
  }

  .get-started-btn {
    min-width: auto;
    padding: 12px 15px;
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .reserve-btn {
    padding: 17px 24px;
    font-size: 18px;
  }

  .phone-area {
    min-height: 620px;
  }

  .phone {
    width: 305px;
  }

  .phone-screen {
    min-height: 560px;
    padding: 18px 16px 15px;
  }

  .phone-screen h2 {
    margin: 27px 0 17px;
  }

  .company-card {
    min-height: 154px;
    padding: 10px;
  }

  .company-icon {
    width: 34px;
    height: 34px;
    font-size: 18px;
    margin-top: 8px;
  }

  .company-card h3 {
    font-size: 13px;
  }

  .company-card p {
    margin-top: 14px;
  }

  .company-card strong {
    font-size: 12px;
  }
}
/* =========================================
   FINAL THIN PHONE DESIGN
========================================= */

.hero-container {
  width: min(1450px, calc(100% - 90px));
  grid-template-columns: 1.1fr 0.9fr;
}

.phone-area {
  min-height: 760px;
  justify-content: center;
  align-items: center;
  padding-left: 30px;
}

/* Blue and green glow behind phone */
.phone-area::before {
  width: 590px;
  height: 590px;

  background:
    radial-gradient(
      circle at 35% 50%,
      rgba(38, 103, 255, 0.30),
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 50%,
      rgba(17, 189, 114, 0.24),
      transparent 48%
    );

  filter: blur(12px);
}

/* Phone becomes thin and long */
.phone {
  width: 345px;
  position: relative;
  z-index: 2;

  transform: rotate(5deg);
  animation: floatThinPhone 5s ease-in-out infinite;
}

.phone-frame {
  padding: 8px;

  border-radius: 48px;

  background: linear-gradient(
    135deg,
    #b7bdc8 0%,
    #ffffff 25%,
    #7d8591 55%,
    #f9fafb 75%,
    #9ca3af 100%
  );

  box-shadow:
    0 32px 60px rgba(15, 40, 84, 0.24),
    0 8px 20px rgba(17, 189, 114, 0.12),
    inset 0 0 0 1px rgba(0, 0, 0, 0.16);
}

.phone-screen {
  min-height: 650px;
  padding: 19px 18px 15px;

  border-radius: 41px;

  background:
    radial-gradient(
      circle at 78% 17%,
      rgba(38, 103, 255, 0.20),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #03142f 0%,
      #071d3e 52%,
      #04142d 100%
    );
}

/* Phone top content */

.status-bar {
  padding: 0 5px;
  font-size: 12px;
}

.status-icons {
  font-size: 10px;
}

.phone-topbar {
  margin-top: 24px;
}

.phone-logo {
  font-size: 19px;
}

.phone-icons {
  font-size: 18px;
  letter-spacing: 6px;
}

.phone-screen h2 {
  margin: 32px 0 18px;
  font-size: 20px;
}

/* Cards inside phone */

.company-grid {
  gap: 11px;
}

.company-card {
  min-height: 170px;
  padding: 11px;

  border-radius: 12px;

  background: rgba(17, 42, 82, 0.84);
}

.available {
  padding: 3px 6px;
  font-size: 7px;
}

.company-icon {
  width: 35px;
  height: 35px;

  margin-top: 10px;

  font-size: 18px;
}

.company-card h3 {
  margin-top: 8px;
  font-size: 13px;
}

.company-card small {
  margin-top: 3px;
  font-size: 9px;
}

.company-card p {
  margin-top: 16px;
  font-size: 8px;
}

.company-card strong {
  margin-top: 3px;
  font-size: 11px;
}

/* Phone bottom navigation */

.phone-nav {
  margin-top: 17px;
  padding-top: 11px;

  font-size: 15px;
}

.phone-nav small {
  font-size: 6px;
}

/* New phone floating animation */

@keyframes floatThinPhone {
  0%,
  100% {
    transform: rotate(5deg) translateY(0);
  }

  50% {
    transform: rotate(5deg) translateY(-11px);
  }
}

/* Hero text adjustment */

.hero-content h1 {
  max-width: 730px;
}

.hero-content p {
  max-width: 650px;
}

/* Tablet */

@media (max-width: 1150px) {
  .phone {
    width: 315px;
  }

  .phone-screen {
    min-height: 600px;
  }

  .company-card {
    min-height: 155px;
  }
}

/* Mobile */

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .phone-area {
    min-height: 680px;
    padding-left: 0;
  }

  .phone {
    width: 315px;
  }
}

/* Small mobile */

@media (max-width: 520px) {
  .phone-area {
    min-height: 590px;
  }

  .phone {
    width: 280px;
  }

  .phone-screen {
    min-height: 525px;
    padding: 16px 14px 12px;
  }

  .phone-screen h2 {
    margin: 24px 0 14px;
    font-size: 17px;
  }

  .company-grid {
    gap: 8px;
  }

  .company-card {
    min-height: 137px;
    padding: 8px;
  }

  .company-icon {
    width: 29px;
    height: 29px;
    font-size: 14px;
  }

  .company-card h3 {
    font-size: 11px;
  }

  .company-card p {
    margin-top: 10px;
  }

  .company-card strong {
    font-size: 9px;
  }
}

/* ==================== companies.css ==================== */
/* =========================================
   GROWTH COMPANIES SECTION
========================================= */

.growth-companies-section {
  position: relative;
  overflow: hidden;

  padding: 110px 0 125px;

  background:
    radial-gradient(
      circle at 15% 35%,
      rgba(17, 189, 114, 0.10),
      transparent 24%
    ),
    radial-gradient(
      circle at 85% 45%,
      rgba(38, 103, 255, 0.11),
      transparent 26%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f6faff 55%,
      #f2fff9 100%
    );
}

.growth-companies-section::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  width: 85%;
  height: 1px;

  transform: translateX(-50%);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(38, 103, 255, 0.24),
    rgba(17, 189, 114, 0.24),
    transparent
  );
}


/* Heading */

.growth-heading {
  width: min(900px, calc(100% - 40px));

  margin: 0 auto 70px;

  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 9px 18px;

  border: 1px solid rgba(17, 189, 114, 0.24);
  border-radius: 50px;

  color: #07985a;

  background: rgba(17, 189, 114, 0.08);

  font-size: 14px;
  font-weight: 700;
}

.growth-heading h2 {
  margin-top: 22px;

  font-size: clamp(42px, 4.4vw, 72px);
  line-height: 1.12;
  letter-spacing: -3px;

  color: #07224e;
}

.growth-heading h2 span {
  display: block;

  background: linear-gradient(
    90deg,
    #11bd72,
    #249ec7,
    #2667ff
  );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.growth-heading p {
  max-width: 720px;

  margin: 23px auto 0;

  color: #5a6d91;

  font-size: 19px;
  line-height: 1.7;
}


/* Slider */

.companies-slider {
  width: 100%;
  overflow: hidden;

  padding: 20px 0 35px;
}

@keyframes trackSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 11px));
  }
}

.companies-track {
  width: max-content;
  display: grid;
  grid-template-rows: repeat(2, 160px);
  grid-auto-flow: column;
  grid-auto-columns: 490px;
  gap: 22px;
  padding-left: 35px;
  animation: trackSlide 40s linear infinite;
}

.companies-slider:hover .companies-track {
  animation-play-state: paused;
}




/* Company Card */

.growth-card {
  position: relative;

  min-width: 490px;
  height: 160px;

  padding: 24px 27px;

  display: flex;
  align-items: center;
  gap: 23px;

  border: 1px solid rgba(38, 103, 255, 0.13);
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.92);

  box-shadow:
    0 18px 45px rgba(20, 52, 101, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.growth-card:hover {
  transform: translateY(-7px);

  border-color: rgba(17, 189, 114, 0.45);

  box-shadow:
    0 24px 55px rgba(38, 103, 255, 0.13),
    0 10px 30px rgba(17, 189, 114, 0.09);
}

.featured-card {
  border-color: rgba(38, 103, 255, 0.25);
}


/* Entry Badge */

.entry-badge {
  position: absolute;
  top: 0;
  right: 0;

  padding: 10px 16px;

  border-radius: 0 21px 0 18px;

  color: white;

  background: linear-gradient(
    135deg,
    #2667ff,
    #11bd72
  );

  font-size: 13px;
  font-weight: 700;
}


/* Logo Box */

.growth-logo {
  width: 105px;
  height: 105px;

  flex-shrink: 0;

  display: grid;
  place-items: center;

  border-radius: 19px;

  color: white;

  font-size: 25px;
  font-weight: 800;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 14px 25px rgba(18, 42, 83, 0.12);
}

.logo-blue {
  background: linear-gradient(135deg, #315cff, #16a2e8);
}

.logo-orange {
  background: linear-gradient(135deg, #ff8534, #f04e38);
}

.logo-red {
  background: linear-gradient(135deg, #fa3755, #cc2442);
}

.logo-green {
  background: linear-gradient(135deg, #10b96e, #159d72);
}

.logo-purple {
  background: linear-gradient(135deg, #8a46e8, #c24adb);
}

.logo-navy {
  background: linear-gradient(135deg, #173a78, #237bc8);
}

.logo-black {
  background: linear-gradient(135deg, #141b2d, #39425b);
}

.logo-sky {
  background: linear-gradient(135deg, #1689cf, #1ac7a2);
}

.logo-cyan {
  background: linear-gradient(135deg, #2479e9, #11bbaa);
}

.logo-white-bg {
  background: #ffffff !important;
  border: 1px solid var(--border);
  padding: 10px;
}

.growth-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/* Card Text */

.growth-details {
  min-width: 0;
}

.growth-details h3 {
  max-width: 310px;

  color: #102a58;

  font-size: 22px;
  font-weight: 750;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.growth-info {
  margin-top: 14px;

  display: flex;
  align-items: center;
  gap: 12px;

  min-width: 0;
}

.growth-percentage {
  flex-shrink: 0;

  padding: 8px 12px;

  border-radius: 9px;

  font-size: 16px;
  font-weight: 700;
}

.growth-percentage.positive {
  color: #07985a;
  background: rgba(17, 189, 114, 0.11);
}

.growth-percentage.negative {
  color: #e43e4f;
  background: rgba(228, 62, 79, 0.10);
}

.growth-percentage.neutral {
  color: #2667ff;
  background: rgba(38, 103, 255, 0.10);
}

.growth-sector {
  min-width: 0;

  color: #6d7c9c;

  font-size: 17px;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* Automatic Slider Animation */




/* Tablet */

@media (max-width: 900px) {

  .growth-companies-section {
    padding: 85px 0 95px;
  }

  .growth-heading {
    margin-bottom: 50px;
  }

  .growth-heading h2 {
    letter-spacing: -2px;
  }

  .companies-track {
    grid-template-rows: repeat(2, 145px);
    grid-auto-columns: 415px;

    gap: 17px;

    padding-left: 22px;
  }

  .growth-card {
    min-width: 415px;
    height: 145px;

    padding: 20px;

    gap: 18px;
  }

  .growth-logo {
    width: 88px;
    height: 88px;

    font-size: 22px;
  }

  .growth-details h3 {
    font-size: 19px;
  }

  .growth-sector {
    font-size: 15px;
  }

}


/* Mobile */

@media (max-width: 520px) {

  .growth-companies-section {
    padding: 70px 0 80px;
  }

  .growth-heading {
    margin-bottom: 37px;
  }

  .growth-heading h2 {
    font-size: 41px;
    letter-spacing: -1.8px;
  }

  .growth-heading p {
    font-size: 16px;
  }

  .companies-track {
    grid-template-rows: repeat(2, 125px);
    grid-auto-columns: 335px;

    gap: 14px;

    padding-left: 14px;

    animation-duration: 25s;
  }

  .growth-card {
    min-width: 335px;
    height: 125px;

    padding: 16px;

    gap: 14px;

    border-radius: 17px;
  }

  .growth-logo {
    width: 72px;
    height: 72px;

    border-radius: 15px;

    font-size: 18px;
  }

  .growth-details h3 {
    max-width: 205px;

    font-size: 16px;
  }

  .growth-info {
    margin-top: 10px;
    gap: 8px;
  }

  .growth-percentage {
    padding: 6px 8px;

    font-size: 12px;
  }

  .growth-sector {
    font-size: 13px;
  }

  .entry-badge {
    padding: 7px 11px;

    font-size: 10px;
  }

}

/* =========================================
   FINAL STATIC COMPANY GRID
   Paste-safe overrides
========================================= */

.companies-slider {
  width: 100%;
  overflow: visible;
  padding: 20px 0 40px;
}

.companies-track {
  width: min(1400px, calc(100% - 50px));
  margin: 0 auto;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  grid-auto-flow: row;
  grid-auto-columns: auto;
  gap: 22px;

  animation: none !important;
  transform: none !important;
}

.growth-card {
  position: relative;
  width: 100%;
  min-width: 0;
  height: 145px;

  padding: 22px 24px;

  display: flex;
  align-items: center;
  gap: 20px;

  border: 1px solid rgba(38, 103, 255, 0.16);
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.96);

  box-shadow:
    0 14px 35px rgba(20, 52, 101, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.growth-card:hover {
  transform: translateY(-5px);
  border-color: rgba(17, 189, 114, 0.42);
  box-shadow: 0 20px 45px rgba(38, 103, 255, 0.12);
}

.growth-logo {
  width: 92px;
  height: 92px;
  flex-shrink: 0;
  border-radius: 18px;
  font-size: 23px;
}

.growth-details {
  min-width: 0;
  flex: 1;
}

.growth-details h3 {
  max-width: 100%;
  font-size: 21px;
}

.growth-info {
  margin-top: 12px;
  gap: 10px;
}

.growth-sector {
  font-size: 16px;
}

.view-more-box {
  margin-top: 36px;
  text-align: center;
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 165px;
  padding: 14px 28px;

  border-radius: 50px;

  color: #ffffff;
  font-size: 16px;
  font-weight: 700;

  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 12px 28px rgba(38, 103, 255, 0.16);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 34px rgba(17, 189, 114, 0.22);
}

@media (max-width: 1050px) {
  .companies-track {
    width: min(900px, calc(100% - 36px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .growth-companies-section {
    padding: 72px 0 82px;
  }

  .growth-heading {
    margin-bottom: 40px;
  }

  .growth-heading h2 {
    font-size: 40px;
    letter-spacing: -1.8px;
  }

  .growth-heading p {
    font-size: 16px;
  }

  .companies-track {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .growth-card {
    height: 130px;
    padding: 17px;
    gap: 15px;
    border-radius: 17px;
  }

  .growth-logo {
    width: 76px;
    height: 76px;
    border-radius: 15px;
    font-size: 19px;
  }

  .growth-details h3 {
    font-size: 17px;
  }

  .growth-info {
    margin-top: 10px;
    gap: 8px;
  }

  .growth-percentage {
    padding: 6px 8px;
    font-size: 12px;
  }

  .growth-sector {
    font-size: 14px;
  }

  .entry-badge {
    padding: 7px 11px;
    font-size: 10px;
  }
}

/* ==================== features.css ==================== */
/* =========================================
   INVESTMENT FEATURES SECTION
========================================= */

.investment-features {
  position: relative;
  overflow: hidden;

  padding: 115px 0 125px;

  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(17, 189, 114, 0.12),
      transparent 27%
    ),
    radial-gradient(
      circle at 88% 75%,
      rgba(38, 103, 255, 0.12),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7fbff 52%,
      #f4fff9 100%
    );
}

.investment-features::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  width: 85%;
  height: 1px;

  transform: translateX(-50%);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(38, 103, 255, 0.22),
    rgba(17, 189, 114, 0.22),
    transparent
  );
}

.features-container {
  width: min(1200px, calc(100% - 50px));
  margin: 0 auto;

  position: relative;
  z-index: 2;
}


/* Heading */

.features-heading {
  max-width: 950px;
  margin: 0 auto 85px;

  text-align: center;
}

.features-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 9px 18px;

  border: 1px solid rgba(17, 189, 114, 0.25);
  border-radius: 50px;

  color: #07985a;
  background: rgba(17, 189, 114, 0.08);

  font-size: 14px;
  font-weight: 700;
}

.features-heading h2 {
  margin-top: 23px;

  color: var(--navy);

  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.12;
  letter-spacing: -3.5px;
  font-weight: 700;
}

.features-heading h2 span {
  display: block;

  background: linear-gradient(
    90deg,
    var(--green),
    #23a3c8,
    var(--blue)
  );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.features-heading p {
  max-width: 760px;
  margin: 25px auto 0;

  color: #5b6f94;

  font-size: 19px;
  line-height: 1.7;
}


/* Feature grid */

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  column-gap: 90px;
  row-gap: 75px;
}

.feature-item {
  position: relative;

  padding: 38px 34px;

  text-align: center;

  border: 1px solid rgba(38, 103, 255, 0.13);
  border-radius: 28px;

  background: rgba(255, 255, 255, 0.82);

  box-shadow:
    0 20px 55px rgba(19, 49, 98, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);

  border-color: rgba(17, 189, 114, 0.42);

  box-shadow:
    0 26px 60px rgba(38, 103, 255, 0.12),
    0 12px 35px rgba(17, 189, 114, 0.08);
}


/* Icons */

.feature-icon {
  width: 100px;
  height: 100px;

  margin: 0 auto 28px;

  position: relative;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      rgba(17, 189, 114, 0.14),
      rgba(38, 103, 255, 0.15)
    );

  border: 1px solid rgba(38, 103, 255, 0.16);

  box-shadow:
    0 16px 35px rgba(38, 103, 255, 0.12);
}


/* Rupee icon */

.rupee-icon {
  font-size: 58px;
  font-weight: 800;

  background: linear-gradient(
    135deg,
    var(--green),
    var(--blue)
  );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}


/* Lock icon */

.lock-body {
  width: 48px;
  height: 43px;

  position: relative;

  display: block;

  border-radius: 9px 9px 13px 13px;

  background: linear-gradient(
    135deg,
    var(--green),
    var(--blue)
  );
}

.lock-body::before {
  content: "";

  position: absolute;
  left: 50%;
  top: -31px;

  width: 31px;
  height: 34px;

  transform: translateX(-50%);

  border: 8px solid var(--blue);
  border-bottom: 0;

  border-radius: 24px 24px 0 0;
}

.lock-body::after {
  content: "";

  position: absolute;
  left: 50%;
  top: 15px;

  width: 8px;
  height: 16px;

  transform: translateX(-50%);

  border-radius: 10px;

  background: #ffffff;
}


/* Chart icon */

.chart-icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
}

.chart-bar {
  display: block;

  width: 12px;

  border-radius: 5px 5px 1px 1px;

  background: linear-gradient(
    180deg,
    var(--blue),
    var(--green)
  );
}

.bar-one {
  height: 28px;
  opacity: 0.55;
}

.bar-two {
  height: 43px;
  opacity: 0.7;
}

.bar-three {
  height: 59px;
  opacity: 0.86;
}

.bar-four {
  height: 76px;
}


/* Bolt icon */

.bolt-shape {
  width: 43px;
  height: 72px;

  display: block;

  background: linear-gradient(
    180deg,
    var(--green),
    var(--blue)
  );

  clip-path: polygon(
    55% 0,
    100% 0,
    67% 40%,
    94% 40%,
    27% 100%,
    42% 55%,
    12% 55%
  );
}


/* Text */

.feature-item h3 {
  color: var(--navy);

  font-size: 25px;
  font-weight: 750;
}

.feature-item p {
  max-width: 480px;

  margin: 17px auto 0;

  color: #5c6f91;

  font-size: 17px;
  line-height: 1.65;
}


/* Tablet */

@media (max-width: 900px) {
  .investment-features {
    padding: 90px 0 100px;
  }

  .features-heading {
    margin-bottom: 60px;
  }

  .features-grid {
    column-gap: 30px;
    row-gap: 30px;
  }
}


/* Mobile */

@media (max-width: 680px) {
  .investment-features {
    padding: 75px 0 82px;
  }

  .features-container {
    width: calc(100% - 28px);
  }

  .features-heading {
    margin-bottom: 45px;
  }

  .features-heading h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .features-heading p {
    font-size: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-item {
    padding: 30px 22px;

    border-radius: 22px;
  }

  .feature-icon {
    width: 85px;
    height: 85px;

    margin-bottom: 23px;
  }

  .feature-item h3 {
    font-size: 21px;
  }

  .feature-item p {
    font-size: 15px;
  }
}

/* ==================== videos.css ==================== */
/* =========================================
   VIDEO STORIES SECTION
========================================= */

.video-stories {
  position: relative;
  overflow: hidden;

  padding: 115px 0 125px;

  background:
    radial-gradient(
      circle at 15% 35%,
      rgba(17, 189, 114, 0.1),
      transparent 27%
    ),
    radial-gradient(
      circle at 85% 40%,
      rgba(38, 103, 255, 0.12),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f5faff 55%,
      #f3fff9 100%
    );
}

.video-stories::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  width: 85%;
  height: 1px;

  transform: translateX(-50%);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(17, 189, 114, 0.24),
    rgba(38, 103, 255, 0.24),
    transparent
  );
}

.video-stories-container {
  width: min(1400px, calc(100% - 50px));
  margin: 0 auto;
}


/* Heading */

.video-heading {
  max-width: 900px;
  margin: 0 auto 70px;

  text-align: center;
}

.video-label {
  display: inline-flex;

  padding: 9px 18px;

  border: 1px solid rgba(17, 189, 114, 0.25);
  border-radius: 50px;

  color: #07985a;
  background: rgba(17, 189, 114, 0.08);

  font-size: 14px;
  font-weight: 700;
}

.video-heading h2 {
  margin-top: 22px;

  color: var(--navy);

  font-size: clamp(45px, 5vw, 76px);
  line-height: 1.1;
  letter-spacing: -3.5px;
}

.video-heading h2 span {
  display: block;

  background: linear-gradient(
    90deg,
    var(--green),
    #24a0c9,
    var(--blue)
  );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.video-heading p {
  max-width: 730px;
  margin: 23px auto 0;

  color: #5b6f94;

  font-size: 18px;
  line-height: 1.7;
}


/* Video Cards */

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.video-card {
  overflow: hidden;

  border: 1px solid rgba(38, 103, 255, 0.14);
  border-radius: 26px;

  background: rgba(255, 255, 255, 0.94);

  box-shadow:
    0 20px 50px rgba(20, 52, 101, 0.08);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-8px);

  border-color: rgba(17, 189, 114, 0.42);

  box-shadow:
    0 27px 60px rgba(38, 103, 255, 0.13),
    0 12px 30px rgba(17, 189, 114, 0.08);
}


/* Image Area */

.video-image {
  min-height: 340px;

  position: relative;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  overflow: hidden;
}

.video-image::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(255, 255, 255, 0.85),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      rgba(17, 189, 114, 0.22),
      rgba(38, 103, 255, 0.24)
    );
}

.video-image-one {
  background: linear-gradient(135deg, #e9fff5, #e8f0ff);
}

.video-image-two {
  background: linear-gradient(135deg, #edf5ff, #edfff8);
}

.video-image-three {
  background: linear-gradient(135deg, #ebfff6, #e8efff);
}


/* Placeholder Person */

.person-placeholder {
  width: 220px;
  height: 260px;

  position: relative;
  z-index: 2;

  display: grid;
  place-items: center;

  border-radius: 110px 110px 20px 20px;

  color: #ffffff;

  font-size: 55px;
  font-weight: 800;

  background: linear-gradient(
    160deg,
    var(--green),
    #26a3c9,
    var(--blue)
  );

  box-shadow:
    0 20px 45px rgba(25, 65, 120, 0.2);
}

.video-image-two .person-placeholder {
  background: linear-gradient(
    160deg,
    var(--blue),
    #25a5c8,
    var(--green)
  );
}

.video-image-three .person-placeholder {
  background: linear-gradient(
    160deg,
    #22aeb7,
    var(--green),
    var(--blue)
  );
}


/* Play Button */

.video-play-btn {
  width: 66px;
  height: 66px;

  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 4;

  display: grid;
  place-items: center;

  padding-left: 4px;

  border: 2px solid #ffffff;
  border-radius: 50%;

  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--green),
    var(--blue)
  );

  font-size: 24px;

  box-shadow:
    0 12px 30px rgba(38, 103, 255, 0.22);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.video-play-btn:hover {
  transform: scale(1.08);

  box-shadow:
    0 17px 35px rgba(17, 189, 114, 0.27);
}


/* Card Content */

.video-card-content {
  padding: 27px 28px 31px;
}

.video-card-content h3 {
  color: var(--navy);

  font-size: 25px;
  font-weight: 750;
}

.video-card-content p {
  margin-top: 12px;

  color: #5d7093;

  font-size: 16px;
  line-height: 1.6;
}


/* Tablet */

@media (max-width: 1000px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 14px);
    margin: 0 auto;
  }
}


/* Mobile */

@media (max-width: 680px) {
  .video-stories {
    padding: 75px 0 82px;
  }

  .video-stories-container {
    width: calc(100% - 28px);
  }

  .video-heading {
    margin-bottom: 45px;
  }

  .video-heading h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .video-heading p {
    font-size: 16px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .video-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .video-image {
    min-height: 300px;
  }

  .person-placeholder {
    width: 190px;
    height: 225px;

    font-size: 46px;
  }

  .video-play-btn {
    width: 57px;
    height: 57px;

    top: 18px;
    right: 18px;

    font-size: 20px;
  }

  .video-card-content h3 {
    font-size: 22px;
  }

  .video-card-content p {
    font-size: 15px;
  }
}

/* ==================== portal.css ==================== */
/* =========================================
   PORTAL SECTION
========================================= */

.portal-section {
  position: relative;
  overflow: hidden;

  padding: 120px 0;

  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(17, 189, 114, 0.11),
      transparent 27%
    ),
    radial-gradient(
      circle at 85% 60%,
      rgba(38, 103, 255, 0.13),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7fbff 55%,
      #f3fff9 100%
    );
}

.portal-container {
  width: min(1400px, calc(100% - 60px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 85px;
  align-items: center;
}


/* Left Content */

.portal-content {
  max-width: 620px;
}

.portal-label {
  display: inline-flex;

  padding: 9px 18px;

  border: 1px solid rgba(17, 189, 114, 0.25);
  border-radius: 50px;

  color: #07985a;
  background: rgba(17, 189, 114, 0.08);

  font-size: 14px;
  font-weight: 700;
}

.portal-content h2 {
  margin-top: 24px;

  color: var(--navy);

  font-size: clamp(52px, 5vw, 82px);
  line-height: 1.08;
  letter-spacing: -4px;
}

.portal-content h2 span {
  display: block;

  background: linear-gradient(
    90deg,
    var(--green),
    #24a3c8,
    var(--blue)
  );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.portal-content p {
  margin-top: 25px;

  color: #5a6d91;

  font-size: 19px;
  line-height: 1.75;
}

.portal-btn {
  width: fit-content;

  margin-top: 36px;
  padding: 17px 28px;

  display: inline-flex;
  align-items: center;
  gap: 20px;

  border-radius: 10px;

  color: #ffffff;
  font-size: 17px;
  font-weight: 700;

  background: linear-gradient(
    135deg,
    var(--green),
    var(--blue)
  );

  box-shadow:
    0 15px 35px rgba(38, 103, 255, 0.18);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.portal-btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 20px 42px rgba(17, 189, 114, 0.23);
}


/* Cards Grid */

.portal-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 205px;
  gap: 18px;
}

.portal-card {
  position: relative;
  overflow: hidden;

  padding: 24px;

  border: 1px solid rgba(38, 103, 255, 0.14);
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.92);

  box-shadow:
    0 20px 45px rgba(18, 48, 95, 0.08);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.portal-card:hover {
  transform: translateY(-7px);

  border-color: rgba(17, 189, 114, 0.4);

  box-shadow:
    0 26px 56px rgba(38, 103, 255, 0.13);
}

.portal-card-wide {
  grid-column: span 2;

  display: flex;
  align-items: center;
  gap: 25px;
}

.portal-card-tall {
  grid-row: span 2;
}

.portal-card h3 {
  color: var(--navy);

  font-size: 22px;
  line-height: 1.25;
}

.portal-card p {
  margin-top: 12px;

  color: #687a9a;

  font-size: 15px;
  line-height: 1.55;
}

.portal-card strong {
  display: block;

  margin-top: 12px;

  color: var(--navy);

  font-size: 30px;
}


/* Icons */

.portal-icon {
  flex-shrink: 0;
}

.research-icon {
  width: 110px;
  height: 90px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
}

.research-icon span {
  display: block;
  height: 14px;

  border-radius: 8px;

  background: linear-gradient(
    90deg,
    var(--green),
    var(--blue)
  );
}

.research-icon span:nth-child(1) {
  width: 100%;
}

.research-icon span:nth-child(2) {
  width: 83%;
}

.research-icon span:nth-child(3) {
  width: 65%;
}

.research-icon span:nth-child(4) {
  width: 47%;
}


/* Clock */

.clock-icon {
  width: 105px;
  height: 105px;

  margin: 15px auto 28px;

  position: relative;

  border: 10px solid transparent;
  border-radius: 50%;

  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(
      135deg,
      var(--green),
      var(--blue)
    ) border-box;
}

.clock-icon::before {
  content: "";

  position: absolute;
  left: 50%;
  top: 50%;

  width: 10px;
  height: 10px;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background: var(--blue);
}

.clock-hand {
  position: absolute;
  left: 50%;
  top: 50%;

  width: 6px;
  height: 34px;

  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(0deg);

  border-radius: 4px;

  background: linear-gradient(
    var(--green),
    var(--blue)
  );
}

.clock-icon::after {
  content: "";

  position: absolute;
  left: 50%;
  top: 50%;

  width: 30px;
  height: 6px;

  transform-origin: left center;
  transform: translateY(-50%) rotate(30deg);

  border-radius: 4px;

  background: var(--blue);
}


/* Portal window */

.portal-window {
  display: flex;
  gap: 8px;

  margin-bottom: 30px;
}

.window-dot {
  width: 12px;
  height: 12px;

  display: block;

  border-radius: 50%;
}

.red-dot {
  background: #ef6464;
}

.yellow-dot {
  background: #e7bd57;
}

.green-dot {
  background: #48ad75;
}

.portal-shape {
  width: 135px;
  height: 135px;

  position: absolute;
  right: -38px;
  bottom: -38px;

  border: 34px solid transparent;
  border-radius: 50%;

  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(
      135deg,
      var(--green),
      var(--blue)
    ) border-box;
}


/* Rupee */

.rupee-small {
  width: 65px;
  height: 65px;

  display: grid;
  place-items: center;

  color: transparent;

  font-size: 48px;
  font-weight: 800;

  background: linear-gradient(
    135deg,
    var(--green),
    var(--blue)
  );

  -webkit-background-clip: text;
  background-clip: text;
}

.portal-small-text {
  margin-top: 20px !important;
}


/* Lock */

.lock-small {
  width: 95px;
  height: 90px;

  margin: 10px auto 25px;

  position: relative;
}

.lock-small span {
  width: 62px;
  height: 50px;

  position: absolute;
  left: 50%;
  bottom: 0;

  transform: translateX(-50%);

  border-radius: 12px;

  background: linear-gradient(
    135deg,
    var(--green),
    var(--blue)
  );
}

.lock-small span::before {
  content: "";

  position: absolute;
  left: 50%;
  top: -38px;

  width: 40px;
  height: 42px;

  transform: translateX(-50%);

  border: 9px solid var(--blue);
  border-bottom: 0;

  border-radius: 28px 28px 0 0;
}


/* Responsive */

@media (max-width: 1050px) {
  .portal-container {
    grid-template-columns: 1fr;
  }

  .portal-content {
    max-width: 850px;
    margin: 0 auto;

    text-align: center;
  }

  .portal-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 760px) {
  .portal-section {
    padding: 80px 0;
  }

  .portal-container {
    width: calc(100% - 28px);
  }

  .portal-content h2 {
    font-size: 48px;
    letter-spacing: -2.5px;
  }

  .portal-content p {
    font-size: 16px;
  }

  .portal-cards {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .portal-card-wide,
  .portal-card-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .portal-card {
    min-height: 190px;
  }
}
/* =========================================
   COMPACT PORTAL CARDS
========================================= */

.portal-container {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 55px;
}

.portal-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 165px;
  gap: 14px;
}

.portal-card {
  padding: 18px;
  border-radius: 20px;
}

.portal-card-wide {
  gap: 18px;
}

.portal-card h3 {
  font-size: 18px;
}

.portal-card p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
}

.portal-card strong {
  margin-top: 8px;
  font-size: 24px;
}

/* Research card */

.research-icon {
  width: 82px;
  height: 66px;
  gap: 4px;
}

.research-icon span {
  height: 10px;
}

/* Clock card */

.clock-icon {
  width: 78px;
  height: 78px;
  margin: 8px auto 18px;
  border-width: 7px;
}

.clock-hand {
  width: 4px;
  height: 25px;
}

.clock-icon::after {
  width: 23px;
  height: 4px;
}

/* Portal card */

.portal-window {
  margin-bottom: 18px;
}

.portal-shape {
  width: 95px;
  height: 95px;
  right: -28px;
  bottom: -28px;
  border-width: 24px;
}

/* Rupee card */

.rupee-small {
  width: 50px;
  height: 50px;
  font-size: 38px;
}

.portal-small-text {
  margin-top: 12px !important;
}

/* Lock card */

.lock-small {
  width: 70px;
  height: 68px;
  margin: 5px auto 16px;
}

.lock-small span {
  width: 47px;
  height: 38px;
}

.lock-small span::before {
  top: -29px;
  width: 30px;
  height: 31px;
  border-width: 7px;
}

/* Desktop par poora block compact rahe */

@media (min-width: 1051px) {
  .portal-cards {
    max-width: 690px;
    margin-left: auto;
  }
}

/* Tablet */

@media (max-width: 1050px) {
  .portal-cards {
    max-width: 760px;
    margin: 0 auto;
  }
}

/* Mobile */

@media (max-width: 760px) {
  .portal-cards {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .portal-card {
    min-height: 160px;
  }
}

/* ==================== care.css ==================== */
/* =========================================
   WpV CARE SECTION
========================================= */

.care-section {
  position: relative;
  overflow: hidden;

  padding: 115px 0 125px;

  text-align: center;

  background:
    radial-gradient(
      circle at 18% 30%,
      rgba(17, 189, 114, 0.10),
      transparent 25%
    ),
    radial-gradient(
      circle at 82% 55%,
      rgba(38, 103, 255, 0.12),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f6faff 55%,
      #f3fff9 100%
    );
}

.care-section::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  width: 85%;
  height: 1px;

  transform: translateX(-50%);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(17, 189, 114, 0.24),
    rgba(38, 103, 255, 0.24),
    transparent
  );
}


/* Section Heading */

.care-section .section-heading {
  width: min(850px, calc(100% - 40px));
  margin: 0 auto 70px;
}

.care-section .section-heading > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 9px 18px;

  border: 1px solid rgba(17, 189, 114, 0.25);
  border-radius: 50px;

  color: #07985a;
  background: rgba(17, 189, 114, 0.08);

  font-size: 14px;
  font-weight: 700;
}

.care-section .section-heading h2 {
  margin-top: 22px;

  color: var(--navy);

  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.1;
  letter-spacing: -3px;
  font-weight: 750;
}

.care-section .section-heading p {
  max-width: 680px;
  margin: 22px auto 0;

  color: #5b6f94;

  font-size: 18px;
  line-height: 1.7;
}


/* Care Images */

.care-images {
  width: min(760px, calc(100% - 40px));
  min-height: 570px;

  margin: 0 auto 65px;

  position: relative;
}

.care-images::before {
  content: "";

  position: absolute;
  left: 50%;
  top: 50%;

  width: 600px;
  height: 440px;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 45%,
      rgba(17, 189, 114, 0.17),
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(38, 103, 255, 0.18),
      transparent 52%
    );

  filter: blur(12px);
}

.care-images img {
  position: absolute;
  z-index: 2;

  display: block;
  object-fit: cover;

  border: 6px solid rgba(255, 255, 255, 0.9);

  box-shadow:
    0 24px 55px rgba(20, 52, 101, 0.17);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.care-images img:hover {
  transform: translateY(-7px) scale(1.02);

  box-shadow:
    0 30px 65px rgba(38, 103, 255, 0.2);
}


/* First image */

.care-images img:nth-child(1) {
  width: 255px;
  height: 255px;

  left: 105px;
  top: 15px;

  border-radius: 55px;
}


/* Second image */

.care-images img:nth-child(2) {
  width: 275px;
  height: 300px;

  right: 70px;
  top: 95px;

  border-radius: 58px;
}


/* Third image */

.care-images img:nth-child(3) {
  width: 300px;
  height: 225px;

  left: 65px;
  bottom: 10px;

  border-radius: 55px;
}


/* Care Features */

.care-features {
  width: min(1100px, calc(100% - 50px));

  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.care-box {
  padding: 30px 25px;

  border: 1px solid rgba(38, 103, 255, 0.14);
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.92);

  box-shadow:
    0 18px 45px rgba(20, 52, 101, 0.07);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.care-box:hover {
  transform: translateY(-7px);

  border-color: rgba(17, 189, 114, 0.42);

  box-shadow:
    0 24px 55px rgba(38, 103, 255, 0.12);
}

.care-box h3 {
  color: var(--navy);

  font-size: 22px;
  font-weight: 750;
}

.care-box p {
  margin-top: 12px;

  color: #647797;

  font-size: 15px;
  line-height: 1.6;
}


/* Learn More Button */

.care-btn {
  width: fit-content;

  margin: 45px auto 0;
  padding: 16px 30px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50px;

  color: #ffffff;

  font-size: 17px;
  font-weight: 700;

  background: linear-gradient(
    135deg,
    var(--green),
    var(--blue)
  );

  box-shadow:
    0 14px 32px rgba(38, 103, 255, 0.18);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.care-btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 19px 39px rgba(17, 189, 114, 0.24);
}


/* Tablet */

@media (max-width: 900px) {
  .care-section {
    padding: 90px 0 100px;
  }

  .care-images {
    transform: scale(0.9);
    margin-top: -25px;
    margin-bottom: 25px;
  }

  .care-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .care-box:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
    margin: 0 auto;
  }
}


/* Mobile */

@media (max-width: 680px) {
  .care-section {
    padding: 75px 0 82px;
  }

  .care-section .section-heading {
    margin-bottom: 45px;
  }

  .care-section .section-heading h2 {
    font-size: 43px;
    letter-spacing: -2px;
  }

  .care-section .section-heading p {
    font-size: 16px;
  }

  .care-images {
    width: calc(100% - 28px);
    min-height: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;

    transform: none;
  }

  .care-images::before {
    width: 100%;
    height: 100%;
  }

  .care-images img {
    position: relative;
    inset: auto !important;

    width: 100% !important;
    height: 210px !important;

    border-radius: 28px !important;
  }

  .care-images img:nth-child(3) {
    grid-column: 1 / -1;
  }

  .care-features {
    width: calc(100% - 28px);

    grid-template-columns: 1fr;
    gap: 16px;
  }

  .care-box:last-child {
    grid-column: auto;
    width: 100%;
  }

  .care-box {
    padding: 25px 20px;
  }

  .care-box h3 {
    font-size: 20px;
  }

  .care-box p {
    font-size: 14px;
  }
}

/* ==================== support.css ==================== */
/* =========================================
   SUPPORT CTA SECTION
========================================= */

.support-cta-section {
  position: relative;
  overflow: hidden;

  padding: 120px 0 135px;

  text-align: center;

  background:
    radial-gradient(
      circle at 18% 30%,
      rgba(17, 189, 114, 0.11),
      transparent 27%
    ),
    radial-gradient(
      circle at 82% 55%,
      rgba(38, 103, 255, 0.13),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f6faff 55%,
      #f3fff9 100%
    );
}

.support-cta-section::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  width: 85%;
  height: 1px;

  transform: translateX(-50%);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(17, 189, 114, 0.24),
    rgba(38, 103, 255, 0.24),
    transparent
  );
}

.support-cta-container {
  width: min(850px, calc(100% - 40px));
  margin: 0 auto;

  position: relative;
  z-index: 2;
}

.support-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 9px 18px;

  border: 1px solid rgba(17, 189, 114, 0.25);
  border-radius: 50px;

  color: #07985a;
  background: rgba(17, 189, 114, 0.08);

  font-size: 14px;
  font-weight: 700;
}

.support-cta-container h2 {
  margin-top: 24px;

  color: var(--navy);

  font-size: clamp(50px, 5.5vw, 82px);
  line-height: 1.08;
  letter-spacing: -4px;
}

.support-cta-container p {
  max-width: 720px;
  margin: 25px auto 0;

  color: #5b6f94;

  font-size: 20px;
  line-height: 1.7;
}

.support-btn {
  width: fit-content;

  margin: 38px auto 0;
  padding: 17px 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50px;

  color: #ffffff;

  font-size: 17px;
  font-weight: 700;

  background: linear-gradient(
    135deg,
    var(--green),
    var(--blue)
  );

  box-shadow:
    0 15px 35px rgba(38, 103, 255, 0.2);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.support-btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 20px 42px rgba(17, 189, 114, 0.24);
}

@media (max-width: 680px) {
  .support-cta-section {
    padding: 80px 0 90px;
  }

  .support-cta-container {
    width: calc(100% - 28px);
  }

  .support-cta-container h2 {
    font-size: 45px;
    letter-spacing: -2px;
  }

  .support-cta-container p {
    font-size: 16px;
  }

  .support-btn {
    margin-top: 30px;
    padding: 15px 28px;
  }
}

/* ==================== cta.css ==================== */
/* =========================================
   FINAL PHONE IMAGE SHOWCASE
========================================= */

.final-showcase-section {
  min-height: 1180px;
  position: relative;
  overflow: hidden;
  padding: 90px 0 0;
  text-align: center;

  background:
    radial-gradient(
      circle at 43% 68%,
      rgba(17, 189, 114, 0.2),
      transparent 30%
    ),
    radial-gradient(
      circle at 63% 65%,
      rgba(38, 103, 255, 0.27),
      transparent 37%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7fbff 37%,
      #edf6ff 100%
    );
}


/* Heading */

.final-showcase-content {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.final-showcase-content h2 {
  color: var(--navy);
  font-size: clamp(58px, 6vw, 92px);
  line-height: 1.08;
  letter-spacing: -5px;
  font-weight: 500;
}

.final-showcase-content h2 span {
  display: block;
  margin-top: 7px;

  background: linear-gradient(
    90deg,
    var(--green),
    #24a4c8,
    var(--blue)
  );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-showcase-content p {
  max-width: 760px;
  margin: 30px auto 0;
  color: #5b6f94;
  font-size: 22px;
  line-height: 1.65;
}

.final-showcase-button {
  min-width: 225px;
  margin-top: 36px;
  padding: 18px 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50px;

  color: #ffffff;
  font-size: 18px;
  font-weight: 700;

  background: linear-gradient(
    135deg,
    var(--green),
    var(--blue)
  );

  box-shadow: 0 15px 36px rgba(38, 103, 255, 0.2);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.final-showcase-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 21px 44px rgba(17, 189, 114, 0.25);
}


/* Phone area */

.final-phone-area {
  width: 100%;
  height: 830px;
  margin-top: 25px;

  position: relative;

  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.final-phone-glow {
  width: 850px;
  height: 720px;

  position: absolute;
  left: 50%;
  bottom: -20px;

  transform: translateX(-50%);
  border-radius: 50%;

  background:
    radial-gradient(
      circle at 40% 47%,
      rgba(17, 189, 114, 0.23),
      transparent 50%
    ),
    radial-gradient(
      circle at 67% 46%,
      rgba(38, 103, 255, 0.32),
      transparent 55%
    );

  filter: blur(15px);
}


/* Phone image wrapper */

.image-phone-wrapper {
  width: 520px;
  height: 830px;

  position: relative;
  z-index: 3;

  transform: rotate(5deg);
  transform-origin: center top;
}

.phone-frame-image {
  width: 100%;
  height: 100%;

  position: absolute;
  inset: 0;
  z-index: 3;

  object-fit: contain;
  object-position: center top;

  pointer-events: none;
}


/* Custom phone dashboard */

.phone-ui-overlay {
  width: 338px;
  height: 650px;

  position: absolute;
  top: 102px;
  left: 91px;
  z-index: 2;

  padding: 12px 14px 20px;

  border-radius: 0 0 38px 38px;

  color: #ffffff;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 80% 16%,
      rgba(38, 103, 255, 0.2),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      #071832 0%,
      #092044 53%,
      #06172f 100%
    );
}


/* Cover original embedded branding */

.phone-ui-overlay::before {
  content: "";

  position: absolute;
  top: -15px;
  left: -5px;
  right: -5px;

  height: 75px;

  background: #071832;

  z-index: -1;
}


/* Top branding */

.overlay-brand-row {
  min-height: 48px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.overlay-logo {
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
}

.overlay-logo span {
  color: var(--green);
}

.overlay-icons {
  color: #ccd7eb;
  font-size: 18px;
  letter-spacing: 6px;
}

.phone-ui-overlay > h3 {
  margin: 21px 0 17px;
  text-align: center;
  font-size: 20px;
}


/* Cards */

.overlay-company-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.overlay-company-card {
  min-height: 158px;
  padding: 10px;

  border-radius: 11px;

  background: rgba(17, 42, 82, 0.88);

  border: 1px solid rgba(255, 255, 255, 0.035);

  text-align: left;
}

.overlay-available {
  display: inline-block;

  padding: 3px 6px;

  border-radius: 4px;

  color: #57efa7;
  background: rgba(8, 111, 76, 0.7);

  font-size: 7px;
  font-weight: 700;
}

.overlay-company-icon {
  width: 34px;
  height: 34px;

  margin-top: 9px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;

  font-size: 15px;
  font-weight: 800;
}

.icon-blue {
  background: #4264ff;
}

.icon-green {
  background: #28be73;
}

.icon-orange {
  background: #ef7932;
}

.icon-purple {
  background: #8a4ed8;
}

.icon-cyan {
  background: #20a8b8;
}

.icon-navy {
  background: #254f96;
}

.overlay-company-card h4 {
  margin-top: 7px;
  font-size: 12px;
}

.overlay-company-card small {
  display: block;
  margin-top: 2px;
  color: #afbdd4;
  font-size: 8px;
}

.overlay-company-card p {
  margin-top: 12px;
  color: #8fa1bd;
  font-size: 7px;
}

.overlay-company-card strong {
  display: block;
  margin-top: 2px;
  font-size: 9px;
}


/* Tablet */

@media (max-width: 900px) {

  .final-showcase-section {
    min-height: 980px;
    padding-top: 78px;
  }

  .final-phone-area {
    height: 690px;
  }

  .image-phone-wrapper {
    width: 430px;
    height: 690px;
  }

  .phone-ui-overlay {
    width: 279px;
    height: 540px;

    top: 84px;
    left: 75px;

    padding: 9px 11px;
  }

  .overlay-company-card {
    min-height: 128px;
  }
}


/* Mobile */

@media (max-width: 580px) {

  .final-showcase-section {
    min-height: 780px;
    padding-top: 65px;
  }

  .final-showcase-content h2 {
    font-size: 46px;
    letter-spacing: -2.5px;
  }

  .final-showcase-content p {
    margin-top: 22px;
    font-size: 16px;
  }

  .final-showcase-button {
    min-width: 185px;
    padding: 15px 26px;
    font-size: 16px;
  }

  .final-phone-area {
    height: 510px;
    margin-top: 25px;
  }

  .image-phone-wrapper {
    width: 315px;
    height: 510px;
  }

  .phone-ui-overlay {
    width: 204px;
    height: 398px;

    top: 62px;
    left: 55px;

    padding: 7px 8px;
  }

  .overlay-brand-row {
    min-height: 31px;
  }

  .overlay-logo {
    font-size: 13px;
  }

  .overlay-icons {
    font-size: 12px;
  }

  .phone-ui-overlay > h3 {
    margin: 11px 0 9px;
    font-size: 13px;
  }

  .overlay-company-grid {
    gap: 5px;
  }

  .overlay-company-card {
    min-height: 91px;
    padding: 5px;
  }

  .overlay-available {
    padding: 2px 3px;
    font-size: 4px;
  }

  .overlay-company-icon {
    width: 21px;
    height: 21px;

    margin-top: 4px;

    font-size: 9px;
  }

  .overlay-company-card h4 {
    margin-top: 4px;
    font-size: 7px;
  }

  .overlay-company-card small,
  .overlay-company-card p,
  .overlay-company-card strong {
    font-size: 5px;
  }

  .overlay-company-card p {
    margin-top: 5px;
  }
}

/* =========================================
   CORRECT FINAL MOBILE
========================================= */

.final-phone-area {
  width: 100%;
  height: 820px;
  margin-top: 35px;

  position: relative;

  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.final-phone-glow {
  position: absolute;
  left: 50%;
  top: 40px;

  width: 820px;
  height: 720px;

  transform: translateX(-50%);
  border-radius: 50%;

  background:
    radial-gradient(
      circle at 38% 50%,
      rgba(17, 189, 114, 0.23),
      transparent 50%
    ),
    radial-gradient(
      circle at 68% 48%,
      rgba(38, 103, 255, 0.32),
      transparent 55%
    );

  filter: blur(15px);
}

.final-mobile {
  width: 395px;

  position: relative;
  z-index: 3;

  transform: rotate(6deg);
  transform-origin: center top;
}

.final-mobile-frame {
  padding: 10px;

  border-radius: 58px;

  background: linear-gradient(
    135deg,
    #8c96a5 0%,
    #ffffff 24%,
    #626b78 52%,
    #f8f9fb 76%,
    #8f98a4 100%
  );

  box-shadow:
    0 40px 80px rgba(15, 40, 84, 0.28),
    0 12px 30px rgba(17, 189, 114, 0.13),
    inset 0 0 0 1px rgba(0, 0, 0, 0.17);
}

.final-mobile-screen {
  min-height: 760px;

  position: relative;
  overflow: hidden;

  padding: 23px 19px 17px;

  border-radius: 49px;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 80% 16%,
      rgba(38, 103, 255, 0.22),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #03142f 0%,
      #071d3e 54%,
      #04142d 100%
    );
}

.final-mobile-notch {
  width: 112px;
  height: 31px;

  position: absolute;
  top: 10px;
  left: 50%;

  transform: translateX(-50%);

  border-radius: 20px;

  background: #020712;
}

.final-mobile-status {
  padding: 3px 7px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 12px;
  font-weight: 700;
}

.final-mobile-header {
  margin-top: 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.final-mobile-logo {
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
}

.final-mobile-logo span {
  color: var(--green);
}

.final-mobile-icons {
  color: #cbd8f3;
  font-size: 18px;
  letter-spacing: 7px;
}

.final-mobile-screen > h3 {
  margin: 35px 0 21px;

  text-align: center;

  font-size: 21px;
}

.final-mobile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.final-mobile-grid article {
  min-height: 174px;

  padding: 11px;

  border-radius: 12px;

  text-align: left;

  background: rgba(17, 42, 82, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.035);
}

.final-available {
  display: inline-block;

  padding: 3px 6px;

  border-radius: 5px;

  color: #55efa5;
  background: rgba(8, 111, 76, 0.72);

  font-size: 7px;
  font-weight: 700;
}

.final-company-icon {
  width: 35px;
  height: 35px;

  margin-top: 9px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
}

.blue-final {
  background: #4264ff;
}

.green-final {
  background: #27bf74;
}

.orange-final {
  background: #f27a31;
}

.purple-final {
  background: #8a4ed8;
}

.cyan-final {
  background: #1fa8b9;
}

.navy-final {
  background: #285398;
}

.final-mobile-grid h4 {
  margin-top: 7px;
  font-size: 12px;
}

.final-mobile-grid small {
  display: block;

  margin-top: 3px;

  color: #afbdd4;
  font-size: 8px;
}

.final-mobile-grid p {
  margin-top: 11px;

  color: #8fa1bd;
  font-size: 7px;
}

.final-mobile-grid strong {
  display: block;

  margin-top: 2px;

  font-size: 9px;
}

.final-mobile-nav {
  margin-top: 19px;
  padding-top: 12px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  color: #8695b0;
  text-align: center;
  font-size: 16px;
}

.final-mobile-nav span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.final-mobile-nav small {
  font-size: 7px;
}

.final-mobile-nav .active {
  color: var(--blue);
}


/* Tablet */

@media (max-width: 900px) {

  .final-phone-area {
    height: 690px;
  }

  .final-mobile {
    width: 340px;
  }

  .final-mobile-screen {
    min-height: 650px;
  }

  .final-mobile-grid article {
    min-height: 145px;
  }
}


/* Mobile */

@media (max-width: 580px) {

  .final-phone-area {
    height: 540px;
    margin-top: 28px;
  }

  .final-mobile {
    width: 280px;
  }

  .final-mobile-frame {
    padding: 7px;
    border-radius: 43px;
  }

  .final-mobile-screen {
    min-height: 515px;

    padding: 16px 13px 12px;

    border-radius: 37px;
  }

  .final-mobile-notch {
    width: 82px;
    height: 23px;
    top: 7px;
  }

  .final-mobile-status {
    font-size: 8px;
  }

  .final-mobile-header {
    margin-top: 22px;
  }

  .final-mobile-logo {
    font-size: 14px;
  }

  .final-mobile-icons {
    font-size: 12px;
  }

  .final-mobile-screen > h3 {
    margin: 22px 0 13px;
    font-size: 14px;
  }

  .final-mobile-grid {
    gap: 6px;
  }

  .final-mobile-grid article {
    min-height: 108px;
    padding: 6px;
  }

  .final-company-icon {
    width: 23px;
    height: 23px;

    margin-top: 5px;

    font-size: 10px;
  }

  .final-mobile-grid h4 {
    margin-top: 4px;
    font-size: 8px;
  }

  .final-mobile-grid small,
  .final-mobile-grid p,
  .final-mobile-grid strong {
    font-size: 5px;
  }

  .final-mobile-grid p {
    margin-top: 5px;
  }
}

/* ==================== reserve.css ==================== */
/* Reserve Access Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 30, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-content h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-content p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.modal-input-group {
  margin-bottom: 20px;
  text-align: left;
}

.modal-input-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a5b4fc;
  margin-bottom: 8px;
  font-weight: 600;
}

.modal-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.modal-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}

.modal-actions {
  display: flex;
  gap: 12px;
}

.modal-btn {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.modal-btn-cancel {
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-btn-cancel:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.modal-btn-submit {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.modal-btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
}

.modal-btn-submit:active {
  transform: translateY(1px);
}

/* Premium Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-left: 4px solid #10b981;
  border-radius: 8px;
  padding: 16px 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1100;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Inter', sans-serif;
  color: white;
  pointer-events: none;
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: #10b981;
  font-size: 1.25rem;
}

.toast-message {
  font-size: 0.9rem;
  font-weight: 500;
}


/* ==================== responsive.css ==================== */
@media (max-width: 1150px) {
  .nav-links {
    gap: 25px;
    margin-left: 20px;
  }

  .nav-actions {
    gap: 18px;
  }

  .hero-container {
    grid-template-columns: 1fr 0.85fr;
  }

  .phone {
    width: 360px;
  }

  .phone-screen {
    min-height: 660px;
  }

  .company-card {
    min-height: 180px;
  }
}

@media (max-width: 900px) {
  .nav-container {
    width: min(100% - 34px, 760px);
    min-height: 86px;
  }

  .nav-links,
  .login-link {
    display: none;
  }

  .logo {
    font-size: 32px;
  }

  .get-started-btn {
    min-width: 132px;
    padding: 13px 18px;
    font-size: 15px;
  }

  .hero-container {
    width: min(100% - 36px, 760px);
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 35px;
  }

  .hero-content {
    padding: 40px 0 20px;
  }

  .hero-content h1 {
    margin: 0 auto;
    font-size: clamp(48px, 11vw, 72px);
    letter-spacing: -3px;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .reserve-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .phone-area {
    min-height: 720px;
  }
}

@media (max-width: 520px) {
  .nav-container {
    width: calc(100% - 24px);
  }

  .logo {
    font-size: 27px;
  }

  .get-started-btn {
    min-width: auto;
    padding: 12px 15px;
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .reserve-btn {
    padding: 17px 24px;
    font-size: 18px;
  }

  .phone-area {
    min-height: 620px;
  }

  .phone {
    width: 305px;
  }

  .phone-screen {
    min-height: 560px;
    padding: 18px 16px 15px;
  }

  .phone-screen h2 {
    margin: 27px 0 17px;
  }

  .company-card {
    min-height: 154px;
    padding: 10px;
  }

  .company-icon {
    width: 34px;
    height: 34px;
    font-size: 18px;
    margin-top: 8px;
  }

  .company-card h3 {
    font-size: 13px;
  }

  .company-card p {
    margin-top: 14px;
  }

  .company-card strong {
    font-size: 12px;
  }
}

@media (max-width: 1150px) {
  .phone {
    width: 315px;
  }

  .phone-screen {
    min-height: 600px;
  }

  .company-card {
    min-height: 155px;
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .phone-area {
    min-height: 680px;
    padding-left: 0;
  }

  .phone {
    width: 315px;
  }
}

@media (max-width: 520px) {
  .phone-area {
    min-height: 590px;
  }

  .phone {
    width: 280px;
  }

  .phone-screen {
    min-height: 525px;
    padding: 16px 14px 12px;
  }

  .phone-screen h2 {
    margin: 24px 0 14px;
    font-size: 17px;
  }

  .company-grid {
    gap: 8px;
  }

  .company-card {
    min-height: 137px;
    padding: 8px;
  }

  .company-icon {
    width: 29px;
    height: 29px;
    font-size: 14px;
  }

  .company-card h3 {
    font-size: 11px;
  }

  .company-card p {
    margin-top: 10px;
  }

  .company-card strong {
    font-size: 9px;
  }
}

@media (max-width: 900px) {

  .growth-companies-section {
    padding: 85px 0 95px;
  }

  .growth-heading {
    margin-bottom: 50px;
  }

  .growth-heading h2 {
    letter-spacing: -2px;
  }

  .companies-track {
    grid-template-rows: repeat(2, 145px);
    grid-auto-columns: 415px;

    gap: 17px;

    padding-left: 22px;
  }

  .growth-card {
    min-width: 415px;
    height: 145px;

    padding: 20px;

    gap: 18px;
  }

  .growth-logo {
    width: 88px;
    height: 88px;

    font-size: 22px;
  }

  .growth-details h3 {
    font-size: 19px;
  }

  .growth-sector {
    font-size: 15px;
  }

}

@media (max-width: 520px) {

  .growth-companies-section {
    padding: 70px 0 80px;
  }

  .growth-heading {
    margin-bottom: 37px;
  }

  .growth-heading h2 {
    font-size: 41px;
    letter-spacing: -1.8px;
  }

  .growth-heading p {
    font-size: 16px;
  }

  .companies-track {
    grid-template-rows: repeat(2, 125px);
    grid-auto-columns: 335px;

    gap: 14px;

    padding-left: 14px;

    animation-duration: 25s;
  }

  .growth-card {
    min-width: 335px;
    height: 125px;

    padding: 16px;

    gap: 14px;

    border-radius: 17px;
  }

  .growth-logo {
    width: 72px;
    height: 72px;

    border-radius: 15px;

    font-size: 18px;
  }

  .growth-details h3 {
    max-width: 205px;

    font-size: 16px;
  }

  .growth-info {
    margin-top: 10px;
    gap: 8px;
  }

  .growth-percentage {
    padding: 6px 8px;

    font-size: 12px;
  }

  .growth-sector {
    font-size: 13px;
  }

  .entry-badge {
    padding: 7px 11px;

    font-size: 10px;
  }

}

@media (max-width: 1050px) {
  .companies-track {
    width: min(900px, calc(100% - 36px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .growth-companies-section {
    padding: 72px 0 82px;
  }

  .growth-heading {
    margin-bottom: 40px;
  }

  .growth-heading h2 {
    font-size: 40px;
    letter-spacing: -1.8px;
  }

  .growth-heading p {
    font-size: 16px;
  }

  .companies-track {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .growth-card {
    height: 130px;
    padding: 17px;
    gap: 15px;
    border-radius: 17px;
  }

  .growth-logo {
    width: 76px;
    height: 76px;
    border-radius: 15px;
    font-size: 19px;
  }

  .growth-details h3 {
    font-size: 17px;
  }

  .growth-info {
    margin-top: 10px;
    gap: 8px;
  }

  .growth-percentage {
    padding: 6px 8px;
    font-size: 12px;
  }

  .growth-sector {
    font-size: 14px;
  }

  .entry-badge {
    padding: 7px 11px;
    font-size: 10px;
  }
}

/* ==================== footer.css ==================== */

/* Footer Section */
.footer {
  background-color: #031330;
  color: #a5bada;
  padding: 50px 0 30px;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  width: min(1450px, calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-brand-col .logo {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1.5px;
  display: inline-block;
  width: fit-content;
}

.footer-brand-col .logo span {
  background: linear-gradient(135deg, #2667ff, #11bd72);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-tagline {
  font-size: 16px;
  font-weight: 500;
  color: #e2ecf9;
  max-width: 250px;
  line-height: 1.5;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 2fr;
  gap: 40px;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.footer-column ul li a {
  color: #a5bada;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: #2667ff;
  transform: translateX(4px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact .office-address {
  font-size: 14px;
  line-height: 1.6;
  color: #a5bada;
}

.google-maps-link {
  color: #11bd72;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease;
  text-decoration: none;
}

.google-maps-link:hover {
  color: #0fa261;
  text-decoration: underline;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.contact-details a {
  font-size: 15px;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.25s ease;
  width: fit-content;
  text-decoration: none;
}

.contact-details a:hover {
  color: #2667ff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: #718bb2;
  margin: 0;
}

/* Responsive Footer styling */
@media (max-width: 992px) {
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 60px 0 20px;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-container {
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
