@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&display=swap');

/* ================= BRAND VARIABLES & RESET ================= */
:root {
  --primary-color: #7A003C;
  --primary-dark: #4A0022;
  --primary-light: #FFF7F5;
  --gold-color: #E8B042;
  --gold-light: #FFF6E5;
  --butter-color: #F8E6CC;
  --magenta-accent: #B0185A;
  --soft-pink: #F5DCE8;

  --text-dark: #1F161A;
  --text-muted: #6B5C65;
  --text-white: #ffffff;

  --grad-burgundy: linear-gradient(135deg, #7A003C 0%, #B0185A 100%);
  --grad-gold: linear-gradient(135deg, #E8B042 0%, #FFD166 100%);
  --grad-dark-mesh: linear-gradient(135deg, #3A001B 0%, #5E002B 50%, #3A001B 100%);

  --max-width: 1440px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --header-shadow: 0 10px 30px rgba(122, 0, 60, 0.08);
  --footer-shadow: 0 -10px 40px rgba(74, 0, 34, 0.3);
}

/* ================= HANDWRITTEN SCRIPT FONT (CAVEAT) FOR ALL SELECTED HEADINGS ================= */
.hero-title,
.services-heading,
.about-heading,
.about-image-badge .badge-number,
.about-image-badge .badge-text,
.why-choose-heading,
.testimonials-heading,
.contact-heading,
.process-heading,
.testimonials-main-title,
.contact-hero-title,
.portfolio-hero-heading,
.services-cta-heading,
.portfolio-cta-heading,
.testimonials-cta-heading,
.contact-map-heading,
.contact-connect-heading,
.contact-section-title,
.contact-form-title,
.contact-cta-card-heading,
.script-font-heading {
  font-family: 'Caveat', cursive !important;
  letter-spacing: 0px !important;
}

.contact-section-title {
  font-size: 52px !important;
  font-weight: 700 !important;
}

.contact-form-title {
  font-size: 38px !important;
  font-weight: 700 !important;
}

.process-heading {
  font-size: 50px !important;
  font-weight: 700 !important;
}

.testimonials-main-title {
  font-size: 58px !important;
  font-weight: 700 !important;
}

.contact-hero-title {
  font-size: 56px !important;
  font-weight: 700 !important;
}

.portfolio-hero-heading {
  font-size: 58px !important;
  font-weight: 700 !important;
}

.services-cta-heading,
.portfolio-cta-heading,
.testimonials-cta-heading,
.contact-cta-card-heading {
  font-size: 44px !important;
  font-weight: 700 !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background-color: #FFF9F5;
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  opacity: 0;
  animation: pageFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================= HEADER STYLE ================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  transition: all 0.4s ease;
}

/* Wave Path Animations */
.wave-anim-path-1 {
  animation: waveSlideLeft 7s ease-in-out infinite alternate;
}

.wave-anim-path-2 {
  animation: waveSlideRight 9s ease-in-out infinite alternate;
}

@keyframes waveSlideLeft {
  0% {
    transform: translateX(0) scaleY(1);
  }
  50% {
    transform: translateX(-35px) scaleY(1.15);
  }
  100% {
    transform: translateX(20px) scaleY(0.92);
  }
}

@keyframes waveSlideRight {
  0% {
    transform: translateX(0) scaleY(1.08);
  }
  50% {
    transform: translateX(30px) scaleY(0.88);
  }
  100% {
    transform: translateX(-25px) scaleY(1.12);
  }
}

/* Scroll status - Clean Seamless Canvas */
.header.scrolled {
  background: rgba(255, 247, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(122, 0, 60, 0.05);
  border-bottom: none;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.header.scrolled .nav-container {
  height: 74px;
}

/* Brand Logo */
.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  transition: var(--transition);
}

.header.scrolled .logo img {
  height: 44px;
}

/* Desktop Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}

.nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 10px 0;
  opacity: 0.85;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  opacity: 1;
}

/* Header Actions & CTA Button */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-button {
  background: var(--grad-burgundy);
  color: var(--text-white);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(122, 0, 60, 0.22);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.cta-button .arrow-icon {
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(122, 0, 60, 0.35);
  color: var(--text-white);
}

.cta-button:hover .arrow-icon {
  transform: translateX(4px);
}

/* Hamburger mobile button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle .hamburger-bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition);
}

/* ================= MOBILE DRAWER MENU (LUXURY ANIMATED & SCROLLABLE DESIGN) ================= */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: #FFF7F5;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(122, 0, 60, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 90% 90%, rgba(232, 176, 66, 0.12) 0%, transparent 60%);
  z-index: 1000;
  box-shadow: -15px 0 50px rgba(74, 0, 34, 0.2);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

/* Background Ambient Glow Accents for Mobile Drawer */
.mobile-drawer::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(122, 0, 60, 0.12) 0%, rgba(232, 176, 66, 0.08) 50%, transparent 70%);
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.mobile-drawer::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(232, 176, 66, 0.15) 0%, rgba(176, 24, 90, 0.08) 50%, transparent 70%);
  filter: blur(45px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(122, 0, 60, 0.1);
  position: relative;
  z-index: 2;
}

.drawer-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.drawer-close {
  background: rgba(122, 0, 60, 0.06);
  border: 1px solid rgba(122, 0, 60, 0.15);
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.drawer-close svg {
  width: 18px;
  height: 18px;
}

.drawer-close:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
  transform: rotate(90deg);
  box-shadow: 0 4px 15px rgba(122, 0, 60, 0.25);
}

.drawer-close:active {
  transform: scale(0.9);
}

/* Scrollable Menu Container with Custom Scrollbar */
.drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  position: relative;
  z-index: 2;
  -webkit-overflow-scrolling: touch;
}

.drawer-menu::-webkit-scrollbar {
  width: 4px;
}

.drawer-menu::-webkit-scrollbar-track {
  background: rgba(122, 0, 60, 0.03);
  border-radius: 10px;
}

.drawer-menu::-webkit-scrollbar-thumb {
  background: rgba(122, 0, 60, 0.2);
  border-radius: 10px;
}

.drawer-menu::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.drawer-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 12px 16px;
  border-radius: 12px;
  border-bottom: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  position: relative;
}

.drawer-link::after {
  content: '→';
  font-size: 14px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s ease;
  color: var(--primary-color);
}

.drawer-link:hover,
.drawer-link.active {
  color: var(--primary-color);
  font-weight: 700;
  background: linear-gradient(135deg, rgba(122, 0, 60, 0.08) 0%, rgba(232, 176, 66, 0.12) 100%);
  border-left: 3.5px solid var(--primary-color);
  padding-left: 18px;
  box-shadow: 0 4px 15px rgba(122, 0, 60, 0.05);
}

.drawer-link:hover::after,
.drawer-link.active::after {
  opacity: 1;
  transform: translateX(0);
}

.drawer-cta {
  background: linear-gradient(135deg, #7A003C 0%, #B0185A 100%);
  color: var(--text-white);
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  box-shadow: 0 10px 25px rgba(122, 0, 60, 0.22);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  text-decoration: none;
}

.drawer-cta:hover {
  background: linear-gradient(135deg, #B0185A 0%, #7A003C 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(122, 0, 60, 0.3);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(38, 1, 9, 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ================= FOOTER STYLE ================= */
.footer {
  background: linear-gradient(135deg, #1C000D 0%, #3B001D 50%, #15000A 100%);
  color: #D1C4CE;
  box-shadow: var(--footer-shadow);
  position: relative;
  overflow: hidden;
  border-top: none;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 60px 60px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr 1.1fr;
  gap: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 32px;
}

/* Vertical borders in butter color */
.footer-col:not(:last-child) {
  border-right: 1px solid rgba(245, 224, 195, 0.15);
}

.footer-col.brand-col {
  padding-left: 0;
  padding-right: 32px;
}

.footer-col:last-child {
  padding-right: 0;
  padding-left: 32px;
}

/* Brand Column */
.footer-logo {
  height: 70px;
  /* Prominent size for logo */
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  margin-bottom: 8px;
}

.brand-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 224, 195, 0.85);
  /* Butter color text with opacity */
}

/* Social links in butter-bordered circular buttons */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245, 224, 195, 0.3);
  color: var(--butter-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--butter-color);
  color: var(--primary-dark);
  border-color: var(--butter-color);
  transform: translateY(-3px);
}

/* List Columns */
.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--butter-color);
  /* Soft creamy butter headings matching logo */
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links li {
  font-size: 14px;
  color: rgba(245, 224, 195, 0.85);
}

.footer-links a {
  font-size: inherit;
  color: inherit;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
  /* Contrast highlight to white on hover */
}

/* Bullet decoration selectors in butter color */
.footer-links.bullets li {
  position: relative;
  padding-left: 18px;
}

.footer-links.bullets li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--butter-color);
  font-weight: bold;
}

.footer-links.dots li {
  position: relative;
  padding-left: 18px;
}

.footer-links.dots li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--butter-color);
  font-size: 16px;
}

/* Newsletter Column Form styling */
.newsletter-form {
  display: flex;
  background-color: #2b000c;
  /* Darker input background */
  border: 1px solid rgba(245, 224, 195, 0.15);
  border-radius: 6px;
  padding: 4px;
  width: 100%;
  max-width: 280px;
  margin-top: 4px;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  padding: 8px 12px;
  font-size: 13.5px;
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(245, 224, 195, 0.4);
}

