@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&family=Sora:wght@500;600;700;800&display=swap");

.light {
  --official-navy: #112e51;
  --official-blue: #005ea2;
  --official-blue-strong: #1a4480;
  --official-blue-soft: #73b3e7;
  --official-sky: #d9e8f6;
  --official-ink: #1b1b1b;
  --official-muted: #565c65;
  --official-border: #c9d7e6;
  --official-card-bg: #f8fbff;
  --official-text-on-dark: #f0f5fb;

  --mainColor: #005ea2;
  --hoverColor: #1a4480;
  --backgroundColor: #f5f8fc;
  --darkOne: #1b1b1b;
  --darkTwo: #1a4480;
  --lightOne: #565c65;
  --lightTwo: #9ea7b3;
}

.dark {
  --mainColor: #73b3e7;
  --hoverColor: #a8d4f3;
  --backgroundColor: #0f2036;
  --darkOne: #ffffff;
  --darkTwo: #d9e8f6;
  --lightOne: #9fc3e3;
  --lightTwo: #8497ac;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito Sans", sans-serif;
}

.context {
  width: 100%;
  min-height: 100%;
}

.area {
  background-color: #ffffff;
  background-image: radial-gradient(60% 120% at 50% 50%, hsla(0, 0%, 100%, 0) 0%, rgba(252, 205, 238, 0.8) 50%);
  width: 100%;
  min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

.big-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: visible;
  background-color: var(--backgroundColor);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Animated background layer */
.circles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  display: block;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.circles li {
  position: absolute;
  bottom: -160px;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(115, 179, 231, 0.2);
  animation: animate 25s linear infinite;
}

.square-animation {
  border-radius: 0;
  background-color: rgba(115, 179, 231, 0.2);
}

.circles li:nth-child(1) { left: 25%; width: 80px; height: 80px; animation-delay: 0s; }
.circles li:nth-child(2) { left: 10%; width: 20px; height: 20px; animation-delay: 0s; animation-duration: 12s; }
.circles li:nth-child(3) { left: 70%; width: 20px; height: 20px; animation-delay: 0s; }
.circles li:nth-child(4) { left: 40%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 18s; }
.circles li:nth-child(5) { left: 65%; width: 20px; height: 20px; animation-delay: 0s; }
.circles li:nth-child(6) { left: 75%; width: 110px; height: 110px; animation-delay: 0s; animation-duration: 13s; }
.circles li:nth-child(7) { left: 35%; width: 150px; height: 150px; animation-delay: 0s; animation-duration: 12s; }
.circles li:nth-child(8) { left: 50%; width: 25px; height: 25px; animation-delay: 0s; animation-duration: 45s; }
.circles li:nth-child(9) { left: 20%; width: 15px; height: 15px; animation-delay: 0s; animation-duration: 35s; }
.circles li:nth-child(10) { left: 85%; width: 150px; height: 150px; animation-delay: 0s; animation-duration: 8s; }

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 20%;
  }
  100% {
    transform: translateY(-120vh) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

.container {
  position: relative;
  max-width: 81rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  z-index: 10;
}
.nav-container{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent !important;
  text-decoration: none;
}

.flex_container {
  display: flex;
  max-width: 81rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  z-index: 10;
}

.left_box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
}

.right_box {
  width: 80%;
  display: flex;
  position: relative;
  right: 50px;
}

.hero-copy {
  position: relative;
  max-width: 760px;
  padding: 1.25rem 1.35rem 1.1rem;
  border-radius: 18px;
  background: transparent;
  border: none;
  box-shadow: none;
  transform: translateY(-4px);
  overflow: visible;
}

.hero-copy > * {
  transform: none;
}


.image-box{
  height: 500px !important;
  position: relative;
  right: 12px;
}
.image-box img{
 width: 700px;
 position: relative;
 right: 150px;
 bottom: 100px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  border: linear-gradient(105deg, rgb(15, 23, 42) 0%, rgb(37, 99, 235) 48%, rgb(6, 182, 212) 100%);
}



header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.overlay {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 0;
}

.logo a.ms-1 {
  margin-left: 0 !important;
}

.logo img {
  width: 30px;
  height: 40px;
  border-radius: 4px;
  margin-right: 0;
  margin-top: 0;
  background: transparent;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

.logo h3 {
  color: var(--darkTwo);
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;

}
.logo h3  span:first-child {
  color: #1f2d5a;
}

.logo h3  span:last-child {
  color: #0b66c3;
}

.logo h3 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  animation: logoFadeUp 0.55s ease-out forwards;
}

