/* ==========================================================
   ONE WEB CLICK — Core Brand Stylesheet
   ========================================================== */

:root {
  --primary: #0066ff;
  --primary-dark: #0052cc;
  --secondary: #ff6b35;
  --accent: #00d4aa;
  --dark: #1a1a2e;
  --dark-light: #262640;
  --text: #333333;
  --text-light: #6b7280;
  --bg-light: #f7f9fc;
  --white: #ffffff;
  --border: #e7e9f1;
  --gradient-1: linear-gradient(135deg, #0066ff 0%, #00d4aa 100%);
  --gradient-2: linear-gradient(135deg, #ff6b35 0%, #0066ff 100%);
  --shadow-sm: 0 4px 14px rgba(20, 20, 50, 0.06);
  --shadow-md: 0 10px 30px rgba(20, 20, 50, 0.1);
  --shadow-lg: 0 25px 60px rgba(20, 20, 50, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

a { text-decoration: none; transition: all 0.2s ease; }
img { max-width: 100%; height: auto; }

.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

.text-gradient {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-light-soft { background: var(--bg-light); }
.bg-dark-soft { background: var(--dark); color: #fff; }
.bg-dark-soft h1, .bg-dark-soft h2, .bg-dark-soft h3 { color: #fff; }

/* ---------- Section heading ---------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 102, 255, 0.08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.section-title { font-size: 2.4rem; margin-bottom: 16px; }
.section-subtitle { color: var(--text-light); font-size: 1.05rem; max-width: 620px; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn-owc-primary {
  background: var(--gradient-1);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-owc-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 102, 255, 0.35);
}
.btn-owc-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.btn-owc-outline:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(0, 102, 255, 0.05);
}
.btn-owc-light {
  background: #fff;
  color: var(--primary);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}
.btn-owc-light:hover { color: var(--primary-dark); transform: translateY(-3px); }

/* ---------- Navbar ---------- */
.owc-navbar {
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(20, 20, 50, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: padding 0.3s ease;
}
.owc-navbar .navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark) !important;
}
.owc-navbar .navbar-brand span { color: var(--primary); }
.owc-navbar .nav-link {
  font-weight: 500;
  color: var(--text) !important;
  padding: 10px 16px !important;
  border-radius: 8px;
  position: relative;
}
.owc-navbar .nav-link:hover,
.owc-navbar .nav-link.active { color: var(--primary) !important; }
.owc-navbar .btn-owc-primary { padding: 11px 26px; font-size: 14px; }
.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  padding: 10px;
}
.dropdown-item {
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 500;
  font-size: 14.5px;
}
.dropdown-item:hover { background: rgba(0,102,255,0.06); color: var(--primary); }

/* ---------- Top utility bar ---------- */
.owc-topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  padding: 8px 0;
}
.owc-topbar a { color: rgba(255,255,255,0.85); }
.owc-topbar .topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  margin-left: 6px;
  color: #fff;
  font-size: 13px;
}
.owc-topbar .topbar-social a:hover { background: var(--primary); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--dark);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(0,102,255,0.35), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(0,212,170,0.25), transparent 45%);
  color: #fff;
  padding: 100px 0 70px;
  text-align: center;
}
.page-hero .section-tag { background: rgba(255,255,255,0.1); color: var(--accent); }
.page-hero h1 { color: #fff; font-size: 2.7rem; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 620px; margin: 0 auto; }
.breadcrumb-owc {
  display: inline-flex;
  gap: 8px;
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.breadcrumb-owc a { color: rgba(255,255,255,0.85); }
.breadcrumb-owc a:hover { color: var(--accent); }

/* ---------- Home hero ---------- */
.home-hero {
  background: var(--dark);
  background-image:
    radial-gradient(circle at 10% 10%, rgba(0,102,255,0.4), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(0,212,170,0.3), transparent 40%);
  color: #fff;
  padding: 140px 0 110px;
  position: relative;
  overflow: hidden;
}
.home-hero .section-tag { background: rgba(255,255,255,0.1); color: var(--accent); }
.home-hero h1 { color: #fff; font-size: 3.2rem; line-height: 1.2; }
.home-hero p.lead { color: rgba(255,255,255,0.78); font-size: 1.15rem; max-width: 540px; }
.home-hero .hero-stats { margin-top: 50px; }
.home-hero .hero-stats .stat-num { font-size: 2rem; font-weight: 800; color: var(--accent); }
.home-hero .hero-stats .stat-label { font-size: 13px; color: rgba(255,255,255,0.65); }
.hero-visual-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(6px);
}

/* ---------- Cards ---------- */
.owc-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.owc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.owc-card .card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--gradient-1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.owc-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.owc-card p { color: var(--text-light); font-size: 14.5px; margin-bottom: 0; }

/* ---------- Stats strip ---------- */
.stats-strip { background: var(--gradient-1); color: #fff; padding: 50px 0; }
.stats-strip .stat-num { font-size: 2.4rem; font-weight: 800; }
.stats-strip .stat-label { font-size: 14px; opacity: 0.9; }

/* ---------- Portfolio ---------- */
.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.portfolio-card .portfolio-img { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--bg-light); }
.portfolio-card .portfolio-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-card:hover .portfolio-img img { transform: scale(1.08); }
.portfolio-card .portfolio-body { padding: 22px 24px; background: #fff; }
.portfolio-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.95); color: var(--primary);
  font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 30px;
}
.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-pill {
  background: #fff; border: 1.5px solid var(--border); color: var(--text);
  padding: 10px 22px; border-radius: 30px; font-weight: 600; font-size: 14px; cursor: pointer;
  transition: all 0.2s ease;
}
.filter-pill.active, .filter-pill:hover { background: var(--gradient-1); color: #fff; border-color: transparent; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-photo {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; margin-bottom: 20px;
  position: relative; box-shadow: var(--shadow-sm);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-social { display: flex; justify-content: center; gap: 10px; margin-top: 14px; }
.team-social a {
  width: 34px; height: 34px; border-radius: 50%; background: var(--bg-light);
  display: flex; align-items: center; justify-content: center; color: var(--dark); font-size: 14px;
}
.team-social a:hover { background: var(--primary); color: #fff; }

/* ---------- Pricing ---------- */
.pricing-card {
  background: #fff; border-radius: var(--radius); padding: 40px 32px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); height: 100%; position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.pricing-card.featured { border: 2px solid var(--primary); transform: scale(1.03); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-2); color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 18px; border-radius: 30px;
}
.price-amount { font-size: 2.6rem; font-weight: 800; color: var(--dark); }
.price-amount span { font-size: 15px; color: var(--text-light); font-weight: 500; }
.pricing-features { list-style: none; padding: 0; margin: 26px 0; text-align: left; }
.pricing-features li { padding: 9px 0; font-size: 14.5px; color: var(--text); display: flex; gap: 10px; }
.pricing-features li i { color: var(--accent); }

/* ---------- FAQ ---------- */
.accordion-owc .accordion-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm) !important; margin-bottom: 14px; overflow: hidden;
}
.accordion-owc .accordion-button {
  font-weight: 600; color: var(--dark); padding: 20px 24px; font-size: 15.5px;
}
.accordion-owc .accordion-button:not(.collapsed) { background: rgba(0,102,255,0.05); color: var(--primary); box-shadow: none; }
.accordion-owc .accordion-button:focus { box-shadow: none; }
.accordion-owc .accordion-body { padding: 4px 24px 22px; color: var(--text-light); font-size: 14.5px; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); height: 100%;
}
.testimonial-quote { font-size: 15px; color: var(--text); margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author .name { font-weight: 700; color: var(--dark); font-size: 14.5px; }
.testimonial-author .role { font-size: 12.5px; color: var(--text-light); }
.stars { color: #ffb400; font-size: 13px; margin-bottom: 10px; }

/* ---------- Blog ---------- */
.blog-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); height: 100%; background: #fff; }
.blog-img { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-light); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 24px; }
.blog-meta { font-size: 12.5px; color: var(--text-light); margin-bottom: 10px; display: flex; gap: 14px; }
.blog-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-body p { font-size: 14px; color: var(--text-light); }
.read-more-link { font-weight: 600; font-size: 14px; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.read-more-link:hover { color: var(--primary-dark); gap: 10px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--gradient-1); border-radius: 24px; padding: 60px; color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.85); }

