@import url("https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;700;800&display=swap");

:root{
  --primary:#073763;
  --primary-2:#0b4f83;
  --primary-3:#061a2f;
  --accent:#f5a623;
  --accent-2:#18b8c7;
  --dark:#071421;
  --text:#23354a;
  --muted:#66778c;
  --bg:#f4f8fb;
  --card:#ffffff;
  --border:#dce7ef;
  --shadow:0 22px 55px rgba(7,55,99,.14);
  --shadow-soft:0 14px 38px rgba(7,55,99,.10);
  --radius:24px;
  --max:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:'Vazirmatn',Tahoma,'Segoe UI',Arial,sans-serif;background:var(--bg);color:var(--text);line-height:2;letter-spacing:0;overflow-x:hidden;font-size:15.5px;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(var(--max),calc(100% - 32px));margin-inline:auto}

/* Clean Rose-style navigation */
.topbar{display:none}
.navbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  background:rgba(5,18,34,.30);
  border-bottom:1px solid rgba(255,255,255,.13);
  backdrop-filter:blur(18px);
  transition:.3s ease;
}
body:not(.home-page) .navbar{
  position:sticky;
  background:rgba(255,255,255,.94);
  border-bottom:1px solid rgba(220,230,239,.9);
}
.nav-wrap{
  height:84px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:20px;
}
.brand{
  justify-self:start;
  display:flex;
  align-items:center;
  gap:13px;
  font-weight:700;
  color:#fff;
}
body:not(.home-page) .brand{color:var(--primary)}
.brand-logo{
  height:54px;
  width:auto;
  object-fit:contain;
  background:rgba(255,255,255,.88);
  padding:4px 8px;
  border-radius:0;
}
.brand small{
  display:block;
  color:rgba(255,255,255,.72);
  font-size:11px;
  font-weight:700;
  margin-top:-4px;
  direction:ltr;
  text-align:right;
}
body:not(.home-page) .brand small{color:var(--muted)}
.nav-links{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:3px;
  list-style:none;
  margin:0;
  padding:6px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.08);
  border-radius:999px;
}
body:not(.home-page) .nav-links{
  background:#fff;
  border-color:var(--border);
  box-shadow:0 10px 28px rgba(7,55,99,.07);
}
.nav-links a{
  display:block;
  padding:9px 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  color:rgba(255,255,255,.92);
  transition:.2s;
  white-space:nowrap;
}
body:not(.home-page) .nav-links a{color:#26384d}
.nav-links a:hover,.nav-links a.active{
  background:#fff;
  color:var(--primary);
}
body:not(.home-page) .nav-links a:hover,
body:not(.home-page) .nav-links a.active{
  background:#eef7fb;
  color:var(--primary);
}
.nav-btn{
  justify-self:end;
  background:transparent;
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
  box-shadow:none;
}
body:not(.home-page) .nav-btn{
  background:linear-gradient(135deg,var(--accent),#ffc65c);
  color:#171717;
  border-color:transparent;
}
.mobile-toggle{
  display:none;
  justify-self:end;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.1);
  color:#fff;
  width:44px;
  height:44px;
  border-radius:999px;
  font-size:24px;
  cursor:pointer;
}
body:not(.home-page) .mobile-toggle{
  color:var(--primary);
  border-color:var(--border);
  background:#fff;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:46px;
  padding:10px 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-family:'Vazirmatn',Tahoma,'Segoe UI',Arial,sans-serif;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition:.25s;
  white-space:nowrap;
}
.btn-primary{background:linear-gradient(135deg,var(--accent),#ffc65c);color:#171717;box-shadow:0 14px 34px rgba(245,166,35,.30)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 18px 44px rgba(245,166,35,.38)}
.btn-outline{border-color:rgba(255,255,255,.42);color:#fff;background:rgba(255,255,255,.09)}
.btn-light{background:#fff;color:var(--primary);box-shadow:0 10px 25px rgba(7,55,99,.12)}

.kicker{color:var(--accent);font-weight:700;font-size:14px;margin-bottom:8px}
h1,h2,h3,h4,h5,h6{font-family:'Vazirmatn',Tahoma,'Segoe UI',Arial,sans-serif;font-weight:700;line-height:1.55}
h1{font-size:clamp(38px,6vw,74px);line-height:1.25;margin:0 0 18px;letter-spacing:0}
h2{font-size:clamp(28px,3.5vw,44px);line-height:1.45;margin:0;color:var(--dark)}
p{margin-top:0}

/* Rose-like full home */
.rose-home{
  position:relative;
  min-height:100vh;
  color:#fff;
  overflow:hidden;
  background:#061a2f;
  isolation:isolate;
}
.rose-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 950ms ease;
}
.rose-slide.active{opacity:1}
.rose-slide-img{
  position:absolute;
  inset:-5%;
  background-size:cover;
  background-position:center;
  transform:scale(1.06);
  transition:transform 6500ms ease;
  will-change:transform;
}
.rose-slide.active .rose-slide-img{transform:scale(1.18)}
.rose-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(1,9,18,.88) 0%,rgba(7,55,99,.68) 44%,rgba(7,55,99,.10) 100%),
    linear-gradient(180deg,rgba(0,0,0,.15),rgba(0,0,0,.52));
}
.rose-noise{
  position:absolute;
  inset:0;
  z-index:2;
  opacity:.12;
  background-image:
    linear-gradient(rgba(255,255,255,.20) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.20) 1px,transparent 1px);
  background-size:72px 72px;
  pointer-events:none;
}
.rose-glow{
  position:absolute;
  width:480px;
  height:480px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(24,184,199,.22),rgba(245,166,35,.09) 38%,transparent 68%);
  z-index:3;
  pointer-events:none;
  transform:translate(-50%,-50%);
  mix-blend-mode:screen;
  opacity:.8;
}
.rose-content{
  position:relative;
  z-index:5;
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 340px;
  align-items:end;
  gap:40px;
  padding:150px 0 82px;
}
.rose-copy{
  max-width:760px;
  padding-bottom:14px;
}
.rose-eyebrow{
  display:inline-block;
  color:#fff;
  font-size:15px;
  margin-bottom:15px;
  padding-bottom:7px;
  border-bottom:1px solid rgba(255,255,255,.42);
}
.rose-copy p{
  color:rgba(255,255,255,.82);
  font-size:17px;
  max-width:680px;
  margin:0 0 28px;
}
.rose-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.rose-side{
  justify-self:end;
  width:100%;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  border-radius:30px;
  padding:24px;
  backdrop-filter:blur(18px);
  box-shadow:0 24px 70px rgba(0,0,0,.20);
}
.rose-side h3{
  color:#fff;
  font-size:18px;
  margin:0 0 14px;
}
.rose-side .step{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:12px;
  padding:13px 0;
  border-top:1px solid rgba(255,255,255,.13);
}
.rose-side .step:first-of-type{border-top:0}
.rose-side .num{
  color:#ffcf76;
  font-weight:700;
  direction:ltr;
}
.rose-side strong{
  display:block;
  color:#fff;
  font-size:14px;
}
.rose-side span{
  color:rgba(255,255,255,.68);
  font-size:12px;
}
.rose-counter{
  position:absolute;
  left:42px;
  bottom:42px;
  z-index:8;
  font-size:14px;
  color:rgba(255,255,255,.8);
  direction:ltr;
}
.rose-dots{
  position:absolute;
  left:50%;
  bottom:42px;
  transform:translateX(-50%);
  z-index:8;
  display:flex;
  gap:10px;
}
.rose-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.65);
  background:rgba(255,255,255,.12);
  cursor:pointer;
  transition:.25s;
}
.rose-dot.active{
  width:34px;
  background:var(--accent);
  border-color:var(--accent);
}
.rose-scroll{
  position:absolute;
  right:36px;
  bottom:34px;
  z-index:8;
  color:rgba(255,255,255,.72);
  font-size:12px;
  writing-mode:vertical-rl;
  display:flex;
  align-items:center;
  gap:10px;
}
.rose-scroll::after{
  content:"";
  width:1px;
  height:54px;
  background:linear-gradient(var(--accent),transparent);
  display:block;
}

