/* =========================
   RubberDuck IT — Custom CSS
   Bootstrap 5 + AOS
   ========================= */

/* Brand palette */
:root{
  --yellow:#FFD400;
  --navy:#0B1B3A;
  --navy2:#0F2A5A;
  --blue:#2563EB;
  --green:#16A34A;
  --light:#F8FAFC;

  --text:#0f172a;
  --muted:#6b7280;

  --radius:18px;
}

/* Global */
body{
  color:var(--text);
  background:#fff;
}

/* =========================
   Branding (Navbar / Footer)
   ========================= */

.brand-logo{
  width:70px;                 /* base size (keeps navbar stable) */
  height:auto;
  display:block;
  transform: scale(1.6);      /* makes logo look bigger WITHOUT growing the navbar */
  transform-origin: left center;
}

.footer-logo{
  width:34px;
  height:auto;
  display:block;
}

.brand-title{
  font-weight:900;
  letter-spacing:.2px;
}

.brand-sub{
  font-size:12px;
  color:var(--muted);
  font-weight:600;
}

/* =========================
   Hero Section
   ========================= */

.hero-section{
  background:
    radial-gradient(800px 400px at 20% 20%, rgba(255,212,0,.15), transparent 60%),
    radial-gradient(900px 450px at 80% 0%, rgba(37,99,235,.15), transparent 60%),
    linear-gradient(180deg, #ffffff, var(--light));
}

.hero-card{
  border-radius:var(--radius);
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow: 0 18px 40px rgba(2,6,23,.08);
}

/* Checklist check icon */
.check{
  width:18px;
  height:18px;
  border-radius:6px;
  display:inline-block;
  background:var(--green);
  position:relative;
  margin-top:3px;
}
.check::after{
  content:"";
  position:absolute;
  left:5px;
  top:3px;
  width:6px;
  height:10px;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:rotate(35deg);
}

/* Stats */
.stat-card{
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  border-radius:16px;
  padding:12px 14px;
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
}
.stat-num{
  font-weight:900;
  font-size:18px;
}
.stat-label{
  color:var(--muted);
  font-weight:700;
  font-size:12px;
}

/* =========================
   Services
   ========================= */

.service-card{
  border-radius:var(--radius);
  border:1px solid rgba(15,23,42,.10);
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(2,6,23,.10);
}

.icon-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:36px;
  border-radius:14px;
  background: var(--yellow);
  color: var(--navy);
  font-weight:900;
  letter-spacing:.6px;
}

/* =========================
   Why Us
   ========================= */

.why-card{
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  border-radius:16px;
  padding:14px;
  height:100%;
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
}
.why-title{
  font-weight:900;
  margin-bottom:6px;
}
.why-text{
  color:var(--muted);
  font-weight:600;
  font-size:14px;
}

/* =========================
   Process
   ========================= */

.process-card{
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
  height:100%;
}
.process-step{
  width:38px;
  height:38px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color:#fff;
  font-weight:900;
  margin-bottom:10px;
}
.process-title{
  font-weight:900;
  margin-bottom:6px;
}
.process-text{
  color:var(--muted);
  font-weight:600;
}

/* =========================
   Pricing
   ========================= */

.pricing-card{
  border-radius:var(--radius);
  border:1px solid rgba(15,23,42,.10);
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
}
.pricing-card.featured{
  border:2px solid var(--navy);
  box-shadow: 0 18px 40px rgba(2,6,23,.10);
}
.most-chosen{
  display:inline-block;
  background:var(--navy);
  color:#fff;
  font-weight:900;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  margin-bottom:10px;
}

.price{
  font-weight:900;
  font-size:36px;
  color:var(--text);
  margin:10px 0 14px;
}
.price span{
  font-size:14px;
  color:var(--muted);
  font-weight:800;
}

/* =========================
   Buttons (Bootstrap overrides)
   ========================= */

.btn-primary{
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border:none;
}
.btn-primary:hover{
  filter:brightness(1.1);
}

.btn-outline-dark:hover{
  background: var(--navy);
  border-color: var(--navy);
}

/* =========================
   Accordion subtle polish
   ========================= */

.accordion-button:focus{
  box-shadow: 0 0 0 .2rem rgba(37,99,235,.18);
  border-color: rgba(37,99,235,.45);
}

/* =========================
   Small improvements
   ========================= */

.rounded-4{
  border-radius: 1.25rem !important;
}

/* Optional: smoother section spacing on small screens */
@media (max-width: 576px){
  .brand-sub{display:none;} /* cleaner navbar on tiny screens */
  .brand-logo{transform: scale(1.45);} /* slightly less big on phones */
}
