/* ============================================================
   FCSoft Custom Design Layer
   Loaded after main.css — palette: Navy #0d2233 / Gold #c8a97a
   ============================================================ */

:root {
  --fc-navy: #0d2233;
  --fc-navy-2: #0a1826;
  --fc-gold: #c8a97a;
  --fc-gold-light: #e3cda3;
  --fc-ink: #1a1a1a;
  --header: #0d2233; /* re-tint the theme's base "dark" color sitewide (headings, dark surfaces, footer bg) */
  --bg2: #0d2233; /* re-tint the theme's secondary dark-section background (offer section, team cards) to match */
  --theme: #0d2233; /* replace the theme's original blue (#384BFF) sitewide: buttons, links, borders, icon fills, hovers */
  --theme2: #0d2233;
}

/* ------------------------------------------------------------
   1. Typography — headings & paragraphs
   ------------------------------------------------------------ */
body {
  font-family: 'Cormorant Garamond', serif !important;
}
/* form controls don't inherit font-family by default in browsers —
   without this they were silently falling back to the OS UI font */
button, input, textarea, select {
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  letter-spacing: 0.3px;
}

h1 span, h2 span, h3 span, h4 span, h5 span, h6 span,
.section-title h2 span {
  color: var(--fc-gold) !important;
}

.section-title span {
  color: var(--fc-gold) !important;
  letter-spacing: 3px;
}

p {
  color: var(--fc-ink);
  font-weight: 500;
}

/* Cormorant Garamond is a delicate display serif — regular weight
   reads too light for nav links, buttons and labels, so bump those
   up a touch for a cleaner, more modern feel while keeping the
   serif family the user asked for. */
.header-main .main-menu ul li a,
.theme-btn,
.theme-btn-2,
.form-clt span,
.footer-widgets-wrapper .widget-head h3,
.list-area li a {
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Keep the hero ("Best IT SOLUTION Provider") section exactly as it was */
.hero-section h1,
.hero-section h6 {
  font-family: "Kumbh Sans", sans-serif !important;
  font-style: normal !important;
  letter-spacing: normal;
  color: #0F0D1D !important;
}
.hero-section h6 {
  color: #384BFF !important;
}
.hero-section p {
  color: var(--text) !important;
}

/* Breadcrumb header (inner pages): sits on a dark navy/black overlay.
   The theme's own hover color uses var(--theme), which is now navy —
   too close to the dark overlay to read on hover, so pin it to gold. */
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--fc-gold) !important;
}

/* ------------------------------------------------------------
   1b. Retrofit the site's existing wow.js "fadeInUp/fadeInLeft"
   entrance animations (used on ~150 elements across every page)
   with a subtle 3D perspective tilt-in. The hero section keeps
   its original 2D animation untouched.
   ------------------------------------------------------------ */
@keyframes fcFadeInUp3D {
  0% {
    opacity: 0;
    transform: perspective(1000px) translateY(40px) rotateX(12deg);
  }
  100% {
    opacity: 1;
    transform: perspective(1000px) translateY(0) rotateX(0);
  }
}
@keyframes fcFadeInLeft3D {
  0% {
    opacity: 0;
    transform: perspective(1000px) translateX(-40px) rotateY(-12deg);
  }
  100% {
    opacity: 1;
    transform: perspective(1000px) translateX(0) rotateY(0);
  }
}
.fadeInUp {
  animation-name: fcFadeInUp3D !important;
}
.fadeInLeft {
  animation-name: fcFadeInLeft3D !important;
}
/* keep the hero ("Best IT SOLUTION Provider") entrance exactly as it was */
.hero-section .fadeInUp {
  animation-name: fadeInUp !important;
}

/* ------------------------------------------------------------
   2. Scroll-reveal (3D fade/rotate on entry)
   ------------------------------------------------------------ */
.reveal-3d {
  opacity: 0;
  transform: perspective(1200px) rotateX(12deg) translateY(50px);
  transform-origin: top center;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}
.reveal-3d.in-view {
  opacity: 1;
  transform: perspective(1200px) rotateX(0) translateY(0);
}
.reveal-3d.reveal-delay-1 { transition-delay: .1s; }
.reveal-3d.reveal-delay-2 { transition-delay: .2s; }
.reveal-3d.reveal-delay-3 { transition-delay: .3s; }
.reveal-3d.reveal-delay-4 { transition-delay: .4s; }

