/* ===== Global ===== */

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Roboto Flex', sans-serif;
  margin: 0;
  padding: 0;
}

.message-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7); /* semi-transparent black */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.message-popup {
	position: relative;
	z-index: 10000;
}


.logo {
  height: 40px;
  max-width: 100%;
}
/* ===== Navbar ===== */
/* ===== Navbar Link Styles ===== */
.navbar-nav .nav-link {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 10px;
  color: #000;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #ff0000;
}

/* Talk Button */
.talk-btn {
  background: #e50914;
  color: #fff;
  font-weight: 500;
  border-radius: 0;
  padding: 8px 16px;
  transition: all 0.3s ease-in-out;
}

.talk-btn:hover {
  background-color: #ff0000;
  color: #fff;
}

/* Dropdown Menu Common */
.dropdown-menu {
  border-radius: 0;
  padding: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: block; /* Required for transition */
  height: 0;
  overflow: hidden;
}

/* Dropdown Item Styles */
.dropdown-menu .dropdown-item {
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 20px;
  color: #000;
  transition: background-color 0.3s, color 0.3s;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #e50914;
}

/* === Desktop: Show on Hover === */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    height: auto;
    overflow: visible;
  }

  .dropdown-toggle::after {
    transition: transform 0.3s ease;
  }

  .navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* === Mobile Fixes (Click dropdown) === */
@media (max-width: 991.98px) {
  .navbar-nav .dropdown-menu {
    border: none;
    box-shadow: none;
    background-color: #fff;
    transform: none;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }

  .navbar-nav .dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
    overflow: visible;
  }

  .dropdown-menu .dropdown-item {
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    color: #000 !important;
  }

  .dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #e50914 !important;
  }

  .dropdown-toggle::after {
    content: '\25BC';
    font-size: 0.6em;
    margin-left: 0.4em;
    vertical-align: 0.15em;
  }
}






/* ===== Banner Section ===== */
.banner-section {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  height: 90vh;
}

/* Fix for testimonial carousel height so it doesn't take full 90vh */
.testimonial-carousel-item {
  height: auto !important;
  padding: 3rem 0; /* Optional spacing above/below */
}


.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}

.banner-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

.banner-subtitle {
  font-size: 3rem;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  text-align: center;
}

.banner-title {
  font-size: 4rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  text-align: center;
}


.banner-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(4px);
}


.banner-slide-content {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: white;
  text-align: center;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  box-sizing: border-box;     /* 🛡️ Prevents padding from breaking layout */
  padding: 0 15px;            /* ✅ Adds breathing room on smaller screens */
}


.banner-slide-content h1 {
  font-size: 3.5rem;
  line-height: 1.3;
  font-weight: 500;
  margin: 0;
}





@media (max-width: 768px) {
  .banner-slide-content {
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    text-align: center;
    padding: 0 15px;
  }

  .banner-subtitle {
    font-size: 1.6rem;
    line-height: 1.3;
    padding: 0 10px;
  }

  .banner-title {
    font-size: 2.2rem;
    line-height: 1.4;
    padding: 0 10px;
  }

  .banner-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
  }

  .banner-slide-content h1 {
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
  }
}



/* ===== Intro Section ===== */
.intro-section {
  padding: 7rem 1rem;
  background-color: #ffffff;
}

