@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --clr-blue: #1a91f0;
  --clr-blue-mid: #1170cd;
  --clr-blue-dark: #1a1c6a;
  --clr-white: #fff;
  --clr-bright: #eff2f9;
  --clr-dark: #1e2532;
  --clr-black: #000;
  --clr-grey: #656e83;
  --clr-green: #084c41;
  --clr-primary-gradient: linear-gradient(135deg, #1a91f0, #1170cd);
  --clr-secondary-gradient: linear-gradient(135deg, #ff9a9e, #fad0c4);
  --font-poppins: "Poppins", sans-serif;
  --font-manrope: "Manrope", sans-serif;
  --transition: all 300ms ease-in-out;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body {
  background-color: red;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-size: 1.6rem;
  font-family: var(--font-poppins);
  background-color: var(--clr-bright);
  color: var(--clr-dark);
}

body::-webkit-scrollbar {
  display: none;
}

body::-webkit-scrollbar-button {
  display: none;
}

/* Chrome, Edge, Safari */
/* Basic Element Styles */
button,
img,
a {
  border: none;
  background: none;
  outline: none;
  text-decoration: none;
  cursor: pointer;
}

button,
a {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 4px;
  transition: var(--transition);
  font-family: var(--font-poppins);
}

img {
  max-width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

img:hover {
  transform: scale(1.05);
}

a:hover,
button:hover {
  transform: translateY(-2px);
}

/* Text Styles */
.text-blue {
  color: var(--clr-blue);
}

.text-blue-mid {
  color: var(--clr-blue-mid);
}

.text-blue-dark {
  color: var(--clr-blue-dark);
}

.text-bright {
  color: var(--clr-bright);
}

.text-dark {
  color: var(--clr-dark);
}

.text-grey {
  color: var(--clr-grey);
}

.text-white {
  color: var(--clr-white);
}

/* Backgrounds */
.bg-primary {
  background: var(--clr-primary-gradient);
}

.bg-secondary {
  background: var(--clr-secondary-gradient);
}

.bg-dark {
  background-color: var(--clr-dark);
}

.bg-bright {
  background-color: var(--clr-bright);
}

.bg-white {
  background: var(--clr-white);
}

.bg-black {
  background-color: var(--clr-black);
}

.bg-green {
  background-color: var(--clr-green);
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.fw-2 {
  font-weight: 200;
}

.fw-3 {
  font-weight: 300;
}

.fw-4 {
  font-weight: 400;
}

.fw-5 {
  font-weight: 500;
}

.fw-6 {
  font-weight: 600;
}

.fw-7 {
  font-weight: 700;
}

.fw-8 {
  font-weight: 800;
}

.fs-14 {
  font-size: 1.4rem;
}

.fs-18 {
  font-size: 1.8rem;
}

.fs-24 {
  font-size: 2.4rem;
}

.fs-37 {
  font-size: 3.7rem;
}

.ls-1 {
  letter-spacing: 0.1rem;
}

.ls-2 {
  letter-spacing: 0.2rem;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.6rem;
}
@media screen and (max-width: 1000px) {
  .container {
    max-width: 1000px;
  }
}

.box-shadow {
  box-shadow: var(--box-shadow);
}

.radius-4 {
  border-radius: 4px;
}

.transition {
  transition: var(--transition);
}

/* Navbar */
/* ==========================================
   NAVBAR
========================================== */
.navbar {
  height: 80px;
  display: flex;
  align-items: center;
  background: #eff6f7;
  box-shadow: 0 8px 30px rgba(15, 77, 67, 0.04);
  border-bottom: 1px solid rgba(15, 77, 67, 0.05);
  position: relative;
  z-index: 100;
}
.navbar .container {
  width: 100%;
  padding-inline: 42px;
}
.navbar .navbar-content {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .navbar {
    height: 80px;
  }
  .navbar .container {
    padding-inline: 28px;
  }
}

.brand-and-toggler {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}

.navbar-brand {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.text-span {
  font-weight: 100;
}

.text-uppercase {
  grid-column: 2;
  justify-self: center;
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--clr-green);
  transition: color 0.25s ease;
}
.text-uppercase span {
  color: #6bb4a9;
  font-weight: 650;
}
.text-uppercase:hover {
  color: #2c5751;
}
.text-uppercase:hover span {
  color: #4fb894;
}
@media screen and (max-width: 1000px) {
  .text-uppercase {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}

.navbar-brand-icon {
  width: 36px;
  height: 33px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-brand-icon {
  transform: translateY(-2px);
}

.navbar .brand-and-toggler .spinner {
  --size: 18px;
  --first-block-clr: #005bba;
  --second-block-clr: #fed500;
  --clr: #111;
  width: 42px;
  height: 42px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}
@media screen and (max-width: 1000px) {
  .navbar .brand-and-toggler .spinner {
    display: none;
  }
}

.spinner::after,
.spinner::before {
  box-sizing: border-box;
  position: absolute;
  content: "";
  width: var(--size);
  height: var(--size);
}

.spinner::before {
  top: var(--size);
  left: var(--size);
  animation: up 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
  background: var(--first-block-clr);
}

.spinner::after {
  top: 0;
  left: 0;
  background: var(--second-block-clr);
  animation: down 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
}

@keyframes down {
  0%, 100% {
    transform: none;
  }
  25% {
    transform: translateX(100%);
  }
  50% {
    transform: translateX(100%) translateY(100%);
  }
  75% {
    transform: translateY(100%);
  }
}
@keyframes up {
  0%, 100% {
    transform: none;
  }
  25% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-100%) translateY(-100%);
  }
  75% {
    transform: translateY(-100%);
  }
}
.navbar-brand-text {
  font-size: 17px;
  font-weight: 510;
  color: #143f37;
  letter-spacing: 0.2px;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.navbar-brand:hover .navbar-brand-text {
  color: #0b5c4f;
}

.navbar .navbar-toggler-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 16.5px;
  width: 25px;
}

.navbar .navbar-toggler-btn .bar {
  height: 2px;
  background: var(--clr-blue);
}

.navbar .navbar-toggler-btn:hover .bar {
  background: var(--clr-dark);
}

/* Header */
/* ==========================================
   HERO / HEADER
========================================== */
/* ==========================================================
   HEADER
========================================================== */
.header {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 1.5rem 2rem 0;
  isolation: isolate;
  background: #d7eae5;
}
@media screen and (max-width: 1000px) {
  .header {
    min-height: auto;
    padding: 2rem 1rem 0;
  }
}

.header::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34%;
  height: 72%;
  background: rgba(144, 201, 190, 0.22);
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  z-index: 0;
}

.header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 47%;
  height: 104%;
  background: rgba(118, 201, 187, 0.16);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  z-index: 0;
}

.header-dot-left {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 170px;
  height: 200px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 1.3px, transparent 1.3px);
  background-size: 10px 10px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

.header-dot-right {
  position: absolute;
  right: 22px;
  bottom: 98px;
  width: 150px;
  height: 200px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 1.3px, transparent 1.3px);
  background-size: 10px 10px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

.header .header-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6%;
  transform: translateX(-50%);
  width: 1200px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.24) 42%, rgba(255, 255, 255, 0.08) 66%, transparent 82%);
  z-index: -1;
  pointer-events: none;
}