/* ------------------------------------------------------------
   3. 3D tilt cards (mouse-follow perspective tilt)
   ------------------------------------------------------------ */
.tilt-3d {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}
.tilt-3d:hover {
  box-shadow: 0 30px 60px -20px rgba(13, 34, 51, 0.35);
}
.tilt-3d > * {
  transform: translateZ(20px);
}

/* ------------------------------------------------------------
   4. Service cards — editorial gold/navy card treatment.
   Covers both .style-2 (homepage) and .box-shadow (service.php)
   variants. The theme's own base rule flips heading/paragraph/
   button text to white on :hover (designed for its old blue
   fill-in animation); since our card stays white, that would make
   the text invisible on hover, so we pin the colors with !important.
   ------------------------------------------------------------ */
.service-box-items.style-2,
.service-box-items.box-shadow {
  background: #fff;
  border: 1px solid #ece4d8;
  border-top: 3px solid var(--fc-gold);
  border-radius: 6px;
  padding: 40px 30px !important;
  box-shadow: 0 15px 40px -25px rgba(13, 34, 51, 0.25);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.service-box-items.style-2:hover,
.service-box-items.box-shadow:hover {
  transform: translateY(-10px) perspective(800px) rotateX(3deg);
  box-shadow: 0 35px 60px -25px rgba(13, 34, 51, 0.35);
  border-color: var(--fc-gold);
}
.service-box-items.style-2 .icon,
.service-box-items.box-shadow .icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(13, 34, 51, 0.06), rgba(200, 169, 122, 0.18));
  margin: 0 0 20px !important;
  transition: transform 0.35s ease;
}
.service-box-items.style-2 .icon::before,
.service-box-items.box-shadow .icon::before {
  display: none;
}
.service-box-items.style-2:hover .icon,
.service-box-items.box-shadow:hover .icon {
  transform: rotateY(180deg);
}
.service-box-items.style-2 .content h4 a,
.service-box-items.box-shadow .content h4 a,
.service-box-items.style-2:hover .content h4 a,
.service-box-items.box-shadow:hover .content h4 a {
  color: var(--fc-navy) !important;
}
.service-box-items.style-2 .content p,
.service-box-items.box-shadow .content p,
.service-box-items.style-2:hover .content p,
.service-box-items.box-shadow:hover .content p {
  color: var(--fc-ink) !important;
}
.service-box-items.style-2 .theme-btn-2,
.service-box-items.box-shadow .theme-btn-2,
.service-box-items.style-2:hover .theme-btn-2,
.service-box-items.box-shadow:hover .theme-btn-2 {
  color: var(--fc-navy) !important;
}
.service-box-items.style-2 .theme-btn-2:hover,
.service-box-items.box-shadow .theme-btn-2:hover {
  color: var(--fc-gold) !important;
}

/* ------------------------------------------------------------
   5. About section — depth & floating accents
   ------------------------------------------------------------ */
.about-wrapper.style-2 .about-image-items .about-image-1 {
  max-width: 100% !important;
  width: 100%;
  box-shadow: 0 40px 80px -30px rgba(13, 34, 51, 0.4);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.5s ease;
  background-size: cover !important;
  background-position: center !important;
}
.about-wrapper.style-2 .about-image-items:hover .about-image-1 {
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}
.about-wrapper.style-2 .counter-shape {
  border-radius: 8px;
  border-left: 3px solid var(--fc-gold);
  box-shadow: 0 25px 50px -20px rgba(13, 34, 51, 0.35);
  animation: fc-float 4s ease-in-out infinite;
}
.about-icon-items .icon-items {
  transition: transform 0.3s ease;
}
.about-icon-items .icon-items:hover {
  transform: translateY(-6px);
}
.about-author .author-image img {
  border: 3px solid var(--fc-gold);
  border-radius: 50%;
}

@keyframes fc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ------------------------------------------------------------
   6. Offer / offering cards — light tone (was dark navy; the
   legacy blue corner-flap PNGs & icon gradient clashed with the
   new palette and looked like overlapping boxes)
   ------------------------------------------------------------ */
