:root{
  --tory-blue:#174DB3;
  --ivory:#FAEFE8;
  --white:#FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
}
h1,h2,h3,h4,h5,h6,.section-title,.contact-title { 
    font-family: "Nunito", sans-serif; 
}
.navbar,
.navbar-nav .nav-link,
.navbar-brand {
    font-family: 'Inter', sans-serif;
}

/* COLORS */
.text-blue { color: var(--tory-blue); }
.text-white { color: var(--white);}

.bg-blue { background-color: var(--tory-blue); 

}
.bg-blue .section-title {
    color: var(--white);
}
.bg-blue .section-sub {
    color: rgba(255,255,255,0.85);
}
.white-bg { background-color: var(--white); }
.white-bg .section-title {
    color: var(--tory-blue);
}

/* LOGOS */
.logo-navbar {
    height: 42px;
    width: auto;
    display: block;
    padding-left: 12px;
    transform: scale(3.5);     /* increase size */
}

.logo-hero {
    height: 80px;
    width: auto;
}

/* BRAND TEXT */
.brand-text {
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* RESPONSIVE LOGO SIZING */
@media (max-width: 576px) {
    .logo-navbar {
        height: 36px;
    }

    .logo-hero {
        height: 64px;
    }

    .brand-text {
        font-size: 1.2rem;
    }
}

/* SPACING UTILITIES */
.py-6 { padding-top: 4rem; padding-bottom: 4rem; }
.py-7 { padding-top: 5rem; padding-bottom: 5rem; }

/* HERO */
.hero {
    background-color: var(--tory-blue);
}

.hero-expanded {
    padding-top: 14%;
    padding-bottom: 14%;
}

/* HERO VISUAL BLOCK */
.hero-visual {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--ivory);
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--tory-blue);
    font-size: 0.9rem;
    margin-bottom: 18px;
    color: var(--white);
}

.hero-pill i {
    font-size: 1.1rem;
}

.hero-card {
    background: var(--white);
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--ivory)
}

.hero-card h5 {
    margin-bottom: 6px;
    color: var(--tory-blue);
}

.hero-card p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(0,0,0,0.65);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 8px;
}

.hero-stats div {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--ivory);
    padding: 10px 10px;
    text-align: left;
}

.hero-stats h4 {
    margin: 0 0 4px 0;
    font-size: 0.95rem;
    color: var(--tory-blue);
}

.hero-stats p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(0,0,0,0.65);
}

.hero-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.hero-animate.active {
  opacity: 1;
  transform: translateY(0);
}
/* Premium button hover */
.btn {
  transition: all 0.25s ease;
}

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


/* SECTION TITLES */
.section-title {
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--tory-blue);
}

.section-sub {
    margin-top: 0;
    margin-bottom: 2rem;
    color: rgba(0,0,0,0.65);
}

/* BUTTONS */
.btn-blue {
    background-color: var(--tory-blue);
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid var(--white);
}
.btn-blue:hover {
    background-color: var(--tory-blue);
    color: white;
}

.btn-outline-blue {
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    background: transparent;
}
.btn-outline-blue:hover {
    background-color: var(--tory-blue);
    color: var(--white);
}

/* SERVICES SECTION */
.services-bg {
    background-color: var(--white);
}

/* CARDS */
.card-custom {
    border: 1px solid var(--ivory);
    border-radius: 14px;
    padding: 22px;
    background: var(--white);
    text-align: left;
}

/* SERVICE CARDS */
.service-card {
    text-align: left;
    transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}
.service-card h5 {
    margin-top: 10px;
    margin-bottom: 6px;
    color: var(--tory-blue);
}

.service-card p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(0,0,0,0.65);
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ivory);
    color: var(--tory-blue);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.1);
}

/* WHO WE WORK WITH */
.alt-bg {
    background-color: var(--tory-blue);
}

.who-work{
    padding-bottom: 10rem;
}
.who-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 80px;
  flex-wrap: wrap;
}

/* Pill */
.who-pill {
  background: var(--white);
  border-radius: 50px;
  padding: 20px 34px;
  border: 1px solid var(--ivory);

  display: flex;
  align-items: center;
  gap: 14px;

  font-weight: 500;
  letter-spacing: 0.4px;

  min-width: 220px;
  height: 68px;

  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  cursor: default;
}

