/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: "Manrope", sans-serif;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  font-family: "Manrope", sans-serif;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}


.ss-topbar {
  height: 60px;
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
}

.ss-topbar .container {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ss-top-left {
  display: flex;
  align-items: center;
}

.ss-logo {
  width: 40px;
}

.ss-brand {
  font-size: 18px;
  color: #0b2a5b;
  margin-left: 8px;
  font-weight: 600;
}

.ss-dot {
  color: #1e90ff;
}

.ss-top-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.ss-contact {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #0b2a5b;
}

.ss-contact img {
  width: 14px;
  margin-right: 6px;
}

/* NAV BAR */
.ss-navbar {
  height: 50px;
  background: #fff;

}

.ss-navbar .container {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ss-navmenu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.ss-navmenu a {
  text-decoration: none;
  font-size: 14px;
  color: #0b2a5b;
}

.ss-navmenu a:hover {
  color: #1e90ff;
}

/* SOCIAL ICONS */
.ss-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ss-socials a {
  width: 28px;
  height: 28px;
  background: #0b2a5b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ss-socials img {
  width: 14px;
}




/* banner css start */

.hero {
  height: 520px;
  background: url("../images/home/banner-img.svg") center right / cover no-repeat;
  position: relative;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  /* background:linear-gradient(
    90deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.25) 70%,
    rgba(0,0,0,0.15) 100%
  ); */
}

/* MAIN ROW */
.hero-row {
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* LEFT */
.hero-left {
  color: #fff;
  padding-left: 10px;
}

.hero-small {
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 28px;
  padding-left: 18px;
  position: relative;
  opacity: 0.9;
  line-height: 25px;
}

.hero-small span {
  position: absolute;
  left: 0;
  top: 2px;
  width: 8px;
  height: 50px;
  background: #e50914;
  border-radius: 2px;
}

.hero-left h1 {
  font-size: 58px;
  line-height: 65px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  padding: 20px 28px;
  background: rgba(218, 0, 0, 1);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
}

/* RIGHT */
.hero-right {
  position: relative;
  margin-right: 40px;
}

/* GLASS CIRCLE */
.hero-circle {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.25);
}

.hero-circle img {
  width: 120px;
  margin-bottom: 14px;
}

.hero-circle p {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ARROW BUTTON */
.hero-arrow {
  position: absolute;
  right: -18px;
  bottom: 42px;
  width: 42px;
  height: 42px;
  background: #1e1e1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow img {
  width: 30px;
}

/* DOTS (DESIGN ONLY) */
.hero-dots {
  position: absolute;
  right: 70px;
  bottom: 34px;
}

.hero-dots span {
  width: 6px;
  height: 6px;
  background: #fff;
  opacity: 0.4;
  border-radius: 50%;
  display: inline-block;
  margin-left: 5px;
}

.hero-dots .active {
  opacity: 1;
}

/* banner css end */




/* SECTION */
.services {
  padding: 80px 0;
  background: #fff;
}

/* HEADER */
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.services-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.services-head h1 {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  color: #000;
}

.services-btn {
  background: #ff2d2d;
  color: #fff;
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  margin-top: 20px;
}

.services-btn:hover {
  background: #e52626;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.service-card {
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  display: flex;
  flex-direction: column;
}

/* TOP BLACK AREA */
.card-top {
  padding: 24px;
  background: #000;
  min-height: 110px;
}

.card-top h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-top p {
  font-size: 13px;
  line-height: 1.6;
  color: #a0a0a0;
  font-weight: 400;
}

/* IMAGE AREA */
.card-img {
  position: relative;
  flex: 1;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ARROW */
.card-arrow {
  position: absolute;
  right: 0px;
  bottom: 10px;
  width: 50px;
  height: 50px;
  background: #ff2d2d;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 12px;
}


/* about css end */



/* ===== ABOUT US SECTION ===== */
.about {
  padding: 80px 96px;
  background: #fff;
}

.about .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* TOP ROW */
.about-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 50px;
}

/* LEFT COLUMN */
.about-left {
  flex: 0 0 340px;
  padding-top: 10px;
}

.about-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin-bottom: 18px;
}

.about-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #888;
  margin-bottom: 32px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background: #222;
}

/* RIGHT COLUMN */
.about-right {
  flex: 1;
  max-width: 480px;
}

.about-img-main {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* BOTTOM ROW */
.about-bottom {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

/* STATS */
.about-stats {
  flex: 0 0 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 10px;
}

.stat-item {
  position: relative;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 22px;
  background: #dc2626;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  border-radius: 50%;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 38px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: #888;
  font-weight: 400;
}

/* CENTER IMAGE */
.about-center-img {
  flex: 0 0 260px;
}

.about-center-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CUSTOMER APPROACH BOX */
.about-approach {
  flex: 1;
  max-width: 320px;
  padding-top: 40px;
  padding-left: 20px;
}

.approach-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  gap: 20px;
}

.approach-header h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: #000;
}

.approach-arrow {
  font-size: 10px;
  color: #000;
  margin-top: 6px;
}

.approach-text {
  font-size: 13px;
  line-height: 1.75;
  color: #888;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.why-title {
  font-size: 52px;
  font-weight: 500;
  color: #000;
  margin-bottom: 30px;
}

.why-grid-wrapper {
  border-top: 1px solid #eaeaea;
}

.why-grid-row {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
  border-bottom: 1px solid #eaeaea;
}

.why-item {
  flex: 0 0 31%;
  display: flex;
  gap: 20px;
}

.why-icon-box {
  width: 50px;
  height: 50px;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon-box img {
  width: 20px;
  filter: brightness(0) invert(1);
}

.why-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000;
}

.why-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #888;
}