.newsletter-form button {
  background-color: var(--butter-color);
  color: var(--primary-dark);
  border: none;
  outline: none;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: #ffffff;
  color: var(--primary-dark);
  transform: scale(1.04);
}

/* Bottom Copyright Bar */
.footer-bottom {
  border-top: 1px solid rgba(245, 224, 195, 0.15);
  padding: 24px 0;
}

.footer-bottom-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13.5px;
  color: rgba(245, 224, 195, 0.7);
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* ================= RESPONSIVE STYLES ================= */

/* Tablet & Smaller Devices */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 32px;
    height: 88px;
  }

  .logo img {
    height: 44px;
  }

  .header.scrolled .logo img {
    height: 38px;
  }

  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .custom-breadcrumbs-wrapper {
    padding: 0 40px 20px 40px;
  }

  .page-header-title {
    font-size: 36px;
  }

  .portfolio-hero-content h1 {
    font-size: 38px !important;
  }

  .footer-logo {
    height: 50px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-col {
    padding: 0;
  }

  .footer-col:not(:last-child) {
    border-right: none;
  }

  .footer-col.brand-col {
    padding-right: 0;
  }

  .footer-col:last-child {
    padding-left: 0;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 16px;
    height: 80px;
  }

  .logo img {
    height: 38px;
  }

  .header.scrolled .logo img {
    height: 34px;
  }

  .footer-logo {
    height: 40px;
  }

  .cta-button {
    display: none;
  }

  .custom-breadcrumbs-wrapper {
    padding: 0 24px 20px 24px;
  }

  .page-header-title {
    font-size: 28px;
  }

  .about-heading {
    font-size: 32px;
  }

  .services-heading {
    font-size: 30px !important;
  }

  .why-choose-heading {
    font-size: 26px !important;
  }

  .services-cta-card h2 {
    font-size: 24px !important;
  }

  .portfolio-hero-content h1 {
    font-size: 28px !important;
  }

  .portfolio-hero-content p {
    font-size: 14.5px !important;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 60px 16px 40px;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 0 16px;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

/* ================= HERO SECTION ================= */
.hero {
  background-color: #FFF7F5;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(122, 0, 60, 0.07) 0%, transparent 55%),
    radial-gradient(circle at 10% 20%, rgba(176, 24, 90, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 70%, rgba(232, 176, 66, 0.1) 0%, transparent 45%);
  position: relative;
  overflow: hidden;
  padding: 150px 0 70px;
  display: flex;
  align-items: center;
  min-height: 85vh;
}

.hero::before {
  content: '';
  position: absolute;
  top: 40%;
  right: 10%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(176, 24, 90, 0.14) 0%, rgba(212, 154, 41, 0.06) 50%, transparent 75%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% {
    transform: translateY(-50%) scale(1);
    opacity: 0.7;
  }

  100% {
    transform: translateY(-50%) scale(1.15);
    opacity: 1;
  }
}



/* Right & Left Vertical Wave Accents */
.hero-right-wave-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-left-wave-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  transform: scaleX(-1);
}

.hero-right-wave-accent svg,
.hero-left-wave-accent svg {
  width: 100%;
  height: 100%;
}

/* Floating 3D Glossy Spheres */
.hero-spheres {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.sphere {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #F5DCE8 0%, #B0185A 60%, #7A003C 100%);
  box-shadow: 0 10px 25px rgba(122, 0, 60, 0.25), inset 0 2px 6px rgba(255, 255, 255, 0.8);
}

.sphere-1 {
  width: 32px;
  height: 32px;
  top: 25%;
  right: 14%;
  animation: floatSphere1 6s ease-in-out infinite alternate;
}

.sphere-2 {
  width: 22px;
  height: 22px;
  top: 18%;
  left: 8%;
  animation: floatSphere2 8s ease-in-out infinite alternate;
}

.sphere-3 {
  width: 44px;
  height: 44px;
  bottom: 22%;
  left: 5%;
  animation: floatSphere3 10s ease-in-out infinite alternate;
}

.sphere-4 {
  width: 28px;
  height: 28px;
  bottom: 30%;
  right: 8%;
  animation: floatSphere4 7s ease-in-out infinite alternate;
}

@keyframes floatSphere1 {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(15deg); }
}

@keyframes floatSphere2 {
  0% { transform: translateY(0); }
  100% { transform: translateY(18px); }
}

@keyframes floatSphere3 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-25px) scale(1.1); }
}

@keyframes floatSphere4 {
  0% { transform: translateY(0); }
  100% { transform: translateY(22px); }
}

