:root {
  --gradient-start: #f39103;
  --start-rgb: rgba(245, 145, 3, 1);
  --gradient-mid: #ec297b;
  --mid-rgb: rgba(236, 41, 122, 1);
  --gradient-end: #262261;
  --end-rgb: rgba(38, 34, 97, 1);
  --white: #ffffff;
  --dark: #261D29;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "field-gothic-compact", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  background: linear-gradient(135deg, var(--gradient-end) 0%, var(--gradient-mid) 50%, var(--gradient-start) 100%);
  min-height: 100vh;
  position: relative;
}
p, ul, li {
  font-family: "field-gothic-compact", sans-serif;
  position: relative;
}
b, strong {
  font-family: "field-gothic-compact", sans-serif;
  font-weight: 700;
  font-style: normal;
}
a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.ind-inc-stencil {
  font-family: 'industry-inc-stencil', 'industry-inc-base', sans-serif;
  font-weight: 400;
  font-style: normal;
}
.text-grad-start {
  color: var(--start-rgb) !important;
}
.text-white {
  color: var(--white) !important;
}
.text-grad-mid {
  color: var(--mid-rgb) !important;
}
.text-grad-end {
  color: var(--end-rgb) !important;
}
/* Atmospheric overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
/* Noise texture overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='3.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.15;
  z-index: 1;
}
.content-wrapper {
  background: url('../img/dots.svg'), linear-gradient(135deg, var(--gradient-end) 0%, var(--gradient-mid) 50%, var(--gradient-start) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 2;
}
/* Header / Navigation */
.navbar {
  background: transparent !important;
  padding: 1.5rem 0;
  animation: fadeInDown 0.8s ease-out;
  position: sticky;
  top: 0;
}
.navbar-brand {
  color: var(--white) !important;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 0;
}
.navbar-brand:hover {
  transform: translateX(5px);
}
.brand-logo {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}
.menu-toggle {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  background: transparent;
  border: none;
  padding: 0;
}
.menu-toggle:hover {
  transform: rotate(90deg);
}
.menu-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}
/* Hero Section */
.hero-section {
  min-height: calc(66vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0 6rem 0;
}
.project-hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0 4rem 0;
}
.hero-content {
  animation: fadeInUp 0.5s ease-out 0.2s backwards;
}
.hero-title, .project-title {
  font-family: 'industry-inc-stencil', 'industry-inc-base', sans-serif;
  font-size: clamp(3rem, 6vw, 7rem);
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: normal;
  text-transform: uppercase;
  animation: slideInUp 0.5s ease-out 0.3s backwards;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.project-title {
  font-size: clamp(2rem, 4vw, 4rem);
}
.hero-subtitle {
  font-family: 'indie-inline', cursive;
  font-size: clamp(4rem, 8vw, 9rem);
  color: var(--white);
  margin-bottom: 6rem;
  animation: slideInUp 0.5s ease-out 0.5s backwards;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  font-weight: normal;
}
.hero-title:hover, .hero-subtitle:hover {
  text-shadow: 0 4px 20px var(--gradient-start);
}
.hero-title a, .hero-subtitle a, .project-title a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  border: 5px solid rgba(255, 255, 255, 0);
  border-radius: 100px;
  color: inherit;
  position: relative;
  display: inline-block;
}
.hero-title a:hover, .hero-subtitle a:hover {
  border-top: 2px dotted rgba(245, 145, 3, 1);
  border-bottom: 5px dotted rgba(245, 145, 3, 1);
  border-left: 2px dotted rgba(245, 145, 3, 1);
  border-right: 5px dotted rgba(245, 145, 3, 1);
  transform: translateY(-10px);
}
a.ind-inc-stencil {
  position: relative;
  border-radius: 20px;
  border-top: 1px dotted var(--gradient-start);
  border-right: 2px dotted var(--gradient-start);
  border-bottom: 2px dotted var(--gradient-start);
  border-left: 1px dotted var(--gradient-start);
  display: inline-block;
  margin: 0 5px;
}
a.ind-inc-stencil:hover {
  border-top-color: var(--white);
  border-right-color: var(--white);
  border-bottom-color: var(--white);
  border-left-color: var(--white);
  transform: translateY(-10px);
  color: var(--gradient-start) !important;
}
.detail-section {
  background-color: var(--dark);
}
/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.5s ease-out 0.7s backwards;
}
.btn-custom {
  padding: .75rem 1.5rem;
  font-size: 1.5rem;
  border-radius: 20px;
  border: 2px solid var(--gradient-end);
  color: var(--gradient-mid);
  font-weight: normal;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'industry-inc-stencil', 'industry-inc-base', sans-serif;
}
.btn-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.3s ease;
}
.btn-custom:hover::before {
  left: 100%;
}
.btn-custom:hover {
  background: linear-gradient(-5deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--gradient-start);
  color: var(--white);
}
.btn-primary-custom {
  background: linear-gradient(-5deg, var(--gradient-end), var(--gradient-mid), var(--gradient-start));
  border: 2px solid var(--white);
  color: #fff;
  -webkit-background-clip: none;
  -webkit-text-fill-color: solid;
}
.btn-primary-custom:hover {
  background: linear-gradient(-5deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  box-shadow: 0 10px 40px rgba(236, 41, 123, 0.5);
  border: 2px solid var(--gradient-start);
  color: var(--white);
}
.dropdown-arrow {
  margin-left: 0.3rem;
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}
.btn-custom:hover .dropdown-arrow {
  transform: translateY(3px);
}
/* Footer */
.footer {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 1.5rem 0;
  animation: fadeIn 0.5s ease-out 0.5s backwards;
  z-index: 10;
  pointer-events: none;
}
.footer-text {
  font-family: 'industry-inc-bevel-fill', sans-serif;
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: 2px;
  font-weight: normal;
}
/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 3.2rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-custom {}
  .footer {
    padding: 1rem 0;
  }
  .footer-text {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }
}
/* Dropdown menu styling (for future implementation) */
.dropdown-menu {
  background: rgba(38, 34, 97, 0.95);
  border: 2px solid var(--white);
  border-radius: 20px;
  padding: 1rem;
  backdrop-filter: blur(10px);
}
.dropdown-item {
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.dropdown-item:hover {
  background: linear-gradient(135deg, var(--gradient-mid), var(--gradient-start));
  color: var(--white);
  transform: translateX(5px);
}
/* Phone icon for Book a Call */
.phone-icon {
  font-size: 1.2rem;
}
/* Magic Websites Section */
.magic-websites-section, .magic-branding-section, .about-section, .testimonials-section {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
  padding: 6rem 0 8rem 0;
  position: relative;
}
.magic-websites-section::before, .magic-branding-section::before, .about-section::before, .testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(243, 145, 3, 0.2) 0%, rgba(236, 41, 123, 0.2) 50%, rgba(38, 34, 97, 0.2) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.about-section, .testimonials-section {
  background: url('../img/dots.svg'), linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.section-title {
  font-family: 'industry-inc-stencil', 'industry-inc-base', sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: var(--end-rgb) 0px 2px 5px;
}
.section-subtitle {
  font-family: 'industry-inc-base', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  text-transform: lowercase;
  text-shadow: var(--end-rgb) 0px 2px 5px;
}
.website-tile, .video-tile {
  position: relative;
  aspect-ratio: 4 / 2.5;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
  z-index: 1;
}
.video-tile {
  aspect-ratio: 16 / 9;
}
.video-tile a {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--white);
  font-size: 6rem;
  margin: 0;
  position: absolute;
  top: 45%;
}
.video-tile a:hover {
  transform: translateY(-20px);
  color: var(--gradient-start);
}
.tile-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  border-radius: 20px;
}
.tile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(35deg, rgba(38, 34, 97, 0.8) 0%, rgba(236, 41, 123, 0.3) 50%, rgba(38, 34, 97, 0.8) 100%);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  border-radius: 20px;
}
.tile-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border-radius: 20px;
}
.client-logo {
  transition: all 0.3s ease-in-out;
  background: rgba(0, 0, 0, .5);
}
.tile-content p {
  font-family: 'industry-inc-bevel-fill', 'industry-inc-base', sans-serif;
  font-size: 1rem;
  color: var(--white);
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 30%;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.client-logo .logo-svg {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
/* Hover Effects */
.website-tile:hover .tile-background {
  transform: scale(1.1);
  border: 2px solid var(--white);
}
.website-tile:hover .tile-overlay {
  opacity: .9;
  background: linear-gradient(135deg, var(--gradient-end) 0%, var(--gradient-mid) 50%, var(--gradient-start) 100%);
}
.website-tile:hover .client-logo {
  transform: translateY(-5px);
  background: rgba(0, 0, 0, 0.5);
}
.website-tile:hover .tile-content {}
.website-tile:hover .tile-content p {
  opacity: 1;
  transform: translateY(10px);
}
/* CTA Bottom */
.cta-bottom {
  text-align: center;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}
.jamie-milnes {
  aspect-ratio: 1 / 1;
  background-image: url('/img/jamie-milnes-1600.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  animation: slideInUp 0.5s ease-out 0.3s backwards;
}
.about-text {
  animation: fadeInDown 0.8s ease-out;
  padding: 2rem 0 0 4rem;
}
@media (max-width: 1440px) {
  .jamie-milnes {
    background-image: url('/img/jamie-milnes-1280.jpg');
  }
}
@media (max-width: 1170px) {
  .jamie-milnes {
    background-image: url('/img/jamie-milnes-960.jpg');
  }
}
h2, h3, .h2, .h3 {
  margin-bottom: 2rem;
}
.lead {
  margin-bottom: 2rem;
}
/* Slide-out Menu */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 998;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.slide-menu {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: linear-gradient(135deg, var(--gradient-end) 0%, var(--gradient-mid) 50%, var(--gradient-start) 100%);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}
.slide-menu.active {
  right: 0;
}
.menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 45px;
  height: 45px;
  background: transparent;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}
.menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}
.close-icon {
  display: block;
  margin-top: -3px;
}
.menu-nav {
  padding: 6rem 2rem 2rem 2rem;
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
}
.menu-list li {
  margin-bottom: 0.5rem;
}
.menu-link {
  display: block;
  font-family: 'industry-inc-stencil', 'industry-inc', sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.menu-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
  z-index: -1;
}
.menu-link:hover::before {
  left: 0;
}
.menu-link:hover {
  color: var(--white);
  transform: translateX(10px);
}
.menu-cta {
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}
body.menu-open {
  overflow: hidden;
}
/* Testimonials Section */
.testimonials-section {
  position: relative;
}
.testimonialsSwiper {
  padding: 2rem 0 3rem 0;
  position: relative;
}
/* Pagination Dots */
.testimonial-pagination {
  position: static !important;
  margin-top: 2rem;
  text-align: center;
}
.testimonial-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}
.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--gradient-start);
  width: 30px;
  border-radius: 6px;
}
.testimonial-card {
  background: rgba(0, 0, 0, 0.45);
  background-blend-mode: multiply;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}