/* ===== PARTNERS SECTION ===== */


.partners-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center;
  background: #0b0b0b;
  padding: 30px;
}

/* LEFT IMAGE */
.partners-left {
  flex: 0 0 45%;
  position: relative;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  background: url("../images/home/banner-img.svg");
  background-repeat: no-repeat;
  background-position: 55%;
}



.partners-arrow-box {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 80px;
  height: 80px;
  background: #ff2d2d;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 12px;
}

.partners-arrow-box span {
  color: #fff;
  font-size: 24px;
}

/* RIGHT CONTENT */
.partners-right {
  flex: 1;
  color: #fff;
}

.partners-label {
  display: block;
  font-size: 13px;
  color: #cfcfcf;
  font-weight: 500;
  margin-bottom: 16px;
}

.partners-title {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #fff;
}

.partners-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #a0a0a0;
  margin-bottom: 50px;
  max-width: 460px;
}

/* LOGO GRID */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #333;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 0;
  border-bottom: 1px solid #333;
}

.partner-logo img {
  width: 18px;

}

.partner-logo span {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 100px 0;
  background: #fff;
}

.testimonials-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT CONTENT */
.testimonials-left {
  flex: 0 0 45%;
  padding-right: 20px;
}

.testi-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.testi-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  color: #000;
  margin-bottom: 30px;
}

.testi-divider {
  border: 0;
  height: 1px;
  background: #eaeaea;
  margin-bottom: 30px;
  width: 100%;
}

.testi-quote {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 40px;
}

/* AUTHOR BOX */
.testi-author-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  border-bottom: 1px solid gainsboro;
  padding-bottom: 10px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  background: #333;
  border-radius: 50%;
}

.testi-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}

.testi-info span {
  font-size: 12px;
  color: #888;
}

/* NAVIGATION */
.testi-nav {
  display: flex;
  gap: 10px;
}

.testi-nav button {
  background: none;
  border: none;
  font-size: 28px;
  color: #888;
  cursor: pointer;
  line-height: 1;
}

.testi-nav button:hover {
  color: #000;
}

/* BUTTON */
.testi-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: #ff2d2d;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.testi-btn:hover {
  background: #d61e1e;
}

/* RIGHT IMAGE */
.testimonials-right {
  flex: 1;
  position: relative;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
}

.testi-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DOTS */
.testi-dots {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 8px;
}

.testi-dots span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.testi-dots span.active {
  background: #fff;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0 140px;
  background: #0b0b0b;
}

.cta-box {
  background: #fff;
  border-radius: 40px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  /* If floating effect desired over footer, negative margin can be used, 
     but reference shows it as a block before newsletter strip on black bg */
}

.cta-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cta-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
  margin-bottom: 24px;
}

.cta-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #888;
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #ff2d2d;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #d61e1e;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0b0b0b;
  padding-bottom: 40px;
  color: #fff;
}

/* NEWSLETTER */
.footer-newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid #333;
}

.footer-newsletter h3 {
  font-size: 30px;
  font-weight: 400;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  padding: 14px 20px;
  border-radius: 8px;
  border: none;
  width: 300px;
  background: #fff;
  color: #000;
  outline: none;
}

.newsletter-form button {
  padding: 14px 28px;
  background: #ff2d2d;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

/* MAIN FOOTER GRID */
.footer-grid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

.footer-col {
  flex: 1;
}

.footer-brand {
  flex: 0 0 35%;
  padding-right: 40px;
}

.footer-brand .ss-brand {
  font-size: 33px;
  font-family: "Manrope", sans-serif;
  color: #fff;
  display: block;
  margin-bottom: 24px;
  line-height: 40px;
}

.footer-brand .ss-dot.red {
  color: #ff2d2d;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #a0a0a0;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 25px;
}

.footer-col ul li a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* BOTTOM BAR */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid #333;
}

