/* ----------------------------------

Template Name: Dixor - Creative Digital Agency Template
Author: validtheme
Description:
Version: 1.5

Main Font    : Barlow
Main Color   : #2667FF

-------------------------------------

[Typography]

Body copy:    15px 'Barlow', sans-serif
Header:     36px 'Barlow', sans-serif
Input, textarea:  16px 'Barlow', sans-serif
Sidebar heading:  22px 'Barlow', sans-serif

>>> TABLE OF CONTENTS:
=======================
        
    01. Template default css
        - Animations
        - General
        - Section Title
        - Video Button
        - Typography
        - Tables
        - Forms
        - Buttons
        - Pagination
        - Colors
        - Accordion
        - Tabs
    02. Preloader
    03 Navbar
        - Navbar Default
        - Navbar Transparent
        - Navbar Sticky
        - Navbar Animation
        - Side Navbar
    04. Home Page
        - Home Main
        - Creative Agency
        - Showcase Carousel
        - Showcase Slider
        - Design Studio
        - Modern Startup
    05. Services
        - Version One
        - Version Two
        - Version Three
        - Version Four
        - Service Single
	06. About
        - Version One
        - Version Two
    07. Project
        - Project Showcase
        - Project Carousel
        - Project Grid
        - Project Single
    08. Why Choose Us
    09. Team
        - Team Version One
        - Team Version Two
        - Team Single
    10. Testimonials
    11. Why Choose Us
    12. Faq
    13. Progress
    14. Brand / Partner
    15. Feature
    16. What We Offer
    17. Pricing
    18. Blog
        - Standard
        - Grid
        - Left Sidebar
        - Right Sidebar
        - Single
    21. Error 404
    22. Footer
    23. PHP Contact Form
    24. Others

*/

/*
** General Styles for HTML tags
*/
/* FINAL OVERRIDE: remove all backgrounds from product slider */
.full-slider-two-area {
  background-image: none !important;
  background: none !important;
}

/* === Hero Section Styles === */
.hero-section {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  background-color: #1e3040;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.hero-subtitle {
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  opacity: 0.9;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 600;
  margin: 0.4rem 0;
  line-height: 1.1;
}

.hero-title a {
  color: #fff;
  text-decoration: none;
}

.hero-title a:hover {
  opacity: 1;
}

.hero-tagline {
  font-size: 1.6rem;
  font-weight: 400;
  opacity: 1;
  margin-top: 0.5rem;
  letter-spacing: 0.5px;
}

/* Responsive Tweak */
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .hero-tagline {
    font-size: 1rem;
  }
}
/* =========================
   PRODUCTS CAROUSEL — FINAL FIXED
   ========================= */