.scroll {
  background: none;
  width: 25px;
  height: 30px;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .scroll {
    display: none;
  }
}

.header .header-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 1000px) {
  .header .header-content {
    padding-top: 2.5rem;
  }
}

.header-content::before {
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.3) 38%, rgba(255, 255, 255, 0.1) 62%, transparent 82%);
}

.header h1 {
  max-width: 950px;
  margin: 0 auto 2.8rem;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.42;
  font-weight: 530;
  letter-spacing: -0.4;
  word-spacing: 3px;
  text-transform: uppercase;
  color: #173b37;
}

.header .hero-image {
  display: flex;
  position: relative;
  margin-bottom: 4rem;
  max-width: 600px;
  width: 100%;
  background: white;
  background: transparent;
  margin-top: 1.2rem;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.header .hero-image:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 70px rgba(39, 74, 63, 0.16);
}
.header .hero-image {
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .header .hero-image {
    width: 390px;
    left: 0;
    top: 0;
    bottom: 0;
    position: relative;
    margin-bottom: 120px;
  }
}

.header p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: 2;
  color: #4d6662;
  font-weight: 420;
}

.header h3 {
  color: rgb(100, 112, 92);
  font-size: 20px;
  position: relative;
  left: 450px;
}

/* Buttons */
/* Section One */
/* ==========================
   Section One
========================== */
/* ======================================================
   SECTION ONE
====================================================== */
.section-one {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  background: linear-gradient(135deg, #eaf7f2 0%, #f5fbf8 48%, #ebf8f3 100%), radial-gradient(circle at 12% 18%, rgba(191, 229, 216, 0.68), transparent 34%), radial-gradient(circle at 88% 72%, rgba(210, 236, 225, 0.46), transparent 32%);
}
@media screen and (max-width: 1000px) {
  .section-one {
    padding: 6rem 0;
  }
}

/* ======================================================
   Trinagle
====================================================== */
.triangle-left,
.triangle-right {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.triangle-left {
  left: 0;
  bottom: 0;
  width: 280px;
  height: 280px;
  background: rgba(214, 236, 229, 0.38);
  clip-path: polygon(0 100%, 0 0, 100% 100%);
}

.triangle-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 360px;
  height: 360px;
  background: rgba(223, 242, 235, 0.42);
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
  pointer-events: none;
  z-index: 0;
}

/* ======================================================
   Dot Decorations
====================================================== */
.dots-left,
.dots-right {
  position: absolute;
  pointer-events: none;
  background-image: radial-gradient(rgba(182, 220, 205, 0.55) 1.6px, transparent 1.6px);
  background-size: 14px 14px;
  opacity: 0.8;
}

.dots-left {
  left: 20px;
  bottom: 20px;
  width: 170px;
  height: 140px;
}

.dots-right {
  right: 2%;
  top: 70%;
  width: 190px;
  height: 145px;
}

/* ======================================================
   GRID LAYOUT
====================================================== */
.section-one-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas: "image video" "resume interview";
  gap: 4rem 0;
  position: relative;
  z-index: 2;
}