/* Home sections like Rose reference */
.home-approach{
  background:#fff;
  padding:92px 0;
}
.approach-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:58px;
  align-items:start;
}
.approach-text p{
  color:var(--muted);
  margin-top:14px;
}
.approach-steps{
  display:grid;
  gap:18px;
}
.approach-card{
  display:grid;
  grid-template-columns:74px 1fr;
  gap:18px;
  align-items:start;
  padding:26px;
  border:1px solid var(--border);
  border-radius:28px;
  background:#fbfdff;
}
.approach-card .n{
  color:var(--primary);
  font-weight:700;
  font-size:22px;
  direction:ltr;
}
.approach-card h3{
  margin:0 0 6px;
  color:var(--dark);
}
.approach-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}
.home-featured{
  background:#f4f8fb;
  padding:92px 0;
}
.featured-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:34px;
}
.featured-image{
  min-height:420px;
  border-radius:34px;
  overflow:hidden;
  position:relative;
  background:#0d2d4c;
  box-shadow:var(--shadow);
}
.featured-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.8s ease;
}
.featured-image:hover img{transform:scale(1.06)}
.featured-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent,rgba(0,0,0,.55));
}
.featured-caption{
  position:absolute;
  right:24px;
  bottom:24px;
  left:24px;
  z-index:2;
  color:#fff;
}
.featured-caption h3{
  color:#fff;
  margin:0 0 7px;
}
.featured-caption p{
  color:rgba(255,255,255,.75);
  margin:0;
  font-size:14px;
}