.full-slider-two-area {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Ensure slides stretch full height */
.full-screen-portfolio-two,
.full-screen-portfolio-two .swiper-wrapper,
.full-screen-portfolio-two .swiper-slide {
  height: auto !important;
  min-height: 100vh; /* keeps your full-screen look */
}

.full-slider-two-item {
  color: #fff;
}

/* Thumbnail styling
.full-slider-two-item .thumb img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
} */

/* ========================= PRODUCTS CAROUSEL — FINAL FIXED ========================= */
/* Ensure slides stretch full height */
.full-screen-portfolio-two,
.full-screen-portfolio-two .swiper-wrapper,
.full-screen-portfolio-two .swiper-slide {
  height: 100%;
}
.full-slider-two-item {
  color: #fff;
} /* Thumbnail styling */
.full-slider-two-item .thumb img {
  width: 100%;
  aspect-ratio: 3 / 5;
  object-fit: cover;
  border-radius: 12px;
  max-height: 75vh;
  margin-top: 150px;
}

/* === Products nav: lock PREV | 01/03 | NEXT into one row === */ /* Outer placement (tweak here) */
.full-slider-two-nav {
  position: absolute;
  right: 40px; /* ← move the whole bar left/right */
  bottom: 80px; /* ← move the whole bar up/down */
  z-index: 30;
  color: #fff;
  display: flex;
  justify-content: flex-end;
} /* Unified bar */
.nav-flex {
  display: flex;
  align-items: center;
  gap: 8px; /* was 18px — this pulls everything closer */
  min-width: 140px;
  padding: 10px 20px;
  border-radius: 40px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
} /* Make every child a fixed-size flex item */
.nav-flex > * {
  flex: 0 0 auto !important; /* ← stops any child from stretching */
} /* Buttons */
.nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 600 14px/1 inherit;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  opacity: 0.9;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-btn:hover {
  opacity: 1;
  transform: translateY(-1px);
} /* Pagination forced inline & neutralized */
.nav-pagination,
.full-slider-two-pagination {
  position: static !important; /* kill absolute from theme */
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: auto !important; /* no 100% width shenanigans */
  margin: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-width: 70px; /* room for 02 / 03 */
  font: 700 14px/1 inherit;
  letter-spacing: 0.5px;
} /* Colors for current/total */
.nav-pagination .swiper-pagination-current {
  color: #00b4ff;
}
.nav-pagination .swiper-pagination-total {
  opacity: 0.6;
}
.nav-pagination span {
  margin: 0 3px;
}

/* ========================= MOBILE — Hide navigation controls ========================= */
@media (max-width: 768px) {
  .full-slider-two-nav {
    display: none !important;
  }
}

/* ========================= CONTACT SECTION ========================= */
.contact-area {
  padding: 100px 0;
  background-color: #0b0f17;
}

.contact-style-one-info {
  color: #fff;
}

.contact-style-one-info h4 {
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 6px;
}

.contact-style-one-info a,
.contact-style-one-info p {
  color: #ccc;
  font-size: 1.5rem;
  text-decoration: none;
}

.contact-style-one-info a:hover {
  color: #00b4ff;
}

.contact-style-one-info .contact-address {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-style-one-info .contact-address li {
  margin-bottom: 20px;
}

.contact-form-style-one input,
.contact-form-style-one textarea,
.contact-form-style-one select {
  background-color: #121a23;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 6px;
  padding: 12px 15px;
  width: 100%;
  transition: all 0.3s ease;
}

.contact-form-style-one input:focus,
.contact-form-style-one textarea:focus,
.contact-form-style-one select:focus {
  border-color: #00b4ff;
  outline: none;
}

.contact-form-style-one button {
  background: #00b4ff;
  border: none;
  color: #fff;
  font-weight: 1000;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.contact-form-style-one button:hover {
  background: #0094d8;
  transform: translateY(-1px);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .contact-area {
    padding: 60px 0;
  }
}

/* Toast styling */
/* Toast styling (fixed to screen corner) */
#toast {
  position: fixed;
  bottom: 25px; /* distance from screen bottom */
  right: 25px; /* distance from screen right */
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 18px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 9999;
}

#toast.show {
  opacity: 1;
  transform: translateY(0);
}
.contact-area {
  min-height: 100vh; /* fill viewport height */
  display: flex; /* center vertically */
  align-items: center;
  background-color: #0b0f17;
  padding: 0; /* remove extra padding */
}

.contact-area .container {
  padding-top: 60px; /* slight breathing space */
  padding-bottom: 60px;
}
.contact-area {
  scroll-snap-align: start;
}

@media (max-width: 768px) {
  @media (max-width: 768px) {
    footer .address-list {
      gap: 2px !important;
    }
    footer .address-list p,
    footer .address-list a {
      font-size: 1.05rem !important;
    }
  }
}

/* === Products section background scroll (mobile) === */
.full-slider-two-area {
  background-size: 300% auto; /* enable wide horizontal panning */
  background-repeat: no-repeat;
  background-position: 0% center;
  transition: background-position 1s ease;
}

@media (min-width: 769px) {
  .full-slider-two-area {
    background-size: cover; /* revert to standard on desktop */
    background-position: center center;
  }
}

/* Overlay for mobile nav background */
.overlay-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.overlay-screen.active {
  opacity: 1;
  visibility: visible;
}

/* Close button inside mobile menu */
.navbar-toggle.close-menu-btn {
  background: transparent;
  border: none;
  font-size: 22px;
  color: #fff;
}
.products-static-heading {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  z-index: 50;
  pointer-events: none; /* So it doesn't block slider actions */
  color: #ffffff;
}
/* MOBILE FIX: make Our Products heading visible */
@media (max-width: 768px) {
  .products-static-heading {
    position: relative !important;
    top: 0 !important;
    margin-top: 30px;
    margin-bottom: -50px !important;
    font-size: 32px !important;
  }
}

/* ========================
   Floating WhatsApp Button
   ======================== */
.floating-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  text-decoration: none;
  z-index: 99999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: all 0.25s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
  .floating-whatsapp {
    width: 44px;
    height: 44px;
    font-size: 30px;
    bottom: 20px;
    right: 20px;
  }
}