/* ==========================================
   Single Floating Cards
========================================== */
.section-one-grid::before,
.section-one-grid::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(230, 238, 234, 0.5);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(26, 54, 45, 0.05), 0 8px 24px rgba(26, 54, 45, 0.03);
  z-index: 1;
}

.section-one-grid::before {
  top: 0;
  height: calc(50% - 2rem);
}

.section-one-grid::after {
  bottom: 0;
  height: calc(50% - 2rem);
}

.top-left,
.top-right,
.bottom-left,
.bottom-right {
  position: relative;
  z-index: 2;
}

.top-left,
.bottom-right {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding: 3.5rem 2rem;
  overflow: hidden;
  z-index: 2;
}

.top-left,
.top-right,
.bottom-left,
.bottom-right {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.top-left {
  grid-area: image;
}

.top-right {
  grid-area: video;
}

.bottom-left {
  grid-area: resume;
}

.bottom-right {
  grid-area: interview;
}

/* ======================================================
   CONTENT LAYOUT
====================================================== */
.top-right,
.bottom-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 5rem 5.5rem;
}

.top-right {
  align-items: flex-start;
  text-align: left;
}

.bottom-left {
  align-items: flex-start;
}

/* ======================================================
   TYPOGRAPHY
====================================================== */
.section-one-title,
.section-one-subtitle {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 600;
  color: #163d35;
  max-width: 430px;
}

/* ======================================================
   IMAGES
====================================================== */
.top-left img,
.bottom-right img {
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
}

.top-left:hover img,
.bottom-right:hover img {
  transform: scale(1.05);
}

.one {
  transform: translateY(8px);
}

.two {
  transform: translateY(10px);
}

.top-left:hover .one,
.bottom-right:hover .two {
  transform: translateY(8px) scale(1.05);
}

.section-badge {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e7f4ec;
  margin-bottom: 2rem;
}

.section-divider {
  width: 56px;
  height: 3px;
  background: #7cc8a7;
  border-radius: 10px;
  margin: 0;
}

.badge-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* ======================================================
   BUTTON SPACING
====================================================== */
/* ======================================================
   BUTTON SPACING
====================================================== */
.top-right .btn,
.bottom-left .btn {
  margin-top: 0.5rem;
}

/* ======================================================
   TEMPORARY BUTTON STYLES
   (Move into global button system later)
====================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}

.btn::after {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../assets/white-arrow.png") center/contain no-repeat;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.btn:hover::after {
  transform: translateX(4px);
}

.btn-primary,
.btn-secondary {
  padding: 16px 50px;
  color: #fff;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #0e6148 0%, #0a4f3b 100%);
  box-shadow: 0 8px 18px rgba(10, 79, 59, 0.14);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
  background: linear-gradient(90deg, #0b563f 0%, #084432 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(10, 79, 59, 0.2);
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media screen and (max-width: 1000px) {
  .btn-primary,
  .btn-secondary {
    padding: 14px 36px;
    font-size: 1rem;
    border-radius: 32px;
  }
}
/* Section Two */
/*========================================
========================================*/
.section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
}

.section-badge1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.7rem;
  margin-bottom: 2.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(71, 183, 153, 0.14), rgba(85, 214, 180, 0.06));
  color: #0a9174;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 1.3rem;
  margin-bottom: 2.6rem;
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #162542;
}