/* Icon */
.who-pill i {
  font-size: 1.6rem;
  color: var(--tory-blue);
}

/* Text */
.who-pill span {
  font-size: 1.05rem;
  color: #1f1f1f;
  white-space: nowrap;
}

/* Hover */
.who-pill:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(89,55,20,0.18);
}

/* Mobile */
@media (max-width: 768px) {
  .who-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .who-pill {
    min-width: auto;
    width: 100%;
    height: 58px;
    padding: 16px 22px;
    justify-content: center;
  }

  /* Center last pill */
  .who-pill:last-child {
    grid-column: span 2;
    justify-self: center;
    width: 70%;
  }
}


/* OUR PROCESS */


.process-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  gap: 40px;
}

/* Step card */
.process-step {
  text-align: center;
  max-width: 220px;
  padding: 30px 20px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
  border: 1px solid var(--ivory);
  transition: all 0.35s ease;
}

/* Number circle */
.process-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--tory-blue);
  color: var(--white);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1rem;
}

/* Icon */
.process-icon {
  font-size: 2rem;
  color: var(--tory-blue);
  margin-bottom: 14px;
}

/* Title */
.process-step h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Text */
.process-step p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Timeline line */
.process-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, #c9b29b, transparent);
}

/* Hover polish */
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(89,55,20,0.18);
}

/* ================================
   MOBILE — VERTICAL TIMELINE
   ================================ */

@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
  }

  .process-line {
    background: linear-gradient(
      to right,
      transparent,
      var(--ivory),
      transparent
    );
}

  .process-step {
    max-width: 100%;
    width: 100%;
  }
}





/* WHY CARDS */
.why-card {
    text-align: left;
}

.why-card h5 {
    margin-top: 10px;
    margin-bottom: 6px;
    color: var(--tory-blue);
}

.why-card p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(0,0,0,0.65);
}

.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ivory);
    color: var(--tory-blue);
    font-size: 1.3rem;
}

/* CONTACT */
/* Background */
.contact-section {
    padding: 6rem 0;
}

/* Title */
.contact-title {
    color: var(--tory-blue);
    font-size: 2.4rem;
    letter-spacing: 1px;
}

/* Subtitle */
.contact-subtitle {
    color: rgba(0,0,0,0.65);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Contact Card Box */
.contact-box {
    background: var(--white);
    border: 1px solid var(--ivory); /* Brown border */
    border-radius: 18px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0px 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 14px 26px rgba(0,0,0,0.15);
}

/* Icon + Title */
.contact-box-icon {
    font-size: 1.6rem;
    color: var(--tory-blue);
}

.contact-box-title {
    margin: 0;
    font-weight: 700;
    color: var(--tory-blue);
}

/* Body text */
.contact-box-text {
    margin: 0;
    color: rgba(0,0,0,0.65);
    font-weight: 500;
    line-height: 1.5rem;
}

/* Social Icons */
.social-icon {
    font-size: 1.7rem;
    color: rgba(0,0,0,0.65);
    transition: 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.15);
    color: var(--tory-blue);
}


/* FOOTER */
.footer-bg {
    background: var(--tory-blue);
    color: var(--white);
}

.footer-logo {
    width: 70%;
    max-width: 100%;
    /* min-width: 100px; */
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-brand h4 {
    color: white;
    margin-top: 10px;
    font-weight: 700;
}

.footer-brand p {
    color: #CFCFCF;
    margin: 0;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 12px;
    color: #FFFFFF;
}

footer p {
    margin: 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}
.footer-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
    transform: translateX(4px);
}
.footer-link i {
    font-size: 1.2rem;
}

/* Mobile view: center the logo */
@media (max-width: 768px) {
    .footer-brand {
        display: flex;
        justify-content: center;   /* center horizontally */
        align-items: center;       /* center vertically */
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-logo {
        width: 55%;      /* responsive and larger for mobile */
        max-width: 180px;
    }
    .footer-link,
  .footer-link i {
    justify-content: center !important;
  }

  footer .col-md-4 h5 {
    text-align: center;
  }

  footer .d-flex.flex-column {
    align-items: center;
  }

  footer .d-flex.flex-column a {
    justify-content: center;
  }
}