.footer-bottom p {
  font-size: 12px;
  color: #a0a0a0;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials img {
  width: 16px;
  filter: brightness(0) invert(1);
  /* Make black icons white */
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-socials img:hover {
  opacity: 1;
}

/* ===== ABOUT PAGE INTRO ===== */
.about-page-intro {
  padding: 50px 0;
  background: #fff;
}

.about-page-heading {
  font-size: 58px;
  font-weight: 600;
  line-height: 1.1;
  color: #000;
  margin-bottom: 50px;
}

.about-page-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #888;
  margin-bottom: 30px;
}

.about-page-text p:last-child {
  margin-bottom: 0;
}

/* ===== EXPERTISE SECTION ===== */
.expertise {
  padding: 50px 0;
  background: rgba(249, 249, 249, 1);
}

.expertise-row {
  display: flex;
  gap: 45px;
  align-items: center;
}

.expertise-left {
  flex: 0 0 42%;
}

.expertise-left img {
  width: 100%;
  height: auto;
  min-height: 520px;
  object-fit: cover;
  border-radius: 24px;
}

.expertise-right {
  flex: 1;
}

.expertise-title {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.1;
  color: #000;
  margin-bottom: 24px;
}

.expertise-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #888;
  margin-bottom: 40px;
}

/* SKILLS LIST */
.skills-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.skill-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.skill-icon {
  width: 64px;
  height: 64px;
  background: #111;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.skill-icon img {
  width: 24px;
  filter: brightness(0) invert(1);
}

.skill-bar-wrapper {
  flex: 1;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.skill-info span:first-child {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.skill-info span:last-child {
  font-size: 14px;
  font-weight: 600;
  color: #666;
}

.skill-bar-bg {
  width: 100%;
  height: 15px;
  background: #efefef;
  border-radius: 20px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  background: #ff2d2d;
  border-radius: 20px;
}

/* ===== MISSION SECTION ===== */
.mission-section {
  padding: 100px 0;
  background: #0b0b0b;
  color: #fff;
}

.mission-row {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}

.mission-left {
  flex: 0 0 35%;
}

.mission-main-title {
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}

.mission-hr {
  border: 0;
  height: 1px;
  background: #fff;
  margin-bottom: 80px;
  width: 100%;
}

.mission-stats {
  margin-top: 20rem;
}

.stat-big {
  display: block;
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.stat-sub {
  font-size: 14px;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* RIGHT GRID */
.mission-right {
  flex: 1;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
}

.mission-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mission-icon {
  font-size: 10px;
  color: #fff;
  margin-bottom: 5px;
}

.mission-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.mission-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* ===== TEAM SECTION ===== */
.team-section {
  padding: 50px 0;
  background: #fff;
}

.team-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.team-header h2 {
  font-size: 52px;
  font-weight: 600;
  color: #000;
  margin: 20px auto 30px;
}

.team-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #888;
}

.team-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.team-member {
  flex: 1;
  text-align: center;
}

.member-pic {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 30px;
}

.pic-placeholder {
  width: 100%;
  height: 100%;
  background: #2a2a2a;
  border-radius: 50%;
}

.member-social {
  position: absolute;
  bottom: 0px;
  right: 15px;
  width: 60px;
  height: 60px;
  background: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #fff;
  transition: background 0.3s;
}

.member-social:hover {
  background: #000;
}

.member-social img {
  width: 20px;
  filter: brightness(0) invert(1);
}

.member-info h3 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

.member-hr {
  border: 0;
  height: 1px;
  background: #eee;
  width: 100%;
  margin: 0 auto 20px;
}

.member-info span {
  font-size: 14px;
  color: #888;
  font-weight: 500;
}



.woman-banner {
  height: 520px;
  background: url("../images/home/woman-banner.svg") center right / cover no-repeat;
  position: relative;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 100px 0;
  background: rgba(249, 249, 249, 1);
  text-align: center;
}

.pricing-header-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.pricing-section h2 {
  font-size: 60px;
  font-weight: 700;
  color: #000;
  margin-bottom: 35px;
  line-height: 1.1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-section .pricing-desc {
  font-size: 17px;
  color: #7b7b7b;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 80px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  padding: 60px 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #f2f2f2;
}

.pricing-card.featured {
  background: #0b0b0b;
  color: #fff;
  border: none;
}

.pricing-card .card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 35px;
}

.pricing-card .card-icon img {
  width: 100%;
  height: auto;
}

.pricing-card.featured .card-icon img {
  filter: brightness(0) invert(1);
}

.pricing-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.pricing-card.featured h3 {
  color: #fff;
}

.pricing-card .card-tagline {
  font-size: 15px;
  color: #7b7b7b;
  margin-bottom: 35px;
}

.pricing-card.featured .card-tagline {
  color: #a0a0a0;
}

.price-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #f2f2f2;
}

.pricing-card.featured .price-box {
  border-bottom-color: #222;
}

.price-box .currency {
  font-size: 42px;
  font-weight: 700;
  margin-right: 5px;
}

.price-box .amount {
  font-size: 64px;
  font-weight: 700;
  margin-right: 10px;
}

.price-box .period {
  font-size: 14px;
  color: #7b7b7b;
}

.pricing-card.featured .period {
  color: #a0a0a0;
}

.pricing-card .benefits-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 25px;
  display: block;
  color: #000;
}

.pricing-card.featured .benefits-title {
  color: #fff;
}

.benefit-list {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
}

.pricing-card.featured .benefit-item {
  color: #fff;
}

.benefit-item .icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
  color: #333;
}

