/*
Theme Name: Shreek
Theme URI: https://shreekservices.com
Author: Shreek Services
Description: A high-performance, productized-service custom theme.
Version: 1.0.0
Text Domain: shreek
*/

/* ==========================================================================
   1. DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Brand Colors */
  --primary-green: #76bc43;
  --primary-green-dark: #5fa030;
  --primary-blue: #1d70b7;
  --primary-blue-soft: #ebf5ff;

  /* Neutrals */
  --dark-slate: #0f172a;
  --text-body: #475569;
  --bg-canvas: #f1f5f9;
  --white: #ffffff;

  /* Spacing System (8px Base) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 100px;

  /* Effects & Shadows */
  --radius-md: 12px;
  --radius-lg: 10px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 10px 30px -5px rgba(15, 23, 42, 0.15);
  --shadow-float: 0 20px 40px -5px rgba(15, 23, 42, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Darken the main background slightly so White cards actually pop */
  --bg-canvas: #e2e8f0;

  /* Darken borders so they are clearly visible */
  --border: #cbd5e1;
  --border-strong: #94a3b8;

  /* Make shadows darker and more pronounced */
}

/* ==========================================================================
   2. GLOBAL RESET
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  color: var(--text-body);
  line-height: 1.6;
  background-color: var(--bg-canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: var(--transition-fast);
}

img,
video,
svg {
  max-width: 100%;
  display: block;
}

ul,
ol {
  list-style: none;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-slate);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: var(--space-md);
}
h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  margin-bottom: var(--space-sm);
}
h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: var(--space-sm);
}
h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

p {
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
  color: var(--text-body);
}

/* Eyebrow Subheadings */
.eyebrow {
  color: var(--primary-blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  display: inline-block;
  background: var(--primary-blue-soft);
  padding: 8px 16px;
  border-radius: 100px;
}

/* ==========================================================================
   4. LAYOUT UTILITIES (THE GRID SYSTEM)
   ========================================================================== */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: var(--space-xl) 0;
}

.grid {
  display: grid;
  gap: var(--space-md);
}

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

/* Modular Block Container */
.block-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  margin-bottom: var(--space-md);
  position: relative;
  overflow: hidden;
  border: 1px solid white;
  box-shadow: var(--shadow-card);
}

/* ==========================================================================
   5. REUSABLE COMPONENTS
   ========================================================================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(118, 188, 67, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  background-color: var(--primary-green-dark);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(118, 188, 67, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--dark-slate);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--dark-slate);
  background: var(--white);
  color: var(--dark-slate);
}

/* ==========================================================================
   6. RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .block-section {
    padding: 60px 30px;
  }
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .block-section {
    padding: 40px 20px;
  }
  .section-padding {
    padding: var(--space-lg) 0;
  }
}
/* --- Header Styles --- */
/* --- Header Specific Styles --- */

/* Ensure the header floats above content */
header.site-header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 100px;
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 1240px;
  margin: 0 auto;
  transition: border-radius 0.3s ease;
}

.text-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-green, #76bc43);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  text-decoration: none;
}

.text-logo span {
  color: var(--primary-blue, #1d70b7);
}

/* Nav Links Desktop */
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--dark-slate, #0f172a);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-blue, #1d70b7);
}

/* Ensure parent li can position submenu */
.nav-links li {
  position: relative;
}

/* Hide submenu by default */
.nav-links .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 12px;
  padding: 15px 0;
  min-width: 200px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  list-style: none;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

/* Show on hover */
.nav-links li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Submenu links */
.nav-links .sub-menu li {
  padding: 0;
}

.nav-links .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.nav-links .sub-menu a:hover {
  background: #f8fafc;
}

