/* ==========================================================================
   MultiCode Solution - Main Stylesheet
   Version: 1.1.0 (Brand Colors Matched to Logo)
   Author: Senior UI/UX & Frontend Engineer
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Google Fonts Import & CSS Variables
   -------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
  /* Brand Color Palette Matched to MultiCode Solution Logo (#E11D48 & #F43F5E Coral-Red) */
  --primary-color: #e11d48;
  --primary-dark: #be123c;
  --primary-light: #fb7185;
  --primary-soft: rgba(225, 29, 72, 0.08);
  --primary-glow: rgba(225, 29, 72, 0.25);

  --secondary-color: #f43f5e;
  --secondary-dark: #e11d48;
  --secondary-light: #fda4af;
  --secondary-soft: rgba(244, 63, 94, 0.08);

  --accent-cyan: #06b6d4;
  --accent-emerald: #10b981;

  --bg-main: #fafafa;
  --bg-surface: #ffffff;
  --bg-slate-light: #f1f5f9;

  --text-dark: #0f172a;
  --text-slate: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --border-color: #e2e8f0;
  --border-light: #f1f5f9;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 20px 40px -15px rgba(225, 29, 72, 0.08);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md:
    0 10px 25px -5px rgba(15, 23, 42, 0.05),
    0 8px 10px -6px rgba(15, 23, 42, 0.03);
  --shadow-lg:
    0 20px 35px -10px rgba(15, 23, 42, 0.08),
    0 10px 15px -5px rgba(15, 23, 42, 0.04);
  --shadow-hover: 0 25px 50px -12px rgba(225, 29, 72, 0.18);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Fonts */
  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-heading: "Outfit", sans-serif;

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Global Styles
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-slate);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

/* Section Common Spacing */
.section-padding {
  padding: 100px 0;
  position: relative;
}

.section-title-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  background: linear-gradient(
    135deg,
    var(--primary-soft),
    var(--secondary-soft)
  );
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(225, 29, 72, 0.15);
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.06);
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.text-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Custom Buttons */
.btn-primary-custom {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: #ffffff !important;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  opacity: 0;
  z-index: -1;
  transition: var(--transition-normal);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(225, 29, 72, 0.35);
  color: #ffffff;
}

.btn-primary-custom:hover::before {
  opacity: 1;
}

.btn-outline-custom {
  background: var(--bg-surface);
  color: var(--text-dark) !important;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-normal);
}

.btn-outline-custom:hover {
  border-color: var(--primary-color);
  color: var(--primary-color) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   3. Sticky Navbar
   -------------------------------------------------------------------------- */
.navbar-custom {
  padding: 20px 0;
  transition: var(--transition-normal);
  z-index: 1050;
  background: transparent;
}

.navbar-custom.scrolled {
  padding: 12px 0;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.navbar-brand img {
  height: 60px;
  width: auto;
  transition: var(--transition-fast);
}

.nav-link-custom {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-slate) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--primary-color) !important;
  background: var(--primary-soft);
}

.navbar-toggler {
  border: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-slate-light);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* --------------------------------------------------------------------------
   4. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding: 170px 0 100px;
  background: radial-gradient(
    circle at 10% 20%,
    rgba(225, 29, 72, 0.05) 0%,
    rgba(244, 63, 94, 0.03) 90%
  );
  overflow: hidden;
}

/* Hero Background Blob & Shapes */
.blob-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  z-index: 0;
  animation: blobFloat 12s infinite alternate ease-in-out;
}

.blob-1 {
  top: -100px;
  right: -50px;
  width: 450px;
  height: 450px;
  background: rgba(225, 29, 72, 0.2);
}

.blob-2 {
  bottom: -50px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: rgba(244, 63, 94, 0.15);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary-color);
  margin-bottom: 24px;
}

.hero-tag .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseDot 2s infinite;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.typed-text {
  color: var(--primary-color);
}

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

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* Stats Container */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.stat-item h3 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

/* Hero Right Image & Floating Cards */
.hero-image-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-main-img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 25px 35px rgba(225, 29, 72, 0.15));
  animation: floatImage 6s ease-in-out infinite;
}

.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}

.card-1 {
  top: 10%;
  left: -20px;
  animation: floatCard 5s ease-in-out infinite 1s;
}

.card-2 {
  bottom: 12%;
  right: -20px;
  animation: floatCard 5s ease-in-out infinite 2.5s;
}

.floating-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
}

.icon-blue {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
}

.icon-indigo {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-dark)
  );
}

.card-info h6 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}

.card-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   5. About Section
   -------------------------------------------------------------------------- */
.about-section {
  background-color: #ffffff;
}