.testimonial-content {
  margin-bottom: 2rem;
}
.testimonial-text {
  font-size: 1.1rem;
  color: #fff;
  margin: 0;
}
/*.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--gradient-mid);
    line-height: 0;
    display: block;
    margin-bottom: 1rem;
}*/
.testimonial-author {
  border-top: 2px dotted var(--start-rgb);
  padding-top: 1.5rem;
}
.author-name {
  font-family: 'industry-inc-stencil', 'industry-inc', sans-serif;
  font-size: 1.3rem;
  color: var(--start-rgb);
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.author-company {
  font-size: 1rem;
  color: var(--white);
  margin: 0;
}
/* Navigation - Outside Container */
.testimonial-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
/* Testimonial Navigation Arrows */
.testimonial-prev, .testimonial-next {
  width: 50px;
  height: 50px;
  border: 2px solid var(--gradient-mid);
  border-radius: 50%;
  color: var(--gradient-mid);
  transition: all 0.3s ease;
}
.testimonial-prev:hover, .testimonial-next:hover {
  background: linear-gradient(135deg, var(--gradient-mid), var(--gradient-start));
  border-color: var(--white);
  color: var(--white);
}
.testimonial-prev::after, .testimonial-next::after {
  font-size: 1.5rem;
  font-weight: bold;
}
.testimonial-prev {
  left: -20px;
}
.testimonial-next {
  right: -20px;
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 4rem 0;
  }
  .testimonial-card {
    padding: 2rem;
  }
  .testimonial-text {
    font-size: 1rem;
  }
  .testimonial-prev, .testimonial-next {
    width: 40px;
    height: 40px;
  }
  .testimonial-prev::after, .testimonial-next::after {
    font-size: 1.2rem;
  }
}
/*
/*
/*
/* Responsive 
/*
/*
*/
@media (min-width: 1900px) {
  .container-xxl {
    max-width: 1720px;
  }
}
@media (max-width: 1440px) {
  .brand-logo {
    height: 35px;
  }
  .btn-custom {
    font-size: 1.2rem;
  }
}
@media (max-width: 1440px) {
  .tile-content p {
    top: 65%;
    line-height: 1.2;
    padding: 0 10px;
  }
}
@media (max-width: 991px) {
  /* Tiles will maintain 4:3 ratio */
}
@media (max-width: 820px) {
  .magic-websites-section {
    padding: 4rem 0 6rem 0;
  }
  .section-header {
    margin-bottom: 4rem;
  }
  .client-logo h3 {}
  .client-logo .logo-svg {}
  .brand-logo {
    height: 30px;
  }
  .tile-content p {
    bottom: 15%;
  }
  .about-text {
    padding: 0;
  }
  .jamie-milnes {
    aspect-ratio: 1 / 1.5;
  }
}
@media (max-width: 505px) {
  .magic-websites-section {}
  .section-header {
    margin-bottom: 2rem;
  }
	.section-subtitle {
    font-size: 1.2rem;
  }
	.section-subtitle {
    font-size: 1.2rem;
  }
	
  .client-logo h3 {}
  .client-logo .logo-svg {}
  .btn-custom {
    font-size: 1rem;
  }
  .jamie-milnes {
    background-image: url('/img/jamie-milnes-640.jpg');
    aspect-ratio: 1.3 / 1;
  }
  .h2, h2 {
    font-size: 1.85rem;
  }
  .magic-websites-section, .magic-branding-section, .about-section, .testimonials-section {
    padding: 2rem 0;
  }
}