.offer-section.section-bg-2 {
  background: linear-gradient(160deg, #faf8f4 0%, #f2ece1 100%) !important;
  position: relative;
  overflow: hidden;
}
.offer-section.section-bg-2::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 34, 51, 0.06), transparent 70%);
  animation: fc-drift 12s ease-in-out infinite;
}
.offer-section.section-bg-2 .section-title span {
  color: var(--fc-gold) !important;
}
.offer-section.section-bg-2 .section-title h2.text-white {
  color: var(--fc-navy) !important;
}

/* legacy blue corner-flap art & gradient no longer used */
.offer-items .shape-top,
.offer-items .shape-bottom {
  display: none !important;
}

.offer-items {
  background: #fff;
  border-radius: 10px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.offer-items::before {
  border-color: rgba(13, 34, 51, 0.12) !important;
  opacity: 1 !important;
}
.offer-items .content h5 {
  color: var(--fc-navy) !important;
}
.offer-items .icon {
  background: linear-gradient(150deg, var(--fc-navy) 0%, #1b3d55 100%) !important;
}
.offer-items:hover {
  transform: perspective(900px) translateY(-10px) rotateX(4deg);
  box-shadow: 0 30px 55px -25px rgba(13, 34, 51, 0.3);
  border-color: var(--fc-gold);
}
.offer-items .icon svg path {
  transition: fill 0.35s ease;
  fill: #fff !important;
}
.offer-items:hover .icon,
.offer-items.active .icon {
  box-shadow: 0 0 0 4px rgba(200, 169, 122, 0.35);
}

/* featured ("active") card: gold outline only, no fill */
.offer-items.active {
  border-color: var(--fc-gold);
  box-shadow: 0 20px 45px -25px rgba(200, 169, 122, 0.4);
}

@keyframes fc-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
}

/* ------------------------------------------------------------
   7. Choose-us section
   ------------------------------------------------------------ */
.choose-us-wrapper .choose-us-image {
  max-width: 100% !important;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(13, 34, 51, 0.3);
  transition: transform 0.5s ease;
}
.choose-us-wrapper .choose-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.choose-us-wrapper .choose-us-image:hover {
  transform: perspective(1200px) rotateY(4deg) rotateX(-2deg) scale(1.02);
}
.choose-list li i {
  color: #fff;
  background: var(--fc-navy);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-right: 8px;
}
.progress-wrap .progress-value {
  background: var(--fc-navy) !important;
}

/* ------------------------------------------------------------
   8. Contact section — light card
   ------------------------------------------------------------ */
/* Only the homepage teaser section (.contact-wrapper) is touched here
   — it already had a full-bleed overlay via ::before. contact.php uses
   a different markup (.contact-wrapper-2) that is already light and
   must NOT be altered by these rules. */
.contact-wrapper::before {
  background: linear-gradient(135deg, #faf8f4 0%, #f2ece1 100%) !important;
}
.contact-wrapper .contact-content .section-title span.text-white {
  color: var(--fc-gold) !important;
}
.contact-wrapper .contact-content .section-title h2.text-white {
  color: var(--fc-navy) !important;
}
.contact-wrapper .contact-content form.contact-form-items {
  background: #fff;
  border: 1px solid rgba(13, 34, 51, 0.12);
  box-shadow: 0 30px 60px -35px rgba(13, 34, 51, 0.35);
  border-radius: 14px;
  padding: 35px;
  position: relative;
  overflow: hidden;
}
.contact-wrapper .contact-content form.contact-form-items::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 122, 0.16), transparent 70%);
  pointer-events: none;
}
.contact-wrapper .contact-content .form-clt {
  position: relative;
}
.contact-wrapper .contact-content .form-clt span {
  color: var(--fc-navy) !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-wrapper .contact-content .form-clt span::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--fc-gold);
  font-size: 13px;
}
.contact-wrapper .contact-content .form-clt:nth-of-type(1) span::before {
  content: "\f007";
}
.contact-wrapper .contact-content .form-clt:nth-of-type(2) span::before {
  content: "\f0e0";
}
.contact-wrapper .contact-content .form-clt:nth-of-type(3) span::before {
  content: "\f27a";
}
.contact-wrapper .contact-content .form-clt input,
.contact-wrapper .contact-content .form-clt textarea {
  background: #faf9f6;
  border: 1px solid rgba(13, 34, 51, 0.15);
  border-radius: 8px;
  color: var(--fc-ink) !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.contact-wrapper .contact-content .form-clt input:focus,
.contact-wrapper .contact-content .form-clt textarea:focus {
  background: #fff;
  border-color: var(--fc-gold);
  box-shadow: 0 0 0 4px rgba(200, 169, 122, 0.15);
}
.contact-wrapper .contact-content .form-clt input::placeholder,
.contact-wrapper .contact-content .form-clt textarea::placeholder {
  color: rgba(13, 34, 51, 0.45);
}
.contact-wrapper .contact-content button.theme-btn {
  background-color: var(--fc-navy) !important;
  color: #fff;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.contact-wrapper .contact-content button.theme-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 35px -18px rgba(13, 34, 51, 0.5);
}
.contact-wrapper .contact-content button.theme-btn i {
  transition: transform 0.3s ease;
}
.contact-wrapper .contact-content button.theme-btn:hover i {
  transform: translateX(5px);
}
.contact-wrapper .contact-content button.theme-btn::before,
.contact-wrapper .contact-content button.theme-btn::after {
  background-color: var(--fc-navy-2);
}
.contact-wrapper .contact-image {
  transition: transform 0.5s ease;
}
.contact-wrapper .contact-image:hover {
  transform: perspective(1000px) rotateY(-4deg);
}
/* .form-message is unscoped: it's the AJAX feedback box for the real
   contact form on contact.php (inside .contact-wrapper-2) */
.form-message {
  margin-bottom: 15px;
  padding: 0;
  font-weight: 600;
  transition: all 0.3s ease;
}
.form-message:not(:empty) {
  padding: 12px 18px;
  border-radius: 6px;
}
.form-message.success {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.35);
}
.form-message.error {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.35);
}