.pricing-card.featured .benefit-item .icon {
  border-color: #444;
  color: #fff;
}

.pricing-btn {
  display: block;
  width: 83%;
  padding: 20px;
  background: #ff3b3b;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  transition: background 0.3s;
}

.pricing-btn:hover {
  background: #e03232;
}

.best-offer-badge {
  position: absolute;
  top: 40px;
  right: 40px;
  background: #fff;
  color: #2ba0ff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 60px 0;
  background: #fff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
}

.contact-left {
  text-align: left;
}

.contact-label {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.contact-left h2 {
  font-size: 53px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.1;
}

.contact-desc {
  font-size: 16px;
  color: #7b7b7b;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 450px;
}

/* CONTACT ITEMS */
.contact-items {
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  background: #1e1e1e;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon-box img {
  width: 20px;
  filter: brightness(0) invert(1);
}

.contact-info h4 {
  font-size: 13px;
  font-weight: 600;
  color: #7b7b7b;
  margin-bottom: 3px;
}

.contact-info p {
  font-size: 20px;
  font-weight: 700;
  color: #ff3b3b;
}

.contact-arrow {
  position: absolute;
  right: 0;
  top: 25px;
  width: 22.77px;
}

/* CONTACT FORM */
.contact-form-container {
  background: #0b0b0b;
  padding: 50px 40px;
  border-radius: 20px;
  color: #fff;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #7b7b7b;
  margin-bottom: 10px;
}

.form-group label span {
  color: #ff3b3b;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #333;
  padding: 8px 0;
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  outline: none;
}

.form-input:focus {
  border-bottom-color: #ff3b3b;
}

textarea.form-input {
  resize: none;
  height: 80px;
  scrollbar-width: none;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ff3b3b;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #e03232;
}

.submit-btn span {
  font-size: 18px;
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-left h2 {
    font-size: 36px;
  }

  .contact-form-container {
    padding: 40px 25px;
  }
}

/* ===== ABOUT LEGACY SECTION ===== */
.about-legacy-section {
  padding: 70px 0;
  background: #fff;
}

.legacy-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;

}

.legacy-top-left {
  flex: 0 0 42%;
}

.legacy-top-right {
  width: 600px;
}

.legacy-top-right img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px 20px 20px 0;
}

.legacy-title {
  font-size: 64px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.1;
}

.legacy-desc {
  font-size: 16px;
  color: #7b7b7b;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 380px;
}

.legacy-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #111;
  color: #fff;
  padding: 18px 35px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.legacy-btn:hover {
  background: #2b2b2b;
}

/* BOTTOM ROW */
.legacy-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.legacy-stats-col {
  flex: 0 0 160px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 10px;
}

.legacy-stat-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 22px;
  border-radius: 12px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.stat-badge.blue {
  background: #2ba0ff;
}

.stat-badge.red {
  background: #ff3b3b;
}

.legacy-stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.legacy-stat-text {
  font-size: 13px;
  font-weight: 600;
  color: #7b7b7b;
}

.legacy-middle-img {
  width: 400px;
}

.legacy-middle-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px 0 20px 20px;
}

.legacy-approach-col {
  flex: 1;
  padding-top: 20px;
}

.approach-module {
  max-width: 400px;
}

.approach-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-top: 3rem;
}

.approach-title-row h3 {
  font-size: 26px;
  font-weight: 600;
  color: #000;
}

.approach-arrow {
  width: 16px;
  transform: rotate(0deg);

  font-size: 10px;
  color: #000;
  position: relative;
  top: 3.5rem;
}

.approach-content p {
  font-size: 15px;
  color: #7b7b7b;
  line-height: 1.7;
  text-align: end;
  margin-top: 4rem;
}

@media (max-width: 1200px) {

  .legacy-top-row,
  .legacy-bottom-row {
    gap: 40px;
  }
}

@media (max-width: 992px) {

  .legacy-top-row,
  .legacy-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .legacy-top-left,
  .legacy-stats-col,
  .legacy-middle-img,
  .legacy-approach-col {
    flex: none;
    width: 100%;
  }
}