/*
Theme Name: Innovative Idea Real Estate
Theme URI: https://innovativeidea.example.com
Author: Innovative Idea Developments Limited
Author URI: https://innovativeidea.example.com
Description: A premium, animated, bilingual (English/Bangla) one-page WordPress theme for real estate developers. Built for Innovative Idea Developments Limited — "For Living Better". Features scroll reveal animations, animated counters, a filterable project showcase, marquee ticker, floating call button and a working AJAX contact form.
Version: 1.0.0
Requires at least: 5.9
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: innovative-idea
Tags: one-column, full-width-template, custom-menu, custom-logo, translation-ready, threaded-comments, footer-widgets
*/

/* =========================================================
   0. RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: #0f172a;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4, p { margin: 0; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px,1px,1px,1px); white-space: nowrap;
}

/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */
:root {
  --color-brand-50: #eff8ff;
  --color-brand-100: #dbeefe;
  --color-brand-200: #bfe2fe;
  --color-brand-300: #93cffd;
  --color-brand-400: #60b1fa;
  --color-brand-500: #3b8ff6;
  --color-brand-600: #256fea;
  --color-brand-700: #1e59d7;
  --color-brand-800: #1e48ae;
  --color-brand-900: #1c3f89;
  --color-brand-950: #0f2454;

  --color-gold-300: #f7d585;
  --color-gold-400: #f5c451;
  --color-gold-500: #e2a935;
  --color-gold-600: #c48a1e;

  --font-sans: "Poppins", "Hind Siliguri", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Playfair Display", serif;
  --font-bn: "Hind Siliguri", "Poppins", sans-serif;

  --container: 1280px;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* Bangla font handling */
.font-bn, body.lang-bn { font-family: var(--font-bn); }
.font-display { font-family: var(--font-display); }

/* Bilingual visibility toggle -------------------------------------- */
[data-en], [data-bn] { }
body:not(.lang-bn) [data-bn-only] { display: none !important; }
body.lang-bn [data-en-only] { display: none !important; }
/* Elements that hold two spans, one per language */
.i18n [lang="bn"] { display: none; }
body.lang-bn .i18n [lang="en"] { display: none; }
body.lang-bn .i18n [lang="bn"] { display: inline; }
body.lang-bn .i18n[data-block] [lang="bn"] { display: block; }
body:not(.lang-bn) .i18n[data-block] [lang="en"] { display: block; }

/* =========================================================
   2. UTILITIES
   ========================================================= */
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-gold-600);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-brand-950);
  line-height: 1.2;
}
.fancy-underline { position: relative; display: inline-block; }
.fancy-underline::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: -14px; width: 60px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--color-gold-500), var(--color-brand-600));
}
.text-center { text-align: center; }
.section-head { text-align: center; margin-bottom: 3.2rem; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .95rem 1.9rem; border-radius: 999px;
  font-weight: 700; font-size: .95rem; transition: all .35s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(90deg, var(--color-gold-500), var(--color-gold-600));
  color: var(--color-brand-950);
  box-shadow: 0 20px 40px -12px rgba(226,169,53,.4);
}
.btn-gold:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 25px 50px -12px rgba(226,169,53,.55); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.35); color: #fff; backdrop-filter: blur(6px);
}
.btn-outline:hover { background: #fff; color: var(--color-brand-950); border-color: #fff; }
.btn-primary {
  background: linear-gradient(90deg, var(--color-brand-700), var(--color-brand-900));
  color: #fff; box-shadow: 0 20px 40px -14px rgba(15,36,84,.4);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 25px 50px -12px rgba(15,36,84,.55); }

.lift { transition: transform .4s ease, box-shadow .4s ease; }
.lift:hover { transform: translateY(-8px); box-shadow: 0 25px 50px -12px rgba(15,36,84,.25); }

.grid-bg {
  background-image:
    linear-gradient(rgba(28,63,137,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,63,137,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* =========================================================
   3. ANIMATIONS
   ========================================================= */
@keyframes gradientShift { 0%,100%{background-position:0% 50%;} 50%{background-position:100% 50%;} }
.gradient-text {
  background: linear-gradient(90deg,#1c3f89,#256fea,#e2a935,#1c3f89);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }
.float { animation: float 6s ease-in-out infinite; }

@keyframes slowZoom { 0%{transform:scale(1);} 100%{transform:scale(1.15);} }
.hero-zoom { animation: slowZoom 20s ease-in-out infinite alternate; }

@keyframes marquee { 0%{transform:translateX(0);} 100%{transform:translateX(-33.3333%);} }
.marquee-track { animation: marquee 26s linear infinite; }

@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(37,111,234,.55); }
  70% { box-shadow: 0 0 0 22px rgba(37,111,234,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,111,234,0); }
}
.pulse-ring { animation: pulseRing 2.2s cubic-bezier(.4,0,.6,1) infinite; }

@keyframes fadeUp { from{opacity:0; transform:translateY(30px);} to{opacity:1; transform:none;} }
.fade-up { opacity: 0; animation: fadeUp .7s ease forwards; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: linear-gradient(#1c3f89,#256fea); border-radius: 6px; }

/* =========================================================
   4. TOP BAR + HEADER
   ========================================================= */
.topbar { background: var(--color-brand-950); color: #fff; font-size: .78rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; padding-top: .5rem; padding-bottom: .5rem; }
.topbar-left { display: flex; align-items: center; gap: 1.4rem; }
.topbar a:hover { color: var(--color-gold-400); }
.topbar-left a { display: flex; align-items: center; gap: .4rem; transition: color .2s; }
.topbar-right { display: flex; align-items: center; gap: 1rem; }
.social-mini { display: flex; align-items: center; gap: .5rem; }
.social-mini a { display: inline-flex; transition: color .2s; }
.lang-switch {
  padding: .15rem .7rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.3);
  font-weight: 700; font-size: .78rem; color: #fff; transition: all .2s;
}
.lang-switch:hover { background: #fff; color: var(--color-brand-950); }

.site-header {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,.88); backdrop-filter: blur(10px);
  padding: .8rem 0; transition: all .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { padding: .5rem 0; box-shadow: 0 8px 24px -12px rgba(15,36,84,.18); background: rgba(255,255,255,.97); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand-logo { display: flex; align-items: center; gap: .7rem; }
.brand-logo .logo-text-primary { font-size: .95rem; font-weight: 800; letter-spacing: -.01em; text-transform: uppercase; color: var(--color-brand-900); }
.brand-logo .logo-text-sub { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #0f172a; }
.brand-logo .logo-text-tag { font-size: .58rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: #475569; margin-top: 2px; }

.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: .1rem; }
.main-nav a {
  padding: .55rem .85rem; font-size: .9rem; font-weight: 600; color: #334155;
  position: relative; transition: color .2s;
}
.main-nav a:hover { color: var(--color-brand-700); }
.main-nav a::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--color-brand-600), var(--color-gold-500));
  transform: translateX(-50%); transition: width .25s;
}
.main-nav a:hover::after { width: 22px; }

.header-actions { display: flex; align-items: center; gap: .6rem; }
.header-cta { display: none; }
.lang-switch-mobile {
  padding: .4rem .75rem; border-radius: 999px; border: 1px solid var(--color-brand-800);
  color: var(--color-brand-800); font-size: .72rem; font-weight: 800;
}
.menu-toggle { padding: .4rem; color: var(--color-brand-900); }
.menu-toggle svg { display: block; }

.mobile-nav {
  display: none; background: #fff; border-top: 1px solid #f1f5f9; padding: .8rem 1.5rem 1.2rem;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: .7rem 0; font-weight: 600; font-size: .92rem; color: #334155; border-bottom: 1px solid #f1f5f9; }

@media (min-width: 1024px) {
  .main-nav { display: block; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .lang-switch-mobile { display: none; }
}
@media (min-width: 768px) {
  .topbar { display: block; }
}
@media (max-width: 767px) {
  .topbar { display: none; }
}

/* =========================================================
   5. HERO
   ========================================================= */
.hero {
  position: relative; min-height: 92vh; overflow: hidden; background: var(--color-brand-950);
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-image: url('https://images.pexels.com/photos/38340549/pexels-photo-38340549.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1080&w=1920');
}
.hero-bg-grad-1 { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,36,84,.95), rgba(15,36,84,.8) 55%, rgba(15,36,84,.3)); }
.hero-bg-grad-2 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,36,84,.7), transparent 60%); }
.hero-blob-1 { position: absolute; top: 6rem; right: 2.5rem; width: 18rem; height: 18rem; background: rgba(226,169,53,.12); border-radius: 999px; filter: blur(90px); }
.hero-blob-2 { position: absolute; bottom: 6rem; left: 2.5rem; width: 24rem; height: 24rem; background: rgba(59,143,246,.2); border-radius: 999px; filter: blur(90px); }

.hero-inner {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding: 5rem 0 7rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .5rem 1rem; border-radius: 999px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(6px);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; margin-bottom: 1.5rem;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--color-gold-400); }
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; line-height: 1.05; color: #fff; margin-bottom: 1.4rem;
}
.hero-title span { display: block; }
.hero-title .accent {
  background: linear-gradient(90deg, var(--color-gold-400), var(--color-gold-500), var(--color-gold-400));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(255,255,255,.85); max-width: 42rem; line-height: 1.7; margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 34rem; }
.hero-stat { border-left: 2px solid rgba(226,169,53,.6); padding-left: 1rem; }
.hero-stat-value { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; color: #fff; }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.7); margin-top: .25rem; }

.hero-card-wrap { display: none; }
.hero-card { position: relative; }
.hero-card-glow { position: absolute; inset: -1rem; background: linear-gradient(to top right, rgba(226,169,53,.4), rgba(59,143,246,.4)); border-radius: 1.6rem; filter: blur(40px); }
.hero-card-box { position: relative; background: rgba(255,255,255,.1); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.2); border-radius: 1.6rem; padding: 2rem; box-shadow: 0 25px 60px -12px rgba(0,0,0,.4); }
.hero-card-head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.3rem; }
.hero-card-icon { width: 3rem; height: 3rem; border-radius: 1rem; background: linear-gradient(to bottom right, var(--color-gold-400), var(--color-gold-600)); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--color-brand-950); }
.hero-card-eyebrow { font-size: .7rem; text-transform: uppercase; letter-spacing: .16em; color: var(--color-gold-300); font-weight: 700; }
.hero-card-title { color: #fff; font-weight: 700; font-size: 1.1rem; }
.hero-card-img { border-radius: 1rem; overflow: hidden; margin-bottom: 1rem; border: 1px solid rgba(255,255,255,.1); }
.hero-card-img img { width: 100%; height: 14rem; object-fit: cover; }
.hero-card-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: .7rem; text-align: center; }
.hero-card-fact { background: rgba(255,255,255,.1); border-radius: .8rem; padding: .7rem 0; }
.hero-card-fact b { display: block; color: #fff; font-weight: 700; font-size: 1.1rem; }
.hero-card-fact span { font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.7); }

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; z-index: 2; }
.hero-wave svg { width: 100%; height: 5rem; display: block; }