/* Top label */
.intro-label {
  font-weight: 600;
  text-transform: uppercase;
  color: #c20814; /* Red branding */
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Main Heading */
.intro-title {
font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
}

/* Sub description */
.intro-desc {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* Let's Talk button */
.intro-btn {
  background-color: #e50914;
  color: #fff;
  font-weight: 500;
  border-radius: 0;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease-in-out;
}

.intro-btn:hover {
  background-color: #c60010;
  color: #fff;
}

/* Case Studies button */
.intro-section .btn-light {
  background-color: #f1f1f1;
  color: #111;
  font-weight: 500;
  border-radius: 0;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease-in-out;
}

.intro-section .btn-light:hover {
  background-color: #ddd;
  color: #000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .intro-title {
    font-size: 1.4rem;
  }

  .intro-desc {
    font-size: 0.95rem;
  }

  .intro-btn,
  .intro-section .btn-light {
    padding: 0.45rem 1.25rem;
    font-size: 0.95rem;
  }
}



/* ===== Products Section ===== */

.products-section {
	  background-color: #faf6ec;
	   padding:7rem 1rem;
}
.product-image-wrapper {
  position: relative;
  overflow: hidden;
 
}

.product-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: scale(1.05);
  transition: transform 0.4s ease;
}

.product-card {
  transform: translateY(80px);
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.4s ease;
  overflow: hidden; /* Prevent zoom overflow */
}

.product-card:hover {
  transform: translateY(-10px) scale(1.03);
}

.product-img {
  width: 100%;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img {
  transform: scale(1.1);
}


.product-card h6 {
  font-weight: 500;
  color: #222;
  margin-top: 0.75rem;
}

/* New single black cover */
.mask-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 3;
  transform: translateX(0%);
  will-change: transform;
}

.section-title-text .word {
  display: inline-block;
  will-change: transform, opacity;
}


.mission-wrapper {
  text-align: center;
}

.mission-inner {
  position: relative;
  padding: 0 100px;
  display: inline-block;
}

.mission-content {
  max-width: 700px;
  margin: 0 auto;
}

.mission-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
}

.btn-see-work {
  display: inline-block;
  background-color: #e50914;
  color: #fff;
  padding: 12px 25px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 0.3s ease;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.btn-see-work:hover {
  background-color: #fff;
  color: #000;
}

/* Final Forced Vertical Offsets */
.creative-left {
  position: absolute;
  left: -100px;
  top: 40px;
  animation: floatY 4s ease-in-out infinite;
}

.creative-right {
  position: absolute;
  right: -100px;
  top: -30px;
  animation: floatY 4s ease-in-out infinite;
}

.circle-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

/* Floating animation */
@keyframes floatY {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Responsive Tweak */
@media (max-width: 768px) {
  .creative-left,
  .creative-right {
    position: static;
    margin: 15px 0;
  }

  .mission-inner {
    padding: 0;
  }

  .mission-heading {
    font-size: 2rem;
  }
}


/* ===== Build  Section ===== */

.build-section {
  background-color: #fdf7ec;
  padding: 6rem 1rem;
  font-family: 'Poppins', sans-serif;
}

.build-container {
  max-width: 1200px;
  margin: 0 auto;
}

.build-image {
  flex: 1 1 50%;
  text-align: center;
}

.build-image img {
  max-width: 100%;
  height: auto;
}

.build-content {
  flex: 1 1 45%;
  padding-left: 2rem;
  padding-top: 2rem;
}

.build-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}

.inline-icon {
  height: 1.8rem;
  vertical-align: middle;
  margin: 0 0.5rem;
}

.build-description {
  margin-top: 1rem;
  color: #666;
  line-height: 1.6;
}

.stats-row {
  margin-top: 2rem;
}

.stat-box {
  max-width: 220px;
}

.stat-value-build {
  font-size: 4rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 0.5rem;
}

.stat-box hr {
  border: none;
  border-top: 1px solid #ccc;
  margin-bottom: 0.75rem;
}

.stat-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.5rem;
}

.stat-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .build-container {
    flex-direction: column;
  }

  .build-content {
    padding-left: 0;
    padding-top: 3rem;
    text-align: center;
  }

  .stats-row {
    flex-direction: column;
    align-items: center;
  }

  .stat-box {
    margin-bottom: 2rem;
  }
}


/* ===== Project Section ===== */



.project-style-section {
  background-color: #fdf7ec;
  padding: 6rem 1rem;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: 100%;
}