/* ------------------------------------------------------------
   8b. FAQ accordion (service.php) — clean card treatment
   ------------------------------------------------------------ */
.faq-content .accordion-item {
  background: #fff;
  border: 1px solid rgba(13, 34, 51, 0.1) !important;
  border-radius: 8px !important;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-content .accordion-item:hover {
  border-color: var(--fc-gold) !important;
  box-shadow: 0 20px 40px -30px rgba(13, 34, 51, 0.3);
}
.faq-content .accordion-item .accordion-header .accordion-button {
  color: var(--fc-navy) !important;
  background-color: #faf8f4 !important;
  border: none !important;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 21px !important;
}
.faq-content .accordion-item .accordion-header .accordion-button.collapsed {
  background-color: #fff !important;
  border: none !important;
  color: var(--fc-navy) !important;
}
.faq-content .accordion-item .accordion-collapse .accordion-body {
  background-color: #faf8f4 !important;
  color: var(--fc-ink) !important;
}

/* ------------------------------------------------------------
   9. Testimonials
   ------------------------------------------------------------ */
.testimonial-box-items {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 10px;
}
.testimonial-box-items:hover {
  transform: perspective(900px) translateY(-8px) rotateX(3deg);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.5);
}
.testimonial-box-items .star i {
  color: var(--fc-gold);
}

/* ------------------------------------------------------------
   10. Footer — full visual redesign
   ------------------------------------------------------------ */