/* PRODUCTS PAGE */

/* ================================
   NAVBAR ONLY FOR PRODUCTS PAGE
   ================================ */
/* .products-page .navbar {
  background-color: #1c1b1b !important;
  backdrop-filter: none !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.products-page .navbar .navbar-brand img {
  filter: brightness(1.1);
}

.products-page .navbar-toggle {
  color: #fff !important;
}

.products-page .nav > li > a {
  color: #ffffff !important;
}

.products-page .nav > li > a:hover {
  color: #00b4ff !important;
} */

/* Fix mobile menu background on products page */
/* .products-page .mobile-sidenav .navbar-collapse {
  background-color: #181818 !important;
} */

/* ============================
      AIRPIXEL — METRICS SECTION
=============================== */

.ap-metrics-section {
  padding: 110px 0 50px;
  background: radial-gradient(
      900px 600px at 80% 0%,
      #1b2a4b33 0,
      transparent 60%
    ),
    radial-gradient(900px 600px at 0% 100%, #281b4b33 0, transparent 60%),
    #050812;
}

/* TOP AREA */
.ap-metrics-pill {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 16px;
  letter-spacing: 0.16em;
  color: #cfe0ff;
  background: rgba(9, 16, 36, 0.9);
  margin-top: 70px;
}

.ap-metrics-title {
  margin: 10px 0 6px;
  font-size: 2.5rem;
  font-weight: 500;
}

.ap-metrics-sub {
  color: #9aa4c5;
  font-size: 1.03rem;
  margin-bottom: 70px; /* ⬅ REDUCED gap before tables */
}

/* GRID */
.ap-metrics-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 22px;
  margin-top: 10px; /* tighter spacing after sub-heading */
}

@media (max-width: 992px) {
  .ap-metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* LEFT PANEL */
.ap-metrics-left {
  /* background: linear-gradient(
    145deg,
    rgba(12, 17, 35, 0.96),
    rgba(5, 9, 22, 0.96)
  ); */
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.55);

  min-height: 72vh;
  max-height: 100vh;

  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ap-metrics-canvas {
  color: #c9d4f4;
  margin-bottom: 6px;
  font-size: 1.3rem;
}

/* Input + Range Fields */
.ap-metrics-field {
  margin-bottom: 12px;
}

.ap-metrics-label {
  font-size: 1.13rem;
  font-weight: 600;
  color: #aab4d4;
  margin-bottom: 0px;
}

.ap-metrics-range {
  width: 100%;
}

.ap-metrics-chips {
  display: flex;
  gap: 15px;
  margin-top: 0px;
}

.ap-chipbtn {
  padding: 6px 12px;
  font-size: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0c1020;
  color: #dde6ff;
  cursor: pointer;
}

.ap-metrics-field-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ap-metrics-input {
  width: 100%;
  background: #5555;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 11px 14px;
  font-size: 1rem;
  color: #e3e6f5;
}

.ap-metrics-heightSummary {
  font-size: 1.02rem;
  color: #9aa4c5;
  margin: 8px 0 12px;
}

/* TABLE (Black + White Glassmorphism Clean) */
/* TABLE should take natural height — no scroll */
.ap-metrics-table-wrap {
  width: 100%;
  height: auto; /* remove fixed height */
  max-height: none; /* remove limits */
  overflow: visible !important; /* full expansion */
  background: none !important; /* remove background box */
  border: none !important; /* remove border */
  box-shadow: none !important; /* remove shadow */
  backdrop-filter: none !important;
  padding: 0;
}

.ap-metrics-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #ffffffee;
  font-size: 1.02rem;
}

