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

body{
font-family:'Inter',sans-serif;
background:#f7f8fa;
color:#0f172a;

/* 🔥 FONT SHARPNESS FIX */
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
text-rendering:optimizeLegibility;
}

/* improve text contrast */
h1,h2,h3{
color:#0b1324;
}

p{
color:#4b5563; /* slightly stronger than #555 */
}

/* container */
.container{
max-width:1180px;
margin:auto;
padding:0 24px;
}

/* NAV */
.nav{background:#fff;border-bottom:1px solid #eee;}
.nav-inner{display:flex;justify-content:space-between;align-items:center;padding:18px 0;}
.logo{
font-family:'Playfair Display';
font-size:28px;
font-weight:700;
letter-spacing:0.5px;
}
.nav-links a{
margin:0 16px;
color:#1f2937; /* sharper */
font-weight:500;
}
.nav-right{display:flex;gap:16px;align-items:center;}

button{border:none;cursor:pointer;font-weight:600;}
.btn-gold{
background:#caa15a;
padding:12px 26px;
border-radius:8px;
}
.btn-dark{
background:#0f172a;
color:#fff;
padding:12px 26px;
border-radius:8px;
}

/* HERO */
.hero{
position:relative;
padding:110px 0;
overflow:hidden;

background:
linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(0,0,0,0.02) 100%),
linear-gradient(120deg,#f8f6f2 55%,#f1ede6 100%);
}

.hero::before{
content:"";
position:absolute;
top:0;
right:0;
width:60%;
height:100%;
background:linear-gradient(120deg, transparent 40%, rgba(0,0,0,0.04) 100%);
clip-path:polygon(25% 0,100% 0,100% 100%,0% 100%);
}
/*
.hero::after{
content:"";
position:absolute;
right:90px;
bottom:-25px;
width:3px;
height:460px;
background:linear-gradient(to bottom,#d4af6a,#b88a3b);
opacity:0.95;
transform:rotate(34deg);
transform-origin:bottom;
}
*/

.hero h1{
font-family:'Playfair Display';
font-size:64px;
line-height:1.05;
margin-bottom:16px;
letter-spacing:-0.5px; /* sharper */
}

.hero p{
margin-bottom:24px;
}

.hero-btns{display:flex;gap:14px;}

/* SERVICES */
.services{padding:80px 0;text-align:center;}
.services h2{
font-family:'Playfair Display';
margin-bottom:50px;
}

.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.card{
background:#fff;
padding:30px;
border-radius:12px;
border:1px solid #e5e7eb;
}

.card h3{
font-weight:600;
color:#111827;
}

.card p{
font-size:14px;
}

/*.card i{
color:#caa15a;
margin-bottom:10px;
}*/
.card i,
.card svg {
color:#caa15a;
}
/* WHY */
.why{
padding:60px 0 40px;
border-top:1px solid #eee;
border-bottom:1px solid #eee;
}

.why h2{
font-family:'Playfair Display';
margin-bottom:30px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.why-item{
display:flex;
gap:12px;
align-items:flex-start;
}

.why-item strong{
color:#111827;
}

.why-item i{
color:#caa15a;
margin-top:4px;
}

.why-item p{
font-size:13px;
color:#6b7280;
margin-top:4px;
}

/* WORK */
.work{padding:80px 0;}

.work-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

.work-left h2{
font-family:'Playfair Display';
margin-bottom:16px;
}

.work-left ul{
line-height:2.2;
color:#374151;
}

.form-box{
background:#fff;
padding:26px;
border-radius:12px;
border:1px solid #eee;
}

.form-box input,
.form-box textarea{
width:100%;
padding:12px;
margin-bottom:12px;
border:1px solid #ddd;
border-radius:8px;
font-family:'Inter';
}

.full{width:100%;}

/* FOOTER */
.footer{
background:linear-gradient(135deg,#0b1a2b,#132c47);
color:#fff;
padding:36px 0 18px;
}

.footer-top{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}

.footer-col h4{
font-size:18px;
margin-bottom:12px;
}

.footer-col p{
font-size:14px;
color:#d1d5db;
margin-bottom:10px;
display:flex;
align-items:center;
gap:10px;
}

.footer-col i{
color:#caa15a;
font-size:14px;
min-width:16px;
}

.footer-divider{
margin-top:18px;
border-top:1px solid rgba(255,255,255,0.1);
}

.footer-bottom{
text-align:center;
margin-top:12px;
font-size:13px;
color:#cbd5e1;
}
/* ========================= */
/* MICRO POLISH (HOVER + UI) */
/* ========================= */

/* buttons */
button{
transition:all 0.25s ease;
}

.btn-gold:hover{
transform:translateY(-1px);
box-shadow:0 6px 16px rgba(202,161,90,0.25);
}

.btn-dark:hover{
transform:translateY(-1px);
box-shadow:0 6px 16px rgba(15,23,42,0.25);
}

/* cards */
.card{
transition:all 0.25s ease;
}

.card:hover{
transform:translateY(-4px);
box-shadow:0 12px 30px rgba(0,0,0,0.08);
border-color:#e2e8f0;
}

/* why section items */
.why-item{
transition:all 0.2s ease;
}

.why-item:hover{
transform:translateY(-2px);
}

/* form */
.form-box{
transition:all 0.25s ease;
box-shadow:0 4px 14px rgba(0,0,0,0.04);
}

.form-box:hover{
box-shadow:0 10px 28px rgba(0,0,0,0.08);
}

/* inputs */
.form-box input,
.form-box textarea{
transition:all 0.2s ease;
}

.form-box input:focus,
.form-box textarea:focus{
outline:none;
border-color:#caa15a;
box-shadow:0 0 0 3px rgba(202,161,90,0.15);
}

/* nav links */
.nav-links a{
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:0;
  height:2px;
  background:#caa15a;
  transition:all 0.3s ease;
  transform:translateX(-50%);
}

.nav-links a:hover::after{
  width:70%;
}

/* footer hover */
.footer-col p{
transition:all 0.2s ease;
}

.footer-col p:hover{
color:#fff;
transform:translateX(2px);
}
/* ========================= */
/* ICON ALIGN FIX (STRICT)   */
/* ========================= */

/* SERVICES ICONS */
.card i{
display:flex;
align-items:center;
justify-content:center;

width:42px;
height:42px;

margin:0 auto 14px;  /* center + spacing */
font-size:20px;
}

/* WHY SECTION ICONS */
.why-item i{
display:flex;
align-items:center;
justify-content:center;

width:26px;
height:26px;

font-size:14px;
margin-top:2px; /* micro alignment with text */
}

/* FOOTER ICONS */
.footer-col i{
display:inline-flex;
align-items:center;
justify-content:center;

width:18px;
height:18px;
}
/* ========================= */
/* LUCIDE PERFECT ALIGN FIX  */
/* ========================= */

.card svg{
width:34px;
height:34px;
stroke:#caa15a;
stroke-width:1.8;

display:block;
margin:0 auto 14px; /* center perfectly */
}

.why-item svg{
width:18px;
height:18px;
stroke:#caa15a;
stroke-width:1.8;

margin-top:3px; /* aligns with text baseline */
}

.footer-col svg{
width:16px;
height:16px;
stroke:#caa15a;
stroke-width:1.8;
}
.nav-links{
margin-left:auto;
}
/* ABOUT SECTION */
.about{
  padding:90px 0;
  text-align:center;
}

/* Heading */
.about h1{
  font-family:'Playfair Display', serif;
  font-size:48px;
  font-weight:700;
  letter-spacing:-0.5px;
  margin-bottom:28px;
  color:#0f172a;
}

/* Paragraphs */
.about p{
  max-width:780px;
  margin:0 auto 20px;
  font-size:17px;
  line-height:1.85;
  color:#334155;
  font-weight:400;
}

/* Bullet section */
.about ul{
  margin-top:30px;
  display:inline-block;
  text-align:left;
  padding-left:0;
}

.about ul li{
  list-style:none;
  font-size:16px;
  margin-bottom:10px;
  color:#0f172a;
  font-weight:500;
  position:relative;
  padding-left:22px;
}

/* premium bullet */
.about ul li::before{
  content:"";
  width:6px;
  height:6px;
  background:#caa15a;
  border-radius:50%;
  position:absolute;
  left:0;
  top:9px;
}
/*
.about{
padding:80px 0;
text-align:center;
}

.about h1,
.about h2{
font-family:'Playfair Display';
margin-bottom:20px;
}

.about p{
max-width:700px;
margin:0 auto 16px;
line-height:1.8;
}

.about ul{
margin-top:20px;
list-style:none;
}

.about ul li{
margin-bottom:8px;
}
*/
/* ABOUT POPUP */

.about-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
display:none;
align-items:center;
justify-content:center;
z-index:999;
}

.about-box{
background:#fff;
padding:40px;
border-radius:12px;
max-width:600px;
width:90%;
text-align:center;
position:relative;
box-shadow:0 20px 60px rgba(0,0,0,0.2);
}

.about-box h2{
font-family:'Playfair Display';
font-size:32px;
margin-bottom:16px;
font-weight:700;
letter-spacing:-0.3px;
}

.about-box p{
font-size:16px;
line-height:1.8;
margin-bottom:24px;
color:#374151;
}

.about-box .close{
position:absolute;
top:12px;
right:16px;
font-size:22px;
cursor:pointer;
color:#888;
}
/* ABOUT PAGE TYPOGRAPHY BOOST */

.about h1{
font-size:48px;
font-weight:700;
letter-spacing:-0.5px;
}

.about p{
font-size:17px;
line-height:1.9;
color:#374151;
}

.about ul li{
font-size:16px;
font-weight:500;
}
.highlight{
box-shadow:0 0 0 3px rgba(202,161,90,0.4);
transition:0.3s;
}
/* WHATSAPP POPUP */

.wa-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
display:none;
align-items:center;
justify-content:center;
z-index:999;
}

.wa-box{
background:#fff;
padding:30px;
border-radius:12px;
width:400px;
position:relative;
text-align:center;
}

.wa-box textarea{
width:100%;
height:120px;
padding:12px;
margin:15px 0;
border:1px solid #ddd;
border-radius:8px;
}

.wa-box .close{
position:absolute;
top:10px;
right:15px;
cursor:pointer;
font-size:20px;
}
.wa-icon{
  color:#caa15a;
  font-size:16px;
}
.li-icon{
  color:#caa15a;
  font-size:16px;
}
.logo img{
  height:40px;
  object-fit:contain;
}
.about-page .footer{
  padding:8px 0;
}

/* ========================= */
/* EPUB PAGE (FINAL CLEAN)   */
/* ========================= */

.epub-page .hero{
  padding:55px 0 45px;
}

.epub-page .hero h1{
  font-size:44px;
  line-height:1.1;
  margin-bottom:10px;
}

.epub-page .hero p{
  font-size:15.5px;
  margin-bottom:0;
}

/* sections */
.epub-page section{
  text-align:center;
  padding:48px 0;
}

.epub-page section + section{
  padding-top:28px;
}

/* headings */
.epub-page section h2{
  font-family:'Playfair Display', serif;
  font-size:30px;
  margin-bottom:12px;
}

/* paragraphs */
.epub-page section p{
  font-size:15.5px;
  line-height:1.65;
  color:#475569;
  max-width:760px;
  margin:0 auto 14px;
}

/* cards */
.epub-page .cards{
  gap:18px;
  margin-top:20px;
}

.epub-page .card{
  padding:22px;
}

/* lists */
.epub-page ul{
  margin-top:16px;
  line-height:1.75;
}

/* industries */
.epub-page .industries{
  margin-top:8px;
  font-size:14.5px;
}
.process-flow{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin-top:30px;
}

.step{
  text-align:center;
  min-width:90px;
}

.circle{
  width:44px;
  height:44px;
  border-radius:50%;
  background:#0f172a;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  margin:0 auto 8px;
}
.circle svg{
  width:18px;
  height:18px;
  stroke:#fff;
  stroke-width:2;
}
.step p{
  font-size:14px;
  color:#334155;
}

.line{
  height:2px;
  width:40px;
  background:#caa15a;
}
.epub-page .why h2{
  text-align:center;
  margin-bottom:25px;
}
.industries-grid{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:40px;
  margin-top:25px;
}

.industry{
  text-align:center;
  transition:0.25s ease;
}

.industry svg{
  width:28px;
  height:28px;
  stroke:#caa15a;
  margin-bottom:8px;
}

.industry p{
  font-size:14px;
  color:#334155;
}

.industry:hover{
  transform:translateY(-4px);
}
.card i{
  width:28px;
  height:28px;
  stroke:#caa15a;   /* your gold theme */
  stroke-width:2;
  margin-bottom:10px;
  display:block;
}
.epub-page .footer{
  padding:8px 0;
}
.industry span{
  display:block;
  font-size:12.5px;
  color:#64748b;
  margin-top:4px;
}
.section-title{
  font-family:'Playfair Display', serif;
  font-size:32px;
  text-align:center;
  margin-bottom:8px;
}

.section-sub{
  text-align:center;
  font-size:14px;
  color:#64748b;
  margin-bottom:30px;
}

/* make it less dull */
.industry{
  text-align:center;
  transition:all 0.25s ease;
}

/* icon pop */
.industry i{
  color:#caa15a;
  width:26px;
  height:26px;
  margin-bottom:8px;
  transition:transform 0.25s ease;
}

/* hover effect (premium feel) */
.industry:hover{
  transform:translateY(-4px);
}

.industry:hover i{
  transform:scale(1.15);
}

/* title stronger */
.industry p{
  font-weight:600;
  margin-bottom:4px;
}

/* use-case line cleaner */
.industry span{
  display:block;
  font-size:13px;
  color:#64748b;
  line-height:1.5;
}
/* ================= MOBILE FIX ================= */
@media (max-width: 768px){

  /* Container padding */
  .container{
    padding: 0 16px;
  }

  /* HERO */
  .hero{
    padding: 40px 0 30px;
    text-align: center;
  }

  .hero h1{
    font-size: 28px;
    line-height: 1.2;
  }

  .hero p{
    font-size: 14px;
  }

  /* HEADINGS */
  h2{
    font-size: 24px !important;
  }

  /* CARDS → STACK */
  .cards{
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .card{
    padding: 18px;
  }

  /* NAV */
  .nav-inner{
    flex-direction: column;
    gap: 10px;
  }

  .nav-links{
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  /* PROCESS FLOW → STACK */
  .process-flow{
    flex-direction: column;
    gap: 18px;
  }

  .line{
    display: none;
  }

  /* INDUSTRIES */
  .industries-grid{
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  /* ABOUT TEXT */
  .about p{
    font-size: 14px;
  }

  /* BUTTON */
  .btn-gold{
    width: 100%;
  }

}
@media (max-width:768px){

  .nav-inner{
    flex-direction: column;
    align-items: center;
  }

  .nav-links{
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 10px 20px;
    justify-content: center;
    text-align: center;
  }

  .nav-links a{
    font-size: 14px;
  }

}
@media (max-width:768px){

  .why{
    display: block;
  }

  .why-grid{
    display: block;
  }

  .why-item{
    margin-bottom: 12px;
  }

  .contact-form{
    margin-top: 20px;
    width: 100%;
  }

}
@media (max-width:768px){

  h1{
    font-size: 30px;
  }

  h2{
    font-size: 22px;
  }

}
@media (max-width:768px){

  .hero .btn-gold,
  .hero .btn-dark{
    width: 100%;
    margin-bottom: 10px;
  }

}
@media (max-width:768px){

  .why .container{
    display: flex;
    flex-direction: column;
  }

  .why-grid{
    order: 1;
  }

  .contact-form{
    order: 2;
    width: 100%;
    margin-top: 20px;
  }

}
@media (max-width:768px){

  .footer{
    padding: 30px 16px;
  }

  .footer .container{
    width: 100%;
  }

  .footer-bottom{
    text-align: center;
    font-size: 13px;
  }

  .footer p,
  .footer div{
    word-break: break-word;
  }

}
.contact-form{
  max-width: 100%;
  box-sizing: border-box;
}
@media (max-width:768px){

  .hero{
    padding-left: 16px;
    padding-right: 16px;
  }

}
@media (max-width:768px){

  .footer-top{
    grid-template-columns: 1fr !important;
  }

}
@media (max-width:768px){

  .work-grid{
    display: flex !important;
    flex-direction: column !important;
  }

  .work-content{
    order: 1;
  }

  .form-box{
    order: 2;
    margin-top: 20px;
  }

}
@media (max-width:768px){

  .footer{
    margin-top: 0 !important;
    padding-top: 24px !important;
  }@media (max-width:768px){

  section:last-of-type{
    margin-bottom: 0 !important;
    padding-bottom: 20px;
  }

}

  .footer-top{
    margin-top: 0 !important;
  }

}
@media (max-width:768px){

  /* remove gap above footer */
  .footer{
    margin-top: 0 !important;
  }

  /* kill spacing from previous section */
  .footer::before{
    display:none;
  }

  section{
    margin-bottom: 0 !important;
  }

  section:last-of-type{
    padding-bottom: 0 !important;
  }

}
@media (max-width:768px){
  .work{
    padding-bottom: 0 !important;
  }
}
.work{
  padding:80px 0;
}
@media (max-width:768px){

  .nav-inner{
    flex-direction: column;
    align-items: center;
  }

  .nav-links{
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 100%;
    text-align: center;
  }

  .nav-links a{
    display: inline-block;
    font-size: 15px;
  }

}
@media (max-width:768px){

  .epub-page .nav-links a,
  .bpo-page .nav-links a,
  .sales-page .nav-links a,
  .hr-page .nav-links a,
  .software-page .nav-links a,
  .cloud-page .nav-links a{
    display: none;
  }

  .epub-page .nav-links a:first-child,
  .bpo-page .nav-links a:first-child,
  .sales-page .nav-links a:first-child,
  .hr-page .nav-links a:first-child,
  .software-page .nav-links a:first-child,
  .cloud-page .nav-links a:first-child{
    display: inline-block;
  }

}
html{
  scroll-behavior: smooth;
}
@media (max-width:768px){
  .hero::before,
  .hero::after{
    pointer-events: none;
  }
}
.logo img{
  height: 60px;
  width: auto;
}
.hero-accent{
  position:absolute;
  right:-40px;
  bottom:-40px;
  opacity:0.70;
  pointer-events:none;
  filter: contrast(1.2);
  transform-origin:bottom right;
  pointer-events:none;
}

.hero-accent img{
  width:260px;
}
@media (max-width:768px){
  .hero-accent{
    opacity:0.35;
  }
}