
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0b0b0f;
  --card: #15151c;
  --accent: #287d85;
  --gold: #536aa8;
  --text: #f5f5f7;
  --muted: #b3b3b8;
  --border: #24242c;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  color: white;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}


header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,11,15,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  color: white;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  color:white;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 42px;
}

.site-title {
  font-size: 22px;
  letter-spacing: 1px;
}

.nav-links a {
  margin-left: 14px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
}

.nav-links .cta {
  padding: 8px 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #000;
  font-weight: 600;
}


.hero {
  height: 75vh;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.6), var(--bg)),
    url("XYra images/hero.jpg") center/cover no-repeat;
}

.hero-inner {
  margin-top: -45vh;
  padding-bottom: 60px;
}

.hero-inner h1 {
  font-size: 44px;
  max-width: 650px;
}

.hero-inner p {
  margin-top: 12px;
  max-width: 520px;
  line-height: 1.6;
  color: var(--muted);
}


#reel {
  margin: 60px auto;
}


.reel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
}

.reel::-webkit-scrollbar {
  height: 6px;
}
.reel::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

.profile-card {
  flex: 0 0 auto;
  width: 300px;
  aspect-ratio: 9 / 16;  
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: #000;
  scroll-snap-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.profile-card:hover {
  transform: scale(1.06);
  box-shadow: 0 20px 60px rgba(120, 218, 238, 0.45);
}

.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;     
  object-position: center;
  display: block;
}


.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0,0,0,0.25),
    transparent
  );
}

.profile-action {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.profile-action button {
  padding: 10px 20px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.profile-action .call {
  background: var(--gold);
  color: #000;
}

.profile-action .chat {
  background: var(--accent);
  color: #fff;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.profile-card {
  animation: float 6s ease-in-out infinite;
}


.page-box {
  background: var(--card);
  padding: 34px;
  border-radius: 18px;
  max-width: 420px;
  width: 90%;
  margin: 90px auto;
  box-shadow: 0 0 50px rgba(0,0,0,0.6);
}

.page-box h1 {
  margin-bottom: 20px;
}

.page-box p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}

input, select {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0b0b0f;
  color: var(--text);
}


.btn {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color:white;
  font-weight: bold;
}


footer {
  border-top: 1px solid var(--border);
  margin-top: 80px;
}

.site-footer {
  text-align: center;
  padding: 24px;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .hero-inner h1 {
    font-size: 32px;
  }

  .profile-card {
    width: 240px;
  }
}

.hero.image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero.image img {
  width: 100vw;          
  height: 80vh;          
  object-fit: cover;     
  object-position: center;
  display: block;

  
  margin-left: calc(-50vw + 50%);
}


.hero-actions {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.cta{
    color:white;
}

.profile-action button {
  color: #ffffff;   
}







