:root {
  --primary-dark: #04275e;
  --primary-light: #185ccc;
  --text-color: #ffffff;
}

html,
body {
  overflow-x: hidden;
}
body {
  margin: 0;
  color: var(--text-color);
  font-family: "Manrope", sans-serif;
  background: linear-gradient(
    135deg,
    #05214e 0%,
    #0d3a7c 25%,
    #1556b8 40%,
    #021027 100%

  );
}

/* .btn-primary {
  background: #ffffff;
  color: #04275e;
  padding: 12px 26px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
} */

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding-left: 170px;
  padding-right: 170px;
  padding-top: 150px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -50px; /* move line lower */
  left: 170px; /* match your left padding */
  right: 170px; /* match your right padding */
  height: 1.75px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
}

.hero h1 {
  font-size: 75px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 30px;
  max-width: 420px;
  margin-top: 120px;
}

.hero p {
  max-width: 500px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 50px;
  margin-top: 20px;
}

.hero-content {
  max-width: 50%;
  z-index: 2;
}

.hero-images img {
  max-width: 520px; /* base image size */
  height: auto;
  top: 70px;
}
.hero-images {
  position: relative;
  width: 650px;
  height: 650px;
  margin-right: -100px;
  padding-right: 0;
  /* remove flexbox */
}

/* Base image (under image) */
.img-base {
  position: absolute; /* absolute allows free placement */
  left: 25px; /* adjust horizontal position */
  bottom: 20px; /* increase this to move the base image down */
  width: 520px; /* size of base image */
  height: auto;
  z-index: 1;
  padding-top: 33px;
}

/* Overlay image (top image) */
.img-overlay {
  position: absolute;
  right: 80px; /* horizontal position */
  top: 50px; /* vertical position */
  width: 520px; /* size of top image */
  height: auto;
  z-index: 2;
}

.btn-hero {
  background: #ffffff;
  color: #062a63;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 18px;
  display: inline-block;
  margin-top: 25px;

  /* 🔥 The slight left shift */
  transform: translateX(-1604px);

  /* Smooth animation */
  transition: all 0.25s ease;
}

.btn-hero:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateX(-114px) translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.expertise-section {
  padding: 120px 0;
  margin-bottom: -155px;
}

.expertise-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.expertise-text {
  max-width: 480px;
  margin-left: -100px;
  margin-bottom: -70px;
}

.expertise-text p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: black;
}
.expertise-image .img-overlay {
  width: 140%; /* bigger than container */
  max-width: none; /* remove any previous constraints */
  transform: translateX(190px) translateY(20px); /*  x move right 30px and y down 40px */
  z-index: 2; /* keep it on top */
}

/* Flip the base image horizontally in Expertise section */
.expertise-image .img-base {
  transform: translateY(-70px); /*  x move right 30px and y down 40px */
  transform: scaleX(-1); /* horizontal flip */
}

/* ==== LOCAL MANROPE FONT ==== */
@font-face {
  font-family: "Manrope";
  src: url("../assets/font/manrope font/Manrope/static/Manrope-ExtraLight.ttf")
    format("truetype");
  font-weight: 200;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/font/manrope font/Manrope/static/Manrope-Light.ttf")
    format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/font/manrope font/Manrope/static/Manrope-Regular.ttf")
    format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/font/manrope font/Manrope/static/Manrope-Medium.ttf")
    format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/font/manrope font/Manrope/static/Manrope-SemiBold.ttf")
    format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/font/manrope font/Manrope/static/Manrope-Bold.ttf")
    format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/font/manrope font/Manrope/static/Manrope-ExtraBold.ttf")
    format("truetype");
  font-weight: 800;
}

/* services style */
/* --------------------
  
   EXPERTISE SECTION
----------------------- */

.expertise-section {
  padding: 140px 0;
  color: #04275e;
}

.expertise-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 40px;
}

.expertise-text h2 {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 28px;
  color: #fff;
}

.expertise-text p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 42px;
  max-width: 520px;
  color: #fff;
}
/* expertise image */
.expertise-image img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
}


/* CTA Button */
.cta-dark {
  background: #04275e;
  color: #fff;
  padding: 16px 48px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.25s;
}
.cta-dark:hover {
  background: #155abe;
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.service-ksa {
  color: #ffffff;
  padding: 80px 20px;
}

.service-ksa .container {
  max-width: 1100px;
  margin: 0 auto;
}

.service-ksa h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-ksa h3 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.service-ksa p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.service-ksa .cta-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.service-ksa .cta-buttons button {
  background-color: #04275e;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.service-ksa .cta-buttons button:hover {
  background-color: #063a80;
}

.service-ksa .find-us {
  margin-top: 30px;
}

.service-ksa .find-us-btn {
  background-color: #0e4e9e;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.service-ksa .find-us-btn:hover {
  background-color: #063a80;
}

.service-ksa .spa-services {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-ksa .spa-services li {
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  border-radius: 8px;
  flex: 1 1 calc(50% - 20px);
  max-width: calc(50% - 20px);
  text-align: center;
}

/* service page special edits */

/* Strong override: hide hero divider for any hero with .no-line */
.hero.no-line::after {
  display: none !important;
  height: 0 !important;
  background: transparent !important;
  content: "" !important; /* keep empty */
  visibility: hidden !important;
}

/* Hide hero divider only on services page */
.services-page .hero::after {
  display: none !important;
  height: 0 !important;
  background: transparent !important;
  visibility: hidden !important;
}

/* Nail section style */
.nail-content h1 {
  font-size: 55px;
  line-height: 1.12;
  font-weight: 500;
  margin-bottom: 25px;
  color: #ffffff;
}

.nail-content p {
  max-width: 480px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.45;
  margin-bottom: 40px;
  color: #ffffff;
}

/* image box for nail section */
.nail-image-box {
  position: relative;
  width: 560px;
  height: auto;
  padding: 0;
  margin-left: 60px;
}

.nail-img {
  width: 94%;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
  position: relative;
  right: -40px; /* slight luxury push */
  top: 60px;
}