/* Animated Water Ripples & Glowing Water Points */
.water-point {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.water-point-gold {
  background: radial-gradient(circle at 35% 35%, #FFF6E5 0%, #E8B042 60%, rgba(232, 176, 66, 0.2) 100%);
  box-shadow: 0 0 25px rgba(232, 176, 66, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.8);
}

.water-point-maroon {
  background: radial-gradient(circle at 35% 35%, #FFD6E8 0%, #7A003C 65%, rgba(122, 0, 60, 0.2) 100%);
  box-shadow: 0 0 25px rgba(122, 0, 60, 0.35), inset 0 0 10px rgba(255, 255, 255, 0.7);
}

.water-point-magenta {
  background: radial-gradient(circle at 35% 35%, #FFD0F0 0%, #C2206B 65%, rgba(194, 32, 107, 0.2) 100%);
  box-shadow: 0 0 25px rgba(194, 32, 107, 0.35), inset 0 0 10px rgba(255, 255, 255, 0.7);
}

/* Animations for Water Points & SVG Wave Shimmer */
.anim-float-slow {
  animation: floatWaterPoint 8s infinite ease-in-out alternate;
}

.anim-float-fast {
  animation: floatWaterPoint 5s infinite ease-in-out alternate-reverse;
}

.anim-pulse-glow {
  animation: pulseWaterGlow 4s infinite ease-in-out alternate;
}

@keyframes floatWaterPoint {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  50% { transform: translateY(-18px) scale(1.08) rotate(8deg); }
  100% { transform: translateY(10px) scale(0.95) rotate(-5deg); }
}

@keyframes pulseWaterGlow {
  0% { opacity: 0.4; transform: scale(0.9); }
  100% { opacity: 0.85; transform: scale(1.15); }
}

/* Animated Floating Wave Flow */
.anim-wave-flow {
  animation: waveFlow 12s ease-in-out infinite alternate;
}

@keyframes waveFlow {
  0% { transform: translateX(0) scaleY(1); }
  50% { transform: translateX(-15px) scaleY(1.05); }
  100% { transform: translateX(10px) scaleY(0.95); }
}

/* Bottom Horizontal Fluid Wave Ribbon (Single Soft Wave) */
.hero-bottom-wave-ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-bottom-wave-ribbon svg {
  width: 100%;
  height: 100%;
}

.hero-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 10;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-badge {
  background: rgba(122, 0, 60, 0.08);
  border: 1px solid rgba(122, 0, 60, 0.22);
  color: var(--primary-color);
  padding: 7px 22px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(122, 0, 60, 0.04);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.hero-badge svg {
  fill: var(--primary-color);
  color: var(--primary-color);
}

.hero-badge:hover {
  transform: translateY(-2px);
  background: rgba(122, 0, 60, 0.12);
  border-color: var(--primary-color);
  box-shadow: 0 6px 18px rgba(122, 0, 60, 0.1);
}

.hero-tagline {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: inline-block;
}

.hero-title {
  font-family: 'Caveat', cursive;
  font-size: 64px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: 0px;
}

.hero-title .highlight {
  background: var(--grad-burgundy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.hero-buttons .cta-button,
.hero-buttons .secondary-button {
  padding: 14px 32px;
  font-size: 15px;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(122, 0, 60, 0.05);
  transition: var(--transition);
  cursor: pointer;
}

.secondary-button .arrow-icon {
  transition: transform 0.3s ease;
}

.secondary-button:hover {
  background: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(122, 0, 60, 0.2);
}

.secondary-button:hover .arrow-icon {
  transform: translateX(4px);
}

.hero-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(70, 0, 30, 0.12);
  border: 1px solid rgba(122, 0, 60, 0.08);
  transition: var(--transition);
  animation: floatLaptop 6s ease-in-out infinite alternate;
}

@keyframes floatLaptop {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.hero-image:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 35px 75px rgba(70, 0, 30, 0.2);
}

/* Responsive adjustment for Hero section */
@media (max-width: 1024px) {
  .hero {
    background-image: none;
    /* Disable background photo on tablet/mobile */
    background-color: var(--primary-light);
    padding: 110px 0 40px;
    min-height: auto;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .hero-content {
    align-items: center;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-desc {
    margin-bottom: 30px;
  }

  .hero-graphic {
    opacity: 1;
    /* Show image inline on tablet */
    pointer-events: auto;
    flex: none;
    width: 100%;
  }

  .hero-image {
    animation: none;
    /* Disable floating since it's a desk scene */
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 768px) {
  /* 1. Hide breadcrumb navigation on mobile view across all pages */
  .breadcrumbs,
  .custom-breadcrumbs-wrapper {
    display: none !important;
  }

  /* 2. Balanced comfortable top padding below fixed header on mobile view */
  .hero,
  #home,
  #about-hero,
  #services-hero,
  .portfolio-hero,
  .testimonials-hero-section,
  .contact-hero {
    padding-top: 110px !important;
    padding-bottom: 40px !important;
  }

  .hero-title,
  .testimonials-main-title,
  .portfolio-hero-heading,
  .contact-hero-title {
    font-size: 34px !important;
    line-height: 1.25 !important;
  }

  .services-heading,
  .about-heading,
  .why-choose-heading,
  .testimonials-heading,
  .contact-heading,
  .process-heading,
  .contact-section-title {
    font-size: 30px !important;
    line-height: 1.25 !important;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }

  /* Hide duplicate hero office image on mobile view of About page */
  #about-hero .hero-graphic {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero,
  #home,
  #about-hero,
  #services-hero,
  .portfolio-hero,
  .testimonials-hero-section,
  .contact-hero {
    padding-top: 100px !important;
    padding-bottom: 30px !important;
  }

  .hero-title,
  .testimonials-main-title,
  .portfolio-hero-heading,
  .contact-hero-title {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  .services-heading,
  .about-heading,
  .why-choose-heading,
  .testimonials-heading,
  .contact-heading,
  .process-heading,
  .contact-section-title {
    font-size: 25px !important;
  }
}

/* ================= ABOUT US SECTION ================= */
.about {
  background-color: var(--primary-light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-image-wrapper {
  flex: 1;
  max-width: 50%;
  position: relative;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid rgba(176, 24, 90, 0.18);
  border-radius: 28px;
  pointer-events: none;
  z-index: 0;
  transition: var(--transition);
}

.about-image-wrapper:hover::before {
  top: -10px;
  left: -10px;
  border-color: rgba(176, 24, 90, 0.35);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 55px rgba(70, 0, 30, 0.12);
  border: 1px solid rgba(122, 0, 60, 0.08);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.about-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(103, 0, 30, 0.15);
}

.about-content {
  flex: 1;
  max-width: 50%;
}

.about-tagline {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.about-heading {
  font-family: 'Caveat', cursive;
  font-size: 50px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: 0px;
}

.about-heading .highlight {
  color: var(--primary-color);
}

.about-line {
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin-bottom: 28px;
}

.about-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Features Grid */
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(245, 224, 195, 0.5);
  /* Subtle divider top */
  padding-top: 35px;
}

.feature-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(103, 0, 30, 0.15);
  background-color: #fdf8f0;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}

.feature-column:hover .feature-icon-wrapper {
  background-color: var(--primary-color);
  color: var(--text-white);
  border-color: var(--primary-color);
  transform: translateY(-3px) scale(1.05);
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Counters Container */
.about-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  border-top: 1px solid rgba(245, 224, 195, 0.5);
  /* Subtle divider top */
  padding-top: 35px;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-left: 20px;
}

/* Vertical separator line between counter items */
.counter-item:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: rgba(103, 0, 30, 0.15);
}

.counter-icon {
  color: var(--primary-color);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.counter-item:hover .counter-icon {
  transform: translateY(-3px) scale(1.05);
}

.counter-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  /* Matches the mockup numbers */
  margin-bottom: 6px;
  line-height: 1.1;
}

.counter-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Responsive About Us Styles */
@media (max-width: 1200px) {
  .about-container {
    gap: 50px;
  }

  .about-heading {
    font-size: 36px;
  }
}

@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    gap: 50px;
    padding: 0 40px;
  }

  .about-image-wrapper {
    max-width: 100%;
    width: 100%;
  }

  .about-content {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 70px 0;
  }

  .about-container {
    padding: 0 24px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-counters {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /* Remove absolute vertical lines for 2x2 grid */
  .counter-item {
    padding-left: 0;
  }

  .counter-item:not(:first-child)::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-counters {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-heading {
    font-size: 30px;
  }
}

/* ================= WHY CHOOSE US SECTION ================= */
.why-choose {
  background: linear-gradient(135deg, #1C000D 0%, #3B001D 50%, #15000A 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border: none !important;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(212, 154, 41, 0.25) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.why-choose-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}

.why-choose-header {
  margin-bottom: 50px;
  text-align: center;
}

.why-choose-tagline {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-color);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.why-choose-heading {
  font-family: 'Caveat', cursive;
  font-size: 50px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0px;
}

.why-choose-heading .highlight {
  background: linear-gradient(135deg, #E8B042 0%, #FFF8F1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.why-choose-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.why-choose-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--butter-color);
  box-shadow: 0 22px 45px rgba(232, 176, 66, 0.25);
}

.why-choose-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(232, 176, 66, 0.18);
  color: var(--butter-color);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(232, 176, 66, 0.4);
}

.why-choose-item:hover .why-choose-icon {
  background: var(--gold-color);
  color: #15000A;
  transform: scale(1.1);
  box-shadow: 0 8px 22px rgba(232, 176, 66, 0.4);
}

.why-choose-text {
  display: flex;
  flex-direction: column;
}

.why-choose-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.25;
}

.why-choose-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

/* Responsive Why Choose Us Styles */
@media (max-width: 1200px) {
  .why-choose-grid {
    gap: 16px;
  }

  .why-choose-item:not(:last-child)::after {
    right: -8px;
  }

  .why-choose-heading {
    font-size: 28px;
  }
}

@media (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .why-choose-item::after {
    display: none;
    /* Hide vertical dividers when items wrap */
  }
}

@media (max-width: 768px) {
  .why-choose {
    padding: 50px 0;
  }

  .why-choose-container {
    padding: 0 24px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .why-choose-heading {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= TESTIMONIALS SECTION ================= */
.testimonials {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: var(--primary-light);
  /* Matching the light cream section colors */
  border-top: 1px solid rgba(103, 0, 30, 0.05);
}

.testimonials-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.testimonials-title-wrapper {
  display: flex;
  flex-direction: column;
}

.testimonials-tagline {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.testimonials-heading {
  font-family: 'Caveat', cursive;
  font-size: 50px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: 0px;
}

.testimonials-grid-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  /* Padding for card shadow hover lifting */
}

.testimonials-grid {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - (30px * 2)) / 3);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(122, 0, 60, 0.08);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  box-shadow: 0 15px 40px rgba(70, 0, 30, 0.06);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(70, 0, 30, 0.12);
  border-color: rgba(176, 24, 90, 0.25);
  background: rgba(255, 255, 255, 0.95);
}

.quote-icon {
  position: absolute;
  right: 40px;
  top: 20px;
  font-size: 80px;
  font-family: Georgia, serif;
  line-height: 1;
  color: rgba(103, 0, 30, 0.15);
  /* Elegant maroon transparent quotes */
  font-weight: 800;
  user-select: none;
  pointer-events: none;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.client-info {
  display: flex;
  flex-direction: column;
}

.client-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 4px 0;
}

.client-title {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.client-stars {
  display: flex;
  gap: 3px;
  color: #ffb100;
  /* Star yellow-gold */
}

.testimonial-text {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}

/* Responsive Testimonials Styles */
@media (max-width: 1200px) {
  .testimonials-heading {
    font-size: 34px;
  }

  .testimonial-card {
    padding: 30px;
  }
}

@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 30px) / 2);
    /* 2 cards visible */
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 70px 0;
  }

  .testimonials-container {
    padding: 0 24px;
  }

  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    /* 1 card visible */
  }

  .testimonial-card .quote-icon {
    font-size: 40px !important;
    right: 25px !important;
    top: 15px !important;
  }
}

/* ================= CONTACT SECTION ================= */
.contact {
  padding: 100px 0;
  background-color: #FFF7F5;
  background-image: 
    radial-gradient(circle at 0% 0%, rgba(122, 0, 60, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(232, 176, 66, 0.08) 0%, transparent 45%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(122, 0, 60, 0.08) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.contact-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  z-index: 2;
}

.contact-tagline {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.contact-heading {
  font-family: 'Caveat', cursive;
  font-size: 52px;
  font-weight: 700;
  color: #1D000E;
  margin: 0 0 16px 0;
  line-height: 1.25;
  letter-spacing: 0px;
}

.contact-heading .highlight {
  color: var(--primary-color);
  background: var(--grad-burgundy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 45px 0;
  max-width: 650px;
}

.contact-details-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.contact-card {
  background: #ffffff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 40px 30px;
  border-radius: 24px;
  border: 1px solid rgba(122, 0, 60, 0.1);
  box-shadow: 0 10px 30px rgba(122, 0, 60, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: rgba(122, 0, 60, 0.25);
  box-shadow: 0 20px 40px rgba(122, 0, 60, 0.12);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(122, 0, 60, 0.08);
  border: 1px solid rgba(122, 0, 60, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 22px;
  transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
  background: var(--primary-color);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(122, 0, 60, 0.3);
}

.contact-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #1D000E;
  margin: 0 0 10px 0;
}

.contact-card-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  line-height: 1.5;
}

a.contact-card-value:hover {
  color: #ffffff;
}

/* Responsive Contact Styles */
@media (max-width: 991px) {
  .contact-details-list {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }

  .contact-container {
    padding: 0 24px;
  }

  .contact-heading {
    font-size: 30px;
  }

  .contact-details-list {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: flex-start;
  }
}



/* ================= SERVICES SECTION ================= */
.services {
  background-color: var(--primary-light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 220, 232, 0.5) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.services-watermark-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.services-watermark-bg svg {
  width: 100%;
  height: 100%;
}

.services-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.services-tagline {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.services-heading {
  font-family: 'Caveat', cursive;
  font-size: 52px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: 0px;
}

.slider-controls {
  display: flex;
  gap: 16px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(122, 0, 60, 0.15);
  background: #ffffff;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(122, 0, 60, 0.05);
}

.slider-btn:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(122, 0, 60, 0.25);
}

.services-slider-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.services-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.service-card {
  flex: 0 0 calc((100% - (24px * 3)) / 4);
  background: #ffffff;
  border-radius: 20px;
  padding: 44px 28px;
  min-height: 380px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(122, 0, 60, 0.05);
  border: 1px solid rgba(122, 0, 60, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 0, 60, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scale(2.2);
  opacity: 0.8;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(122, 0, 60, 0.12);
  border-color: rgba(122, 0, 60, 0.2);
  background: #ffffff;
}

.service-icon-wrapper {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(122, 0, 60, 0.06);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: var(--transition);
  border: 1px solid rgba(122, 0, 60, 0.1);
}

.service-card:hover .service-icon-wrapper {
  background: var(--grad-burgundy);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(122, 0, 60, 0.3);
}

.service-title {
  font-size: 20px;
  font-weight: 800;
  color: #1D000E;
  margin-bottom: 16px;
  line-height: 1.35;
  transition: var(--transition);
}

.service-card:hover .service-title {
  color: var(--primary-color);
}

.service-desc {
  font-size: 15px;
  color: #5A454E;
  line-height: 1.6;
  margin: 0;
}

.service-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-color);
  text-decoration: none;
  transition: var(--transition);
}

.service-link svg {
  transition: transform 0.3s ease;
}

.service-card:hover .service-link {
  color: var(--primary-color);
}

.service-card:hover .service-link svg {
  transform: translateX(5px);
}

/* Responsive Services Styles */
@media (max-width: 1200px) {
  .services-container {
    padding: 0 40px;
  }
}

@media (max-width: 1024px) {
  .service-card {
    flex: 0 0 calc((100% - (24px * 2)) / 3);
    /* 3 columns on tablet */
    padding: 40px 25px;
    min-height: 380px;
  }

  .services-heading {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 70px 0;
  }

  .services-container {
    padding: 0 24px;
  }

  .services-header {
    margin-bottom: 35px;
  }

  .service-card {
    flex: 0 0 calc((100% - 24px) / 2);
    /* 2 columns on mobile-wide */
    padding: 35px 20px;
    min-height: 350px;
  }

  .services-heading {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .service-card {
    flex: 0 0 100%;
    /* 1 column on mobile-small */
    padding: 35px 20px;
    min-height: auto;
    /* Reset min-height for single column mobile */
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .slider-controls {
    align-self: flex-end;
  }
}

/* Decorative Accents for Services & Technologies */
.section-decor-left,
.tech-decor-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.section-decor-right,
.tech-decor-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.decor-sphere {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #F5DCE8 0%, #7A003C 70%, #4A0022 100%);
  box-shadow: 0 10px 30px rgba(122, 0, 60, 0.25);
  opacity: 0.75;
}

.sphere-left-1 {
  width: 70px;
  height: 70px;
  top: 25%;
  left: -20px;
  animation: floatSphere1 6s infinite ease-in-out alternate;
}

/* Universal Section Background Pattern Container */
.section-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.section-bg-pattern svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sphere-right-1 {
  width: 85px;
  height: 85px;
  top: 60%;
  right: -25px;
  animation: floatSphere2 7s infinite ease-in-out alternate;
}

.sphere-tech-left {
  width: 60px;
  height: 60px;
  top: 35%;
  left: -15px;
  animation: floatSphere3 8s infinite ease-in-out alternate;
}

.sphere-tech-right {
  width: 75px;
  height: 75px;
  top: 25%;
  right: -20px;
  animation: floatSphere4 6.5s infinite ease-in-out alternate;
}

.sphere-about-left {
  width: 80px;
  height: 80px;
  top: 30%;
  left: -25px;
  animation: floatSphere1 7.5s infinite ease-in-out alternate;
}

.sphere-about-right {
  width: 90px;
  height: 90px;
  top: 50%;
  right: -30px;
  animation: floatSphere2 8s infinite ease-in-out alternate;
}

.sphere-testi-left {
  width: 65px;
  height: 65px;
  top: 20%;
  left: -15px;
  animation: floatSphere3 6s infinite ease-in-out alternate;
}

.sphere-testi-right {
  width: 80px;
  height: 80px;
  top: 45%;
  right: -25px;
  animation: floatSphere4 7s infinite ease-in-out alternate;
}

.sphere-contact-left {
  width: 70px;
  height: 70px;
  top: 30%;
  left: -20px;
  animation: floatSphere1 7s infinite ease-in-out alternate;
}

.sphere-contact-right {
  width: 85px;
  height: 85px;
  top: 40%;
  right: -25px;
  animation: floatSphere2 8.5s infinite ease-in-out alternate;
}

/* Wave Ribbon Wrappers */
.section-top-wave,
.why-choose-top-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.why-choose-bottom-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.section-top-wave svg,
.why-choose-top-wave svg,
.why-choose-bottom-wave svg {
  width: 100%;
  height: 100%;
}

.highlight-gold {
  color: var(--gold-color);
  background: linear-gradient(135deg, #E8B042 0%, #FFF8F1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* About Us Image Glass Badge */
.about-image-wrapper {
  position: relative;
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(122, 0, 60, 0.15);
  padding: 16px 24px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(122, 0, 60, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.badge-number {
  font-family: 'Caveat', cursive;
  font-size: 34px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.badge-text {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-weight: 700;
  font-weight: 700;
  color: var(--dark-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Technologies Section Theme */
.technologies {
  padding: 90px 0;
  background-color: #FFF7F5;
  background-image: 
    radial-gradient(circle at 0% 50%, rgba(122, 0, 60, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 100% 50%, rgba(232, 176, 66, 0.08) 0%, transparent 45%);
  position: relative;
  overflow: hidden;
}

.technologies-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}

.technologies-tagline {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  text-align: center;
  margin-bottom: 45px;
}

.technologies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 22px;
  align-items: center;
}

.tech-card {
  background: #ffffff;
  border: 1px solid rgba(122, 0, 60, 0.08);
  border-radius: 20px;
  padding: 24px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(122, 0, 60, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-burgundy);
  opacity: 0;
  transition: var(--transition);
}

.tech-card:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 0, 60, 0.2);
  box-shadow: 0 15px 35px rgba(122, 0, 60, 0.12);
}

.tech-card:hover::before {
  opacity: 1;
}

/* ================= SCROLL REVEAL ANIMATIONS ================= */
.reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.fade-up {
  transform: translateY(40px);
}

.fade-down {
  transform: translateY(-40px);
}

.fade-left {
  transform: translateX(-40px);
}

.fade-right {
  transform: translateX(40px);
}

.zoom-in {
  transform: scale(0.92);
}

.reveal.active-reveal {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* ================= PAGE HEADER (INTERNAL PAGES) ================= */
.page-header {
  background-color: var(--primary-light);
  /* Matching the light cream butter colors */
  padding: 120px 0 0 0;
  /* Add padding for header spacing */
  text-align: left;
  border-bottom: none;
}

.page-header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-header-tagline {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.page-header-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 0;
}

.custom-breadcrumbs-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px 25px 60px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}

.breadcrumbs a {
  color: var(--text-color);
  text-decoration: none;
  opacity: 0.7;
  transition: var(--transition);
}

.breadcrumbs a:hover {
  color: var(--primary-color);
  opacity: 1;
}

.breadcrumbs .separator {
  color: var(--text-color);
  opacity: 0.4;
}

.breadcrumbs .current {
  color: var(--primary-color);
  font-weight: 600;
}

@media (max-width: 768px) {
  .page-header {
    padding: 100px 0 0 0;
  }

  .page-header-container {
    padding: 0 16px;
  }
}

/* ==========================================================================
   ABOUT PAGE ADDITIONS: COUNTERS, LEADERSHIP, PROCESS, INDUSTRIES, TECH
   ========================================================================== */

/* Counter Strip Section */
.about-counter-strip {
  background-color: var(--primary-dark);
  padding: 30px 0;
  width: 100%;
}

.counter-strip-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 18%;
  justify-content: center;
}

.strip-icon {
  color: var(--gold-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.strip-text {
  display: flex;
  flex-direction: column;
}

.strip-number {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.strip-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  white-space: nowrap;
}

/* Leadership Section */
.leadership-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.leadership-tagline {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 40px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.featured-leader-card {
  background-color: #fdf8f0;
  border: 1px solid rgba(245, 224, 195, 0.5);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  gap: 30px;
  box-shadow: 0 15px 35px rgba(103, 0, 30, 0.02);
}

.leader-image-wrapper {
  flex: 0 0 180px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
}

.leader-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leader-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.leader-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

.leader-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.leader-quote {
  background-color: rgba(103, 0, 30, 0.03);
  border-left: 3px solid var(--primary-color);
  padding: 12px 16px;
  border-radius: 0 12px 12px 0;
  display: flex;
  gap: 8px;
}

.quote-symbol {
  font-size: 24px;
  font-family: Georgia, serif;
  color: var(--primary-color);
  line-height: 1;
}

.leader-quote p {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  font-style: italic;
  margin: 0;
  line-height: 1.4;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.team-card {
  background-color: #fdf8f0;
  border: 1px solid rgba(245, 224, 195, 0.5);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(103, 0, 30, 0.02);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(103, 0, 30, 0.06);
  border-color: rgba(103, 0, 30, 0.1);
}

.team-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 2px solid rgba(103, 0, 30, 0.08);
}

.team-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
}

/* Process Timeline */
.process-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.process-tagline {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.process-heading {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 60px 0;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: auto;
  margin: 0 -45px;
  /* Pull the timeline steps closer to the screen edges */
}

.timeline-line {
  position: absolute;
  top: 45px;
  /* Adjusted for taller step-node alignment */
  left: 6%;
  right: 6%;
  height: 2px;
  background-color: rgba(103, 0, 30, 0.1);
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 20px 10px;
  /* Added vertical padding for extra height and breathing room */
}

.step-node {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 28px;
  /* Increased vertical space under nodes */
  box-shadow: 0 5px 15px rgba(103, 0, 30, 0.2);
  transition: var(--transition);
}

.timeline-step:hover .step-node {
  transform: scale(1.1);
  background-color: var(--gold-color);
  color: var(--primary-dark);
  box-shadow: 0 5px 15px rgba(255, 211, 87, 0.4);
}

.step-icon {
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.timeline-step:hover .step-icon {
  transform: scale(1.1);
}

.step-num {
  z-index: 2;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  /* Increased spacing under titles */
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 200px;
  /* Increased description width to balance spacing */
}

/* Industries Section */
.industries-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.industries-tagline {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 40px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.industry-card {
  background-color: #fdf8f0;
  border: 1px solid rgba(245, 224, 195, 0.5);
  border-radius: 16px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 25px rgba(103, 0, 30, 0.01);
  transition: var(--transition);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(103, 0, 30, 0.05);
  border-color: rgba(103, 0, 30, 0.1);
}

.industry-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: rgba(103, 0, 30, 0.04);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}

.industry-card:hover .industry-icon {
  background-color: var(--primary-color);
  color: #ffffff;
}

.industry-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

/* Technologies Section */
.technologies-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.technologies-tagline {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 40px;
}

.technologies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tech-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(122, 0, 60, 0.08);
  border-radius: 20px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  box-shadow: 0 10px 30px rgba(70, 0, 30, 0.04);
  transition: var(--transition);
}

.tech-card img {
  max-height: 55px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 45px rgba(70, 0, 30, 0.12);
  border-color: rgba(176, 24, 90, 0.25);
  background: rgba(255, 255, 255, 0.95);
}

.tech-card:hover img {
  transform: scale(1.08);
}

/* Responsive Styles for Additions */
@media (max-width: 1200px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .counter-strip-container {
    justify-content: center;
  }

  .strip-item {
    flex: 1 1 30%;
  }

  .process-timeline {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin: 0;
  }

  .timeline-line {
    display: none;
  }

  .timeline-step {
    flex: 0 0 30%;
  }

  .step-node {
    margin-bottom: 12px;
  }

  .industries-grid,
  .technologies-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {

  .counter-strip-container,
  .leadership-container,
  .process-container,
  .industries-container,
  .technologies-container {
    padding: 0 24px;
  }

  .strip-item {
    flex: 1 1 45%;
  }

  .featured-leader-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .leader-image-wrapper {
    flex: 0 0 200px;
    width: 200px;
  }

  .leader-quote {
    justify-content: center;
    border-left: none;
    border-top: 3px solid var(--primary-color);
    border-radius: 0 0 12px 12px;
  }

  .timeline-step {
    flex: 0 0 45%;
  }

  .industries-grid,
  .technologies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .strip-item {
    flex: 1 1 100%;
    justify-content: flex-start;
    padding-left: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }

  .industries-grid,
  .technologies-grid {
    grid-template-columns: 1fr;
  }
}

/* Services Page Grid */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.services-page-grid .service-card {
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .services-page-grid .service-card:nth-child(3n+1) {
    margin-right: auto;
    margin-left: 0;
  }

  .services-page-grid .service-card:nth-child(3n+2) {
    margin: 0 auto;
  }

  .services-page-grid .service-card:nth-child(3n) {
    margin-left: auto;
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .services-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-page-grid {
    grid-template-columns: 1fr;
  }
}

/* Services Page Why Choose & CTA styles */
.services-why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .services-why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .services-why-choose-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.services-cta-card {
  transition: var(--transition);
}

.services-cta-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(103, 0, 30, 0.08) !important;
  border-color: rgba(245, 224, 195, 0.8) !important;
}

@media (max-width: 991px) {
  .services-cta-card {
    flex-direction: column !important;
    text-align: center;
    padding: 40px 30px !important;
    gap: 30px !important;
  }

  .services-cta-card>div {
    flex-direction: column !important;
    gap: 16px !important;
  }
}

/* Portfolio Hero Styles */
.portfolio-hero {
  background-color: var(--primary-light);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.portfolio-hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.portfolio-hero-content {
  flex: 1.2;
}

.portfolio-hero-image-wrapper {
  flex: 1;
  position: relative;
  max-width: 520px;
}

.portfolio-hero-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(103, 0, 30, 0.12);
  border: 4px solid #ffffff;
  display: block;
}

/* Floating icons around the hero laptop image */
.floating-icon-card {
  position: absolute;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 10px 25px rgba(103, 0, 30, 0.12);
}

.floating-icon-card.cloud-card {
  bottom: 8%;
  left: -40px;
  background: #ffffff;
  animation: float-cloud 4s ease-in-out infinite;
}

.floating-icon-card.code-card {
  top: 12%;
  right: -30px;
  background: var(--primary-color);
  animation: float-code 4.5s ease-in-out infinite;
}

.floating-icon-card.gear-card {
  bottom: 12%;
  right: -25px;
  background: var(--primary-color);
  animation: float-gear 5s ease-in-out infinite;
}

@keyframes float-cloud {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes float-code {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(5deg);
  }
}

@keyframes float-gear {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(-10deg);
  }
}

/* Responsive Portfolio Hero */
@media (max-width: 991px) {
  .portfolio-hero-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 50px;
    padding: 0 24px;
  }

  .portfolio-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .portfolio-hero-content h1 {
    font-size: 36px !important;
  }

  .portfolio-hero-image-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .floating-icon-card.cloud-card {
    left: -20px;
  }

  .floating-icon-card.code-card {
    right: -15px;
  }

  .floating-icon-card.gear-card {
    right: -10px;
  }
}

@media (max-width: 768px) {
  .portfolio-hero-content h1 {
    font-size: 28px !important;
  }

  .portfolio-hero-content p {
    font-size: 14.5px !important;
  }
}

/* Portfolio Filter & Grid Styles */
.portfolio-section {
  padding: 80px 0 100px 0;
  background-color: var(--primary-light);
}

.portfolio-filters {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto 50px auto;
  padding: 0 60px;
}

.filter-btn {
  padding: 12px 28px;
  background-color: #fdf8f0;
  border: 1px solid rgba(245, 224, 195, 0.6);
  border-radius: 30px;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(103, 0, 30, 0.15);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.portfolio-card {
  background-color: #fdf8f0;
  border: 1px solid rgba(245, 224, 195, 0.5);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(103, 0, 30, 0.08);
  border-color: rgba(245, 224, 195, 0.8);
}

.portfolio-card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.portfolio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.05);
}

.portfolio-card-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(103, 0, 30, 0.15);
}

.portfolio-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.portfolio-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.portfolio-card-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.portfolio-card-link:hover {
  gap: 12px;
}

@media (max-width: 1024px) {
  .portfolio-filters {
    padding: 0 24px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= TESTIMONIALS DEDICATED PAGE STYLES ================= */
.testimonials-hero-section {
  padding: 100px 0 80px 0;
  background-color: var(--primary-light);
  position: relative;
  overflow: hidden;
}

.testimonials-hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonials-tag {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.testimonials-main-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin: 0 0 25px 0;
}

.testimonials-hero-desc {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 40px 0;
  max-width: 540px;
}

.work-with-us-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 25px rgba(103, 0, 30, 0.15);
}

.work-with-us-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(103, 0, 30, 0.25);
}

.work-with-us-btn svg {
  stroke: var(--text-white);
  transition: transform 0.3s ease;
}

.work-with-us-btn:hover svg {
  transform: translateX(4px);
}

/* Speech bubble right column graphic */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.testimonial-visual-graphic {
  position: relative;
  width: 440px;
  height: 440px;
  background-color: rgba(253, 240, 227, 0.4);
  border-radius: 50%;
  border: 1px dashed rgba(103, 0, 30, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Floating speech card decoration */
.floating-speech-card {
  position: absolute;
  top: 60px;
  left: -20px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  width: 220px;
  box-shadow: 0 20px 40px rgba(103, 0, 30, 0.08);
  border: 1px solid rgba(103, 0, 30, 0.03);
  z-index: 5;
  animation: floatCard 6s ease-in-out infinite alternate;
}

.speech-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.speech-lines .line {
  display: block;
  height: 6px;
  background-color: #f3f4f6;
  border-radius: 4px;
  margin-bottom: 8px;
}

.speech-lines .line.short {
  width: 40%;
}

.speech-lines .line.long {
  width: 90%;
}

.speech-lines .line.medium {
  width: 70%;
  margin-bottom: 0;
}

/* Large speech bubble icon */
.large-speech-bubble-icon {
  background-color: var(--primary-color);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-white);
  box-shadow: 0 25px 50px rgba(103, 0, 30, 0.2);
  z-index: 2;
  position: relative;
  animation: floatBubble 5s ease-in-out infinite alternate-reverse;
}

.large-speech-bubble-icon::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 25px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 15px 0 0;
  border-color: var(--primary-color) transparent transparent transparent;
  transform: rotate(20deg);
}

.speech-quote-text {
  font-family: Georgia, serif;
  font-size: 110px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  transform: translateY(18px);
  user-select: none;
}

/* Avatar nodes floating around */
.avatar-node {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(103, 0, 30, 0.1);
  border: 4px solid #ffffff;
  z-index: 4;
}

.avatar-node img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-node.node-1 {
  width: 80px;
  height: 80px;
  top: 15px;
  right: 50px;
  animation: floatCard 7s ease-in-out infinite alternate 1s;
}

.avatar-node.node-2 {
  width: 68px;
  height: 68px;
  bottom: 50px;
  left: 30px;
  animation: floatBubble 6.5s ease-in-out infinite alternate 0.5s;
}

.avatar-node.node-3 {
  width: 74px;
  height: 74px;
  bottom: 80px;
  right: 20px;
  animation: floatCard 5.5s ease-in-out infinite alternate 1.5s;
}

/* Animations */
@keyframes floatCard {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes floatBubble {
  0% {
    transform: translateY(0px) scale(1);
  }

  100% {
    transform: translateY(-8px) scale(1.02);
  }
}

/* Stats Counter Section */
.stats-counter-section {
  padding: 60px 0;
  background: linear-gradient(90deg, #4c0015 0%, #200007 100%);
  border: none;
}

.stats-counter-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-counter-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon-circle {
  width: 56px;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--butter-color);
  border: 1px solid rgba(245, 224, 195, 0.15);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.stat-counter-item:hover .stat-icon-circle {
  background-color: var(--butter-color);
  color: var(--primary-dark);
  border-color: var(--butter-color);
  transform: scale(1.08);
}

.stat-info h3 {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px 0;
  letter-spacing: -0.5px;
}

.stat-info p {
  font-size: 14px;
  font-weight: 600;
  color: rgba(253, 240, 227, 0.7);
  margin: 0;
}

/* Testimonials Grid */
.testimonials-grid-section {
  padding: 100px 0;
  background-color: var(--primary-light);
}

.grid-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.grid-section-header {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.grid-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 15px 0;
}

.title-underline {
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin-bottom: 25px;
}

.grid-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
  margin: 0;
}

/* Testimonials Slider Styles */
.testimonials-slider-outer {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}

.testimonials-slider-viewport {
  overflow: hidden;
  width: 100%;
  padding: 15px 0 30px 0;
}

.testimonials-slides-container {
  display: flex;
  width: 200%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-slide {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 10px 15px;
  box-sizing: border-box;
}

.testimonials-slider-outer .slider-btn {
  flex-shrink: 0;
  z-index: 10;
  border: 1.5px solid rgba(103, 0, 30, 0.15);
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(103, 0, 30, 0.04);
}

.testimonials-slider-outer .slider-btn:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

.modern-testimonial-card {
  background-color: #fdf8f0;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(245, 224, 195, 0.5);
  box-shadow: 0 10px 30px rgba(103, 0, 30, 0.015);
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.modern-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(103, 0, 30, 0.08);
  border-color: rgba(103, 0, 30, 0.15);
  background-color: #ffffff;
  /* Subtle hover effect where it turns clean white! */
}

.card-quote-mark {
  font-size: 100px;
  font-family: Georgia, serif;
  color: rgba(103, 0, 30, 0.04);
  position: absolute;
  top: 15px;
  left: 24px;
  line-height: 1;
  pointer-events: none;
}

.card-stars {
  display: flex;
  gap: 4px;
  color: var(--gold-color);
  margin-bottom: 20px;
  z-index: 2;
}

.card-message {
  font-size: 15.5px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0 0 30px 0;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.card-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(103, 0, 30, 0.06);
  padding-top: 24px;
  margin-top: auto;
  z-index: 2;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 4px 0;
}

.author-info p {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  width: 24px;
  border-radius: 4px;
  background-color: var(--primary-color);
}

/* Video Testimonial */
.video-testimonial-section {
  padding: 60px 0 100px 0;
  background-color: var(--primary-light);
}

.video-testimonial-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.video-testimonial-box {
  background-color: var(--primary-color);
  border-radius: 32px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  box-shadow: 0 30px 60px rgba(103, 0, 30, 0.15);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.video-preview-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  aspect-ratio: 16/10;
  display: flex;
}

.video-preview-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-preview-wrapper:hover img {
  transform: scale(1.05);
}

.play-btn-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-preview-wrapper:hover .play-btn-circle {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--primary-light);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.play-btn-circle svg {
  margin-left: 4px;
  /* Center alignment offset for play triangle */
}

.video-quote-content {
  display: flex;
  flex-direction: column;
}

.large-maroon-quote {
  font-size: 120px;
  font-family: Georgia, serif;
  color: rgba(253, 240, 227, 0.12);
  line-height: 0.1;
  margin-bottom: 20px;
}

.highlight-quote-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 35px 0;
  color: rgba(253, 240, 227, 0.95);
}

.quote-author-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--butter-color);
  margin: 0 0 6px 0;
}

.quote-author-info p {
  font-size: 14px;
  color: rgba(253, 240, 227, 0.7);
  margin: 0;
}

/* Valued Clients Brand Logos */
.valued-clients-section {
  padding: 80px 0;
  background-color: var(--primary-light);
  border-top: 1px solid rgba(103, 0, 30, 0.05);
}

.valued-clients-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}

.clients-title-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
  display: block;
  opacity: 0.8;
}

.clients-logos-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px 40px;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  filter: grayscale(0%);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  user-select: none;
}

.brand-item:hover {
  opacity: 0.55;
  filter: grayscale(100%);
  transform: scale(0.96);
}

.brand-item img {
  max-height: 65px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Testimonials CTA */
.testimonials-cta-section {
  padding: 60px 0;
  background-color: var(--primary-light);
}

.cta-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.testimonials-cta-box {
  background-color: #fdf8f0;
  border: 1px solid rgba(245, 224, 195, 0.6);
  border-radius: 24px;
  padding: 45px 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: 0 15px 35px rgba(103, 0, 30, 0.04);
}

.cta-left-content {
  display: flex;
  align-items: center;
  gap: 25px;
}

.cta-chat-circle {
  width: 60px;
  height: 60px;
  background-color: rgba(103, 0, 30, 0.07);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-text-wrapper h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 6px 0;
}

.cta-text-wrapper p {
  font-size: 15px;
  color: var(--text-dark);
  opacity: 0.8;
  margin: 0;
}

.cta-get-consultation-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-get-consultation-btn:hover {
  background-color: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(103, 0, 30, 0.15);
}

.cta-get-consultation-btn svg {
  stroke: var(--primary-color);
  transition: transform 0.3s ease;
}

.cta-get-consultation-btn:hover svg {
  transform: translateX(4px);
}

/* ================= RESPONSIVE TESTIMONIALS PAGE ================= */
@media (max-width: 1024px) {
  .testimonials-hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-left {
    align-items: center;
  }

  .testimonials-main-title {
    font-size: 44px;
  }

  .testimonials-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .stats-counter-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .testimonials-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-cards-grid .modern-testimonial-card:last-child {
    grid-column: span 2;
  }

  .video-testimonial-box {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .testimonials-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .cta-left-content {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {

  .testimonials-hero-container,
  .stats-counter-container,
  .grid-container,
  .video-testimonial-container,
  .cta-container,
  .valued-clients-container {
    padding: 0 24px;
  }

  .testimonials-main-title {
    font-size: 34px;
  }

  .testimonial-visual-graphic {
    width: 320px;
    height: 320px;
  }

  .large-speech-bubble-icon {
    width: 100px;
    height: 100px;
  }

  .large-speech-bubble-icon text {
    font-size: 40px;
  }

  .floating-speech-card {
    width: 160px;
    padding: 16px;
    top: 30px;
    left: -10px;
  }

  .avatar-node.node-1 {
    width: 60px;
    height: 60px;
    top: 10px;
    right: 30px;
  }

  .avatar-node.node-2 {
    width: 52px;
    height: 52px;
    bottom: 30px;
    left: 15px;
  }

  .avatar-node.node-3 {
    width: 56px;
    height: 56px;
    bottom: 50px;
    right: 10px;
  }

  .grid-title {
    font-size: 28px;
  }

  .testimonials-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-cards-grid .modern-testimonial-card:last-child {
    grid-column: span 1;
  }

  .highlight-quote-text {
    font-size: 18px;
  }

  .clients-logos-grid {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stats-counter-container {
    grid-template-columns: 1fr;
  }

  .stat-counter-item {
    justify-content: flex-start;
    width: 230px;
    margin: 0 auto;
  }

  .cta-text-wrapper h2 {
    font-size: 20px;
  }

  .cta-text-wrapper p {
    font-size: 13.5px;
  }

  .testimonial-visual-graphic {
    width: 260px;
    height: 260px;
  }
}

/* ================= CONTACT PAGE STYLES ================= */
.contact-hero {
  background-color: #FFF7F5;
  background-image: none;
  padding: 60px 0;
  overflow: hidden;
}

.contact-hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.contact-hero-left {
  display: flex;
  flex-direction: column;
}

.contact-hero-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.contact-hero-title {
  font-size: 46px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 35px;
  font-weight: 500;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(103, 0, 30, 0.12);
}

.contact-info-details {
  display: flex;
  flex-direction: column;
}

.contact-info-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 500;
}

/* Contact Form Card */
.contact-form-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(103, 0, 30, 0.04);
  border: 1px solid rgba(245, 224, 195, 0.4);
}

.contact-form-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.contact-form-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group svg {
  position: absolute;
  left: 16px;
  top: 17px;
  color: rgba(103, 0, 30, 0.6);
  pointer-events: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 16px 16px 48px;
  border-radius: 12px;
  border: 1px solid var(--butter-color);
  background-color: var(--primary-light);
  font-family: inherit;
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

.form-group select {
  padding-right: 36px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A003C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
}

/* Custom Scrollable & Searchable Dropdown */
.custom-select-wrapper {
  position: relative;
  width: 100%;
  z-index: 5;
}

.custom-select-wrapper.open {
  z-index: 100;
}

.custom-select-trigger {
  width: 100%;
  padding: 16px 40px 16px 48px;
  border-radius: 12px;
  border: 1px solid var(--butter-color);
  background-color: var(--primary-light);
  font-family: inherit;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  user-select: none;
  position: relative;
}

.custom-select-trigger .custom-select-value {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-select-trigger .custom-select-value.placeholder {
  color: rgba(103, 0, 30, 0.55);
}

.custom-select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(103, 0, 30, 0.6);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.custom-select-wrapper.open .custom-select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.custom-select-wrapper.open .custom-select-trigger {
  border-color: var(--primary-color);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(103, 0, 30, 0.08);
}

.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(122, 0, 60, 0.15);
  box-shadow: 0 15px 35px rgba(122, 0, 60, 0.18), 0 5px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  z-index: 110;
}

.custom-select-wrapper.open .custom-select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-search-box {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(122, 0, 60, 0.08);
  background: #FFF7F5;
}

.custom-select-search-input {
  width: 100% !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(122, 0, 60, 0.2) !important;
  background-color: #ffffff !important;
  font-size: 13px !important;
  color: var(--text-dark) !important;
  outline: none !important;
}

.custom-select-search-input:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(103, 0, 30, 0.1) !important;
}

.custom-select-options-list {
  max-height: 220px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding: 6px 0;
}

.custom-select-options-list::-webkit-scrollbar {
  width: 6px;
}

.custom-select-options-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.custom-select-options-list::-webkit-scrollbar-thumb {
  background: rgba(122, 0, 60, 0.3);
  border-radius: 4px;
}

.custom-select-options-list::-webkit-scrollbar-thumb:hover {
  background: rgba(122, 0, 60, 0.6);
}

.custom-select-option {
  padding: 12px 18px;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.2s ease, color 0.2s ease;
  user-select: none;
  min-height: 44px;
}

.custom-select-option:hover,
.custom-select-option.highlighted {
  background-color: #FFF7F5;
  color: var(--primary-color);
  font-weight: 600;
}

.custom-select-option.selected {
  background-color: rgba(122, 0, 60, 0.08);
  color: var(--primary-color);
  font-weight: 700;
}

.custom-select-option.hidden {
  display: none !important;
}

.custom-select-no-results {
  padding: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(103, 0, 30, 0.55);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(103, 0, 30, 0.08);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}



.contact-submit-btn {
  padding: 16px 32px;
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(103, 0, 30, 0.15);
  align-self: flex-start;
}

.contact-submit-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Map Section */
.contact-map-section {
  padding: 80px 0;
  background-color: #fdf8f0;
}

.contact-section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.contact-section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 12px auto 0;
}

.contact-map-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.contact-map-iframe-wrapper {
  width: 100%;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(103, 0, 30, 0.04);
  border: 1px solid rgba(245, 224, 195, 0.5);
}

.contact-map-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Connect Section */
.contact-connect-section {
  padding: 80px 0;
  background-color: var(--primary-light);
}

.contact-connect-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}

.contact-connect-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: -30px;
  margin-bottom: 40px;
  font-weight: 500;
}

.contact-connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-connect-card {
  background-color: #fdf8f0;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--butter-color);
  text-align: left;
  transition: var(--transition);
}

.contact-connect-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(103, 0, 30, 0.06);
  border-color: var(--primary-color);
}

.connect-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.connect-card-icon.phone {
  background-color: var(--primary-color);
}

.connect-card-icon.whatsapp {
  background-color: #25d366;
  border-radius: 50%;
}

.connect-card-icon.email {
  background-color: var(--primary-color);
}

.connect-card-info {
  display: flex;
  flex-direction: column;
}

.connect-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.connect-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 500;
}

.connect-card-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.connect-card-value:hover {
  color: var(--primary-dark);
}

/* Have a Project in Mind CTA */
.contact-cta-section {
  padding: 60px 0;
  background-color: var(--primary-light);
}

.contact-cta-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.contact-cta-card {
  background-color: var(--primary-color);
  border-radius: 24px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #ffffff;
  box-shadow: 0 15px 40px rgba(103, 0, 30, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-cta-left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.contact-cta-ill {
  max-width: 140px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-cta-text {
  display: flex;
  flex-direction: column;
}

.contact-cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.contact-cta-desc {
  font-size: 16px;
  color: rgba(253, 240, 227, 0.85);
  font-weight: 500;
}

.contact-cta-btn {
  padding: 16px 32px;
  background-color: var(--butter-color);
  color: var(--primary-color);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.contact-cta-btn:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE MEDIA QUERIES ================= */
@media (max-width: 991px) {
  .contact-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .contact-hero {
    padding: 40px 0;
  }

  .contact-hero-left {
    text-align: center;
  }

  .contact-info-list {
    align-items: flex-start;
    width: 290px;
    margin: 0 auto;
  }

  .contact-info-item {
    text-align: left;
    width: 100%;
  }

  .contact-map-container,
  .contact-connect-container,
  .contact-cta-container {
    padding: 0 24px;
  }

  .contact-connect-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
    gap: 30px;
  }

  .contact-cta-left {
    flex-direction: column;
    gap: 20px;
  }

  .contact-cta-btn {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 34px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form-card {
    padding: 30px 20px;
  }

  .contact-cta-title {
    font-size: 26px;
  }
}

/* Form Submit Loading Spinner */
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

/* ================= GLOBAL RESPONSIVE PADDING HARMONIZATION ================= */
.page-header-container,
.custom-breadcrumbs-wrapper,
.about-container,
.journey-container,
.why-choose-container,
.team-container,
.services-container,
.hero-container,
.portfolio-hero-container,
.portfolio-grid,
.contact-hero-container,
.contact-container,
.testimonials-hero-container,
.stats-counter-container,
.testimonials-container,
.video-testimonial-container,
.valued-clients-container,
.cta-container,
.footer-container,
.footer-bottom-container {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

@media (max-width: 1200px) {

  .page-header-container,
  .custom-breadcrumbs-wrapper,
  .about-container,
  .journey-container,
  .why-choose-container,
  .team-container,
  .services-container,
  .hero-container,
  .portfolio-hero-container,
  .portfolio-grid,
  .contact-hero-container,
  .contact-container,
  .testimonials-hero-container,
  .stats-counter-container,
  .testimonials-container,
  .video-testimonial-container,
  .valued-clients-container,
  .cta-container,
  .footer-container,
  .footer-bottom-container {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

@media (max-width: 1024px) {

  .page-header-container,
  .custom-breadcrumbs-wrapper,
  .about-container,
  .journey-container,
  .why-choose-container,
  .team-container,
  .services-container,
  .hero-container,
  .portfolio-hero-container,
  .portfolio-grid,
  .contact-hero-container,
  .contact-container,
  .testimonials-hero-container,
  .stats-counter-container,
  .testimonials-container,
  .video-testimonial-container,
  .valued-clients-container,
  .cta-container,
  .footer-container,
  .footer-bottom-container {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
}

@media (max-width: 768px) {

  .page-header-container,
  .custom-breadcrumbs-wrapper,
  .about-container,
  .journey-container,
  .why-choose-container,
  .team-container,
  .services-container,
  .hero-container,
  .portfolio-hero-container,
  .portfolio-grid,
  .contact-hero-container,
  .contact-container,
  .testimonials-hero-container,
  .stats-counter-container,
  .testimonials-container,
  .video-testimonial-container,
  .valued-clients-container,
  .cta-container,
  .footer-container,
  .footer-bottom-container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (max-width: 480px) {

  .page-header-container,
  .custom-breadcrumbs-wrapper,
  .about-container,
  .journey-container,
  .why-choose-container,
  .team-container,
  .services-container,
  .hero-container,
  .portfolio-hero-container,
  .portfolio-grid,
  .contact-hero-container,
  .contact-container,
  .testimonials-hero-container,
  .stats-counter-container,
  .testimonials-container,
  .video-testimonial-container,
  .valued-clients-container,
  .cta-container,
  .footer-container,
  .footer-bottom-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* Internal Page Hero Spacing Unification */
.portfolio-hero,
.contact-hero,
.testimonials-hero-section {
  padding-top: 156px !important;
  padding-bottom: 80px !important;
}

.page-header {
  padding-top: 156px !important;
  padding-bottom: 20px !important;
}

@media (max-width: 1024px) {

  .portfolio-hero,
  .contact-hero,
  .testimonials-hero-section {
    padding-top: 148px !important;
    padding-bottom: 60px !important;
  }

  .page-header {
    padding-top: 148px !important;
    padding-bottom: 15px !important;
  }
}

@media (max-width: 768px) {

  .portfolio-hero,
  .contact-hero,
  .testimonials-hero-section {
    padding-top: 120px !important;
    padding-bottom: 50px !important;
  }

  .page-header {
    padding-top: 120px !important;
    padding-bottom: 10px !important;
  }
}

/* ================= UNIQUE & ATTRACTIVE USER INTERACTIVE ANIMATIONS ================= */

.scroll-progress-bar {
  display: none !important;
}

/* 2. 3D Tilt Card Shine Overlay */
.card-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 3;
  border-radius: inherit;
  transition: background 0.15s ease-out;
}

/* 3. Ambient Background Blobs */
.ambient-blobs-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  background: radial-gradient(circle, rgba(103, 0, 30, 0.04) 0%, rgba(253, 240, 227, 0.08) 50%, transparent 100%);
  border-radius: 50%;
  filter: blur(80px);
  animation: float-blob 20s infinite alternate ease-in-out;
  will-change: transform;
}

.blob-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -50px;
  animation-duration: 25s;
}

.blob-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -100px;
  animation-duration: 30s;
  animation-delay: -5s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  top: 40%;
  right: 25%;
  animation-duration: 22s;
  animation-delay: -10s;
}

@keyframes float-blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  50% {
    transform: translate(40px, -60px) scale(1.08);
  }

  100% {
    transform: translate(-20px, 40px) scale(0.95);
  }
}

/* 4. Unique Button Shimmer Animation */
.cta-button,
.work-with-us-btn,
.submit-btn,
.cta-box .cta-btn,
.testimonials-cta-box .cta-btn {
  position: relative;
  overflow: hidden;
}

.cta-button::after,
.work-with-us-btn::after,
.submit-btn::after,
.cta-box .cta-btn::after,
.testimonials-cta-box .cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent);
  transform: skewX(-25deg);
  transition: none;
}

.cta-button:hover::after,
.work-with-us-btn:hover::after,
.submit-btn:hover::after,
.cta-box .cta-btn:hover::after,
.testimonials-cta-box .cta-btn:hover::after {
  animation: shimmer-effect 0.85s ease-in-out;
}

@keyframes shimmer-effect {
  100% {
    left: 150%;
  }
}

/* ================= FLOATING ACTION BUTTONS (BOTTOM RIGHT) ================= */
.floating-controls {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  animation: pulseWhatsapp 2.5s infinite ease-in-out;
}

.whatsapp-btn svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover svg {
  transform: scale(1.12) rotate(6deg);
}

@keyframes pulseWhatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 8px 25px rgba(37, 211, 102, 0.45);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 8px 25px rgba(37, 211, 102, 0.45);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 25px rgba(37, 211, 102, 0.45);
  }
}

.scroll-top-btn {
  background: linear-gradient(135deg, #7A003C 0%, #4A0024 100%);
  color: #ffffff;
  border: 1px solid rgba(232, 176, 66, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px) scale(0.9);
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.1) !important;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.4);
}

.btn-tooltip {
  position: absolute;
  right: 64px;
  background: rgba(31, 0, 14, 0.9);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.floating-btn:hover .btn-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .floating-controls {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .floating-btn {
    width: 46px;
    height: 46px;
  }

  .btn-tooltip {
    display: none;
  }
}

/* ================= ABOUT US PAGE DYNAMIC ENHANCEMENTS ================= */
.about-page-wrapper {
  position: relative;
  overflow: hidden;
}

/* Organic Random Watermark SVGs */
.about-watermark-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
}

/* Wave Section Dividers */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.wave-divider.flip-y {
  transform: rotate(180deg);
}

/* Leadership Dark Luxury Contrast */
.leadership-dark-contrast {
  background: linear-gradient(135deg, #1C000D 0%, #3B001D 50%, #15000A 100%) !important;
  color: #ffffff;
  position: relative;
  padding: 120px 0 !important;
  overflow: hidden;
}

.leadership-dark-contrast .leadership-tagline {
  color: var(--butter-color) !important;
}

.leadership-dark-contrast .featured-leader-card {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(232, 176, 66, 0.3) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.leadership-dark-contrast .leader-name {
  color: #ffffff !important;
}

.leadership-dark-contrast .leader-title {
  color: var(--butter-color) !important;
}

.leadership-dark-contrast .leader-bio {
  color: rgba(255, 255, 255, 0.85) !important;
}

.leadership-dark-contrast .leader-quote {
  background: rgba(232, 176, 66, 0.12) !important;
  border-left: 3px solid var(--butter-color) !important;
}

.leadership-dark-contrast .leader-quote p {
  color: var(--butter-color) !important;
}

.leadership-dark-contrast .team-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.leadership-dark-contrast .team-card:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: var(--butter-color) !important;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(232, 176, 66, 0.2);
}

.leadership-dark-contrast .team-name {
  color: #ffffff !important;
}

.leadership-dark-contrast .team-role {
  color: var(--butter-color) !important;
}

/* Floating Random Shapes */
.floating-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  animation: floatRandomShape 12s ease-in-out infinite alternate;
}

@keyframes floatRandomShape {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-25px) rotate(15deg) scale(1.08);
  }
  100% {
    transform: translateY(15px) rotate(-10deg) scale(0.95);
  }
}

/* Side Floating Background Icons (Safe Margin Decor) */
.side-floating-icon {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.18;
  transition: all 0.5s ease;
}

.side-floating-icon svg {
  display: block;
}

.anim-spin-slow {
  animation: spinSlow 25s linear infinite;
}

.anim-bounce-soft {
  animation: bounceSoft 6s ease-in-out infinite alternate;
}

@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes bounceSoft {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.06); }
  100% { transform: translateY(8px) scale(0.96); }
}

/* ================= RANDOM WATERMARKS, SHADOW BLOBS & WAVE SHAPES ================= */

/* Floating Tech Watermark Icons */
.watermark-tech-icon {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
  color: var(--primary-color);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.watermark-tech-icon.gold {
  color: var(--butter-color);
  opacity: 0.25;
}

.watermark-tech-icon.magenta {
  color: #FF5A8D;
  opacity: 0.2;
}

/* Animations for Watermarks & Shapes */
.anim-float-drift {
  animation: floatDrift 14s ease-in-out infinite alternate;
}

.anim-pulse-rotate {
  animation: pulseRotate 20s ease-in-out infinite;
}

.anim-sparkle-shine {
  animation: sparkleShine 4s ease-in-out infinite alternate;
}

.anim-wave-sway {
  animation: waveSway 10s ease-in-out infinite alternate;
}

@keyframes floatDrift {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
  }
  33% {
    transform: translateY(-20px) translateX(12px) rotate(8deg) scale(1.05);
  }
  66% {
    transform: translateY(10px) translateX(-15px) rotate(-6deg) scale(0.96);
  }
  100% {
    transform: translateY(-15px) translateX(8px) rotate(4deg) scale(1.02);
  }
}

@keyframes pulseRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.12);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes sparkleShine {
  0% {
    opacity: 0.2;
    transform: scale(0.8) rotate(0deg);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.3) rotate(45deg);
    filter: drop-shadow(0 0 10px rgba(232, 176, 66, 0.8));
  }
  100% {
    opacity: 0.3;
    transform: scale(0.9) rotate(90deg);
  }
}

@keyframes waveSway {
  0% {
    transform: translateX(0) scaleY(1);
  }
  50% {
    transform: translateX(-20px) scaleY(1.08);
  }
  100% {
    transform: translateX(15px) scaleY(0.95);
  }
}

/* Ambient Shadow Blobs (Morphing Deep Shadows) */
.ambient-shadow-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(50px);
  opacity: 0.35;
  animation: blobMorph 16s ease-in-out infinite alternate;
}

.ambient-shadow-blob.blob-maroon {
  background: radial-gradient(circle, rgba(122, 0, 60, 0.4) 0%, rgba(60, 0, 30, 0.1) 70%, transparent 100%);
}

.ambient-shadow-blob.blob-gold {
  background: radial-gradient(circle, rgba(232, 176, 66, 0.35) 0%, rgba(200, 140, 30, 0.08) 70%, transparent 100%);
}

.ambient-shadow-blob.blob-dark {
  background: radial-gradient(circle, rgba(28, 0, 13, 0.6) 0%, rgba(10, 0, 5, 0.15) 70%, transparent 100%);
}

@keyframes blobMorph {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translate(0px, 0px) scale(1);
  }
  33% {
    border-radius: 60% 40% 30% 70% / 50% 30% 70% 50%;
    transform: translate(30px, -20px) scale(1.1);
  }
  66% {
    border-radius: 30% 70% 50% 50% / 30% 60% 40% 70%;
    transform: translate(-20px, 25px) scale(0.95);
  }
  100% {
    border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
    transform: translate(15px, -10px) scale(1.05);
  }
}

/* Portfolio Card Hover Aesthetics & Smooth Scaling */
.portfolio-card {
  box-shadow: 0 10px 30px rgba(122, 0, 60, 0.05);
}

.portfolio-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  border-color: rgba(232, 176, 66, 0.5) !important;
  box-shadow: 0 22px 45px rgba(122, 0, 60, 0.14), 0 0 25px rgba(232, 176, 66, 0.25) !important;
}

.portfolio-card-img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.08) !important;
}

/* Testimonial Card & Stat Counter Hover Aesthetics */
.testimonial-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  border-color: rgba(232, 176, 66, 0.5) !important;
  box-shadow: 0 20px 40px rgba(122, 0, 60, 0.12), 0 0 20px rgba(232, 176, 66, 0.2) !important;
}

.stat-counter-item {
  transition: all 0.35s ease !important;
}

.stat-counter-item:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 176, 66, 0.5) !important;
  box-shadow: 0 15px 35px rgba(122, 0, 60, 0.1) !important;
}