.ap-metrics-table th {
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  padding: 14px 18px;
  backdrop-filter: blur(8px);
}

.ap-metrics-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #e9e9e9;
}

.ap-metrics-table tr:last-child td {
  border-bottom: none;
}

.ap-row-hl {
  background: rgba(255, 255, 255, 0.07);
}

/* RIGHT SIDE */
.ap-metrics-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* MAP CARD */
/* Remove card background around map */
.ap-metrics-mapcard {
  background: none !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

.ap-metrics-map-header {
  color: #cfe0ff;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 8px;
  padding-left: 2px;
}

.ap-metrics-map-dot {
  display: none !important; /* hide dot */
}

.ap-metrics-map-wrap {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Bigger premium map */
.ap-metrics-map {
  width: 100%;
  height: 450px; /* increase map height */
  border-radius: 14px;
  overflow: hidden;
}

/* STATS BELOW MAP */
.ap-metrics-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ap-metrics-stats-row {
  display: flex;
  gap: 8px;
}

.ap-metrics-stats-row-single {
  display: flex;
  justify-content: center;
}

.ap-metric-card {
  flex: 1;
  background: #55555;
  border-radius: 14px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ap-metric-card-wide {
  width: 100%;
}

.ap-metric-label {
  text-transform: uppercase;
  font-size: 0.88rem;
  color: #9aa4c5;
  margin-bottom: 0px;
}

.ap-metric-value {
  font-size: 1.5rem;
  font-weight: 550;
}

.ap-metric-helper {
  margin-top: 5px;
  font-size: 0.92rem;
  color: #8893b5;
}

/* =========================
   AIRPIXEL PRODUCTS SECTION
========================= */

.ap-products-section {
  padding: 120px 0;
  background: #050812;
  color: #fff;
}

/* Pills */
.ap-products-pill-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.ap-prod-pill {
  padding: 8px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0c1020;
  color: #d6e2ff;
  cursor: pointer;
  font-size: 1.05rem;
  transition: all 0.25s ease;
}

.ap-prod-pill:hover {
  background: #24d18c;
  color: #d6e2ff !important;
  border-color: #24d18c;
}

.ap-prod-pill.active {
  background: #24d18c;
  color: #000;
  border-color: #24d18c;
  font-weight: 700;
}

/* Content area */
.ap-products-content {
  max-width: 1100px;
  margin: 0 auto;
}

.ap-prod-item {
  display: none;
  animation: fadeIn 0.5s ease;
}

.ap-prod-item.active {
  display: block;
}

.ap-prod-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.ap-prod-sub {
  color: #9aa4c5;
  margin-bottom: 25px;
}

/* Swiper Slider */
.ap-prod-slider {
  width: 100%;
  padding-bottom: 45px;
}

.ap-prod-slider img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 14px;
}

/* Nav Arrows */
.ap-prod-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 12px;
}

.ap-prod-prev,
.ap-prod-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ap-prod-prev:hover,
.ap-prod-next:hover {
  background: #24d18c;
  color: black;
}

/* Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FULL VH */
.ap-products-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  background: #050812;
}

/* Header */
.ap-prod-main-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
}

.ap-prod-main-sub {
  color: #9aa4c5;
  font-size: 1.25rem;
  margin-bottom: 40px;
}