.project-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.project-card:hover img {
  transform: scale(1.03);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card-overlay h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.arrow-btn.yellow {
  background-color: #f6b000;
  color: #000;
}

.arrow-btn.white {
  background-color: #fff;
  color: #000;
}

.arrow-icon {
  font-size: 1rem;
}

.project-card:hover .card-overlay h5 {
  opacity: 1;
  transform: translateY(0);
}





/* ===== About Us Section ===== */
.about-section {
  padding: 6rem 1rem;
  background-color: #c20814; /* Red background as per image */
  color: #fff;
}

.about-title {
font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
	text-transform: uppercase;
}

.subtitle-text {
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.about-desc {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-section img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  will-change: transform, opacity;
}

.about-section img:hover {
  transform: scale(1.03);
}

/* Responsive Typography */
@media (max-width: 768px) {
  .about-title {
    font-size: 1.75rem;
  }

  .about-section img {
    max-width: 100% !important;
  }
}




/* ===== Stats Section ===== */
.stats-section {
  background-color: #c60010;
  padding: 6rem 1rem;
}

.stats-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
}

.stat-item {
  padding: 0 1rem;
}

.stat-value {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 768px) {
  .stats-title {
    font-size: 1.6rem;
  }

  .stat-value {
    font-size: 1.8rem;
  }
}


/* ===== Clients Section ===== */
.clients-section {
  background-color: #fff;
  padding: 5rem 1rem;
}

.clients-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #111;
}

.client-logo {
  max-height: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: transform 0.4s ease, filter 0.3s ease;
  will-change: transform, filter;
}

.client-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.08);
}




/* ===== Case Studies Section ===== */
/* Highlight label and title */
.highlight-label {
  font-weight: 500;
  text-transform: uppercase;
  color: #d63384;
  font-size: 0.9rem;
  letter-spacing: 0.8px;
}

.highlight-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #111;
  line-height: 1.3;
}

/* Testimonial text styling */
.testimonial-text {
  font-size: 1.5rem;
  font-weight: 400;
  color: #111;
  margin-bottom: 0.75rem;
}

.testimonial-author {
  font-size: 1rem;
  color: #666;
}

/* Carousel image and buttons */
.carousel-image-wrapper {
  position: relative;
  display: inline-block;
}