.section-description {
  max-width: 500px;
  margin: 0 auto 4.8rem;
  font-weight: 500;
  color: #000;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #5f6d84;
  margin-bottom: 5.8rem;
}

.section-two {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 8rem 0;
  text-align: center;
  color: var(--clr-dark);
  /* Premium background */
  background: linear-gradient(135deg, #edf8f5 0%, #f4f8fb 52%, #eef8f6 100%), linear-gradient(135deg, rgba(94, 191, 160, 0.05) 0%, transparent 32%), linear-gradient(315deg, rgba(94, 191, 160, 0.05) 0%, transparent 34%);
}

.section-two::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(98, 214, 176, 0.05) 0%, transparent 28%), linear-gradient(315deg, rgba(98, 214, 176, 0.05) 0%, transparent 30%);
  z-index: 0;
}

.section-two .container {
  position: relative;
  z-index: 2;
}

.section-two .section-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.5rem;
  align-items: stretch;
}
@media screen and (max-width: 1000px) {
  .section-two .section-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.section-two .section-item {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.4rem 2.3rem 2.2rem;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(24, 38, 67, 0.04);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.05), 0 2px 10px rgba(15, 23, 42, 0.03);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .section-two .section-item {
    max-width: 100%;
    padding: 2.3rem 1.8rem;
  }
}

.section-two .section-item:hover {
  transform: translateY(-8px);
  border-color: rgba(33, 181, 146, 0.12);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.09), 0 6px 20px rgba(15, 23, 42, 0.05);
}

.section-two .section-item-icon {
  width: 118px;
  height: 118px;
  margin: 0 auto 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84, 193, 170, 0.16) 0%, rgba(84, 193, 170, 0.1) 70%, rgba(84, 193, 170, 0.06) 100%);
}

.section-two .section-item-icon .womenprofile {
  width: 170px;
  height: 170px;
  object-fit: contain;
  display: block;
}

.section-two .section-item-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.section-two .section-item-title {
  position: relative;
  margin-bottom: 2.2rem;
  color: #162542;
  font-size: 1.5rem;
  font-weight: 640;
  line-height: 1.35;
}

.section-two .section-item-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.1rem;
  transform: translateX(-50%);
  width: 56px;
  height: 2.5px;
  border-radius: 999px;
  background: #1dc9a0;
}

.section-two .section-item .text {
  max-width: 245px;
  font-size: 1.2rem;
  line-height: 1.85;
  font-weight: 500;
  color: #55657c;
  margin: 0;
}

.section-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.shape-top-left {
  top: 0;
  left: 0;
  width: 445px;
  height: 440px;
  background: rgba(77, 197, 165, 0.07);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.shape-bottom-right {
  right: 0;
  bottom: 0;
  width: 620px;
  height: 720px;
  background: rgba(77, 197, 165, 0.07);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.section-dots {
  position: absolute;
  width: 140px;
  height: 180px;
  pointer-events: none;
  opacity: 0.45;
  background-image: radial-gradient(rgba(74, 218, 185, 0.55) 1.3px, transparent 1.3px);
  background-size: 12px 12px;
  z-index: 0;
}

.dots-top-left {
  left: 18px;
  top: 40px;
}

.dots-bottom-right {
  right: 18px;
  bottom: 35px;
}

.final-image {
  position: relative;
  z-index: 2;
}

.final {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9.5rem;
  padding: 8rem 8%;
  isolation: isolate;
  background: radial-gradient(circle at 15% 55%, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.035) 22%, transparent 42%), radial-gradient(circle at 88% 42%, rgba(59, 130, 246, 0.03) 0%, transparent 35%), linear-gradient(135deg, #eff8f5 0%, #f7fbfa 55%, #eef8f5 100%);
  position: relative;
  isolation: isolate;
}

.resume-glow {
  position: absolute;
  width: 530px;
  height: 530px;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #e4efea;
  z-index: 1;
  opacity: 0.45;
  pointer-events: none;
}

.final::before {
  content: "";
  position: absolute;
  left: 0%;
  top: 8%;
  width: 90px;
  height: 150px;
  background-image: radial-gradient(rgba(134, 231, 203, 0.9) 1.3px, transparent 1.3px);
  background-size: 14px 14px;
  opacity: 0.45;
  z-index: 0;
}

.final::after {
  content: "";
  position: absolute;
  right: 0%;
  bottom: 14%;
  width: 120px;
  height: 120px;
  opacity: 0.45;
  background-image: radial-gradient(#86e7cb 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  z-index: -1;
}

.final-image img {
  flex: 0 0 420px;
  position: relative;
  z-index: 1;
  transform: translateY(-8px);
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08), 0 40px 80px rgba(15, 23, 42, 0.14);
  transition: 0.35s ease;
}

.final-content {
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.4rem;
  border-radius: 10px;
  background: #edf8f3;
  color: #12a874;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.preview-badge > .preview-eye-icon {
  width: 18px !important;
  height: 18px !important;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 0.3rem;
  margin-bottom: 0.1rem;
}

.preview-file-icon {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 0.4rem;
}

.preview-arrow-icon {
  width: 14px;
  height: 14px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: 0.5rem;
  transition: transform 0.35s ease;
}

.preview-btn:hover .preview-arrow-icon {
  transform: translateX(4px);
}

.preview-badge i {
  font-size: 0.9rem;
}

.final-content h3 {
  font-size: 3.65rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  word-spacing: 7px;
  color: #18263d;
  max-width: 650px;
  margin-bottom: 1.7rem;
}

.title-line {
  display: block;
  width: 58px;
  height: 4px;
  border-radius: 50px;
  background: #12b981;
  margin-bottom: 2.5rem;
}

.final-content p {
  max-width: 540px;
  font-size: 1.6rem;
  word-spacing: 2px;
  line-height: 1.8;
  color: #556274;
  margin-bottom: 3.2rem;
}

.final-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0.8rem;
}

.preview-btn span {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}

.preview-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  width: 270px;
  height: 50px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0e8f53 0%, #097248 45%, #0b5034 100%);
  color: #fff;
  text-decoration: none;
  font-size: 1.12rem;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.28);
  transition: all 0.35s ease;
}