.mobile-cta-wrapper {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-header-cta {
  padding: 10px 24px !important;
  font-size: 0.95rem !important;
  text-decoration: none;
}

/* Hamburger Icon Styles */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger-box {
  width: 24px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: var(--dark-slate, #0f172a);
  position: absolute;
  transition:
    transform 0.15s ease,
    background-color 0.15s ease;
}

.hamburger-inner {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-inner::before {
  content: "";
  top: -8px;
}
.hamburger-inner::after {
  content: "";
  top: 8px;
}
.custom-logo-link img {
  max-height: 70px;
  max-width: max-content;
  object-fit: contain;
}

/* Active Toggle State (X) */
.menu-toggle.is-active .hamburger-inner {
  background-color: transparent;
}
.menu-toggle.is-active .hamburger-inner::before {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.is-active .hamburger-inner::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- MOBILE RESPONSIVE (Up to 768px) --- */
@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
  .menu-toggle {
    display: block;
  }

  .site-navigation {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    background: white;
    margin-top: 10px;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light, #e2e8f0);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .site-navigation.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .nav-links a {
    font-size: 1.1rem;
    display: block;
  }

  .nav-links li {
    position: static;
  }

  .nav-links .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 10px 0 0 0;
    margin-top: 5px;
    display: none;
  }

  .nav-links li.menu-item-has-children > a::after {
    content: " ▾";
    font-size: 0.8rem;
  }

  /* Expand when active */
  .nav-links li.open > .sub-menu {
    display: block;
  }

  .mobile-cta-wrapper {
    display: block;
    padding-top: 20px;
    border-top: 1px solid var(--border-light, #e2e8f0);
    text-align: center;
  }

  .mobile-cta-wrapper .btn {
    width: 100%;
  }

  .header-glass {
    padding: 10px 20px;
  }
}

/* ==========================================================================
   SHREEK PROFESSIONAL FOOTER (SaaS Framework)
   ========================================================================== */

.site-footer {
  background-color: var(--bg-white, #ffffff);
  padding: 100px 0 40px;
  border-top: 1px solid var(--border-light, #e2e8f0);
  font-family: "Inter", sans-serif;
  color: var(--text-body, #475569);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 64px;
  margin-bottom: 80px;
}

/* Footer Heading Styles */
.footer-col h4 {
  color: var(--dark-slate, #0f172a);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

/* Branding Column */
.footer-logo {
  margin-bottom: 24px;
}
.footer-logo img {
  max-height: 70px;
  width: auto !important;
  display: block;
  object-fit: contain;
}

.footer-logo .text-logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-green, #76bc43);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
}

.footer-logo .text-logo span {
  color: var(--primary-blue, #1d70b7);
}

.footer-tagline {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 32px;
  color: var(--text-muted, #64748b);
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light, #f8fafc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  font-size: 1.1rem;
  transition: var(--transition, 0.3s);
  border: 1px solid var(--border-light, #e2e8f0);
}

.footer-social a:hover {
  background: var(--primary-blue, #1d70b7);
  color: white;
  border-color: var(--primary-blue);
  transform: translateY(-3px);
}

/* Link Lists */
.footer-links {
  list-style: none !important;
  padding: 0 !important;
}

.footer-links li {
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--text-body);
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition, 0.3s);
}

.footer-links a:hover {
  color: var(--primary-blue, #1d70b7);
  padding-left: 4px;
}

/* Contact Column */
.footer-contact-list {
  list-style: none !important;
  padding: 0 !important;
}

.footer-contact-list li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-list a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition, 0.3s);
}

.footer-contact-list a:hover {
  color: var(--primary-blue);
}

.footer-contact-list i {
  color: var(--primary-blue, #1d70b7);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  margin-top: 3px;
}

.address-item span {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Bottom Copyright Bar */
.footer-bottom {
  border-top: 1px solid var(--border-light, #e2e8f0);
  padding-top: 40px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted, #94a3b8);
  font-size: 0.85rem;
  margin: 0;
}

/* Responsive Fixes */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 64px 0 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-tagline {
    max-width: 100%;
  }
}
/* --- Add this to the bottom of your style.css --- */
/* --- Add this to the bottom of your style.css --- */

/* 1. Hero 3D Mockup (Enhanced Contrast & Animation) */
.browser-mockup {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #94a3b8; /* Darker border for visibility */
  transform: rotateX(5deg) rotateY(-10deg);
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* Stronger shadow */
}
.browser-header {
  background: #e2e8f0; /* Darker header */
  padding: 12px;
  border-bottom: 1px solid #cbd5e1;
  display: flex;
  gap: 8px;
  border-radius: 16px 16px 0 0;
}
.browser-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 15px;
  height: 320px;
  background: #f8fafc;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* Skeleton Loading Animation inside Mockup */
@keyframes pulseSkeleton {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
.browser-body div > div {
  animation: pulseSkeleton 2.5s infinite ease-in-out;
}

/* 2. Marquee */
.marquee-wrapper {
  background: var(--dark-slate);
  color: white;
  padding: 25px 0;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 40px; /* Tighter spacing */
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.5);
}
.marquee-content {
  display: inline-block;
  animation: scroll 35s linear infinite;
}
.tech-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 40px;
  font-size: 1.15rem;
  font-weight: 600;
  opacity: 0.85;
  transition: 0.3s;
}
.tech-item:hover {
  opacity: 1;
  color: var(--primary-green);
}
section {
  margin-bottom: 50px;
}

/* 3. Services Tabs (Stronger Contrast) */
.tabs-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  min-height: 400px;
}
.tab-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tab-btn {
  padding: 20px;
  text-align: left;
  background: transparent;
  border: none;
  border-left: 3px solid #cbd5e1;
  font-size: 1.1rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: space-between;
}
.tab-btn:hover {
  background: #ffffff;
  color: var(--dark-slate);
  box-shadow: var(--shadow-sm);
}
.tab-btn.active {
  border-left-color: var(--primary-green);
  color: var(--dark-slate);
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-radius: 0 12px 12px 0;
}
.tab-btn i {
  opacity: 0;
  color: var(--primary-green);
  transition: 0.3s;
}
.tab-btn.active i {
  opacity: 1;
  transform: translateX(5px);
}
.tab-content {
  display: none;
  animation: fadeIn 0.4s ease-out;
}
.tab-content.active {
  display: block;
}
.tab-panel {
  padding: 40px;
  border-radius: 20px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05); /* Make the panel pop out */
}
.tech-icon-grid {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.tech-icon-box {
  width: 65px;
  height: 65px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 1px solid #cbd5e1; /* Visible border */
  color: var(--dark-slate);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.tech-icon-box:hover {
  transform: translateY(-3px);
  border-color: var(--primary-green);
  color: var(--primary-green);
  box-shadow: 0 10px 15px rgba(118, 188, 67, 0.15);
}

/* 4. Bento Grid (Fixed Blending Issue) */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 24px;
}
.bento-card {
  background: #ffffff; /* Pure white for contrast against canvas */
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s;
  border: 1px solid #e2e8f0; /* Explicit border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); /* Base shadow */
}
.bento-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(
    135deg,
    var(--primary-blue-soft) 0%,
    #ffffff 100%
  );
  border: 1px solid #cbd5e1;
}
.bento-icon {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 15px;
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

/* 5. Pricing Cards */
.pricing-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  transition: 0.3s;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}
.pricing-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}
.pricing-card.featured {
  border: 2px solid var(--primary-green);
  box-shadow: 0 20px 40px rgba(118, 188, 67, 0.15);
  position: relative;
  overflow: hidden;
}
.pricing-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--primary-green);
}
/* Price Wrapper */
.pricing-price-wrapper {
  margin: 20px 0;
  text-align: left; /* Change to center if your cards are center-aligned */
}

/* Main Price Container */
.pricing-price-wrapper .main-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-slate);
  display: flex;
  flex-direction: row;
  align-items: baseline; /* Aligns the old and new price neatly on the same line */
  flex-wrap: wrap;
  gap: 12px; /* Adds space between old and new price */
}

/* Old Price (Strikethrough) */
.pricing-price-wrapper .main-price del {
  font-size: 1.2rem; /* Make the old price smaller */
  font-weight: 600;
  color: #94a3b8; /* Muted gray */
  text-decoration: line-through;
  opacity: 0.8;
}

/* New Sale Price */
.pricing-price-wrapper .main-price ins {
  text-decoration: none;
  color: var(--primary-blue); /* Highlights the sale price */
}

/* Feature card specific adjustment */
.pricing-card.featured .main-price ins {
  color: var(--primary-green); /* Makes the sale price green on the featured card */
}

/* GST Note */
.pricing-price-wrapper .gst-note {
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748b; /* Subtle gray */
  margin-top: 4px;
}

/* 6. Portfolio Slider (Fixed scrolling) */
.slider-container {
  overflow-x: auto;
  display: flex;
  gap: 24px;
  padding: 20px 4px 40px 4px; /* Extra bottom padding for shadow */
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.slider-container::-webkit-scrollbar {
  display: none;
}
.portfolio-slide {
  min-width: 380px;
  scroll-snap-align: center;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  display: block; /* Ensure a tag takes full shape */
}
.portfolio-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-blue);
}
.portfolio-img {
  height: 240px;
  background: #ddd;
  object-fit: cover;
  border-bottom: 1px solid #e2e8f0;
}
.portfolio-info {
  padding: 20px;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotateX(5deg) rotateY(-10deg);
  }
  50% {
    transform: translateY(-15px) rotateX(5deg) rotateY(-10deg);
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.cursor {
  display: inline-block;
  width: 3px;
  background-color: var(--primary-green);
  animation: blink 1s infinite;
  margin-left: 2px;
}

/* Responsive Adjustments & Spacing Fixes */
.block-section {
  margin-bottom: 30px;
} /* Tightened overall spacing */

/* Force pure white background, strong borders, and heavy shadows on all cards */
.block-section,
.bento-card,
.pricing-card,
.tab-panel,
.portfolio-slide,
.browser-mockup {
  background-color: #ffffff !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-card) !important;
}

/* Add an aggressive pop-out effect on hover */
.bento-card:hover,
.pricing-card:hover,
.portfolio-slide:hover {
  border-color: var(--primary-blue) !important;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25) !important;
  transform: translateY(-8px) !important;
}

/* Ensure the Featured Pricing Card stands out even more */
.pricing-card.featured {
  border: 2px solid var(--primary-green) !important;
  box-shadow: 0 20px 40px rgba(118, 188, 67, 0.2) !important;
}

.wc-block-components-product-metadata__description {
  display: none !important;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bento-large {
    grid-column: span 2;
    grid-row: auto;
  }
  .tabs-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .tab-list {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 15px;
    scrollbar-width: none;
  }
  .tab-list::-webkit-scrollbar {
    display: none;
  }
  .tab-btn {
    border-left: none;
    border-bottom: 3px solid #e2e8f0;
    padding: 10px 20px;
    white-space: nowrap;
  }
  .tab-btn.active {
    border-radius: 12px 12px 0 0;
    border-bottom-color: var(--primary-green);
    box-shadow: none;
    background: #f8fafc;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-large {
    grid-column: 1;
  }
  .portfolio-slide {
    min-width: 280px;
  }
}