.logo h3 span:first-child {
  animation-delay: 0s;
}

.logo h3 span:last-child {
  animation-delay: 0.12s;
}

@keyframes logoFadeUp {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.tagline {
  font-size: 16px;
  font-weight: 600;
  color: #4a5b75;
  text-shadow: 0 0 3px rgba(31, 45, 90, 0.12);
  white-space: nowrap;
}

.tagline span {
  opacity: 0;
  display: inline-block;
  transform: translate3d(0, 0, 0) rotate(0deg);
  will-change: transform, opacity;
  animation-fill-mode: both;
}

.tagline span:nth-child(1) {
  animation: dropWhereSmooth 0.82s cubic-bezier(0.18, 0.86, 0.28, 1) 0s forwards;
}

.tagline span:nth-child(2) {
  animation: dashImpact 0.5s cubic-bezier(0.15, 0.95, 0.2, 1) 0.72s forwards;
}

.tagline span:nth-child(3) {
  animation: dashImpact 0.5s cubic-bezier(0.15, 0.95, 0.2, 1) 0.9s forwards;
}

.tagline span:nth-child(4) {
  animation: dashImpact 0.5s cubic-bezier(0.15, 0.95, 0.2, 1) 1.08s forwards;
}

@keyframes dropWhereSmooth {
  0% {
    opacity: 0;
    transform: translate3d(0, -28px, 0) rotate(0deg) scale(0.98);
  }
  70% {
    opacity: 1;
    transform: translate3d(0, 3px, 0) rotate(0deg) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes dashImpact {
  0% {
    opacity: 0;
    transform: translate3d(46px, 0, 0) rotate(0deg) scale(0.98);
  }
  58% {
    opacity: 1;
    transform: translate3d(-8px, 0, 0) rotate(0deg) scale(1.02);
  }
  78% {
    opacity: 1;
    transform: translate3d(3px, 0, 0) rotate(0deg) scale(0.998);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes snakeWave {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  20% {
    transform: translate3d(0, -3px, 0) rotate(-2.5deg);
  }
  45% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  70% {
    transform: translate3d(0, 3px, 0) rotate(2.5deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

.links ul {
  display: flex;
  justify-content: center;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.links ul li {
  opacity: 0;
  transform: translateY(-10px);
  animation: navItemIn 0.6s ease forwards;
}

.links ul li:nth-child(1) { animation-delay: 0.06s; }
.links ul li:nth-child(2) { animation-delay: 0.14s; }
.links ul li:nth-child(3) { animation-delay: 0.22s; }
.links ul li:nth-child(4) { animation-delay: 0.3s; }

.links ul li:not(:last-child) > a {
  color: #3a2b35 !important;
  margin-left: 3.2rem;
  display: inline-block;
  transition: color 0.25s ease, transform 0.25s ease;
  text-decoration: none !important;
  position: relative;
  letter-spacing: 0.2px;
}

.links ul li:not(:last-child) > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #f5b8da, #c64c8c);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.links ul li:not(:last-child) > a:hover {
  color: #8c2d64 !important;
  transform: translateY(-2px);
}

.links ul li:not(:last-child) > a:hover::after {
  transform: scaleX(1);
}

.links ul li:last-child > a {
  margin-left: 2rem;
  padding: 0.45rem 1.2rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(11, 102, 195, 0.35) !important;
  background: linear-gradient(135deg, #0b66c3, #2286e6) !important;
  color: #ffffff !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 8px 18px rgba(11, 102, 195, 0.28);
}

.links ul li:last-child > a:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 10px 20px rgba(11, 102, 195, 0.36);
}

@keyframes navItemIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  color: black !important;
  /* background-color: var(--mainColor); */
  border-radius: 0 !important;   /* No rounded corners */
  text-transform: capitalize;
  transition: none;
  background-color: transparent;   /* No background */
  border: none; 
}


.hamburger-menu {
  position: relative;
  z-index: 99;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}

.hamburger-menu .bar {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: var(--official-blue);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before,
.bar::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--official-blue);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before {
  transform: translateY(-8px);
}

.bar::after {
  transform: translateY(8px);
}

.big-wrapper.active .hamburger-menu .bar {
  background-color: transparent;
}

.big-wrapper.active .bar::before {
  transform: translateY(0) rotate(-45deg);
}

.big-wrapper.active .bar::after {
  transform: translateY(0) rotate(45deg);
}

.showcase-area .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
}

.big-title {
  font-size: 1.4rem;
  color: var(--official-text-on-dark);
  text-transform: none;
  line-height: 1.3;
}

.big-title h1 {
  margin: 0 0 0.45rem 0;
  font-family: "Plus Jakarta Sans", "Sora", sans-serif;
  font-weight: 800;
  color: var(--official-blue-strong);
  letter-spacing: -0.03em;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  text-shadow: 0 10px 22px rgba(17, 46, 81, 0.3);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  animation: heroHeadingModern 0.92s cubic-bezier(0.2, 0.85, 0.25, 1) 0.05s forwards;
}

.big-title h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  color: var(--official-blue-strong);
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(10px);
  animation: heroSubIn 0.8s ease-out 0.28s forwards;
}

@keyframes heroHeadingModern {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroSubIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text {
  color: var(--official-ink);
  font-size: 1.1rem;
  margin: 1.9rem 0 2.5rem;
  max-width: 600px;
  line-height: 2.3;
  text-shadow: 0 6px 16px rgba(17, 46, 81, 0.25);
  opacity: 0;
  transform: translateY(12px);
  animation: textLineIn 0.75s ease-out forwards;
}

.get-started .text:nth-of-type(1) {
  animation-delay: 0.5s;
}

.get-started .text:nth-of-type(2) {
  animation-delay: 1s;
}

@keyframes textLineIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.showcase-area .btn {
  box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.05);
}

.person {
	width: 132%;
	transform: translate(15%, 25px);
}

.toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #1f4f93;
  color: #dbe7f8;
  outline: none;
  cursor: pointer;
  height: 54px;
  width: 54px;
  border-radius: 50%;
  font-size: 1.35rem;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
  box-shadow: 0 10px 22px rgba(9, 30, 62, 0.35);
}

.toggle-btn i {
  line-height: 1;
  font-size: 1.5rem;
}

.toggle-btn:hover {
  transform: translateY(-1px);
}

.big-wrapper.light .toggle-btn {
  background: #1f4f93;
  color: #dbe7f8;
  border: none;
}

.big-wrapper.dark .toggle-btn {
  background: #1a2f4e;
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.big-wrapper.light .toggle-btn:hover,
.big-wrapper.dark .toggle-btn:hover {
  background: #275ba6;
  color: #eef5ff;
}

.big-wrapper.dark .toggle-btn:hover {
  background: #223b60;
  color: #ffffff;
}

.big-wrapper.light .toggle-btn i:first-child {
  display: none;
}

.big-wrapper.light .toggle-btn i:last-child {
  display: block;
}

.big-wrapper.dark .toggle-btn i:last-child {
  display: none;
}

.big-wrapper.dark .toggle-btn i:first-child {
  display: block;
}

.shape {
  position: absolute;
  z-index: 0;
  width: 500px;
  bottom: -180px;
  left: -15px;
  opacity: 0.1;
}

.copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  animation: appear 1s 1 both;
}

@keyframes appear {
  0% {
    clip-path: circle(30% at -25% -25%);
  }

  100% {
    clip-path: circle(150% at 0 0);
  }
}

@media screen and (max-width: 870px) {
  header .container {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }

  header .container > .container {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 0.55rem;
  }

  .logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .logo a.ms-1 {
    min-width: 0;
  }

  .logo h3 {
    font-size: 1.12rem;
  }

  .logo .tagline {
    font-size: 0.64rem;
    line-height: 1.15;
    white-space: normal;
  }

  .nav-container {
    margin-left: auto;
    flex: 0 0 auto;
  }

  .nav-container .bottom-area .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .toggle-btn {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .toggle-btn i {
    font-size: 1.1rem;
  }

  .hero-copy {
    transform: none;
    margin-top: 0.4rem;
    padding: 1rem 0.95rem 0.9rem;
    border-radius: 14px;
  }

  .hero-copy > * {
    transform: none;
  }

  .hamburger-menu {
    display: flex;
    background-color: var(--backgroundColor);
    border-radius: 10px;
    padding: 5px;
    margin-left: 0.2rem;
    flex: 0 0 auto;
  }

  .links {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 300px;
    width: 100%;
    height: 100%;
    background-color: #f8dceb;
    color: var(--backgroundColor);
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.5s;
  }

  .links ul {
    flex-direction: column;
    padding-bottom: 100px;;
    font-size: 23px;
  }

  .links ul li:first-child {
    margin-top: 70px;
  }

  .links ul li {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .links ul li:not(:last-child) > a {
    color: #4a3241 !important;
    margin-left: 0;
    padding: 2rem 0;
  }

  .links ul li:not(:last-child) > a::after {
    display: none;
  }

  .links ul li:last-child > a {
    margin-left: 0;
    padding: 0.3rem 0 !important;
    border: none !important;
    background: none !important;
    box-shadow: none;
    color: #8c2d64 !important;
    font-size: 23px;
    filter: none;
  }

  .overlay {
    display: block;
    position: fixed;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.6); /* ✅ LIGHT */
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
  }


  .big-wrapper.active .links {
    transform: translateX(0);
    box-shadow: 0 0 50px 2px rgba(243, 237, 237, 0.4);
  }

  .big-wrapper.active .overlay {
    pointer-events: all;
    opacity: 1;
  }

  .showcase-area {
    padding: 2.5rem 0;
    max-width: 700px;
    margin: 0 auto;
  }

  .showcase-area .container {
    grid-template-columns: 1fr;
    justify-content: center;
    grid-gap: 2rem;
  }

  .big-title {
    font-size: 1.1rem;
  }

  .text {
    font-size: 0.95rem;
    margin: 1.4rem 0 1.5rem;
  }

  .person {
	margin-top: 40px;
	max-width: 100%;
	  height: auto;
	  border-radius: 8px;
	  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .logo h3 {
    font-size: 1.25rem;
  }

  .shape {
    bottom: -180px;
    left: -150px;
  }
}

@media screen and (max-width: 470px) {
  .container {
    padding: 0 1.5rem;
  }

  .big-title {
    font-size: 0.9rem;
  }

  .text {
    margin: 1.1rem 0 1.5rem;
  }

  .showcase-area .btn {
    font-size: 0.8rem;
  }


  .image-box img{
    width: 450px;
    position: relative;
    top: -90px;
    right: 25px;
    bottom:150px;
   }

   .image-box{
    height: 300px !important;
   }
   .get-started{
    height: 400px !important;
   }

   .carousel-box {
    width: 90% !important;
  }

}


.show-cards .card {
  --card-accent: #c64c8c;
  --card-bg1: rgba(255, 248, 252, 0.95);
  --card-bg2: rgba(252, 229, 242, 0.9);
  position: relative;
  border: 1px solid rgba(232, 182, 211, 0.9);
  border-top: 6px solid var(--card-accent);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--card-bg1), var(--card-bg2));
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.14);
}

.show-cards .card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  top: -85px;
  right: -65px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--card-accent) 58%, white 42%) 0%, rgba(255, 255, 255, 0) 72%);
  opacity: 0.55;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.show-cards > [class*="col-"]:nth-child(1) .card { --card-accent: #c64c8c; }
.show-cards > [class*="col-"]:nth-child(2) .card { --card-accent: #c64c8c; }
.show-cards > [class*="col-"]:nth-child(3) .card { --card-accent: #c64c8c; }
.show-cards > [class*="col-"]:nth-child(4) .card { --card-accent: #c64c8c; }
.show-cards > [class*="col-"]:nth-child(5) .card { --card-accent: #c64c8c; }
.show-cards > [class*="col-"]:nth-child(6) .card { --card-accent: #c64c8c; }
.show-cards > [class*="col-"]:nth-child(7) .card { --card-accent: #c64c8c; }
.show-cards > [class*="col-"]:nth-child(8) .card { --card-accent: #c64c8c; }

.dark .show-cards .card {
  background: linear-gradient(145deg, #1c2b36, #102027);
  box-shadow: 0 8px 24px rgba(255,255,255,0.05);
}

/* 2. Card Hover Effect */
.show-cards .card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 18px 34px rgba(2, 6, 23, 0.2);
  border-color: color-mix(in srgb, var(--card-accent) 35%, white 65%);
}

.show-cards .card:hover::before {
  transform: scale(1.12);
  opacity: 0.72;
}

/* 3. Text Readability */
.show-cards p {
  font-size: 0.95rem;
  color: var(--darkTwo);
  line-height: 1.7;
  margin-bottom: 0;
}

.dark .show-cards p,
.dark .about-card p {
  color: #d9e8f6;
}

.show-cards .card h3 {
  color: #8c2d64;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.show-cards .text-primary {
  color: #c64c8c !important;
}

.show-cards .card .icon-hover {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--card-accent) 14%, white 86%);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--card-accent) 28%, white 72%);
}

/* 4. Hero Section Image Better Scaling */
.image-box img {
  width: 120%;
  max-width: 600px;
  height: 500px;
  position: static;
}

/* 5. Carousel Visual Enhancement */
.carousel-box img {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.show-cards h3{
  color: inherit;
}

.card-container{
  margin-top: 100px !important;
  border-color: var(--darkTwo);
}

.carousel-section {
  background: var(--bg);
}
.carousel-box {
  width: min(92vw, 1100px);
  margin: 0 auto 1.25rem !important;
}

#carouselExample {
  border-radius: 14px;
  overflow: hidden;
}

#carouselExample .carousel-inner {
  border-radius: 14px;
}

#carouselExample .carousel-item img {
  display: block;
  width: 100%;
  height: clamp(220px, 42vw, 520px);
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}


#footer {
  background: radial-gradient(120% 140% at 10% 0%, #22345d 0%, #182746 48%, #101b33 100%) !important;
  color: #e9f1ff !important;
  padding: 1.rem 0 !important;
  border-top: none;
}

#footer .row {
  align-items: center;
}

#footer p,
#footer small,
#footer h4 {
  margin-bottom: 0.45rem;
  color: #e8f1fb !important;
}