.carousel-nav {
  position: absolute;
  bottom: 1rem;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  border: none;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-nav.left {
  right: 3.2rem;
}

.carousel-nav.right {
  right: 1rem;
}

.carousel-nav:hover {
  background-color: #f3f3f3;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.carousel-nav-group {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  border-radius: 0.4rem;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.carousel-nav-btn {
  background-color: #f3f3f3;
  border: none;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #222;
  transition: background-color 0.3s ease;
}

.carousel-nav-btn:hover {
  background-color: #e0e0e0;
}

.carousel-nav-btn:not(:last-child) {
  border-right: 1px solid #ddd;
}

/* Ready to Work Section */
.ready-section {
  background-color: #081a1e;
 padding:7rem 1rem;
}

.footer-subtitle {
  color: #e46ebf;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.footer-description {
  max-width: 700px;
  margin: 0 auto;
  color: #ccc;
}

/* Separator Line */
.footer-divider {
  max-width: 85%;
  
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 auto;
}

/* Footer Styling */
.footer-section {
  background-color: #081a1e;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #fff;
}

.footer-section p,
.footer-section li {
  color: #ccc;
}






/* ===== Responsive ===== */
@media (max-width: 992px) {
  .banner-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .navbar-nav .nav-link {
    margin: 5px 0;
  }
  .banner-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .banner-title {
    font-size: 1.5rem;
  }
  .talk-btn {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}




/* ===== About Us Page (Isolated Styles) ===== */
.about-hero-banner {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.about-hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  top: 0;
  left: 0;
}

.about-hero-overlay {
  position: absolute;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0,0,0,0.8));
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.about-hero-fade-text {
  position: absolute;
  top: 25%;
  transform: translate(-50%, -50%);
  font-size: 7rem;
  font-weight: 600;
  color: #fff;
  opacity: 0.04;
  white-space: nowrap;
  text-transform: uppercase;
  line-height: 1;
  z-index: 3;
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 4;
  color: #fff;
  padding: 0 1rem;
  text-align: center;
}

.about-hero-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-hero-sub {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 0.95rem;
  color: #ddd;
}

/* For laptops/desktops: width between 769px and 1440px */
@media (min-width: 769px) and (max-width: 1440px) {
  .about-hero-fade-text {
    top: 20%;         /* move it up slightly from 25% */
    font-size: 5.5rem;
  }

  .about-hero-heading {
    font-size: 2.2rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 1rem;
  }
}

/* Existing mobile styles */
@media (max-width: 768px) {
  .about-hero-fade-text {
    top: 18%;
    font-size: 4rem;
  }

  .about-hero-heading {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
}


.about-expertise-section {
  background-color: #fff;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
}

.info-box {
  background: #fffaf0;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
}

.info-box:hover {
  background: #e52828;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.info-box:hover .info-title,
.info-box:hover .info-text {
  color: #fff;
}

.info-box:hover .info-icon i {
  color: #fff;
}

.info-icon i {
  color: #e52828;
  transition: color 0.3s ease;
}

.info-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #111;
}

.info-text {
  font-size: 0.95rem;
  color: #555;
}





.story-section {
  padding: 4rem 0;
  background-color: #fff;
  position: relative;
}

.story-main-img {
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: auto;
}

.story-overlay-img {
  position: absolute;
  bottom: -100px;
  right: 0;
  width: 320px;
  z-index: 2;
}

.story-worker-img {
  width: 100%;
  height: auto;
  z-index: 2;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.frame-border {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 15px solid #fbbd08; /* Yellow border */
  z-index: 1;
}

.story-content-wrapper {
  margin-top: 2rem;
  padding: 0 3rem;
}

.story-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.story-divider {
  border: none;
  border-top: 1px solid #444444;
  width: 70%;
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.story-badge-block {
  margin-top: 1rem;
}

.story-year-circle {
  background-color: #f5f5f5;
  font-size: 5rem;
  font-weight: 700;
  color: #999;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  text-align: center;
  line-height: 115px;
}

.story-badge-content h5 {
  font-size: 16px;
  font-weight: 600;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  .story-section {
    overflow: hidden;
  }

  .story-content-wrapper {
    padding: 0 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
  }

  .story-year-circle {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: #f5f5f5;
    color: #999;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 1rem auto; /* center the circle */
    display: block;
    text-align: center;
  }

  .frame-border {
    display: none;
  }

  .story-overlay-img {
    display: none !important;
  }

  .story-heading {
    font-size: 1.5rem;
    text-align: center;
    z-index: 3;
    position: relative;
  }

  .story-divider {
    margin: 2rem auto;
    width: 80%;
  }

  .story-badge-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .story-badge-content h5 {
    font-size: 15px;
  }

  .story-badge-content p {
    font-size: 14px;
  }
}





.print-services-section {
  background-color: #fffaf0;
  padding: 4rem 2rem;
}

.service-tabs {
  flex: 1;
  max-width: 600px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

.section-desc {
  margin-bottom: 2rem;
  color: #666;
  font-size: 15px;
}

.service-tab {
  
  border-bottom: 1px solid #ddd;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-tab.active {
  background-color: #000;
  color: #fff;
}

.service-tab.active .tab-title,
.service-tab.active .tab-subtitle {
  color: #fff;
}

.tab-title {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
}

.tab-subtitle {
  font-size: 14px;
  color: #666;
}

/* Image Frame + Fade */
.service-image-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-frame {
  position: relative;

  background: #ccc;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  transition: opacity 0.4s ease;
  opacity: 1;
}

.service-image.fade-out {
  opacity: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .print-services-section .container {
    flex-direction: column;
    gap: 2rem;
  }

  .service-tabs,
  .service-image-wrapper {
    max-width: 100%;
  }

  .img-frame {
    transform: rotate(0);
  }
}




.services-intro-section {
  padding: 6rem 3rem;
  background-color: #fff;
}

.services-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 1rem;
}

.services-section-desc {
  font-size: 16px;
  color: #555;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .services-section-title {
    font-size: 1.6rem;
  }

  .services-section-desc {
    font-size: 15px;
    padding: 0 1rem;
  }
}






.services-feature-section {
  padding: 6rem 3rem;
    background-color: #fffaf0;
  text-align: center;
}

.services-feature-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #111;
}

.services-feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.services-feature-card {
  width: 100%;
  max-width: 300px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.services-feature-card:hover {
  transform: translateY(-5px);
}

.feature-img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.feature-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  position: relative;
  z-index: 2;
}

.feature-text h5 {
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: #111;
  margin: 0;
}

.arrow-box {
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #111;
}

.underline-hover {
  content: '';
  height: 2px;
  background: #111;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  transition: width 0.5s ease;
}

.services-feature-card:hover .underline-hover {
  width: 100%;
}

.services-feature-card:hover .arrow-box {
  animation: arrow-exit 0.4s forwards, arrow-enter 0.4s 0.4s forwards;
}

@keyframes arrow-exit {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(10px, -10px);
    opacity: 0;
  }
}

@keyframes arrow-enter {
  0% {
    transform: translate(-10px, 10px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .services-feature-grid {
    flex-direction: column;
    align-items: center;
  }

  .services-feature-heading {
    font-size: 1.5rem;
  }
}




.faq-section {
  padding: 4rem 1.5rem;
    background-color: #fff;
  font-family: 'Poppins', sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  flex-wrap: wrap;
}

.faq-number {
  font-weight: 600;
  color: #999;
  margin-right: 1rem;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.faq-text {
  flex-grow: 1;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  margin: 0;
}

.faq-toggle {
  font-size: 2rem;
  font-weight: 300;
  color: #999;
  transition: transform 0.3s ease;
  user-select: none;
}

.faq-answer {
  padding-top: 1rem;
  font-size: 1rem;
  color: #555;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





.contact-hero-banner {
  position: relative;
  padding: 6rem 0;
  color: #fff;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2;
}

.contact-hero-fade-text {
  position: relative;
  z-index: 3;
  text-align: center;
  font-size: 7rem;
  font-weight: 900;
  letter-spacing: 2px;
  opacity: 0.1;
  padding-bottom: 3rem;
}

.contact-hero-content {
  position: relative;
  z-index: 4;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-group.half {
  width: calc(50% - 1rem);
}

.form-group.full {
  width: 100%;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  color: #fff;
  padding: 12px 5px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ffc107;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.submit-btn {
    background: #e50914;
    color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #fff;
     color: #e50914;
}

.terms-label {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

@media (max-width: 768px) {
  .form-group.half {
    width: 100%;
  }

  .contact-hero-fade-text {
    font-size: 4rem;
  }
}


.contact-info-boxes .info-box {
  background: #fffaf0;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 6px;
  height: 100%; /* makes it stretch to full height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* aligns text to top */
  margin-top: 20px; /* optional: vertical spacing inside row */
}




.contact-info-boxes {
  background-color: #fdf8ee;
  padding: 6rem 3rem;
}

.info-box {
  flex: 1 1 30%;
  padding: 2rem;
  margin: 1rem 0;
  position: relative;
  background: #fdf8ee;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.info-box h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
   color: #111; 
}

.info-box p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
}

/* Hover Effect */
.info-box:hover {
  background: #e50914;
  color: #fff;
}

.info-box:hover h5,
.info-box:hover p {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .container.d-flex {
    flex-direction: column;
    gap: 1.5rem;
  }
}





.map-section {
  margin-top: 0;
  padding: 0;
}

.map-container {
  width: 100%;
  height: 450px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}





/* ===== Vinyl Page Specific Overrides ===== */

.vinyl-info-section {
  padding: 7rem 1rem;
  background-color: #fffaf0;
}

.vinyl-info-section .section-title-text {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111;
  opacity: 1;
  will-change: opacity, transform;
}

.vinyl-info-section .section-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.vinyl-info-section .step-number {
  font-size: 2rem;
  font-weight: 600;
  color: #c20814;
  line-height: 1;
  margin-top: 4px;
  min-width: 2.5rem;
  display: inline-block;
}


/* ===== Services Intro Section (NEW BLOCK) ===== */
.services-intro-section {
  padding: 6rem 1rem;
  background-color: #fff;
}


.services-section-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}


/* ===== Scroll-Based Animation Helpers ===== */
.fade-up-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.fade-up-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional delay classes */
.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}


/* ===== Shared Print Page Elements ===== */
.info-section{
	  padding: 7rem 3rem;
	    background-color: #fffaf0;
}


.print-page .about-hero-fade-text {
  top: 20%;
  font-size: 6rem;
}

.print-page .about-hero-heading {
  font-size: 2.3rem;
}

.print-page .about-hero-sub {
  color: #eaeaea;
}

.print-page .faq-section .accordion-button {
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  background-color: #fffaf0;
}

.print-page .faq-section .accordion-body {
  font-size: 0.95rem;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

.print-page .faq-section .accordion-button:not(.collapsed) {
  background-color: #e50914;
  color: #fff;
}

.step-number {
  font-size: 2rem;
  font-weight: 600;
  color: #c20814;
  line-height: 1;
  margin-top: 4px;
}

.services-feature-card {
  text-decoration: none !important;
  color: inherit !important;
}

.services-feature-card h5 {
  text-decoration: none !important;
  color: inherit !important;
}
.card-custom {
	border: none !important;
	border-radius: 16px !important;
	overflow: hidden;
	position: relative;
	height: 100%;
	cursor: pointer;
}
.card-custom img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
	cursor: pointer;
	transition: all 0.5s ease;
}
.card-title-box {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: white;
	padding: 10px 25px;
	border-radius: 12px;
	font-size: 1.5rem;
	font-weight: 600;
	color: black;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	transition: all 0.5s ease;
	cursor: pointer;
	width: 70%;
}
.card-custom:hover .card-title-box {
	bottom: 40px; /* lift up */
	background-color: #e50914; 
	color: #fff;
}
.card-custom:hover .custom-img {
	width: 110%;
	position: relative;
}

@media (min-width: 700px) {
	.grid-container {
		display: grid;
		grid-gap: 10px;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		grid-auto-rows: 200px;
		grid-auto-flow: dense;
	}
	
	.grid-container > div {
		display: flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
	}
	.grid-container > div > a {
		display: block;
		width: 100%;
		height: 100%;
	}

	.grid-container > div > a > img {
		max-width: 100%;
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 5px;
		vertical-align: middle;
		display: inline-block;
		transition: all 0.5s ease;
	}
	.grid-container > div > a > img:hover {
		transform: scale(1.2);
		transition: all 0.5s ease;
	}

	.portrait {
		grid-row: span 2;
	}

	.landscape {
		grid-column: span 2;
		grid-row: span 2;
	}
	.big {
		grid-column: span 2;
		grid-row: span 2;
	}
}
@media (max-width: 767px) {
	.grid-container {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.grid-container > div {
		width: 100%;
		height: auto;
	}

	.grid-container > div > a {
		display: flex;
		width: 100%;
		height: auto;
	}

	.grid-container > div > a > img {
		width: 100%;
		height: auto;
		object-fit: contain;
	}
}
@keyframes zoomOutStatic {
	0% {
		transform: scale(1.5);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.zoom-out-static {
	animation: zoomOutStatic 0.8s ease-out forwards;
}