.about-img-container {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-code-window {
  background: #0f172a;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
  position: relative;
}

.window-header {
  background: #1e293b;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background: #ef4444;
}
.dot-yellow {
  background: #f59e0b;
}
.dot-green {
  background: #10b981;
}

.window-title {
  color: #94a3b8;
  font-size: 0.85rem;
  font-family: monospace;
  display: flex;
  align-items: center;
  gap: 8px;
}

.window-body {
  padding: 28px 24px 36px;
  font-family: "Fira Code", "Courier New", monospace;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #e2e8f0;
}

.code-keyword {
  color: #f43f5e;
  font-weight: 600;
}
.code-class {
  color: #60a5fa;
  font-weight: 600;
}
.code-string {
  color: #34d399;
}
.code-method {
  color: #fbbf24;
}
.code-comment {
  color: #64748b;
  font-style: italic;
}
.code-num {
  color: #c084fc;
}

.about-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.badge-top-right {
  top: -20px;
  right: -15px;
  animation: floatCard 5s ease-in-out infinite;
}

.badge-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.about-experience-badge .years {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.about-feature-box {
  background: var(--bg-main);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  height: 100%;
}

.about-feature-box:hover {
  background: #ffffff;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.about-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  transition: var(--transition-fast);
}

.about-feature-box:hover .about-icon {
  background: var(--primary-color);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   6. Services Section
   -------------------------------------------------------------------------- */
.services-section {
  background: var(--bg-main);
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(225, 29, 72, 0.2);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(
    135deg,
    var(--primary-soft),
    var(--secondary-soft)
  );
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #ffffff;
  transform: scale(1.08) rotate(3deg);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link i {
  transition: var(--transition-fast);
}

.service-card:hover .service-link i {
  transform: translateX(6px);
}

/* --------------------------------------------------------------------------
   7. Technologies Section
   -------------------------------------------------------------------------- */
.tech-section {
  background: #ffffff;
}

.tech-filter-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  background: var(--bg-slate-light);
  color: var(--text-slate);
  border: 1px solid var(--border-color);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.25);
}

.tech-card {
  background: var(--bg-main);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  height: 100%;
}

.tech-card:hover {
  background: #ffffff;
  border-color: var(--primary-color);
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.tech-logo-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  transition: var(--transition-bounce);
}

.tech-card:hover .tech-logo-wrap {
  transform: scale(1.15);
}

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

.tech-cat {
  font-size: 0.775rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   8. Why Choose Us
   -------------------------------------------------------------------------- */
.why-section {
  background: var(--bg-main);
}

.why-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    var(--primary-soft),
    var(--secondary-soft)
  );
  color: var(--primary-color);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   9. Development Process Section
   -------------------------------------------------------------------------- */
.process-section {
  background: #ffffff;
}

.process-card-modern {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.process-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0;
  transition: var(--transition-fast);
}

.process-card-modern:hover {
  background: #ffffff;
  border-color: rgba(225, 29, 72, 0.2);
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}

.process-card-modern:hover::before {
  opacity: 1;
}

.process-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.process-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    var(--primary-soft),
    var(--secondary-soft)
  );
  color: var(--primary-color);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.process-card-modern:hover .process-icon-wrap {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #ffffff;
  transform: scale(1.1) rotate(4deg);
}

.process-step-badge {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-color);
  background: var(--primary-soft);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.process-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.process-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.process-footer {
  padding-top: 16px;
  border-top: 1px dashed var(--border-color);
}

.process-tag {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-slate);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.process-tag i {
  color: var(--accent-emerald);
}

/* --------------------------------------------------------------------------
   10. Portfolio Section
   -------------------------------------------------------------------------- */
.portfolio-section {
  background: var(--bg-main);
}

.portfolio-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.portfolio-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-body {
  padding: 24px;
}

.portfolio-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--primary-soft);
  color: var(--primary-color);
  font-size: 0.775rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.portfolio-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.portfolio-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   11. Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials-section {
  background: #ffffff;
}

.testimonial-card {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border-color);
  position: relative;
  margin: 10px;
  height: 100%;
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-soft);
  position: absolute;
  top: 24px;
  right: 32px;
}

.star-rating {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 18px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-slate);
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.7;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.client-details h6 {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
}

.client-details span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
  width: 24px !important;
  border-radius: 6px !important;
}

/* --------------------------------------------------------------------------
   12. FAQ Section
   -------------------------------------------------------------------------- */
.faq-section {
  background: var(--bg-main);
}

.accordion-item-custom {
  background: #ffffff;
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--border-color) !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.accordion-item-custom:hover {
  border-color: var(--primary-light);
}

.accordion-button-custom {
  background: #ffffff !important;
  color: var(--text-dark) !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 20px 24px;
  box-shadow: none !important;
}

.accordion-button-custom:not(.collapsed) {
  color: var(--primary-color) !important;
  background: var(--primary-soft) !important;
}

.accordion-body-custom {
  padding: 0 24px 24px;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   13. Contact Section
   -------------------------------------------------------------------------- */
.contact-section {
  background: #ffffff;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--text-dark) 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  height: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-info-card h3 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-info-card p {
  color: var(--text-light);
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item-text h6 {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item-text a,
.contact-item-text span {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-item-text a:hover {
  color: var(--primary-light);
}

.contact-form-wrap {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.form-control-custom,
.form-select-custom {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-control-custom:focus,
.form-select-custom:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px var(--primary-soft);
  outline: none;
}

/* --------------------------------------------------------------------------
   14. CTA Banner Section
   -------------------------------------------------------------------------- */
.cta-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: #ffffff;
  overflow: hidden;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 0;
}

.btn-cta-white {
  background: #ffffff;
  color: var(--primary-color) !important;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-normal);
}

.btn-cta-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  background: #f8fafc;
}

/* --------------------------------------------------------------------------
   15. Footer Section
   -------------------------------------------------------------------------- */
.footer {
  background: var(--text-dark);
  color: var(--text-light);
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-brand img {
  height: 70px;
  background-color: white;
  padding: 5px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

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

.footer-links a {
  color: var(--text-light);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 8px 25px rgba(225, 29, 72, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   16. Keyframe Animations
   -------------------------------------------------------------------------- */
@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -40px) scale(1.08);
  }
  100% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}