#footer .d-flex.gap-3 {
  align-items: center;
}

#footer .d-flex.gap-3 a {
  color: #cfe0ff !important;
  transition: transform 0.25s ease, color 0.25s ease;
}

#footer .d-flex.gap-3 a:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}

#footer .text-warning {
  color: #cfe0ff !important;
}

.big-wrapper .text-primary {
  color: var(--official-blue) !important;
}

.big-wrapper .text-dark {
  color: var(--official-ink) !important;
}

#footer hr {
  display: none;
}

.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.75rem;
}

.footer-links a {
  color: white;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  color: white;
  font-size: 1.2rem;
  margin: 0 0.5rem;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-container ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .get-started {
    flex-direction: column;
    text-align: center;
  }

  .logo h3 {
    font-size: 1.2rem;
  }

  .big-title h1 {
    font-size: 2rem;
  }

  .image-box img {
    width: 100%;
	height: 100%;
  }

  .footer-links ul {
    flex-direction: column;
    gap: 0.8rem;
  }

  #footer .row > div {
    text-align: center;
    margin-bottom: 0.9rem;
  }

  #footer .d-flex.gap-3 {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  #carouselExample .carousel-item img {
    height: clamp(210px, 52vw, 360px);
  }
}

@media (max-width: 470px) {
  .carousel-box {
    width: 94vw !important;
  }

  #carouselExample .carousel-item img {
    height: clamp(180px, 58vw, 260px);
  }
}