/* ---------- Footer ---------- */
.owc-footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.owc-footer h5 { color: #fff; font-size: 16px; margin-bottom: 22px; }
.owc-footer .footer-logo { font-weight: 800; font-size: 1.5rem; color: #fff; margin-bottom: 16px; }
.owc-footer .footer-logo span { color: var(--accent); }
.owc-footer p { font-size: 14px; color: rgba(255,255,255,0.6); }
.owc-footer ul { list-style: none; padding: 0; margin: 0; }
.owc-footer ul li { margin-bottom: 12px; }
.owc-footer ul li a { color: rgba(255,255,255,0.65); font-size: 14px; }
.owc-footer ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px;
}
.footer-social a:hover { background: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); margin-top: 50px; padding: 22px 0;
  font-size: 13.5px; color: rgba(255,255,255,0.5); text-align: center;
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.newsletter-form input {
  border-radius: 30px 0 0 30px; border: none; padding: 12px 18px; font-size: 14px;
}
.newsletter-form button {
  border-radius: 0 30px 30px 0; background: var(--primary); color: #fff; border: none; padding: 0 20px; font-weight: 600;
}

/* ---------- Legal pages ---------- */
.legal-content h2 { font-size: 1.4rem; margin-top: 34px; margin-bottom: 14px; }
.legal-content p, .legal-content li { color: var(--text-light); font-size: 15px; }
.legal-content ul { padding-left: 20px; }

/* ---------- Forms ---------- */
.owc-form-control {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 13px 18px;
  font-size: 14.5px; width: 100%; transition: border-color 0.2s ease;
}
.owc-form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(0,102,255,0.08); }
label.owc-label { font-weight: 600; font-size: 13.5px; color: var(--dark); margin-bottom: 7px; display: block; }

/* ---------- Careers ---------- */
.job-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 28px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; margin-bottom: 16px; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease;
}
.job-card:hover { box-shadow: var(--shadow-md); }
.job-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.job-meta span {
  display: inline-block; margin-right: 14px; font-size: 13px; color: var(--text-light);
}
.perk-item { text-align: center; padding: 20px; }
.perk-item .perk-icon { font-size: 32px; color: var(--primary); margin-bottom: 14px; }

/* ---------- Misc ---------- */
.back-to-top {
  position: fixed; bottom: 26px; right: 26px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--gradient-1); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); z-index: 990; opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; }