.preview-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(16, 185, 129, 0.35);
}

.preview-btn i:first-child {
  font-size: 1rem;
}

.preview-btn i:last-child {
  margin-left: 0.4rem;
  transition: transform 0.3s ease;
}

.preview-btn:hover i:last-child {
  transform: translateX(4px);
}

@media screen and (max-width: 1000px) {
  .final {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 3.5rem;
    padding: 6rem 2rem;
  }
  .resume-glow {
    width: 360px;
    height: 360px;
    left: 50%;
    top: 18%;
    transform: translateX(-50%);
  }
  .final-image {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .final-image img {
    width: 100%;
    max-width: 320px;
  }
  .final-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    padding-top: 0;
  }
  .preview-badge {
    margin-bottom: 1.8rem;
  }
  .final-content h3 {
    font-size: 2rem;
    max-width: 100%;
    margin-bottom: 1.6rem;
  }
  .title-line {
    margin: 0 auto 2rem;
  }
  .final-content p {
    max-width: 100%;
    margin-bottom: 2.8rem;
  }
  .preview-btn {
    margin: 0 auto;
  }
  .final::before,
  .final::after {
    display: none;
  }
}
/* Footer */
.footer {
  padding: 2.8rem 0;
  background: linear-gradient(180deg, #112b44 0%, #0f253d 100%);
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.footer-content p {
  margin: 0;
  font-size: 1.9rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
}
@media screen and (max-width: 1000px) {
  .footer-content p {
    font-size: 1.2rem;
  }
}

.footer-year {
  color: #1ec99b;
  font-weight: 500;
}

/*Media Queries */
@media (max-width: 768px) {
  .navbar .navbar-toggler-btn {
    display: block;
  }
  .header {
    padding: 4rem 2rem;
  }
  .header h1 {
    font-size: 2rem;
  }
  .header p {
    font-size: 1.6rem;
  }
  .section-one {
    flex-direction: column;
    text-align: center;
  }
  .section-one .section-one-l {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 1000px) {
  .section-one-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "video" "interview" "resume";
    gap: 1.5rem;
  }
  .section-one-grid::before,
  .section-one-grid::after {
    display: none;
  }
  .top-left,
  .top-right,
  .bottom-left,
  .bottom-right {
    background: #fff;
    border: 1px solid rgba(230, 238, 234, 0.5);
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(26, 54, 45, 0.05), 0 8px 24px rgba(26, 54, 45, 0.03);
  }
  .top-left,
  .bottom-right {
    justify-content: center;
    align-items: center;
    padding: 2.5rem;
  }
  .top-right,
  .bottom-left {
    align-items: center;
    text-align: center;
    padding: 2.5rem;
  }
  .top-left img,
  .bottom-right img {
    max-width: 320px;
  }
  .section-one-title,
  .section-one-subtitle {
    font-size: 2.2rem;
    max-width: 100%;
  }
  .section-divider {
    margin-inline: auto;
  }
  .top-right .btn,
  .bottom-left .btn {
    margin-inline: auto;
  }
}

/*# sourceMappingURL=index.css.map */