.about-card{
  background-color: rgba(255, 255, 255, 0.171);
}
.about-card p{
  color: var(--darkOne);
}
.about-card h3{
  color: var(--darkOne);
}
.icon-hover i {
  transition: transform 0.25s ease, color 0.25s ease;
}

.show-cards .card:hover .icon-hover i,
.icon-hover i:hover{
  transform: scale(1.18) rotate(-6deg);
  color: color-mix(in srgb, var(--card-accent) 82%, #0f172a 18%);
}

/* 1.1. Container background & padding */
#feedback-message-box {
  background-color: #edf4fb;
  padding: 1rem;
}

/* 1.2. Each feedback card */
.feedback-card {
  background-color: #f8fbff;
  border: 1px solid #c9d7e6;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

/* 1.3. Feedback text in green */
.feedback-card .feedback-text {
  color: #005ea2;
  margin-bottom: 0.25rem;
}

/* 1.4. Date in muted text */
.feedback-card .feedback-date {
  color: #5d6b7d;
  font-size: 0.875rem;
}

/* 1.5. Delete button styling */
.feedback-card .delete-feedback-btn {
  background: none;
  border: none;
  color: #005ea2;
  font-size: 1.25rem;
  cursor: pointer;
}

/* 1.6. Hover effect for delete */
.feedback-card .delete-feedback-btn:hover {
  color: #1a4480;
}

/* Monochrome theme override (dark + white) */
.light {
  --official-navy: #1f2d5a;
  --official-blue: #0b66c3;
  --official-blue-strong: #0a4ea0;
  --official-blue-soft: #7fb6e6;
  --official-sky: #e8f1fb;
  --official-ink: #1f2430;
  --official-muted: #5b6473;
  --official-border: #e5e9f2;
  --official-card-bg: #ffffff;
  --official-text-on-dark: #ffffff;

  --mainColor: #0b66c3;
  --hoverColor: #0a4ea0;
  --backgroundColor: #f5f7fb;
  --darkOne: #1f2430;
  --darkTwo: #0a4ea0;
  --lightOne: #5b6473;
  --lightTwo: #9aa3b2;
}

.dark {
  --mainColor: #f5f5f5;
  --hoverColor: #ffffff;
  --backgroundColor: #0f0f10;
  --darkOne: #ffffff;
  --darkTwo: #f2f2f2;
  --lightOne: #cbcbcb;
  --lightTwo: #9b9b9b;
}

.area {
  background-color: #f5f7fb;
  background-image: radial-gradient(65% 130% at 50% 50%, rgba(245, 247, 251, 0) 0%, rgba(232, 241, 251, 0.9) 52%);
}

header {
  background: linear-gradient(120deg, #d7d7d7 0%, #e6eef8 58%, #7a9abd 100%);
  box-shadow: 0 6px 18px rgba(20, 46, 90, 0.12);
}

.circles li,
.square-animation {
  background: rgba(11, 102, 195, 0.16);
  background-color: rgba(11, 102, 195, 0.16);
}

.show-cards > [class*="col-"]:nth-child(1) .card { --card-accent: #2563eb; }
.show-cards > [class*="col-"]:nth-child(2) .card { --card-accent: #0ea5e9; }
.show-cards > [class*="col-"]:nth-child(3) .card { --card-accent: #14b8a6; }
.show-cards > [class*="col-"]:nth-child(4) .card { --card-accent: #22c55e; }
.show-cards > [class*="col-"]:nth-child(5) .card { --card-accent: #84cc16; }
.show-cards > [class*="col-"]:nth-child(6) .card { --card-accent: #f59e0b; }
.show-cards > [class*="col-"]:nth-child(7) .card { --card-accent: #f97316; }
.show-cards > [class*="col-"]:nth-child(8) .card { --card-accent: #ec4899; }

.show-cards .card {
  --card-bg1: rgba(255, 255, 255, 0.96);
  --card-bg2: rgba(239, 239, 239, 0.92);
}

#footer {
  background: linear-gradient(281deg, #000000 0%, #4c6481 52%, #000000 100%) !important;
  color: #eaf2ff !important;
}

#footer p,
#footer small,
#footer h4,
#footer .d-flex.gap-3 a,
#footer .text-warning {
  color: #eaf2ff !important;
}

/* Header logo: transparent image + tight alignment with brand name */
.logo {
  gap: 0.08rem !important;
}

.logo > a:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.logo img {
  content: url("/images/homeImages/logo.jpg");
  width: 52px !important;
  height: 52px !important;
  object-fit: contain;
  margin: 0 !important;
  background: transparent !important;
  mix-blend-mode: normal !important;
}

.logo a.ms-1 {
  margin-left: -2px !important;
}

.logo h3 {
  font-size: 1.56rem;
  line-height: 1.08;
}

@media screen and (max-width: 870px) {
  .logo img {
    width: 48px !important;
    height: 48px !important;
  }

  .logo h3 {
    font-size: 1.35rem;
  }
}

/* Hero image: use transparent cutout without HTML changes */
.image-box img.person {
  content: url("/images/homeImages/final.png");
}

/* Hero image: no border/shadow + responsive sizing */
.image-box img.person {
  content: url("/images/homeImages/final.png");
  display: block;
  width: min(100%, 780px) !important;
  height: auto !important;
  max-height: 590px;
  object-fit: contain;
  position: static !important;
  transform: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  margin: 0 auto;
}

@media screen and (max-width: 870px) {
  .image-box img.person {
    width: min(100%, 540px) !important;
    max-height: 440px;
  }
}

@media screen and (max-width: 470px) {
  .image-box img.person {
    width: min(100%, 380px) !important;
    max-height: 360px;
  }
}

/* Hero image final fit (match reference screenshot) */
.image-box {
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  right: 0 !important;
}

.image-box img.person {
  content: url("/images/homeImages/final.png");
  width: min(100%, 660px) !important;
  max-height: 560px;
  height: auto !important;
  object-fit: contain;
  position: static !important;
  transform: none !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  align-self: center !important;
  margin: 0 auto;
}

@media screen and (max-width: 870px) {
  .image-box img.person {
    width: min(100%, 540px) !important;
    max-height: 460px;
  }
}

@media screen and (max-width: 470px) {
  .image-box img.person {
    width: min(100%, 420px) !important;
    max-height: 340px;
  }
}

/* Final overrides: stable dark mode visuals and image fit */
.logo img {
  mix-blend-mode: normal !important;
  filter: none;
}

.dark .logo img {
  filter: none !important;
}

.dark .text-dark,
.dark .links a.text-dark {
  color: #f2f2f2 !important;
}

.image-box {
  min-height: clamp(320px, 48vw, 560px) !important;
}

.image-box img,
.image-box img.person {
  width: min(100%, 620px) !important;
  max-width: 100% !important;
  max-height: clamp(280px, 46vw, 560px) !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
  margin: 0 auto !important;
  right: auto !important;
  bottom: auto !important;
}

#carouselExample .carousel-item {
  aspect-ratio: 16 / 9;
}

#carouselExample .carousel-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  background: transparent !important;
}

/* Whole-page dark mode overrides */
.big-wrapper.dark .area {
  background-color: #0c121c !important;
  background-image: radial-gradient(95% 140% at 50% 0%, rgba(40, 63, 95, 0.55) 0%, rgba(12, 18, 28, 1) 62%) !important;
}

.big-wrapper.dark header {
  background: linear-gradient(130deg, #111a28 0%, #1a2a43 52%, #0d1521 100%) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
}

.big-wrapper.dark .circles li,
.big-wrapper.dark .square-animation {
  background: rgba(144, 178, 219, 0.16) !important;
  background-color: rgba(144, 178, 219, 0.16) !important;
}

.big-wrapper.dark .hero-copy {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.big-wrapper.dark .big-title h1,
.big-wrapper.dark .get-started .text,
.big-wrapper.dark .logo .tagline {
  color: #f3f6fb !important;
  text-shadow: none;
}

.big-wrapper.dark .big-title h1 {
  color: #8fc7ff !important;
}

.big-wrapper.dark .big-title h4 {
  color: #c7def7 !important;
}

.big-wrapper.dark .logo h3 span:first-child,
.big-wrapper.dark .logo h3 span:last-child {
  color: #ffffff !important;
}

.big-wrapper.dark .links ul li:not(:last-child) > a {
  color: #d9e6f7 !important;
}

.big-wrapper.dark .links ul li:not(:last-child) > a::after {
  background: linear-gradient(90deg, #d9e6f7, #ffffff);
}

.big-wrapper.dark .links ul li:not(:last-child) > a:hover {
  color: #ffffff !important;
}

.big-wrapper.dark .links ul li:last-child > a {
  background: linear-gradient(135deg, #243b5f, #365887) !important;
  border-color: rgba(206, 224, 248, 0.55) !important;
  color: #f3f8ff !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.34);
}

.big-wrapper.dark .hamburger-menu .bar,
.big-wrapper.dark .hamburger-menu .bar::before,
.big-wrapper.dark .hamburger-menu .bar::after {
  background-color: #e6effb;
}

.big-wrapper.dark .overlay {
  background-color: rgba(7, 12, 20, 0.62);
}

@media screen and (max-width: 870px) {
  .big-wrapper.dark .links {
    background-color: #111a29 !important;
  }

  .big-wrapper.dark .links ul li:last-child > a {
    background: none !important;
    color: #eaf2ff !important;
    border-color: transparent !important;
    box-shadow: none !important;
  }
}

/* Hero image: match text-side height on desktop */
@media screen and (min-width: 768px) {
  .big-wrapper .get-started,
  .big-wrapper .image-box {
    height: 550px !important;
    min-height: 550px !important;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
  }

  .big-wrapper .image-box img,
  .big-wrapper .image-box img.person {
    height: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }
}

/* Dark mode: unique colors for all feature cards */
.big-wrapper.dark .show-cards > [class*="col-"]:nth-child(1) .card { --card-accent: #60a5fa; }
.big-wrapper.dark .show-cards > [class*="col-"]:nth-child(2) .card { --card-accent: #38bdf8; }
.big-wrapper.dark .show-cards > [class*="col-"]:nth-child(3) .card { --card-accent: #60a5fa; }
.big-wrapper.dark .show-cards > [class*="col-"]:nth-child(4) .card { --card-accent: #38bdf8; }
.big-wrapper.dark .show-cards > [class*="col-"]:nth-child(5) .card { --card-accent: #60a5fa; }
.big-wrapper.dark .show-cards > [class*="col-"]:nth-child(6) .card { --card-accent: #38bdf8; }
.big-wrapper.dark .show-cards > [class*="col-"]:nth-child(7) .card { --card-accent: #60a5fa; }
.big-wrapper.dark .show-cards > [class*="col-"]:nth-child(8) .card { --card-accent: #38bdf8; }

.big-wrapper.dark .show-cards .card {
  border-color: color-mix(in srgb, var(--card-accent) 35%, #1a2534 65%);
  border-top-color: var(--card-accent);
  background: linear-gradient(150deg, #111b29 0%, #0f1824 100%);
}

.big-wrapper.dark .show-cards .card h3,
.big-wrapper.dark .show-cards .text-primary {
  color: var(--card-accent) !important;
}

.big-wrapper.dark .show-cards .card .icon-hover {
  color: #ffffff;
  background: color-mix(in srgb, var(--card-accent) 34%, #0f1824 66%);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--card-accent) 68%, #0f1824 32%);
}

/* Final responsive stability fixes */
html,
body {
  overflow-x: hidden;
}

@media screen and (max-width: 1200px) {
  .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

@media screen and (max-width: 991px) {
  .container {
    padding-left: 0.9rem !important;
    padding-right: 0.9rem !important;
  }

  header {
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(20, 46, 90, 0.14) !important;
  }

  .big-wrapper .get-started,
  .big-wrapper .image-box {
    height: auto !important;
    min-height: 0 !important;
  }

  .get-started {
    margin-top: 1rem;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
    padding: 1rem 0.8rem 0.9rem !important;
  }

  .image-box,
  .image-box img,
  .image-box img.person {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
  }

  .image-box img,
  .image-box img.person {
    width: min(92vw, 520px) !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: min(60vh, 520px) !important;
    margin: 0 auto !important;
    display: block;
  }

  .card-container {
    margin-top: 42px !important;
  }

  .show-cards .card {
    border-radius: 14px;
  }

  .carousel-box {
    width: 100% !important;
    margin-top: 0.75rem !important;
  }

  #carouselExample {
    border-radius: 10px;
  }

  #carouselExample .carousel-item {
    aspect-ratio: 16 / 10;
  }

  #carouselExample .carousel-item img {
    border-radius: 10px;
  }

  #footer .row > div {
    text-align: center;
    margin-bottom: 0.75rem;
  }

  #footer .d-flex.gap-3 {
    justify-content: center;
  }
}

@media screen and (max-width: 576px) {
  .big-title h1 {
    font-size: clamp(1.45rem, 7.2vw, 2rem) !important;
    line-height: 1.25 !important;
  }

  .big-title h4 {
    font-size: clamp(0.95rem, 4.3vw, 1.2rem) !important;
  }

  .get-started .text {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .image-box img,
  .image-box img.person {
    width: min(94vw, 390px) !important;
    max-height: min(52vh, 390px) !important;
  }

  #carouselExample .carousel-item {
    aspect-ratio: 4 / 3;
  }

  .container,
  #footer .container,
  .card-container,
  .carousel-box {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* Mobile-first hero polish */
@media screen and (max-width: 991px) {
  .hero-section {
    margin-top: 1.2rem !important;
  }

  .hero-section .row {
    justify-content: center;
  }

  .hero-section .image-box {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .hero-section .image-box a {
    display: inline-flex;
    justify-content: center;
    width: 100%;
  }

  .hero-section .image-box img,
  .hero-section .image-box img.person {
    margin-left: auto !important;
    margin-right: auto !important;
    object-position: center center !important;
  }
}

@media screen and (max-width: 576px) {
  .hero-section {
    margin-top: 0.85rem !important;
  }

  .hero-copy {
    padding: 0.85rem 0.65rem 0.75rem !important;
  }

  .hero-section .image-box img,
  .hero-section .image-box img.person {
    width: min(96vw, 380px) !important;
  }
}

/* iOS menu stability fixes */
@media screen and (max-width: 870px) {
  .hamburger-menu {
    z-index: 1102 !important;
  }

  .links {
    z-index: 1101 !important;
    top: 0;
    right: 0;
    width: min(84vw, 320px);
    max-width: 320px;
    height: 100dvh;
    min-height: 100vh;
    padding-top: max(1rem, env(safe-area-inset-top));
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    backface-visibility: hidden;
    will-change: transform;
  }

  .overlay {
    z-index: 1100 !important;
  }

  .big-wrapper.active .links {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .big-wrapper.active {
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .circles li {
    animation: none !important;
  }

  .logo h3 span,
  .tagline span,
  .links ul li,
  .big-title h1,
  .big-title h4,
  .text {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}