/* Content Layout */
.ap-prod-item {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ap-prod-item.active {
  display: grid !important;
}

/* Text Area */
.ap-prod-text .ap-prod-title {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 50px;
}

.ap-prod-text .ap-prod-sub {
  font-size: 1.15rem;
  color: #9db3d7;
  margin-bottom: 50px;
}

.ap-prod-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ap-prod-points li {
  font-size: 1.05rem;
  color: #cdd6f3;
  display: flex;
  align-items: center;
}

.ap-prod-points li::before {
  content: "•";
  font-size: 1.6rem;
  color: #24d18c;
  margin-right: 10px;
}

/* Slider */
.ap-prod-slider img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 14px;
  margin-top: 2rem;
}

.unified-product-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 100px;
}

.unified-product-block .prod-title {
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 10px 0;
}

/* PRODUCT TAG PILLS */
.prod-tags {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.prod-tags li {
  display: inline-block;
}

.prod-tags li a {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #dfe8ff;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.prod-tags li a:hover {
  background: #24d18c;
  color: #000;
  border-color: #24d18c;
}

.prod-title {
  display: flex;
  align-items: center;
  gap: 12px; /* spacing between icon and text */
  margin-bottom: 5px;
}

.prod-title-icon {
  font-size: 32px;
  color: #24d18c; /* premium neon-green highlight */
  margin-top: -4px; /* align icon vertically with text */
}
@media (max-width: 768px) {
  .prod-title-icon {
    font-size: 26px;
    margin-top: -2px;
  }
}

.unified-product-block p {
  font-size: 1.35rem; /* change this to whatever size you want */
  line-height: 1.55;
  color: #dbe3ff; /* optional: nicer readable color */
}

.img-icon-heading {
  width: 60px;
  height: auto;
  align-self: flex-end; /* aligns icon bottom */
  margin-left: 0;
  margin-right: 10px;
}

.img-icon-headingCine {
  width: 40px;
  height: auto;
  margin-left: 10px;
  margin-right: 15px;
}

/* --- BOTTOM ALIGN PRODUCT ICON + TITLE --- */
.prod-title {
  display: flex;
  align-items: flex-end !important; /* bottom alignment */
  gap: 12px;
}

.prod-title a {
  display: inline-flex;
  align-items: flex-end; /* aligns text bottom to icon */
}

/* FA Quote Block */
.fa-quote-block {
  position: relative;
  padding-top: 25px; /* space for icon */
}

/* Green curved quote icon */
.fa-quote-block .quote-icon {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 46px; /* adjust size */
  color: #24d18c; /* AirPixel green */
  opacity: 1;
}

/* Text under the quote icon */
.fa-quote-block .quote-text {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.75;
  color: #dce5ff;
  padding-left: 10px; /* gentle visual alignment */
}

/* ============================
   PREMIUM QUOTE BOX (AirPixel)
   ============================ */

.quote-box {
  position: relative;
  padding: 35px 28px 28px 28px;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Floating quote icon */
.quote-box-icon {
  position: absolute;
  top: -15px; /* sits slightly outside box */
  left: 18px; /* aligned with padding */
  font-size: 25px;
  color: #24d18c; /* AirPixel premium green */

  padding: 4px 12px 0 12px;
  border-radius: 12px;
}

/* Quote text */
.quote-box-text {
  margin: 0;
  padding-top: 5px;
  font-size: 1.35rem;
  line-height: 1.75;
  color: #dce5ff;
}

/* =========================
     CONTACT — TOP PILL
   ========================= */
.contact-pill {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #d6e2ff;
  font-size: 1rem;
  letter-spacing: 0.2px;
  font-weight: 500;
}

/* Smooth delayed fade-in only for product tags */
.prod-tags {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 1.2s; /* show AFTER title */
}

/* When slide is active → reveal */
.swiper-slide-active .prod-tags {
  opacity: 1;
  transform: translateY(0);
}

.prod-para {
  margin-top: 150px;
  margin-bottom: 50px;
}