/* Inner pages */
.section{padding:88px 0}
.section-header{display:flex;justify-content:space-between;align-items:end;gap:24px;margin-bottom:38px}
.section-title{max-width:760px}
.section-title p{color:var(--muted);margin:12px 0 0;font-size:15px}
.page-hero{
  background:linear-gradient(135deg,#061a2f 0%,#073763 56%,#0a4c82 100%);
  color:#fff;
  padding:104px 0 78px;
  position:relative;
  overflow:hidden;
}
.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 12% 16%,rgba(25,183,198,.28),transparent 28%),radial-gradient(circle at 83% 24%,rgba(245,166,35,.24),transparent 30%);
  opacity:.9
}
.page-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:linear-gradient(rgba(255,255,255,.17) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.17) 1px,transparent 1px);
  background-size:56px 56px;
  opacity:.12
}
.page-hero .container{position:relative;z-index:1}
.page-hero p{color:rgba(255,255,255,.78);font-size:17px;max-width:760px}
.breadcrumb{
  display:inline-flex;
  gap:8px;
  align-items:center;
  color:#d7ecf8;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  padding:7px 12px;
  font-size:13px;
  margin-bottom:18px
}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow-soft);
  transition:.25s
}
.card:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.card h3{margin:0 0 9px;color:var(--dark);font-size:20px}
.card p{color:var(--muted);font-size:14px;margin:0}
.ico,.num{
  width:48px;
  height:48px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,rgba(25,183,198,.14),rgba(245,166,35,.16));
  color:var(--primary);
  font-size:23px;
  margin-bottom:14px
}
.featured-card{grid-column:span 2;background:linear-gradient(135deg,#fff 0%,#eefbff 100%);border-color:#bfe9ee}
.card ul{margin:16px 0 0;padding:0 18px 0 0;color:#4f6175;font-size:14px}
.image-card{padding:0;overflow:hidden}
.image-frame{position:relative;overflow:hidden;background:#0d2d4c}
.image-frame img{width:100%;height:100%;object-fit:cover;transition:transform .55s ease;filter:saturate(1.05) contrast(1.02)}
.image-card:hover .image-frame img{transform:scale(1.07)}
.image-card .image-frame{height:230px}
.image-card-body{padding:24px}
.band{background:#fff}
.dark-band{background:linear-gradient(135deg,var(--primary),#061d35);color:#fff}
.dark-band h2,.dark-band h3{color:#fff}
.dark-band p{color:rgba(255,255,255,.76)}
.process-card .num{background:var(--primary);color:#fff;font-weight:700;font-size:18px}
.stats{background:var(--primary);color:#fff;padding:54px 0}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;text-align:center}
.stat{padding:18px;border-radius:22px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.13)}
.stat strong{display:block;font-size:31px;color:#fff}
.stat span{color:rgba(255,255,255,.74);font-size:14px}
.contact-wrap{display:grid;grid-template-columns:.9fr 1.1fr;gap:24px}
.contact-card{background:linear-gradient(135deg,var(--primary),#08223e);color:#fff;border-radius:30px;padding:30px;box-shadow:var(--shadow)}
.contact-card h2{color:#fff}
.contact-card p{color:rgba(255,255,255,.74)}
.contact-items{display:grid;gap:13px;margin-top:24px}
.contact-items div{padding:14px;border-radius:18px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.13)}
form{background:#fff;border:1px solid var(--border);border-radius:30px;padding:28px;box-shadow:0 18px 45px rgba(7,55,99,.09)}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
label{display:block;font-size:13px;font-weight:700;color:#34465a;margin-bottom:7px}
input,select,textarea{width:100%;border:1px solid var(--border);border-radius:16px;padding:13px 14px;font-family:inherit;font-size:14px;background:#fbfdff;color:var(--text);outline:none;transition:.2s}
input:focus,select:focus,textarea:focus{border-color:var(--accent-2);box-shadow:0 0 0 4px rgba(25,183,198,.12)}
textarea{min-height:132px;resize:vertical}
.full{grid-column:1/-1}
footer{background:#06111e;color:#c6d3df;padding:42px 0 28px}
.footer-grid{display:grid;grid-template-columns:1.2fr .8fr .8fr 1fr;gap:24px;margin-bottom:28px}
footer h4{color:#fff;margin:0 0 12px}
footer p,footer li{font-size:13px;color:#9fb0c2;margin:0 0 8px}
footer ul{padding:0;list-style:none;margin:0}
.footer-brand{display:flex;align-items:center;gap:14px;margin-bottom:14px}
.footer-brand img{height:48px;width:auto;background:#fff;padding:4px 8px}
.footer-brand strong{display:block;color:#fff;font-size:18px;margin-bottom:2px}
.footer-brand span{font-size:12px;color:#8fa1b3}
.copyright{border-top:1px solid rgba(255,255,255,.1);padding-top:18px;font-size:13px;color:#8fa1b3;text-align:center}
.floating-call{position:fixed;left:20px;bottom:20px;z-index:90;background:var(--accent);color:#111;border-radius:999px;box-shadow:0 18px 40px rgba(0,0,0,.2);padding:12px 18px;font-weight:700;display:flex;gap:8px;align-items:center}

@media (max-width:1100px){
  .nav-wrap{grid-template-columns:auto 1fr auto}
  .nav-links{
    position:fixed;
    top:96px;
    right:16px;
    left:16px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    border-radius:26px;
    padding:14px;
    background:rgba(255,255,255,.96);
    box-shadow:var(--shadow);
    border:1px solid var(--border);
  }
  .nav-links.open{display:flex}
  .nav-links a,
  body:not(.home-page) .nav-links a{color:#26384d}
  .nav-links a:hover,.nav-links a.active{background:#eef7fb;color:var(--primary)}
  .mobile-toggle{display:grid;place-items:center}
  .nav-btn{display:none}
  .rose-content{grid-template-columns:1fr}
  .rose-side{justify-self:start;max-width:520px}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .grid-2,.contact-wrap,.approach-grid,.featured-row{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .featured-card{grid-column:span 1}
}
@media (max-width:680px){
  .nav-wrap{height:74px}
  .brand small{display:none}
  .brand-logo{height:44px}
  .rose-content{padding:120px 0 78px}
  h1{font-size:36px}
  .rose-side{display:none}
  .rose-counter{left:22px;bottom:25px}
  .rose-dots{bottom:26px}
  .rose-scroll{display:none}
  .section,.home-approach,.home-featured{padding:62px 0}
  .grid-4,.grid-3,.stats-grid,.footer-grid,.form-grid{grid-template-columns:1fr}
  .section-header{display:block}
  .approach-card{grid-template-columns:1fr}
  .floating-call{right:16px;left:16px;justify-content:center}
}


.brand{font-size:16px}
.brand small{font-size:11px;letter-spacing:.2px}
.nav-btn{font-size:14px}
.kicker{font-size:14px;letter-spacing:.1px}
.rose-copy p,.page-hero p,.section-title p,.card p,.approach-card p,.featured-caption p,.contact-card p,footer p,footer li,input,select,textarea{font-size:15px}
.card h3,.approach-card h3,.featured-caption h3{font-size:21px}
.breadcrumb{font-size:13px}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.blog-card{background:#fff;border:1px solid var(--border);border-radius:28px;overflow:hidden;box-shadow:var(--shadow-soft);transition:.25s}
.blog-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.blog-card .image-frame{height:240px}
.blog-card .body{padding:22px}
.blog-card .meta{display:flex;gap:12px;flex-wrap:wrap;color:#7a8a9d;font-size:12px;margin-bottom:12px}
.blog-card h3{margin:0 0 8px;color:var(--dark);font-size:21px}
.blog-card p{margin:0 0 16px;color:var(--muted);font-size:14px}
.blog-card a.readmore{display:inline-flex;align-items:center;gap:8px;color:var(--primary);font-weight:700}
.hero-strip{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:32px}
.hero-strip .featured-image{min-height:290px}
.contact-media{margin-top:18px;border-radius:24px;overflow:hidden;background:#0d2d4c}
.contact-media img{width:100%;height:220px;object-fit:cover;display:block}
@media (max-width:1100px){.blog-grid{grid-template-columns:repeat(2,1fr)}.hero-strip{grid-template-columns:1fr}}
@media (max-width:680px){.blog-grid{grid-template-columns:1fr}.rose-copy p,.page-hero p,.section-title p,.card p,.approach-card p,.featured-caption p,.contact-card p,footer p,footer li,input,select,textarea{font-size:14px}}


.card-media-top{height:180px;margin:-26px -26px 18px;border-radius:24px 24px 18px 18px;overflow:hidden;background:#0d2d4c}
.card-media-top img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .55s ease}
.card:hover .card-media-top img{transform:scale(1.06)}
.featured-card .card-media-top{height:220px}
.approach-card{position:relative;overflow:hidden}
.approach-media{grid-column:1/-1;height:145px;border-radius:22px;overflow:hidden;margin-bottom:2px;background:#0d2d4c}
.approach-media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .55s ease}
.approach-card:hover .approach-media img{transform:scale(1.05)}
.approach-card .n{padding-top:8px}
@media (max-width:680px){.card-media-top{height:165px}.featured-card .card-media-top{height:185px}.approach-media{height:130px}}


/* Final image consistency and blog detail pages */
.card-media-top,
.blog-card .image-frame,
.image-card .image-frame,
.featured-image,
.approach-media {
  background: linear-gradient(135deg,#0d2d4c,#061a2f);
}
.card-media-top img,
.blog-card .image-frame img,
.image-card .image-frame img,
.featured-image img,
.approach-media img {
  object-position: center center;
}
.card-media-top::after,
.approach-media::after,
.blog-card .image-frame::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,0),rgba(7,55,99,.18));
  pointer-events:none;
}
.card-media-top,
.approach-media,
.blog-card .image-frame {
  position:relative;
}
.blog-detail-hero {
  position:relative;
  min-height:520px;
  color:#fff;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:#061a2f;
}
.blog-detail-hero img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}
.blog-detail-hero::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(1,9,18,.86),rgba(7,55,99,.55),rgba(7,55,99,.18)),linear-gradient(180deg,rgba(0,0,0,.15),rgba(0,0,0,.68));
  z-index:1;
}
.blog-detail-hero .container {
  position:relative;
  z-index:2;
  padding:150px 0 72px;
}
.blog-detail-hero .meta {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:16px;
  color:#ffcf76;
  font-weight:700;
  font-size:14px;
}
.blog-article {
  background:#fff;
}
.blog-article-wrap {
  max-width:900px;
  margin-inline:auto;
}
.blog-article p {
  color:#53667a;
  font-size:16px;
  line-height:2.15;
  margin:0 0 18px;
}
.blog-article h2 {
  font-size:28px;
  margin:36px 0 12px;
}
.blog-article .callout {
  margin:30px 0;
  padding:22px;
  border-radius:22px;
  background:#eef7fb;
  border:1px solid #cfe8ef;
  color:#17405e;
}
.blog-next {
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-top:42px;
  padding-top:28px;
  border-top:1px solid var(--border);
}
@media (max-width:680px){
  .blog-detail-hero{min-height:460px}
  .blog-detail-hero .container{padding:120px 0 54px}
  .blog-article p{font-size:15px}
  .blog-article h2{font-size:24px}
}


/* Unified full-page inner pages similar to home */
body:not(.home-page) .navbar{position:fixed;background:rgba(5,18,34,.30);border-bottom:1px solid rgba(255,255,255,.13);backdrop-filter:blur(18px)}
body:not(.home-page) .brand{color:#fff}
body:not(.home-page) .brand small{color:rgba(255,255,255,.72)}
body:not(.home-page) .nav-links{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.15);box-shadow:none}
body:not(.home-page) .nav-links a{color:rgba(255,255,255,.9)}
body:not(.home-page) .nav-links a:hover,body:not(.home-page) .nav-links a.active{background:#fff;color:var(--primary)}
body:not(.home-page) .mobile-toggle{color:#fff;border-color:rgba(255,255,255,.28);background:rgba(255,255,255,.1)}
body:not(.home-page) .nav-btn{background:transparent;border:1px solid rgba(255,255,255,.35);color:#fff;box-shadow:none}
.page-hero{min-height:100vh;display:flex;align-items:flex-end;padding:150px 0 82px;background-size:cover!important;background-position:center!important;background-repeat:no-repeat!important}
.page-hero h1{font-size:clamp(38px,6vw,72px);line-height:1.25;color:#fff}
.page-hero p{font-size:18px;color:rgba(255,255,255,.82)}
.page-hero .breadcrumb{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.25)}
.page-hero::before{background:linear-gradient(90deg,rgba(1,9,18,.88) 0%,rgba(7,55,99,.68) 44%,rgba(7,55,99,.10) 100%),linear-gradient(180deg,rgba(0,0,0,.10),rgba(0,0,0,.55));opacity:1}
.page-hero::after{background-image:linear-gradient(rgba(255,255,255,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px);background-size:72px 72px;opacity:.12}
.page-hero .container{position:relative;z-index:2}
@media(max-width:1100px){body:not(.home-page) .nav-links{background:rgba(255,255,255,.96);border-color:var(--border)}body:not(.home-page) .nav-links a{color:#26384d}}


/* Final uniform navigation and transparent logo polish */
.navbar{position:fixed;top:0;left:0;right:0;z-index:1000;background:rgba(5,18,34,.34);border-bottom:1px solid rgba(255,255,255,.13);backdrop-filter:blur(18px)}
.nav-wrap{display:flex;align-items:center;justify-content:space-between;gap:18px;min-height:82px}
.brand{display:flex;align-items:center;gap:12px;color:#fff;font-weight:800;font-size:18px;letter-spacing:-.2px}
.brand span{display:block;white-space:nowrap;color:#fff;text-shadow:0 2px 10px rgba(0,0,0,.32)}
.brand small{display:none!important}
.brand-logo{
  width:58px;
  height:58px;
  object-fit:contain;
  border-radius:0;
  background:transparent!important;
  box-shadow:none!important;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.38));
  padding:0;
}
.footer-brand img{
  background:transparent!important;
  box-shadow:none!important;
  filter:drop-shadow(0 6px 14px rgba(0,0,0,.18));
  object-fit:contain;
}
.nav-links{display:flex;align-items:center;gap:4px;list-style:none;margin:0;padding:7px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);border-radius:999px}
.nav-links a{display:block;padding:9px 16px;border-radius:999px;font-size:14px;font-weight:700;color:rgba(255,255,255,.92);transition:.2s;white-space:nowrap}
.nav-links a:hover,.nav-links a.active{background:#fff;color:var(--primary)}
.nav-btn{background:transparent!important;border:1px solid rgba(255,255,255,.35)!important;color:#fff!important;box-shadow:none!important}
.mobile-toggle{color:#fff;border-color:rgba(255,255,255,.28);background:rgba(255,255,255,.1)}
body:not(.home-page) .navbar{position:fixed}
@media(max-width:1100px){
  .nav-links{position:fixed;top:82px;right:18px;left:18px;display:none;flex-direction:column;align-items:stretch;background:rgba(255,255,255,.98);border:1px solid var(--border);border-radius:22px;padding:12px;box-shadow:0 22px 60px rgba(0,0,0,.18)}
  .nav-links.show{display:flex}
  .nav-links a{color:#26384d;text-align:center}
  .nav-links a:hover,.nav-links a.active{background:#eef7fb;color:var(--primary)}
  .brand{font-size:16px}
  .brand-logo{width:50px;height:50px}
  .nav-btn{display:none!important}
}


/* Final footer, Persian logo and favicon update */
.brand-logo{
  width:auto!important;
  max-width:170px!important;
  height:54px!important;
  object-fit:contain!important;
}
.brand span{
  font-size:17px;
  font-weight:800;
}
.footer-brand{
  align-items:center;
}
.footer-brand img{
  width:210px!important;
  max-width:100%;
  height:auto!important;
  object-fit:contain!important;
}
footer .copyright{
  text-align:center;
  padding-top:22px;
  margin-top:22px;
  border-top:1px solid rgba(255,255,255,.12);
}
.home-page footer,
footer{
  position:relative;
  z-index:5;
}
@media(max-width:1100px){
  .brand-logo{max-width:135px!important;height:46px!important}
  .brand span{font-size:15px}
}
@media(max-width:560px){
  .brand-logo{max-width:120px!important;height:42px!important}
  .brand span{display:none}
}


/* FINAL: fixed header size across all pages + universal 15% image hover zoom */
:root{
  --chakad-header-height: 88px;
  --chakad-logo-width: 178px;
  --chakad-logo-height: 58px;
}

/* Header / navigation must stay exactly the same on every page */
.navbar,
body.home-page .navbar,
body:not(.home-page) .navbar{
  position:fixed!important;
  top:0!important;
  left:0!important;
  right:0!important;
  height:var(--chakad-header-height)!important;
  min-height:var(--chakad-header-height)!important;
  max-height:var(--chakad-header-height)!important;
  padding:0!important;
  display:flex!important;
  align-items:center!important;
  background:rgba(5,18,34,.42)!important;
  border-bottom:1px solid rgba(255,255,255,.14)!important;
  backdrop-filter:blur(18px)!important;
  -webkit-backdrop-filter:blur(18px)!important;
  z-index:1000!important;
}

.nav-wrap,
body.home-page .nav-wrap,
body:not(.home-page) .nav-wrap{
  height:var(--chakad-header-height)!important;
  min-height:var(--chakad-header-height)!important;
  max-height:var(--chakad-header-height)!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:18px!important;
  padding-top:0!important;
  padding-bottom:0!important;
}

.brand,
body.home-page .brand,
body:not(.home-page) .brand{
  height:var(--chakad-header-height)!important;
  min-height:var(--chakad-header-height)!important;
  display:flex!important;
  align-items:center!important;
  gap:14px!important;
  flex:0 0 auto!important;
  color:#fff!important;
}

.brand-logo,
body.home-page .brand-logo,
body:not(.home-page) .brand-logo{
  width:var(--chakad-logo-width)!important;
  min-width:var(--chakad-logo-width)!important;
  max-width:var(--chakad-logo-width)!important;
  height:var(--chakad-logo-height)!important;
  min-height:var(--chakad-logo-height)!important;
  max-height:var(--chakad-logo-height)!important;
  object-fit:contain!important;
  object-position:center!important;
  padding:0!important;
  margin:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.42))!important;
}

.brand span,
body.home-page .brand span,
body:not(.home-page) .brand span{
  font-size:17px!important;
  font-weight:800!important;
  line-height:1.2!important;
  color:#fff!important;
  white-space:nowrap!important;
  text-shadow:0 2px 10px rgba(0,0,0,.35)!important;
}

.brand small{
  display:none!important;
}

.nav-links,
body.home-page .nav-links,
body:not(.home-page) .nav-links{
  height:48px!important;
  min-height:48px!important;
  max-height:48px!important;
  display:flex!important;
  align-items:center!important;
  gap:4px!important;
  padding:6px!important;
  margin:0!important;
  background:rgba(255,255,255,.08)!important;
  border:1px solid rgba(255,255,255,.15)!important;
  border-radius:999px!important;
  box-shadow:none!important;
}

.nav-links a,
body.home-page .nav-links a,
body:not(.home-page) .nav-links a{
  height:36px!important;
  min-height:36px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  padding:0 15px!important;
  line-height:1!important;
  font-size:14px!important;
  font-weight:700!important;
  color:rgba(255,255,255,.92)!important;
  border-radius:999px!important;
  white-space:nowrap!important;
}

.nav-links a:hover,
.nav-links a.active{
  background:#fff!important;
  color:var(--primary)!important;
}

.nav-btn,
body.home-page .nav-btn,
body:not(.home-page) .nav-btn{
  height:42px!important;
  min-height:42px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  padding:0 18px!important;
  line-height:1!important;
  background:transparent!important;
  border:1px solid rgba(255,255,255,.35)!important;
  color:#fff!important;
  box-shadow:none!important;
  white-space:nowrap!important;
}

/* Keep page hero start consistent under fixed header */
.rose-hero,
.page-hero,
.blog-detail-hero{
  padding-top:var(--chakad-header-height)!important;
}

.page-hero,
.blog-detail-hero{
  min-height:100vh!important;
}

/* Universal image hover zoom: about 15% */
.card-media-top,
.approach-media,
.image-frame,
.featured-image,
.blog-card .image-frame,
.contact-media,
.footer-brand,
.rose-slide-img,
.blog-detail-hero,
.page-hero{
  overflow:hidden!important;
}

.card-media-top img,
.approach-media img,
.image-frame img,
.featured-image img,
.blog-card .image-frame img,
.contact-media img,
.footer-brand img,
.blog-detail-hero img{
  transition:transform .65s ease, filter .65s ease!important;
  transform-origin:center center!important;
  will-change:transform!important;
}

.card-media-top:hover img,
.card:hover .card-media-top img,
.approach-media:hover img,
.approach-card:hover .approach-media img,
.image-frame:hover img,
.image-card:hover .image-frame img,
.featured-image:hover img,
.blog-card:hover .image-frame img,
.contact-media:hover img,
.footer-brand:hover img,
.blog-detail-hero:hover img{
  transform:scale(1.15)!important;
}

/* Background images also zoom 15% using pseudo overlays */
.rose-slide-img,
.page-hero{
  position:relative!important;
  overflow:hidden!important;
  background-size:100% auto!important;
  transition:background-size .65s ease, filter .65s ease!important;
}

.rose-slide:hover .rose-slide-img,
.rose-slide-img:hover,
.page-hero:hover{
  background-size:115% auto!important;
}

/* In case the browser handles cover better, keep cover on small screens */
@media (max-width:900px){
  .page-hero,
  .rose-slide-img{
    background-size:cover!important;
  }
  .page-hero:hover,
  .rose-slide:hover .rose-slide-img{
    background-size:cover!important;
  }
}

/* Responsive header still fixed and same across pages */
@media (max-width:1100px){
  :root{
    --chakad-header-height: 82px;
    --chakad-logo-width: 145px;
    --chakad-logo-height: 50px;
  }
  .mobile-toggle{
    width:44px!important;
    height:44px!important;
    min-width:44px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    color:#fff!important;
    border-color:rgba(255,255,255,.28)!important;
    background:rgba(255,255,255,.1)!important;
  }
  .nav-links,
  body.home-page .nav-links,
  body:not(.home-page) .nav-links{
    position:fixed!important;
    top:calc(var(--chakad-header-height) + 10px)!important;
    right:18px!important;
    left:18px!important;
    height:auto!important;
    max-height:none!important;
    min-height:0!important;
    display:none!important;
    flex-direction:column!important;
    align-items:stretch!important;
    background:rgba(255,255,255,.98)!important;
    border:1px solid var(--border)!important;
    border-radius:22px!important;
    padding:12px!important;
    box-shadow:0 22px 60px rgba(0,0,0,.18)!important;
  }
  .nav-links.show{
    display:flex!important;
  }
  .nav-links a,
  body.home-page .nav-links a,
  body:not(.home-page) .nav-links a{
    color:#26384d!important;
    text-align:center!important;
    width:100%!important;
  }
  .nav-links a:hover,
  .nav-links a.active{
    background:#eef7fb!important;
    color:var(--primary)!important;
  }
  .nav-btn{
    display:none!important;
  }
}

@media (max-width:560px){
  :root{
    --chakad-logo-width: 128px;
    --chakad-logo-height: 46px;
  }
  .brand span{
    display:none!important;
  }
}


/* FINAL FIX: readable active menu, stable home slider, 10% hover zoom and light hover glow */

/* Active/selected menu must always be readable */
.nav-links a.active,
body.home-page .nav-links a.active,
body:not(.home-page) .nav-links a.active,
.nav-links a[aria-current="page"]{
  background:linear-gradient(135deg,#f5a623,#ffcf76)!important;
  color:#061a2f!important;
  text-shadow:none!important;
  box-shadow:0 10px 26px rgba(245,166,35,.28)!important;
}
.nav-links a:hover{
  background:rgba(255,255,255,.92)!important;
  color:#061a2f!important;
  text-shadow:none!important;
}

/* Home slider must show images without depending on JS */
.rose-slider,
.rose-slide,
.rose-slide-img{
  min-height:100vh!important;
}
.rose-slide{
  position:absolute!important;
  inset:0!important;
  opacity:0!important;
  visibility:hidden!important;
  transition:opacity .8s ease, visibility .8s ease!important;
  pointer-events:none!important;
}
.rose-slide.active{
  opacity:1!important;
  visibility:visible!important;
  pointer-events:auto!important;
}
.rose-slide-img{
  position:absolute!important;
  inset:0!important;
  width:100%!important;
  height:100%!important;
  background-size:cover!important;
  background-position:center!important;
  background-repeat:no-repeat!important;
  transform:scale(1)!important;
  transition:transform .85s ease, filter .85s ease!important;
}
.rose-slide.active .rose-slide-img{
  transform:scale(1)!important;
}
.rose-slide:hover .rose-slide-img{
  transform:scale(1.10)!important;
}

/* Universal hover zoom changed from 15% to 10% */
.card-media-top img,
.approach-media img,
.image-frame img,
.featured-image img,
.blog-card .image-frame img,
.contact-media img,
.footer-brand img,
.blog-detail-hero img{
  transition:transform .65s ease, filter .65s ease!important;
  transform-origin:center center!important;
}
.card-media-top:hover img,
.card:hover .card-media-top img,
.approach-media:hover img,
.approach-card:hover .approach-media img,
.image-frame:hover img,
.image-card:hover .image-frame img,
.featured-image:hover img,
.blog-card:hover .image-frame img,
.contact-media:hover img,
.footer-brand:hover img,
.blog-detail-hero:hover img{
  transform:scale(1.10)!important;
}

/* Luminous hover background/glow like home */
.card,
.approach-card,
.image-card,
.blog-card,
.contact-card,
.featured-card{
  position:relative!important;
  overflow:hidden!important;
}
.card::before,
.approach-card::before,
.image-card::before,
.blog-card::before,
.contact-card::before,
.featured-card::before{
  content:""!important;
  position:absolute!important;
  inset:-40%!important;
  background:radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,207,118,.32), rgba(24,184,199,.18) 28%, transparent 58%)!important;
  opacity:0!important;
  transition:opacity .45s ease!important;
  pointer-events:none!important;
  z-index:0!important;
}
.card:hover::before,
.approach-card:hover::before,
.image-card:hover::before,
.blog-card:hover::before,
.contact-card:hover::before,
.featured-card:hover::before{
  opacity:1!important;
}
.card > *,
.approach-card > *,
.image-card > *,
.blog-card > *,
.contact-card > *,
.featured-card > *{
  position:relative;
  z-index:1;
}

/* Image overlay glow on hover */
.card-media-top::before,
.approach-media::before,
.image-frame::before,
.featured-image::before,
.contact-media::before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  background:radial-gradient(circle at center, rgba(255,207,118,.28), rgba(24,184,199,.18) 38%, transparent 72%)!important;
  opacity:0!important;
  transition:opacity .45s ease!important;
  z-index:2!important;
  pointer-events:none!important;
}
.card:hover .card-media-top::before,
.approach-card:hover .approach-media::before,
.image-card:hover .image-frame::before,
.featured-image:hover::before,
.contact-media:hover::before{
  opacity:1!important;
}
.card-media-top,
.approach-media,
.image-frame,
.featured-image,
.contact-media{
  position:relative!important;
  overflow:hidden!important;
}

/* Inner page hero background hover: light glow + 10% zoom feel */
.page-hero{
  background-size:cover!important;
  transition:filter .65s ease!important;
}
.page-hero::after{
  transition:opacity .55s ease!important;
}
.page-hero:hover::after{
  opacity:.22!important;
}
.page-hero:hover{
  filter:saturate(1.08) brightness(1.05)!important;
}

/* Neutralize older 15% background-size hover rules */
.rose-slide-img,
.page-hero{
  background-size:cover!important;
}
.rose-slide:hover .rose-slide-img,
.rose-slide-img:hover,
.page-hero:hover{
  background-size:cover!important;
}

@media(max-width:1100px){
  .nav-links a.active{
    background:linear-gradient(135deg,#f5a623,#ffcf76)!important;
    color:#061a2f!important;
  }
}


/* FINAL: home-like mouseover for all pages + required contact/captcha styling */

/* All hero sections get the same moving light feeling as home */
.rose-hero,
.page-hero,
.blog-detail-hero{
  --mx:50%;
  --my:50%;
  position:relative!important;
  overflow:hidden!important;
}

.rose-hero::before,
.page-hero::before,
.blog-detail-hero::before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  z-index:1!important;
  pointer-events:none!important;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255,207,118,.25), rgba(24,184,199,.16) 24%, rgba(7,55,99,.08) 42%, transparent 64%),
    linear-gradient(90deg,rgba(1,9,18,.84),rgba(7,55,99,.52),rgba(7,55,99,.12))!important;
  opacity:.95!important;
  transition:opacity .45s ease!important;
}

.rose-hero:hover::before,
.page-hero:hover::before,
.blog-detail-hero:hover::before{
  opacity:1!important;
}

/* Keep text above light layer */
.rose-hero .container,
.page-hero .container,
.blog-detail-hero .container,
.rose-copy,
.rose-side-card{
  position:relative!important;
  z-index:3!important;
}

/* Hero background zoom: 10% on mouseover */
.rose-slide-img,
.page-hero{
  transform-origin:center center!important;
  transition:transform .8s ease, filter .8s ease!important;
}

.rose-slide:hover .rose-slide-img{
  transform:scale(1.10)!important;
}

.page-hero:hover{
  filter:saturate(1.08) brightness(1.05)!important;
}

/* Blog detail image zoom and glow */
.blog-detail-hero img{
  transition:transform .8s ease, filter .8s ease!important;
}
.blog-detail-hero:hover img{
  transform:scale(1.10)!important;
  filter:saturate(1.08) brightness(1.05)!important;
}

/* All content cards get the same luminous mouse tracking hover */
.card,
.approach-card,
.image-card,
.blog-card,
.contact-card,
.featured-card,
.service-card{
  --mx:50%;
  --my:50%;
  position:relative!important;
  overflow:hidden!important;
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease!important;
}

.card::before,
.approach-card::before,
.image-card::before,
.blog-card::before,
.contact-card::before,
.featured-card::before,
.service-card::before{
  content:""!important;
  position:absolute!important;
  inset:-45%!important;
  z-index:0!important;
  pointer-events:none!important;
  opacity:0!important;
  background:radial-gradient(circle at var(--mx) var(--my), rgba(255,207,118,.36), rgba(24,184,199,.20) 26%, transparent 58%)!important;
  transition:opacity .45s ease!important;
}

.card:hover,
.approach-card:hover,
.image-card:hover,
.blog-card:hover,
.contact-card:hover,
.featured-card:hover,
.service-card:hover{
  transform:translateY(-4px)!important;
  box-shadow:0 24px 70px rgba(7,55,99,.18)!important;
  border-color:rgba(245,166,35,.30)!important;
}

.card:hover::before,
.approach-card:hover::before,
.image-card:hover::before,
.blog-card:hover::before,
.contact-card:hover::before,
.featured-card:hover::before,
.service-card:hover::before{
  opacity:1!important;
}

.card > *,
.approach-card > *,
.image-card > *,
.blog-card > *,
.contact-card > *,
.featured-card > *,
.service-card > *{
  position:relative!important;
  z-index:1!important;
}

/* All images zoom 10%, not 15% */
.card-media-top,
.approach-media,
.image-frame,
.featured-image,
.contact-media,
.blog-card .image-frame{
  position:relative!important;
  overflow:hidden!important;
}

.card-media-top img,
.approach-media img,
.image-frame img,
.featured-image img,
.contact-media img,
.blog-card .image-frame img{
  transition:transform .65s ease, filter .65s ease!important;
  transform-origin:center center!important;
}

.card:hover .card-media-top img,
.approach-card:hover .approach-media img,
.image-card:hover .image-frame img,
.blog-card:hover .image-frame img,
.featured-image:hover img,
.contact-media:hover img{
  transform:scale(1.10)!important;
  filter:saturate(1.08) brightness(1.04)!important;
}

/* Contact form anti-bot and required field style */
.required-mark{
  color:#f5a623;
  font-weight:900;
  margin-right:4px;
}

.captcha-box{
  grid-column:1/-1;
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  border:1px solid #dce7ef;
  border-radius:16px;
  background:#f8fbfe;
  color:#26384d;
  font-weight:700;
}

.captcha-box input{
  width:auto!important;
  min-width:20px;
  height:20px;
  accent-color:#f5a623;
}

.honeypot-field{
  position:absolute!important;
  left:-9999px!important;
  top:auto!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
  opacity:0!important;
}

.form-error{
  border-color:#ff8b8b!important;
  box-shadow:0 0 0 3px rgba(255,139,139,.16)!important;
}

#contactStatus.error{
  color:#a80000!important;
}

#contactStatus.success{
  color:#0f6b31!important;
}
