/* reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html,body { height: 100%; }

body{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:#0b0b0b;
  background:#fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ===== HEADER ===== */
.main-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1200;
  background: transparent; /* keeps hero visible behind header */
}

.logo-img {
  height: 100px; /* adjust to your logo */
  display: block;
}

/* NAV - white text to be visible on gradient banner */
.nav a{
  margin: 0 18px;
  text-decoration: none;
  color: #fff;   /* white nav text as requested */
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: opacity .18s ease;
  font-size: 15px;
}
.nav a:hover { opacity: .85; }
.nav a.active { text-decoration: underline; text-underline-offset: 8px; color: #fff; }

/* CTA button - white border & text */
.cta{
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  background: transparent;
  transition: all .18s ease;
}
.cta:hover{
  background: rgba(255,255,255,0.06);
}

/* Add top spacing so content isn't hidden behind fixed header */
.work-hero, .logo-strip, .projects-section { padding-top: 24px; }

/* ===== HERO / BANNER ===== */
.work-hero{
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6%;
  background: linear-gradient(
    180deg,
    #A5DBFF 0%,   /* darker sky blue at top */
    #D6F3FF 45%,  /* lighter blend mid */
    #FFFFFF 100%  /* fades to white bottom */
  );
}




/* Left big heading */
.work-hero-left h1{
  font-size: clamp(36px, 6vw, 86px);
  line-height: 0.95;
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  max-width: 720px;
}

/* Right logo + partner */
.work-hero-right{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* hero logo — use your real image at images/raynine.png */
.hero-logo{
  width: 180px;
  max-width: 36vw;
  height: auto;
  display: block;
}

/* plus and partner text */
.hero-plus{
  font-size: 44px;
  font-weight: 700;
  color: #000;
}
.hero-partner{
  font-size: 18px;
  color: #111;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ===== CLIENT LOGO STRIP ===== */
.logo-strip{
  background: #fff;
  padding: 36px 6%;
  overflow: hidden;
  border-top: 1px solid rgba(11,11,11,0.04);
  border-bottom: 1px solid rgba(11,11,11,0.04);
}

.logos{
  display: inline-flex;
  gap: 56px;
  align-items: center;
  animation: scroll-left 18s linear infinite;
  /* make the strip visually centered */
  padding-bottom: 4px;
}

/* logos style */
.logos img{
  height: 100px;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: filter .25s, opacity .25s, transform .25s;
}
.logos img:hover{
  filter: none;
  opacity: 1;
  transform: translateY(-3px);
}

/* scroll animation */
@keyframes scroll-left{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PROJECTS (B&W minimal look) ===== */
.projects-section{
  padding: 80px 6% 120px;
  background: #fff;
  text-align: center;
}

.projects-section h2{
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #000;
}

/* grid */
.projects-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* card */
.project-card{
  text-align: left;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.project-card img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: grayscale(100%); /* black & white look */
  transition: filter .35s ease, transform .35s ease;
}

.project-card:hover img{
  filter: grayscale(0%);
  transform: scale(1.03);
}

.project-card h3{
  font-size: 20px;
  margin: 14px 0 6px;
  color: #000;
  font-weight: 700;
}

.project-card p{
  color: #4b4b4b;
  font-size: 14px;
  margin-bottom: 18px;
}

/* ==== Responsive tweaks ==== */
@media (max-width: 900px){
  .projects-grid{ grid-template-columns: 1fr; }
  .work-hero{ padding: 36px 5%; align-items: flex-end; }
  .work-hero-right{ margin-bottom: 40px; }
  .logos{ gap: 36px; }
}

@media (max-width: 520px){
  .nav a { margin: 0 10px; font-size: 14px; }
  .hero-plus { font-size: 34px; }
  .hero-logo { width: 120px; }
}
/* ===== Footer Section ===== */
.footer-section {
  background: linear-gradient(to bottom, #6c4af2, #ffffff);
  padding: 80px 20px 0;
  text-align: center;
}

.footer-box {
  background: #ffffff;
  max-width: 600px;
  margin: auto;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.footer-box h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-box p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #444;
}

.footer-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #6c4af2;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 15px;
  transition: 0.3s;
}

.footer-btn:hover {
  opacity: 0.85;
}

/* Black Strip */
.footer-bottom {
  background: #000;
  color: #fff;
  margin-top: 60px;
  padding: 18px 0;
  font-size: 14px;
  letter-spacing: 0.5px;
}