.footer-bg {
  background: #0d2233 !important;
  border-top: 2px solid var(--fc-gold);
  position: relative;
  overflow: hidden;
}
.footer-widgets-wrapper {
  position: relative;
  z-index: 2;
  padding: 90px 0 50px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
  position: relative;
  padding-bottom: 14px;
  color: #fff !important;
  border-bottom-color: transparent !important;
  font-size: 22px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 0;
  border-bottom: 2px solid var(--fc-gold);
  transition: width 0.35s ease;
}
.footer-widgets-wrapper .single-footer-widget:hover .widget-head h3::after {
  width: 70px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content p {
  color: rgba(255, 255, 255, 0.65) !important;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
  border: 1px solid rgba(200, 169, 122, 0.4) !important;
  color: var(--fc-gold) !important;
  transition: all 0.3s ease;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
  background-color: transparent !important;
  color: var(--fc-gold) !important;
  box-shadow: 0 0 0 4px rgba(200, 169, 122, 0.2);
  transform: translateY(-4px);
  border-color: var(--fc-gold) !important;
}
.footer-widgets-wrapper .single-footer-widget .list-area li a {
  color: rgba(255, 255, 255, 0.75) !important;
  transition: all 0.3s ease;
}
.footer-widgets-wrapper .single-footer-widget .list-area li a i {
  color: var(--fc-gold) !important;
  margin-right: 6px;
  transition: transform 0.3s ease;
}
.footer-widgets-wrapper .single-footer-widget .list-area li:hover a {
  color: var(--fc-gold) !important;
  padding-left: 6px;
}
.footer-widgets-wrapper .single-footer-widget .list-area li:hover a i {
  transform: translateX(4px);
}
.footer-widgets-wrapper div[style*="color: #ffffffcc"] {
  color: rgba(255, 255, 255, 0.7) !important;
}
.footer-widgets-wrapper div[style*="color: #ffffffcc"] i {
  color: var(--fc-gold) !important;
  margin-right: 8px;
}
.footer-widgets-wrapper div[style*="color: #ffffffcc"] a {
  color: rgba(255, 255, 255, 0.85) !important;
}
.footer-bottom.style-2 {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.15) !important;
}
.footer-bottom.style-2 .footer-wrapper p {
  color: rgba(255, 255, 255, 0.6) !important;
}
.footer-bottom.style-2 .footer-wrapper p a {
  color: var(--fc-gold) !important;
  font-weight: 600;
}
.footer-bottom.style-2 .scroll-icon {
  background: var(--fc-navy) !important;
  color: var(--fc-gold) !important;
  border: 2px solid var(--fc-gold);
  transition: transform 0.3s ease, background 0.3s ease;
}
.footer-bottom.style-2 .scroll-icon:hover {
  background: var(--fc-navy-2) !important;
  transform: translateY(-5px);
}

/* ------------------------------------------------------------
   11b. Portfolio pages (Products / Website / Applications) —
   these show client logos & app icons (transparent PNGs of very
   mixed sizes), not photo screenshots. The theme's original card
   was built for full-bleed cover-fit photos with a floating dark
   caption, which is why logos looked tiny/cropped/broken. Redesign
   as a clean logo-showcase card instead. Scoped to .project-section
   only (used by product.php / project.php / application.php) so it
   never touches the unrelated homepage slider variant.
   ------------------------------------------------------------ */
.project-section .row {
  align-items: flex-start !important;
}
.project-section .row > div {
  display: flex;
  align-items: flex-start;
}
.project-section .project-items {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(13, 34, 51, 0.08);
  border-top: 3px solid var(--fc-gold);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.project-section .project-items:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 55px -30px rgba(13, 34, 51, 0.35);
}
/* .project-content is nested INSIDE .project-image in the markup
   (not a sibling below it), so .project-image must stack its
   children in a column — a plain `display:flex` here previously
   defaulted to a row, placing the name beside/over the logo instead
   of below it. Both children use flex: 0 0 auto (no grow) so the
   card hugs its actual content instead of stretching to fill the
   row's tallest neighbor and leaving a big empty gap. */
.project-section .project-items .project-image {
  display: flex !important;
  flex-direction: column !important;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: #fff;
  position: relative;
}
.project-section .project-items .project-image img {
  position: static !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 150px !important;
  object-fit: contain !important;
  padding: 0 !important;
  margin: 0 auto !important;
  transition: transform 0.4s ease;
}
.project-section .project-items:hover .project-image img {
  transform: scale(1.04);
}
.project-section .project-items .project-content {
  position: static !important;
  inset: auto !important;
  background: #fff !important;
  padding: 18px 20px !important;
  text-align: center;
  border-top: 1px solid rgba(13, 34, 51, 0.08);
  flex: 0 0 auto;
  align-self: stretch;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-section .project-items .project-content::before {
  display: none;
}
.project-section .project-items .project-content .icon {
  display: none;
}
.project-section .project-items .project-content h4 {
  font-size: 19px;
  margin: 0;
}
.project-section .project-items .project-content h4 a {
  color: var(--fc-navy);
}
.project-section .project-items .project-content h4 a:hover {
  color: var(--fc-gold);
}

/* ------------------------------------------------------------
   11. Motion-reduced fallback
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .reveal-3d, .tilt-3d, .service-box-items.style-2, .offer-items,
  .choose-us-wrapper .choose-us-image, .contact-wrapper .contact-image,
  .testimonial-box-items {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
  .reveal-3d { opacity: 1; }
}