@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 7fr 5fr; align-items: center; padding: 8rem 0 10rem; }
  .hero-card-wrap { display: block; }
}

/* =========================================================
   6. STATS BAND
   ========================================================= */
.stats-band { position: relative; padding: 4rem 0; background: linear-gradient(90deg, var(--color-brand-900), var(--color-brand-950), var(--color-brand-900)); overflow: hidden; }
.stats-band-bg { position: absolute; inset: 0; opacity: .18; background-size: cover; background-position: center; background-image: url('https://images.pexels.com/photos/13525370/pexels-photo-13525370.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=800&w=1920'); }
.stats-band-overlay { position: absolute; inset: 0; background: rgba(15,36,84,.7); }
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.stat-item { text-align: center; color: #fff; }
.stat-value { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: var(--color-gold-400); margin-bottom: .5rem; }
.stat-rule { width: 2.5rem; height: 2px; background: rgba(255,255,255,.4); margin: 0 auto .75rem; }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .08em; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }

/* =========================================================
   7. ABOUT
   ========================================================= */
.about-section { position: relative; padding: 6rem 0; background: #fff; overflow: hidden; }
.about-blob-1 { position: absolute; top: 0; left: 0; width: 18rem; height: 18rem; background: rgba(219,238,254,.5); border-radius: 999px; filter: blur(70px); transform: translate(-50%,-50%); }
.about-blob-2 { position: absolute; bottom: 0; right: 0; width: 24rem; height: 24rem; background: rgba(226,169,53,.1); border-radius: 999px; filter: blur(70px); transform: translateX(30%); }
.about-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: center; }
.about-gallery { position: relative; }
.about-gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-gallery-grid .col-shift { margin-top: 2.5rem; }
.about-gallery-grid .col-stack { display: flex; flex-direction: column; gap: 1rem; }
.about-img { border-radius: 1.5rem; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(15,36,84,.25); }
.about-img img { width: 100%; object-fit: cover; }
.about-img.tall img { height: 14rem; }
.about-img.short img { height: 10rem; }
.about-badge {
  position: absolute; bottom: -1.5rem; left: -1rem; background: linear-gradient(to bottom right, var(--color-brand-800), var(--color-brand-950));
  color: #fff; border-radius: 1.5rem; padding: 1.2rem 1.6rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,.4);
}
.about-badge b { display: block; font-size: 2.2rem; font-weight: 800; color: var(--color-gold-400); }
.about-badge span { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin: 2rem 0; }
.about-feature { display: flex; align-items: center; gap: .75rem; padding: .8rem; border-radius: .9rem; background: var(--color-brand-50); border: 1px solid var(--color-brand-100); }
.about-feature-check { width: 2rem; height: 2rem; border-radius: .6rem; background: linear-gradient(to bottom right, var(--color-brand-700), var(--color-brand-900)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; }
.about-feature span.label { font-weight: 600; font-size: .87rem; color: var(--color-brand-950); }
.about-text p { color: #475569; line-height: 1.75; margin-bottom: 1rem; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   8. PROJECTS
   ========================================================= */
.projects-section { position: relative; padding: 6rem 0; background: linear-gradient(to bottom, #f8fafc, #fff); }
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin-bottom: 2.5rem; }
.filter-btn {
  padding: .55rem 1.3rem; border-radius: 999px; font-size: .87rem; font-weight: 700;
  background: #fff; border: 1px solid #e2e8f0; color: #475569; transition: all .2s;
}
.filter-btn:hover { border-color: var(--color-brand-500); color: var(--color-brand-800); }
.filter-btn.active { background: linear-gradient(90deg, var(--color-brand-800), var(--color-brand-950)); color: #fff; border-color: transparent; box-shadow: 0 12px 25px -8px rgba(15,36,84,.4); }

.projects-grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
.project-card { background: #fff; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 12px 30px -12px rgba(15,36,84,.15); border: 1px solid #f1f5f9; display: flex; flex-direction: column; height: 100%; }
.project-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.project-card:hover .project-media img { transform: scale(1.1); }
.project-media-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,36,84,.8), transparent 60%); }
.project-status { position: absolute; top: 1rem; left: 1rem; color: #fff; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .3rem .75rem; border-radius: 999px; }
.status-ongoing { background: #f59e0b; }
.status-completed { background: #10b981; }
.status-upcoming { background: var(--color-brand-600); }
.project-loc { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; color: #fff; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--color-gold-300); }
.project-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.project-title { font-size: 1.2rem; font-weight: 700; color: var(--color-brand-950); margin-bottom: .5rem; }
.project-desc { color: #475569; font-size: .88rem; line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.project-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; text-align: center; border-top: 1px solid #f1f5f9; padding-top: 1rem; }
.project-facts b { display: block; color: var(--color-brand-900); font-weight: 700; font-size: .85rem; }
.project-facts span { font-size: .62rem; text-transform: uppercase; letter-spacing: .06em; color: #64748b; }
@media (min-width: 768px) { .projects-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(3,1fr); } }

/* =========================================================
   9. MARQUEE
   ========================================================= */
.marquee-wrap { background: linear-gradient(90deg, var(--color-brand-900), var(--color-brand-950)); border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); overflow: hidden; padding: 1.2rem 0; }
.marquee-track { display: flex; white-space: nowrap; gap: 3.5rem; width: max-content; }
.marquee-item { display: flex; align-items: center; gap: 3.5rem; flex-shrink: 0; }
.marquee-item span.txt { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: rgba(255,255,255,.9); letter-spacing: .02em; }
body.lang-bn .marquee-item span.txt { font-family: var(--font-bn); font-style: normal; }
.marquee-item span.star { color: var(--color-gold-400); font-size: 1.4rem; }

/* =========================================================
   10. SERVICES
   ========================================================= */
.services-section { position: relative; padding: 6rem 0; background: var(--color-brand-950); color: #fff; overflow: hidden; }
.services-blob-1 { position: absolute; top: 0; right: 0; width: 24rem; height: 24rem; background: rgba(226,169,53,.2); border-radius: 999px; filter: blur(90px); }
.services-blob-2 { position: absolute; bottom: 0; left: 0; width: 24rem; height: 24rem; background: rgba(59,143,246,.2); border-radius: 999px; filter: blur(90px); }
.services-section .section-title { color: #fff; }
.services-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.service-card { position: relative; background: rgba(255,255,255,.05); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.1); border-radius: 1.5rem; padding: 1.8rem; overflow: hidden; transition: all .3s ease; }
.service-card:hover { background: rgba(255,255,255,.1); border-color: rgba(226,169,53,.4); }
.service-icon { width: 3.5rem; height: 3.5rem; border-radius: 1rem; background: linear-gradient(to bottom right, var(--color-gold-400), var(--color-gold-600)); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin-bottom: 1.2rem; transition: transform .3s; }
.service-card:hover .service-icon { transform: scale(1.1) rotate(6deg); }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .7rem; }
.service-card p { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.65; }
.service-more { margin-top: 1.2rem; display: flex; align-items: center; gap: .4rem; color: var(--color-gold-400); font-size: .85rem; font-weight: 600; opacity: 0; transition: opacity .3s; }
.service-card:hover .service-more { opacity: 1; }
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3,1fr); } }

/* =========================================================
   11. MESSAGES (Chairman / MD)
   ========================================================= */
.messages-section { position: relative; padding: 6rem 0; background: linear-gradient(to bottom, #fff, #f8fafc); overflow: hidden; }
.msg-blob-1 { position: absolute; top: 5rem; left: 0; width: 18rem; height: 18rem; background: rgba(219,238,254,.5); border-radius: 999px; filter: blur(70px); }
.msg-blob-2 { position: absolute; bottom: 5rem; right: 0; width: 24rem; height: 24rem; background: rgba(226,169,53,.1); border-radius: 999px; filter: blur(70px); }
.msg-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 2rem; }
.msg-card { position: relative; background: #fff; border-radius: 1.5rem; box-shadow: 0 12px 30px -12px rgba(15,36,84,.18); border: 1px solid #f1f5f9; overflow: hidden; }
.msg-strip { height: 6px; background: linear-gradient(90deg, #f43f5e, #ec4899, #e11d48); }
.msg-strip.md { background: linear-gradient(90deg, var(--color-brand-700), var(--color-brand-800), var(--color-brand-900)); }
.msg-body { padding: 2rem; }
.msg-head { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.5rem; }
.msg-avatar-wrap { position: relative; flex-shrink: 0; }
.msg-avatar { width: 6rem; height: 6rem; border-radius: 999px; overflow: hidden; box-shadow: 0 10px 25px -8px rgba(0,0,0,.3); border: 4px solid #fff; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 2.2rem; background: linear-gradient(to bottom right, #f43f5e, #db2777); }
.msg-avatar.md { background: linear-gradient(to bottom right, var(--color-brand-700), var(--color-brand-900)); }
.msg-role { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: #e11d48; }
.msg-role.md { color: var(--color-brand-700); }
.msg-name { font-size: 1.35rem; font-weight: 700; color: var(--color-brand-950); margin-top: .2rem; }
.msg-title { font-size: .85rem; color: #64748b; }
.msg-quote { position: relative; color: #334155; line-height: 1.75; font-style: italic; }
body.lang-bn .msg-quote { font-style: normal; }
.msg-quote-mark { position: absolute; left: -.4rem; top: -1.6rem; font-size: 4.5rem; color: #fecdd3; font-family: var(--font-display); line-height: 1; user-select: none; }
.msg-quote-mark.md { color: var(--color-brand-100); }
.msg-foot { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid #f1f5f9; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .6rem; }
.msg-foot-note { font-size: .85rem; color: #64748b; }
.msg-sign { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: #e11d48; }
.msg-sign.md { color: var(--color-brand-800); }
@media (min-width: 1024px) { .msg-grid { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   12. WHY US
   ========================================================= */
.why-section { position: relative; padding: 6rem 0; background: #f8fafc; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: center; }
.why-media { position: relative; }
.why-media-glow { position: absolute; inset: -1.5rem; background: linear-gradient(to top right, rgba(59,143,246,.2), rgba(226,169,53,.2)); border-radius: 3rem; filter: blur(40px); }
.why-media-box { position: relative; border-radius: 2rem; overflow: hidden; box-shadow: 0 30px 60px -12px rgba(15,36,84,.3); }
.why-media-box img { width: 100%; height: 32rem; object-fit: cover; }
.why-media-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,36,84,.7), transparent 55%); }
.why-media-caption { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; color: #fff; }
.why-media-caption .tag { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--color-gold-300); margin-bottom: .3rem; }
.why-media-caption .headline { font-size: 1.4rem; font-weight: 700; }
.why-badge { position: absolute; top: -1.5rem; right: -1.5rem; background: #fff; border-radius: 1.2rem; padding: 1rem 1.3rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); display: flex; align-items: center; gap: .8rem; }
.why-badge-icon { width: 2.7rem; height: 2.7rem; border-radius: .8rem; background: linear-gradient(to bottom right, #10b981, #059669); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.why-badge small { display: block; font-size: .7rem; color: #64748b; }
.why-badge b { font-size: .87rem; color: var(--color-brand-950); }
.why-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.why-item { display: flex; gap: 1rem; padding: 1.2rem; border-radius: 1.2rem; background: #fff; border: 1px solid #f1f5f9; transition: all .25s; }
.why-item:hover { border-color: rgba(59,143,246,.5); box-shadow: 0 12px 30px -12px rgba(15,36,84,.2); }
.why-item-icon { flex-shrink: 0; width: 3rem; height: 3rem; border-radius: .8rem; background: linear-gradient(to bottom right, var(--color-brand-700), var(--color-brand-950)); color: var(--color-gold-400); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 700; }
.why-item h4 { font-weight: 700; color: var(--color-brand-950); margin-bottom: .3rem; }
.why-item p { font-size: .87rem; color: #475569; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   13. CTA
   ========================================================= */
.cta-section { position: relative; padding: 3.5rem 0; }
.cta-box { position: relative; border-radius: 2rem; overflow: hidden; box-shadow: 0 30px 60px -12px rgba(15,36,84,.35); }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-image: url('https://images.pexels.com/photos/11576092/pexels-photo-11576092.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=600&w=1600'); }
.cta-grad { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,36,84,.97), rgba(30,72,174,.9) 60%, rgba(30,89,215,.6)); }
.cta-inner { position: relative; padding: 3.2rem 2rem; display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; color: #fff; }
.cta-eyebrow { font-size: .72rem; text-transform: uppercase; letter-spacing: .2em; color: var(--color-gold-400); font-weight: 700; margin-bottom: .7rem; }
.cta-heading { font-size: clamp(1.7rem,3.5vw,2.6rem); font-weight: 700; line-height: 1.25; margin-bottom: .9rem; }
.cta-text { color: rgba(255,255,255,.8); max-width: 34rem; }
.cta-actions { display: flex; flex-direction: column; gap: .75rem; }
.cta-call { display: inline-flex; align-items: center; gap: .8rem; background: var(--color-gold-500); color: var(--color-brand-950); padding: 1rem 1.4rem; border-radius: 1rem; font-weight: 700; box-shadow: 0 15px 35px -10px rgba(226,169,53,.5); transition: background .2s; }
.cta-call:hover { background: var(--color-gold-400); }
.cta-call-icon { width: 2.5rem; height: 2.5rem; border-radius: .7rem; background: var(--color-brand-950); color: var(--color-gold-400); display: flex; align-items: center; justify-content: center; }
.cta-call small { display: block; font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; opacity: .7; }
.cta-callback { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; border: 2px solid rgba(255,255,255,.4); color: #fff; padding: 1rem 1.4rem; border-radius: 1rem; font-weight: 700; transition: all .2s; }
.cta-callback:hover { background: #fff; color: var(--color-brand-950); border-color: #fff; }
@media (min-width: 768px) { .cta-inner { grid-template-columns: 3fr 2fr; padding: 4.5rem 4rem; } }

/* =========================================================
   14. CONTACT
   ========================================================= */
.contact-section { padding: 6rem 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.contact-info { position: relative; background: linear-gradient(to bottom right, var(--color-brand-900), var(--color-brand-950), var(--color-brand-900)); color: #fff; border-radius: 1.5rem; padding: 2rem; overflow: hidden; height: 100%; }
.contact-blob-1 { position: absolute; top: -4rem; right: -4rem; width: 15rem; height: 15rem; background: rgba(226,169,53,.2); border-radius: 999px; filter: blur(60px); }
.contact-blob-2 { position: absolute; bottom: -4rem; left: -4rem; width: 15rem; height: 15rem; background: rgba(59,143,246,.2); border-radius: 999px; filter: blur(60px); }
.contact-info-inner { position: relative; }
.contact-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: .5rem; }
.contact-info > .contact-info-inner > p { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.3rem; }
.contact-item-icon { width: 2.75rem; height: 2.75rem; border-radius: .8rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--color-gold-300); font-weight: 700; margin-bottom: .1rem; }
.contact-item-value { color: rgba(255,255,255,.9); font-size: .9rem; line-height: 1.6; }
.contact-item a.big { color: #fff; font-size: 1.05rem; font-weight: 600; display: block; }
.contact-item a.big:hover, .contact-item a:hover { color: var(--color-gold-400); }
.contact-socials { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; gap: .75rem; }
.contact-socials a { width: 2.5rem; height: 2.5rem; border-radius: .7rem; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.contact-socials a:hover { background: var(--color-gold-500); color: var(--color-brand-950); }

.contact-form-wrap { background: #fff; border-radius: 1.5rem; border: 1px solid #f1f5f9; box-shadow: 0 12px 30px -12px rgba(15,36,84,.18); overflow: hidden; }
.contact-form { padding: 2rem; display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.form-group label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #475569; margin-bottom: .5rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: .8rem 1rem; border-radius: .8rem; border: 1px solid #e2e8f0; outline: none; transition: all .2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--color-brand-500); box-shadow: 0 0 0 3px rgba(59,143,246,.15); }
.form-group textarea { resize: none; }
.form-row-full { grid-column: 1 / -1; }
.form-submit-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.form-msg { font-size: .87rem; font-weight: 600; color: #059669; opacity: 0; transition: opacity .3s; }
.form-msg.show { opacity: 1; }
.form-msg.error { color: #dc2626; }
.map-embed { border-top: 1px solid #f1f5f9; }
.map-embed iframe { width: 100%; height: 18rem; border: 0; display: block; }
@media (min-width: 768px) { .contact-form { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }

/* =========================================================
   15. FOOTER
   ========================================================= */
.site-footer { position: relative; background: var(--color-brand-950); color: #fff; overflow: hidden; }
.footer-blob { position: absolute; top: 0; right: 0; width: 24rem; height: 24rem; background: rgba(226,169,53,.1); border-radius: 999px; filter: blur(90px); }
.footer-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 0; }
.footer-brand-box { background: rgba(255,255,255,.05); backdrop-filter: blur(6px); border-radius: 1rem; padding: 1rem; display: inline-block; }
.footer-about { color: rgba(255,255,255,.7); font-size: .88rem; line-height: 1.65; margin-top: 1.25rem; }
.footer-socials { display: flex; gap: .5rem; margin-top: 1.25rem; }
.footer-socials a { width: 2.3rem; height: 2.3rem; border-radius: .6rem; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.footer-socials a:hover { background: var(--color-gold-500); color: var(--color-brand-950); }
.footer-heading { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--color-gold-400); margin-bottom: 1.2rem; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .88rem; display: inline-flex; align-items: center; gap: .5rem; transition: color .2s; }
.footer-links a:hover { color: var(--color-gold-400); }
.footer-contact li { display: flex; gap: .5rem; margin-bottom: .8rem; font-size: .87rem; color: rgba(255,255,255,.7); }
.footer-contact a { display: block; }
.footer-contact a:hover { color: var(--color-gold-400); }
.newsletter-text { color: rgba(255,255,255,.7); font-size: .87rem; margin-bottom: 1rem; }
.newsletter-form { display: flex; background: rgba(255,255,255,.1); border-radius: 999px; padding: .3rem; border: 1px solid rgba(255,255,255,.2); }
.newsletter-form input { flex: 1; background: transparent; border: 0; padding: .55rem 1rem; font-size: .87rem; color: #fff; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form button { background: linear-gradient(90deg, var(--color-gold-500), var(--color-gold-600)); color: var(--color-brand-950); padding: .55rem 1.2rem; border-radius: 999px; font-size: .87rem; font-weight: 700; }
.footer-bottom { position: relative; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: .8rem; padding: 1.3rem 0; font-size: .74rem; color: rgba(255,255,255,.6); text-align: center; }
.footer-bottom .tagline { font-family: var(--font-display); font-style: italic; color: var(--color-gold-400); }
body.lang-bn .footer-bottom .tagline { font-family: var(--font-bn); font-style: normal; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-bottom-inner { flex-direction: row; text-align: left; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }

/* =========================================================
   16. FLOATING BUTTONS
   ========================================================= */
.float-call {
  position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 998;
  width: 3.5rem; height: 3.5rem; border-radius: 999px; background: #10b981; color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 20px 40px -12px rgba(16,185,129,.5);
  transition: all .25s;
}
.float-call:hover { background: #059669; transform: scale(1.1); }
.back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 998;
  width: 3rem; height: 3rem; border-radius: 999px; background: var(--color-brand-900); color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 15px 35px -10px rgba(0,0,0,.4);
  opacity: 0; transform: translateY(1rem); pointer-events: none; transition: all .3s;
}
.back-to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover { background: var(--color-brand-950); }

/* =========================================================
   17. WORDPRESS CORE / WIDGETS / A11Y
   ========================================================= */
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }

/* =========================================================
   18. BLOG / COMMENTS / SEARCH FORM / PAGINATION
   ========================================================= */
.comment-list li { margin-bottom: 1.5rem; padding: 1.25rem; background: #f8fafc; border-radius: 1rem; border: 1px solid #f1f5f9; }
.comment-list .children { list-style: none; margin: 1rem 0 0 1.5rem; padding: 0; }
.comment-author .fn { font-weight: 700; color: var(--color-brand-950); }
.comment-metadata { font-size: .78rem; color: #64748b; margin: .25rem 0 .5rem; }
.comment-content p { margin: 0 0 .5rem; color: #334155; line-height: 1.7; }
.comment-reply-link { font-size: .8rem; font-weight: 700; color: var(--color-brand-700); }
#respond { margin-top: 2rem; }
#respond .comment-form input[type="text"],
#respond .comment-form input[type="email"],
#respond .comment-form input[type="url"],
#respond .comment-form textarea {
  width: 100%; padding: .75rem 1rem; border-radius: .75rem; border: 1px solid #e2e8f0; margin-bottom: 1rem; outline: none;
}
#respond .comment-form textarea { min-height: 8rem; }
#respond .comment-notes, #respond .logged-in-as { font-size: .85rem; color: #64748b; }

.search-form { display: flex; gap: .5rem; }
.search-form .search-field { flex: 1; padding: .75rem 1rem; border-radius: .75rem; border: 1px solid #e2e8f0; outline: none; }
.search-form .search-submit {
  padding: .75rem 1.25rem; border-radius: .75rem; background: linear-gradient(90deg,var(--color-brand-700),var(--color-brand-900)); color: #fff; font-weight: 700;
}

.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 2.4rem; height: 2.4rem; margin: 0 .2rem; border-radius: .6rem; background: #f1f5f9; color: var(--color-brand-900); font-weight: 700; font-size: .85rem; }
.pagination .page-numbers.current { background: linear-gradient(90deg,var(--color-brand-700),var(--color-brand-900)); color: #fff; }
.pagination .page-numbers.dots { background: transparent; }

.page-links a { display: inline-flex; align-items: center; justify-content: center; min-width: 2rem; height: 2rem; margin: 0 .2rem; border-radius: .5rem; background: #f1f5f9; color: var(--color-brand-900); font-weight: 700; font-size: .8rem; }
