:root {
    --navy: #0d1f3c;
    --navy-light: #152b52;
    --gold: #c89a2e;
    --gold-light: #e8b84b;
    --gold-pale: #f5e6c0;
    --white: #ffffff;
    --off-white: #f8f7f3;
    --text: #2c2c2c;
    --text-muted: #6b6b6b;
    --border: #e2ddd4;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
    box-shadow: 0 2px 20px rgba(13,31,60,.07);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
     .nav-logo-img{
    width: 155px; 
    height: 44px; 
    object-fit: cover; 
    border-radius: 10px;
  }
  }
  .nav-logo-icon {
    width: 44px; height: 44px;
    background: var(--navy);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  .nav-logo-text { line-height: 1.1; }
  .nav-logo-text strong {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 20px; color: var(--navy); letter-spacing: .5px;
  }
  .nav-logo-text span {
    font-size: 9px; 
    letter-spacing: 1.8px;
     text-transform: uppercase;
    color: var(--gold);
     font-weight: 600;
  }

  .nav-links {
    display: flex; gap: 32px; list-style: none;
  }
  .nav-links a {
    text-decoration: none; 
    color: var(--navy); 
    font-size: 14px;
    font-weight: 500; 
    letter-spacing: .3px;
    position: relative; 
    padding-bottom: 4px;
    transition: color .2s;
  }
  .nav-links a::after {
    content: ''; 
    position: absolute;
     bottom: 0; left: 0;
    width: 0;
     height: 2px; 
     background: var(--gold);
    transition: width .3s ease;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }
  .nav-links a.active { color: var(--gold); }
  .nav-links a.active::after { width: 100%; }

  .btn-primary {
    background: var(--navy); 
    color: var(--white);
    padding: 11px 22px; 
    border-radius: 8px; 
    border: none;
     cursor: pointer;
    font-family: 'DM Sans', sans-serif; 
    font-weight: 600; 
    font-size: 14px;
    letter-spacing: .3px; 
    text-decoration: none; 
    display: inline-flex;
    align-items: center;
     gap: 8px;
    transition: background .2s, transform .15s;
  }
  .btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); }

  .btn-gold {
    background: var(--gold); 
    color: var(--white);
    padding: 13px 28px; 
    border-radius: 8px; 
    border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
     font-weight: 600; font-size: 15px;
    text-decoration: none; 
    display: inline-flex; 
    align-items: center;
     gap: 8px;
    transition: background .2s, transform .15s, box-shadow .2s;
  }
  .btn-gold:hover { background: var(--gold-light); 
    transform: translateY(-2px); 
    box-shadow: 0 8px 24px rgba(200,154,46,.3); }

  .btn-outline {
    background: transparent; 
    color: var(--white);
    padding: 13px 28px; 
    border-radius: 8px; 
    border: 2px solid rgba(255,255,255,.5);
    cursor: pointer; 
    font-family: 'DM Sans', sans-serif; 
    font-weight: 600; 
    font-size: 15px;
    text-decoration: none; 
    display: inline-flex; 
    align-items: center;
     gap: 8px;
    transition: border-color .2s, background .2s;
  }
  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

  /* ── HERO ── */
  .hero {
    margin-top: 68px;
    background: var(--navy);
    min-height: 88vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 5%;
    position: relative; 
  
  }
  .hero::before {
    content: '';
    position: absolute; 
    bottom: -1px; left: 0; 
    right: 0; 
    height: 80px;
    background: var(--white);
    clip-path: ellipse(60% 100% at 30% 100%);
  }
  .hero-bg-circle {
    position: absolute;
     right: -100px; 
     top: -100px;
    width: 600px;
     height: 600px; 
     border-radius: 50%;
    background: radial-gradient(circle, rgba(200,154,46,.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-bg-dots {
    position: absolute; left: 0; bottom: 0; top: 0;
    width: 100%; pointer-events: none; opacity: .04;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 28px 28px;
  }

  .hero-content { position: relative; z-index: 2; }
  .hero-tagline {
    font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold); font-weight: 700; margin-bottom: 20px;
  }
  .hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800; 
    color: var(--white);
    line-height: 1.15; 
    margin-bottom: 24px;
  }
  .hero-headline em { color: var(--gold); font-style: normal; }

  .hero-sub {
    color: rgba(255,255,255,.72);
     font-size: 16px;
    line-height: 1.7; max-width: 440px; margin-bottom: 40px;
  }
  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

  

  
  .hero-img-overlay {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
  }
 .hero-img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-mug-img {
  width: 400%;
  max-width: 700x;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}
    
    
  

  .hero-books {
    display: flex; gap: 8px; margin-top: 8px;
  }
  .book {
    padding: 6px 12px; font-size: 9px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; border-radius: 4px; writing-mode: vertical-rl;
    text-orientation: mixed; transform: rotate(180deg); height: 90px;
    display: flex; align-items: center; justify-content: center;
  }
  .book-1 { background: #1e3a6e; color: #a8c8ff; }
  .book-2 { background: #2d1a0e; color: #ffb574; }
  .book-3 { background: #0d2e1a; color: #7dd4a8; }

  .hero-badge {
    position: absolute; bottom: -16px; left: -16px;
    background: var(--gold); color: var(--white);
    border-radius: 12px; padding: 12px 16px;
    font-size: 12px; font-weight: 700; text-align: center;
    box-shadow: 0 8px 24px rgba(200,154,46,.4);
    line-height: 1.3;
  }

  /* ── SECTION HEADER ── */
  .section-label {
    font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold); font-weight: 700; margin-bottom: 12px;
    text-align: center;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700;
    color: var(--navy); text-align: center; margin-bottom: 8px;
  }
  .section-divider {
    width: 48px; height: 3px; background: var(--gold);
    margin: 0 auto 48px; border-radius: 2px;
  }

  /* ── SERVICES ── */
  .services {
    padding: 80px 5%;
    background: var(--white);
  }

  .services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    max-width: 1200px; margin: 0 auto;
  }

  .service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 32px 24px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative; overflow: hidden;
  }
  .service-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s ease;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(13,31,60,.1);
    border-color: var(--gold-pale);
  }
  .service-card:hover::after { transform: scaleX(1); }

  .service-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 20px;
  }
  .icon-navy { background: var(--navy); }
  .icon-gold { background: var(--gold); }

  .service-num {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); font-weight: 700; margin-bottom: 6px;
  }
  .service-title {
    font-family: 'Playfair Display', serif; font-size: 16px;
    color: var(--navy); font-weight: 700; margin-bottom: 16px;
    line-height: 1.3;
  }
  .service-divider {
    width: 32px; height: 2px; background: var(--gold);
    margin-bottom: 16px; border-radius: 1px;
  }

  .service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .service-list li {
    font-size: 13px; color: var(--text-muted); line-height: 1.5;
    display: flex; gap: 8px; align-items: flex-start;
  }
  .service-list li::before {
    content: '✓';
    color: var(--gold); font-weight: 700; font-size: 12px;
    flex-shrink: 0; margin-top: 1px;
  }

  /* ── WHY CHOOSE US ── */
  .why {
    padding: 80px 5%;
    background: var(--off-white);
    display: grid; grid-template-columns: 1fr 2fr; gap: 60px;
    align-items: center; max-width: 1400px; margin: 0 auto;
  }

  .why-left {
    background: var(--navy);
    border-radius: 20px; padding: 48px 36px;
    position: relative; overflow: hidden;
  }
  .why-left::before {
    content: '';
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=600&q=60') center/cover;
    opacity: .12;
  }
  .why-trophy {
    font-size: 48px; margin-bottom: 20px; position: relative;
  }
  .why-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; color: var(--white); font-weight: 700;
    line-height: 1.2; margin-bottom: 16px; position: relative;
  }
  .why-sub {
    font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.6; position: relative;
  }

  .why-right h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; color: var(--navy); font-weight: 700;
    margin-bottom: 8px; letter-spacing: .5px;
  }
  .why-label {
    font-size: 11px; letter-spacing: 2.5px; color: var(--gold);
    text-transform: uppercase; font-weight: 700; margin-bottom: 24px;
    display: block;
  }

  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .why-item {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--white); border-radius: 12px; padding: 20px;
    border: 1px solid var(--border);
    transition: box-shadow .2s;
  }
  .why-item:hover { box-shadow: 0 8px 24px rgba(13,31,60,.08); }
  .why-item-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--off-white);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .why-item h4 {
    font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px;
  }
  .why-item p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

  /* ── CONTACT ── */
  .contact {
    padding: 80px 5%;
    max-width: 900px; margin: 0 auto;
  }
  .contact .section-title { margin-bottom: 6px; }
  .contact-sub {
    text-align: center; color: var(--text-muted); font-size: 15px; margin-bottom: 40px;
  }

  .contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px; padding: 40px;
    box-shadow: 0 4px 40px rgba(13,31,60,.06);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group label { font-size: 12px; font-weight: 600; color: var(--navy); letter-spacing: .5px; }
  .form-group input,
  .form-group textarea {
    border: 1.5px solid var(--border);
    border-radius: 8px; padding: 12px 16px;
    font-family: 'DM Sans', sans-serif; font-size: 14px;
    color: var(--text); outline: none;
    transition: border-color .2s, box-shadow .2s;
    background: var(--off-white);
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: #b0aaa0; }
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,154,46,.12);
    background: var(--white);
  }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-submit { text-align: center; margin-top: 24px; }
  .btn-submit {
    background: var(--gold); color: var(--white);
    padding: 14px 40px; border-radius: 8px; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 16px;
    display: inline-flex; align-items: center; gap: 10px;
    transition: background .2s, transform .15s, box-shadow .2s;
    letter-spacing: .3px;
  }
  .btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200,154,46,.35); }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    padding: 50px 5% 24px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px; max-width: 1200px; margin: 0 auto 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .footer-brand strong {
    font-family: 'Playfair Display', serif;
    font-size: 22px; color: var(--white); display: block; margin-bottom: 4px;
  }
  .footer-brand span {
    font-size: 9px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase;
    font-weight: 700; display: block; margin-bottom: 16px;
  }
  .footer-brand p {
    font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 20px;
  }
  .footer-contact-item {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 10px;
    text-decoration: none; transition: color .2s;
  }
  .footer-contact-item:hover { color: var(--gold); }
  .contact-icon {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; flex-shrink: 0;
  }
  .ci-phone { background: rgba(255,255,255,.1); }
  .ci-wa { background: #25d366; }
  .ci-mail { background: #ea4335; }

  .footer-cta h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; color: var(--gold); font-weight: 700; margin-bottom: 8px;
  }
  .footer-cta p {
    font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 20px;
  }

  .footer-logo-wrap {
    display: flex; align-items: flex-start; justify-content: flex-end;
  }
  .footer-logo-circle {
    width: 100px; height: 100px; background: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    font-size: 36px;
  }

  .footer-bottom {
    text-align: center;
    font-size: 12px; color: rgba(255,255,255,.35); letter-spacing: .3px;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-content { animation: fadeUp .8s ease both; }
  .hero-image-wrap { animation: fadeUp .8s .2s ease both; }

  .service-card { animation: fadeUp .6s ease both; }
  .service-card:nth-child(1) { animation-delay: .05s; }
  .service-card:nth-child(2) { animation-delay: .1s; }
  .service-card:nth-child(3) { animation-delay: .15s; }
  .service-card:nth-child(4) { animation-delay: .2s; }

  /* Scroll reveal */
  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding: 60px 5%; }
    .hero-image-wrap { display: none; }
    .hero-sub { max-width: 100%; }
    .hero-ctas { justify-content: center; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why { grid-template-columns: 1fr; padding: 60px 5%; }
    .why-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
  }
 
  .footer-logo-img{
    width: 180px; 
    height: 180px; 
    object-fit: cover; 
    border-radius: 50%;
  }
   .footer-logo-img{
    width: 300px; 
    height: 270px; 
    object-fit: cover; 
    border-radius: 50%;
  }
.reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}
/* ── STATS SECTION ── */
.stats-section {
  background: #fff;
  padding: 60px 5%;
  border-top: 1px solid #eee;
}

.stats-divider-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}

.stats-divider-line {
  height: 2px;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.stats-divider-line.right {
  background: linear-gradient(to left, transparent, var(--gold));
}

.stats-label-inline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  border: 1.5px solid #e8e8e8;
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.stat-card:hover {
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.10);
  transform: translateY(-3px);
}

.stat-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.7rem;
}

.icon-navy-bg { background: var(--navy); }
.icon-gold-bg  { background: var(--gold); }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-number span { color: var(--gold); }

.stat-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.stat-sub {
  font-size: 0.78rem;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   MOBILE MENU
========================= */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 60px 5%; }
  .hero-img-box { display: none; }   /* ← was .hero-image-wrap */
  .hero-sub { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  /* rest stays the same... */
}

.menu-toggle {
  display: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--secondary-color);
}

/* MOBILE */
@media (max-width: 768px) {

  nav {
    position: relative;
  }

  .menu-toggle {
    display: block;
  }

  .btn-primary {
    display: none;
  }

  .nav-links {
    display: none;

    position: absolute;
    top: 100%;
    right: 0;

    width: 100%;
    background: white;

    flex-direction: column;
    align-items: center;

    padding: 20px 0;
    gap: 20px;

    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
  }

}