/* ===========================================
   Custom CSS for RohitWebCo.com
   Bootstrap 5.3.2 + Custom Styling
   =========================================== */

/* ---------------------------------------------
   Google Fonts Import
   --------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

/* ---------------------------------------------
   CSS Variables (Custom Properties)
   --------------------------------------------- */
:root {
  /* Color Palette */
  --color-whisper: #f3f2f7;        /* White/Off-white */
  --color-mine-shaft: #292929;     /* Dark Gray/Black */
  --color-flamingo: #f25939;       /* Orange/Coral */
  --color-dusty-gray: #949494;     /* Medium Gray */
  --color-rose-bud: #fdb0a1;       /* Light Pink/Peach */
  --color-spicy-mix: #875142;      /* Brown/Taupe */
  --color-elm: #1b6c86;            /* Teal/Dark Cyan */
  
  /* Primary Colors - Using Palette */
  --primary-color: #f25939;        /* Flamingo - Primary accent */
  --primary-color-light: #fdb0a1;  /* Rose Bud - Light accent */
  --primary-color-dark: #875142;   /* Spicy Mix - Dark accent */
  
  /* Secondary Colors */
  --secondary-color: #161616;      /* Mine Shaft - Dark background */
  --secondary-color-accent: #1b6c86; /* Elm - Teal accent */
  
  /* Text Colors */
  --text-dark: #292929;            /* Mine Shaft */
  --text-light: #ffffff;
  --text-gray: #949494;            /* Dusty Gray */
  --text-muted: #949494;           /* Dusty Gray */
  
  /* Background Colors */
  --bg-light: #f3f2f7;             /* Whisper */
  --bg-dark: #292929;              /* Mine Shaft */
  --bg-white: #ffffff;
  
  /* Typography */
  --font-primary: 'Open Sans', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-quicksand: 'Quicksand', sans-serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-max-width: 1200px;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ---------------------------------------------
   Base Styles
   --------------------------------------------- */
.footer-rich .footer-top-two-rows { display:block; }
.footer-rich .footer-links li { margin-bottom: 8px; }
.footer-rich .footer-top-two-rows { display:block; }
.footer-rich .footer-links li { margin-bottom: 8px; }

.footer-rich .footer-subscribe .form-control { border-radius: 8px 0 0 8px; border: none; }
.footer-rich .footer-subscribe .btn { border-radius: 0 8px 8px 0; }

.footer-rich .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top:18px; margin-top:20px; }
.container {
  background-color: transparent;
}

/* ---------------------------------------------
   Typography
   --------------------------------------------- */

p {
  margin-bottom: 1.25rem;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

/* Additional typography improvements */
.lead {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.005em;
  margin-bottom: 1.5rem;
}

.small {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* List typography */
ul, ol {
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

li {
  margin-bottom: 0.5rem;
  font-weight: 300;
}

/* Custom Typography Classes */
.font-display {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.font-heading {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.font-body {
  font-family: var(--font-primary);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.font-mono {
  font-family: var(--font-mono);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.font-quicksand {
  font-family: var(--font-quicksand);
}

/* ---------------------------------------------
   Utility Classes
   --------------------------------------------- */
.footer-rich {
  background: var(--footer-bg, #0b1220);
  color: var(--footer-color, #cbd5e1);
  padding: 40px 20px;
}
.about-hero .highlight {
  color: var(--primary-color) !important;
}

/* Ensure primary color overrides all text color rules */
.highlight, .highlight * {
  color: var(--primary-color) !important;
}

/* ---------------------------------------------
   Flat Icons Styling
   --------------------------------------------- */
.flaticon {
  font-size: 1.2rem;
  color: white;
  transition: var(--transition-fast);
}

.flaticon:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

/* Flat Icons in buttons */
.btn .flaticon {
  margin-right: 8px;
}

/* ---------------------------------------------
   Services Preview Icons Styling
   --------------------------------------------- */
.section__services-preview figure {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section__services-preview figure i {
  font-size: 2.5rem;
  color: var(--primary-color);
  display: block;
  position: relative;
  z-index: 2;
}

/* Icon background circle */
.section__services-preview figure::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(246, 117, 31, 0.1), rgba(246, 117, 31, 0.05));
  border-radius: 50%;
  z-index: 1;
}

/* Icon hover effects removed - keeping static design */

@keyframes iconPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

/* Enhanced card styling */
.section__services-preview .card-enhanced {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}


.section__services-preview .card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(246, 117, 31, 0.1), transparent);
  transition: left 0.6s ease;
}

.section__services-preview .card-enhanced:hover::before {
  left: 100%;
}

.section__services-preview .card-enhanced:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

/* Footer styling using Bootstrap utilities for layout. Keep colors and small overrides here. */
.footer-rich .footer-logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}

.footer-rich .footer-text {
  color: rgba(255,255,255,0.85);
}

.footer-rich .footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.footer-rich .footer-links a:hover {
  color: #fff;
}

.footer-rich .footer-social .btn {
  color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.08);
}

.footer-rich .footer-subscribe .form-control {
  border-radius: 4px;
}

/* Small layout helpers when Bootstrap's spacing needs slight overrides */
.footer-rich .top-row { row-gap: 1.25rem; }
.footer-rich .second-row { row-gap: 1.25rem; }
/* Flat Icons in cards */
.card-custom .flaticon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

/* Flat Icons in navigation */
.nav .flaticon {
  font-size: 1rem;
  margin-right: 5px;
}

/* Social Media Buttons */
.social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border: none;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.social-btn i {
  font-size: 1.2rem;
  color: white !important;
  transition: var(--transition-fast);
}

.social-btn:hover i {
  color: var(--primary-color) !important;
  transform: scale(1.1);
}

.primary-header {
  font-family: var(--font-quicksand);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* ---------------------------------------------
   Section Header Typography Classes
   --------------------------------------------- */
  .primary__header {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.section__tagline h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.secondary__header {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  position: relative;
}

.tertiary__header {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section__header {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.text-responsive-xl {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text-responsive-lg {
  font-size: 1.125rem;
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.015em;
}


/* ---------------------------------------------
   Layout Components
   --------------------------------------------- */
/* .container-custom {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 15px;
} */

.section-padding {
  padding: var(--section-padding);
}

.section-padding-sm {
  padding: 40px 0;
}

.section-padding-lg {
  padding: 100px 0;
}

/* ---------------------------------------------
   Header Styles
   --------------------------------------------- */
.body__header {
  background:
    radial-gradient(circle at top left, rgba(16, 75, 94, 0.16), transparent 55%),
    radial-gradient(circle at bottom right, rgba(16, 75, 94, 0.16), transparent 55%),
    var(--secondary-color);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(50px);
}

.is-home .body__header {
  background-color: transparent;
  box-shadow: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.is-home .body__header.header--with-bg {
  background:
    radial-gradient(circle at top left, rgba(27, 108, 134, 0.1), transparent 15%),
    radial-gradient(circle at bottom right, rgba(27, 108, 134, 0.1), transparent 5%),
    var(--secondary-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.header__inner {
  /* gap: 2rem; */
}

.header__logo {
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}

.header__logo:hover {
  color: var(--text-light);
}

.header__nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0.9rem;
}

.header__nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.93rem;
  text-transform: none;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.8rem;
  transition: var(--transition-fast);
  position: relative;
  border-radius: 999px;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.header__nav-link.is-active {
  color: var(--primary-color);
}

.header__nav-link.is-active::after {
  transform: scaleX(1);
}

.header__nav-list.main__nav {
    position: relative;
}

.header__nav-list.main__nav .sub__nav-icon {
    display: inline-block;
    margin-left: 0.4rem;
    vertical-align: middle;
}

.header__nav-list.main__nav .sub__nav-icon i {
    font-size: 0.85rem;
    color: var(--text-light);
    transition: var(--transition-fast);
}

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


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

.sub__nav {
    background-color: var(--bg-dark);
    padding: 4px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 220px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.sub__nav.is-open {
    display: block;
}

.sub__nav-link {
    color: var(--text-light);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: block;
    text-decoration: none;
    padding: 10px 16px;
    font-weight: 400;
    transition: var(--transition-fast);
}

.sub__nav-link:hover {
    background: rgba(255,255,255,0.06);
    color: var(--primary-color);
}

.header__nav li {
    margin-left: 0;
    margin-bottom: 0px;
}

/* Hamburger */
.hamburger {
  color: var(--text-light);
  font-size: 1.6rem;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 900;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.mobile-nav-open {
  overflow: hidden;
}


/* ---------------------------------------------
   Home Hero / Banner
   --------------------------------------------- */
.section__banner {
  padding: 72px 0 40px;
  background: radial-gradient(circle at top left, rgba(242, 89, 57, 0.16), transparent 55%),
              radial-gradient(circle at bottom right, rgba(27, 108, 134, 0.16), transparent 55%),
              #0f172a;
  color: #ffffff;
}

.is-home .section__banner {
  /* Pull banner up so header overlaps it on home page */
  margin-top: -64px;
  padding-top: 112px;
}

.section__banner .primary__header {
  color: #ffffff;
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  line-height: 1.25;
}

.section__banner .secondary__header {
  color: rgba(255, 255, 255, 0.8);
}

.hero-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(248, 250, 252, 0.8);
}

.hero-subtitle {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  font-size: 0.92rem;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(248, 250, 252, 0.86);
}

.hero-highlights i {
  color: var(--primary-color);
  font-size: 0.95rem;
}

.hero-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 18px;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(248, 250, 252, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(14px);
}

.hero-card-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.9);
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-card-list li {
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(30, 64, 175, 0.5);
}

.hero-card-label {
  display: block;
  font-weight: 500;
  color: #e5e7eb;
  font-size: 0.95rem;
}

.hero-card-meta {
  display: block;
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.9);
}

.hero-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: var(--primary-color-light);
  text-decoration: none;
  margin-top: 0.25rem;
}

.hero-card-link i {
  font-size: 0.85rem;
}

@media (max-width: 767.98px) {
  .section__banner {
    padding: 56px 0 32px;
  }

  .hero-card {
    margin-top: 1.25rem;
  }
}

/* Desktop alignment overrides for hero (left align on larger screens) */
@media (min-width: 768px) {
  .section__banner .section__header {
    text-align: left;
  }

  .section__banner .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .section__banner .hero-highlights {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .header__inner {
    flex-wrap: wrap;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 260px;
    background:
      radial-gradient(circle at top left, rgba(27, 108, 134, 0.16), transparent 55%),
      radial-gradient(circle at bottom right, rgba(27, 108, 134, 0.16), transparent 55%),
      var(--secondary-color);
    padding: 80px 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .header__nav.is-open {
    transform: translateX(0);
  }

  /* Make mobile nav links full-width, easy to tap */
  .header__nav-link {
    display: block;
    width: 100%;
    padding: 0.4rem 0.4rem;
  }

  .header__nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    list-style: none;
  }

  .mobile-nav-close {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    padding: 0;
  }

  .header__nav-list.main__nav .sub__nav {
    position: static;
    box-shadow: none;
    width: 100%;
    margin-top: 0.5rem;
  }

  /* Fix Services dropdown icon alignment in mobile drawer */
  .header__nav-list.main__nav .sub__nav-icon {
    float: right;
    position: static;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    margin-left: 0.35rem;
    display: inline-flex;
    align-items: center;
  }
}



/* ---------------------------------------------
   Footer Styles
   --------------------------------------------- */
.body__footer {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 80px 0 20px;
}

.footer__logo {
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 20px;
  display: inline-block;
}

.footer__text, .footer__bottom p{
  color: #e7e7e7;
  margin-bottom: 30px;
}

.footer__links {
  list-style: none;
  padding: 0;
  color: var(--bg-light);
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  color: #caccd1;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer__links a:hover {
  color: var(--text-light);
}

.footer__social {
  display: flex;
  gap: 15px;
}

.footer__social a {
  color: #e8e8e8;
  font-size: 1.5rem;
  transition: var(--transition-fast);
}

.footer__social a:hover {
  color: var(--text-light);
}

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top:18px; margin-top:20px; }
.footer__bottom a { color: rgba(255,255,255,0.92); text-decoration:none; }



.disclamer__legal {
    border-top: 1px solid rgba(51, 51, 51, 0.8);
}

.disclamer__legal p {
    font-size: 13px;
    opacity: 0.8;
}

.disclamer__legal p span {
    font-weight: 600;
}
/* ---------------------------------------------
   Button Components
   --------------------------------------------- */
   a.button {
    text-decoration: none;
   }

   .button {
    margin: 20px;
   }

.custom-btn {
  color: #f6f6f6;
  border-radius: 5px;
  padding: 10px 35px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;  
  background: #2d2d2d;
  text-shadow: 0px 0px 1px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}


/* 16 */
.btn-16 {
  border: none;
  color: #ffffff;
  /* background: var(--primary-color); */

}
.btn-16:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  direction: rtl;
  z-index: -1;
  box-shadow:
   -7px -7px 20px 0px #fff9,
   -4px -4px 5px 0px #fff9,
   7px 7px 20px 0px #0002,
   4px 4px 5px 0px #0001;
  transition: all 0.3s ease;
}
.btn-16:hover {
  color: #ffffff;
background-color: var(--primary-color);

}
.btn-16:hover:after {
  left: auto;
  right: 0;
  width: 100%;
}
.btn-16:active {
  top: 2px;
}

.btn-custom {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary {
  background-color: #2563eb;
  color: white;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
  background-color: #e5e7eb;
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: #d1d5db;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* ---------------------------------------------
   About Page Styles
   --------------------------------------------- */
.about__image {
  width: 100%;
  max-width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  transition: var(--transition-fast);
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.about__image:hover {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}

.developer-designer {
  background-color: #ffffff;
  padding: 60px 0;
}

.random-facts {
  padding: 60px 0;
}

.facts-list {
  list-style: none;
  padding: 0;
}

.facts-list li {
  padding: 8px 0;
  font-size: 1.1rem;
  color: var(--text-dark);
}

/* Portfolio Section - Enhanced Modern Design
-------------------------------------------------- */
.section__clients {
    position: relative;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section__clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.3), transparent);
}

.section__clients-bod {
    padding: 1.5rem 0;
}

.section__clients-bod .swiper-slide {
    height: auto;
    padding: 0.5rem;
}

/* Portfolio Grid Section */
.section__portfolio {
    position: relative;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section__portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.3), transparent);
}

.section__portfolio .row {
    margin-top: 2rem;
}

.section__portfolio .portfolio-card {
    margin-bottom: 0;
}

/* Portfolio List View Styles */
.portfolio-list {
    margin-top: 3rem;
}

.portfolio-list-item {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(242, 89, 57, 0.08);
    position: relative;
}

.portfolio-list-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 3;
}

.portfolio-list-item:hover::before {
    transform: scaleX(1);
}

.portfolio-list-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(242, 89, 57, 0.15);
    border-color: rgba(242, 89, 57, 0.2);
}

.portfolio-list-image {
    position: relative;
    overflow: hidden;
    margin: 0;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
}

.portfolio-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.96) contrast(1.02);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
}

.portfolio-list-item:hover .portfolio-list-image img {
    filter: grayscale(0%) brightness(1.05) contrast(1.08);
    transform: scale(1.08);
}

.portfolio-list-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.75) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(3px);
}

.portfolio-list-item:hover .portfolio-list-overlay {
    opacity: 1;
}

.portfolio-list-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateY(25px) scale(0.95);
    opacity: 0;
}

.portfolio-list-item:hover .portfolio-list-link {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.portfolio-list-link:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 32px rgba(242, 89, 57, 0.4);
}

.portfolio-list-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.portfolio-list-badge {
    display: inline-block;
    background: rgba(242, 89, 57, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1.25rem;
    width: fit-content;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-list-item:hover .portfolio-list-badge {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.portfolio-list-category {
    color: var(--text-gray);
    font-size: 1rem;
    margin: 0;
    font-family: var(--font-primary);
}

.portfolio-list-description {
    color: var(--text-dark);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
    font-family: var(--font-primary);
    opacity: 0.85;
}

.portfolio-list-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
}

.tech-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(242, 89, 57, 0.08);
    color: var(--primary-color);
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: var(--font-primary);
    border: 1px solid rgba(242, 89, 57, 0.15);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(242, 89, 57, 0.15);
    border-color: rgba(242, 89, 57, 0.25);
    transform: translateY(-1px);
}

.portfolio-list-btn {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 0.5rem;
}

.portfolio-list-btn:hover {
    color: var(--primary-color-dark);
    transform: translateX(5px);
}

.portfolio-list-btn i {
    transition: transform 0.3s ease;
}

.portfolio-list-btn:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments for list view */
@media (max-width: 767.98px) {
    .portfolio-list-item {
        margin-bottom: 2rem;
    }
    
    .portfolio-list-image {
        min-height: 250px;
    }
    
    .portfolio-list-content {
        padding: 1.5rem;
    }
    
    .portfolio-list-content .tertiary__header {
        font-size: 1.5rem;
    }
}

/* Project Detail Page Styles */
.section__project-hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section__project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.3), transparent);
}

.project-breadcrumb {
    font-size: 0.875rem;
}

.project-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.project-breadcrumb .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-color-dark);
}

.project-breadcrumb .breadcrumb-item.active {
    color: var(--text-gray);
}

.project-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: var(--text-gray);
    padding: 0 0.5rem;
}

.project-badge {
    display: inline-block;
    background: rgba(242, 89, 57, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: var(--font-primary);
}

.section__project-content {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.project-section {
    margin-bottom: 3rem;
}

.project-section:last-child {
    margin-bottom: 0;
}

.project-section-title {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(242, 89, 57, 0.2);
    position: relative;
}

.project-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.project-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Service Detail / Web Development Page
-------------------------------------------------- */
.section__service-hero {
    background: 
        radial-gradient(circle at top right, rgba(242, 89, 57, 0.08), transparent 50%),
        radial-gradient(circle at bottom left, rgba(27, 108, 134, 0.06), transparent 50%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding-top: 4.5rem !important;
    padding-bottom: 3.5rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.section__service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.5), rgba(242, 89, 57, 0.3), rgba(242, 89, 57, 0.5), transparent);
}

.section__service-hero .section__header {
    margin-bottom: 1.5rem;
}

.section__service-hero .primary__header {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section__service-hero .secondary__header {
    font-size: 1.125rem;
    color: rgba(15, 23, 42, 0.7);
    line-height: 1.6;
    max-width: 42rem;
}

.section__service-hero .section__body {
    margin-top: 1.5rem;
}

.section__service-hero .text-responsive-lg {
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.7;
    max-width: 48rem;
}

.section__service-highlights {
    background: #ffffff;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.06), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: rgba(242, 89, 57, 0.5);
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.12);
    transform: translateY(-6px);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(242, 89, 57, 0.06);
    color: var(--primary-color);
    font-size: 1.75rem;
}

.service-card-icon i {
    color: var(--primary-color);
}

.section__service-highlights p {
    margin-bottom: 0;
}

/* Generic section top border accent (orange line)
-------------------------------------------------- */
.section--top-border {
    position: relative;
}

.section--top-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.3), transparent);
}

/* Slightly stronger top border for page types section so it is clearly visible */
#page-types.section--top-border::before {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.5), transparent);
}

/* Stronger top border for Technologies I Use section */
#tech-stack.section--top-border {
    border-top: 2px solid rgba(242, 89, 57, 0.4);
}

/* Page Types (Types of Websites I Build)
-------------------------------------------------- */
.page-type-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.75rem 1.75rem 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.page-type-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(242, 89, 57, 0.06), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.page-type-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    border-color: rgba(242, 89, 57, 0.25);
}

.page-type-card:hover::before {
    opacity: 1;
}

.page-type-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(242, 89, 57, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
}

.page-type-text {
    font-size: 0.9375rem;
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.page-type-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.page-type-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.35rem;
}

.page-type-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 0.9rem;
}

.project-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-list-item {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.9;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.project-list-item:last-child {
    border-bottom: none;
}

.project-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.5rem;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.project-list-item strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Project Sidebar */
.project-sidebar {
    position: sticky;
    top: 2rem;
}

.project-image-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(242, 89, 57, 0.08);
}

.project-featured-image {
    margin: 0;
    overflow: hidden;
}

.project-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.project-image-card:hover .project-featured-image img {
    transform: scale(1.05);
}

.project-details-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(242, 89, 57, 0.08);
}

.project-details-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(242, 89, 57, 0.2);
}

.project-detail-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.project-detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.project-detail-label {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.project-detail-label i {
    color: var(--primary-color);
    width: 20px;
}

.project-detail-value {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.project-detail-value a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-detail-value a:hover {
    color: var(--primary-color-dark);
    text-decoration: underline;
}

.project-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.project-cta-btn:hover {
    background: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242, 89, 57, 0.3);
}

.project-cta-btn i {
    transition: transform 0.3s ease;
}

.project-cta-btn:hover i {
    transform: translateX(5px);
}

/* Related Projects Section */
.section__related-projects {
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.project-back-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.project-back-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateX(-5px);
}

.project-back-btn i {
    transition: transform 0.3s ease;
}

.project-back-btn:hover i {
    transform: translateX(-5px);
}

/* Responsive adjustments for project detail page */
@media (max-width: 991.98px) {
    .project-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .project-section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .project-section {
        margin-bottom: 2rem;
    }
    
    .project-section-title {
        font-size: 1.375rem;
    }
    
    .project-text,
    .project-list-item {
        font-size: 0.9375rem;
    }
    
    .project-details-card {
        padding: 1.5rem;
    }
}

/* Portfolio Card Container - Refined Modern Style */
.portfolio-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(242, 89, 57, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 3;
}

.portfolio-card:hover::before {
    transform: scaleX(1);
}

.portfolio-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(242, 89, 57, 0.15);
    border-color: rgba(242, 89, 57, 0.2);
}

/* Portfolio Badge - Refined Design */
.portfolio-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 8px 16px;
    border-radius: 24px;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(242, 89, 57, 0.15);
}

.portfolio-card:hover .portfolio-badge {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(242, 89, 57, 0.35);
    border-color: rgba(242, 89, 57, 0.3);
}

/* Portfolio Image Wrapper with Overlay */
.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
    aspect-ratio: 16 / 10;
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.96) contrast(1.02);
    -webkit-filter: grayscale(20%) brightness(0.96) contrast(1.02);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
}

.portfolio-card:hover .portfolio-image-wrapper img {
    filter: grayscale(0%) brightness(1.05) contrast(1.08);
    -webkit-filter: grayscale(0%) brightness(1.05) contrast(1.08);
    transform: scale(1.08);
}

/* Portfolio Overlay - Enhanced Glassmorphism */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.75) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 24px 24px 0 0;
    backdrop-filter: blur(3px);
}

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

.portfolio-overlay-content {
    transform: translateY(25px) scale(0.95);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.15s;
}

.portfolio-card:hover .portfolio-overlay-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Portfolio Link Button - Refined Design */
.portfolio-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    letter-spacing: 0.3px;
}

.portfolio-link-btn i {
    font-size: 0.9rem;
    transition: transform 0.4s ease;
}

.portfolio-link-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(242, 89, 57, 0.4);
    border-color: rgba(242, 89, 57, 0.3);
}

.portfolio-link-btn:hover i {
    transform: translateX(3px);
}

/* Portfolio link - icon only (home section overlay, minimal footprint) */
.portfolio-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50%;
    font-size: 1rem;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.portfolio-link-icon:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(242, 89, 57, 0.4);
}

.portfolio-link-icon i {
    font-size: 0.95rem;
}

/* Portfolio Content - Enhanced Typography */
.portfolio-content {
    padding: 2rem 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: #ffffff;
}

.portfolio-content header {
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-content header {
    transform: translateY(-4px);
}

/* Use base tertiary__header class - no custom styles needed */
.portfolio-card:hover .tertiary__header {
    color: var(--primary-color);
    transition: color 0.4s ease;
}

/* Portfolio Category - Enhanced Typography */
.portfolio-category {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: var(--text-gray);
    margin: 0;
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-category {
    color: var(--text-dark);
    font-weight: 400;
}

/* Swiper slide entrance animation */
.section__clients-bod .swiper-slide {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Skills/Technologies Section - Modern Redesign
-------------------------------------------------- */
.section__skills {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section__skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.3), transparent);
}

.skills-category-modern {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(242, 89, 57, 0.1);
    overflow: hidden;
}

.skills-category-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.skills-category-modern:hover::before {
    transform: scaleX(1);
}

.skills-category-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(242, 89, 57, 0.15);
    border-color: rgba(242, 89, 57, 0.3);
}

.skills-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.category-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(242, 89, 57, 0.1), rgba(242, 89, 57, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.skills-category-modern:hover .category-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    color: #ffffff;
    transform: rotate(5deg) scale(1.1);
}

.skills-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.skill-item-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 0.75rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.skill-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.1), transparent);
    transition: left 0.5s ease;
}

.skill-item-modern:hover::before {
    left: 100%;
}

.skill-item-modern:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 24px rgba(242, 89, 57, 0.2);
}

.skill-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(242, 89, 57, 0.1), rgba(242, 89, 57, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 1;
}

.skill-item-modern:hover .skill-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    transform: rotateY(360deg) scale(1.1);
}

.skill-icon-wrapper i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.skill-item-modern:hover .skill-icon-wrapper i {
    color: #ffffff;
    transform: scale(1.15);
}

.skill-name {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.skill-item-modern:hover .skill-name {
    color: var(--primary-color);
    font-weight: 600;
}


/* Swiper pagination - Enhanced Styling */
.section__clients-bod .swiper-pagination {
    margin-top: 3rem;
    position: relative;
    bottom: auto;
}

.section__clients-bod .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #e5e7eb;
    opacity: 1;
    margin: 0 8px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 50%;
    border: 2px solid transparent;
}

.section__clients-bod .swiper-pagination .swiper-pagination-bullet:hover {
    background: #d1d5db;
    transform: scale(1.2);
}

.section__clients-bod .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.4);
    box-shadow: 0 0 0 4px rgba(242, 89, 57, 0.15), 0 4px 12px rgba(242, 89, 57, 0.3);
    border-color: rgba(242, 89, 57, 0.2);
    width: 32px;
    border-radius: 16px;
}

/* Testimonials Section - Premium Redesign
-------------------------------------------------- */
.section__testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.testimonial__body {
    padding: 0.5rem 0;
    overflow: hidden;
}

.testimonial__slider {
    overflow: hidden;
    padding: 0.5rem 0;
}

.testimonial__slider .swiper-wrapper {
    overflow: visible;
}

.testimonial__slider .swiper-slide {
    padding: 1rem;
    height: auto;
    overflow: visible;
    box-sizing: border-box;
}

.section__testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.3), transparent);
}

.testimonial-card-premium {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(242, 89, 57, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

.testimonial-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
    border-radius: 24px 24px 0 0;
}

.testimonial-card-premium:hover::before {
    transform: scaleX(1);
}

.testimonial-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(242, 89, 57, 0.3);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.testimonial-card-premium:hover .testimonial-stars i {
    transform: scale(1.1);
    animation: starPulse 0.6s ease;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.3); }
}

.testimonial-quote-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(246, 117, 31, 0.1), rgba(246, 117, 31, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.testimonial-card-premium:hover .testimonial-quote-large {
    opacity: 1;
    transform: rotate(15deg) scale(1.1);
    background: linear-gradient(135deg, rgba(246, 117, 31, 0.2), rgba(246, 117, 31, 0.1));
}

.testimonial-content-premium {
    flex-grow: 1;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-text-premium {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: 0.01em;
    position: relative;
}

.testimonial-text-premium::first-letter {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
    float: left;
    line-height: 1;
    margin-right: 8px;
    margin-top: 4px;
    font-family: var(--font-heading);
}

.testimonial-author-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), rgba(246, 117, 31, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(246, 117, 31, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card-premium:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(246, 117, 31, 0.4);
}

.author-info-premium {
    flex-grow: 1;
}

.author-name-premium {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.01em;
}

.author-role-premium {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 0.15rem 0;
    letter-spacing: 0.01em;
}

.author-company {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-gray);
    margin: 0;
    letter-spacing: 0.01em;
}

/* Testimonials Swiper Pagination */
.testimonial__slider .swiper-pagination {
    margin-top: 2.5rem;
    position: relative;
    bottom: auto;
}

.testimonial__slider .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #e5e7eb;
    opacity: 1;
    margin: 0 8px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 50%;
    border: 2px solid transparent;
}

.testimonial__slider .swiper-pagination .swiper-pagination-bullet:hover {
    background: #d1d5db;
    transform: scale(1.2);
}

.testimonial__slider .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.4);
    box-shadow: 0 0 0 4px rgba(246, 117, 31, 0.15), 0 4px 12px rgba(246, 117, 31, 0.3);
    border-color: rgba(246, 117, 31, 0.2);
    width: 32px;
    border-radius: 16px;
}

/* Happy Clients Section - Infinite Sliding Animation
-------------------------------------------------- */
.section__clients {
    position: relative;
}

.section__clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.3), transparent);
}

.section__clients-body {
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
}

.clients-logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-logo-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: slideLogos 30s linear infinite;
    width: fit-content;
}

.clients-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    transition: all 0.4s ease;
    cursor: pointer;
}

.clients-logo-item:hover {
    transform: translateY(-8px) scale(1.1);
}

.clients-logo-item figure {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: 120px;
    height: 80px;
}

.clients-logo-item img {
    width: 100%;
    max-width: 120px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.clients-logo-item:hover img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}

.clients-logo-item img.py-3 {
    padding: 0.75rem 0;
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.clients-logo-slider:hover .clients-logo-track {
    animation-play-state: paused;
}

/* About Section Social Media Icons - Simple Black
-------------------------------------------------- */
.about-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-social-link {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(242, 89, 57, 0.1) 0%, rgba(242, 89, 57, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-social-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Why Choose Section - Apply What I Do Card Design
-------------------------------------------------- */
.why-choose .col {
    padding: 1rem;
}

/* Only apply card design to content cards, not header */
.why-choose .row .col article {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.why-choose .row .col article::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(246, 117, 31, 0.1), transparent);
    transition: left 0.6s ease;
}

.why-choose .row .col article:hover::before {
    left: 100%;
}

.why-choose .row .col article:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.why-choose figure {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.why-choose figure i {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: block;
    position: relative;
    z-index: 2;
}

/* Icon background circle */
.why-choose figure::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(246, 117, 31, 0.1), rgba(246, 117, 31, 0.05));
    border-radius: 50%;
    z-index: 1;
}

/* Page Types Section - Modern Redesign
-------------------------------------------------- */
#page-types {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

#page-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23f6751f" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

#page-types .container {
    position: relative;
    z-index: 2;
}

#page-types .card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

#page-types .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(246, 117, 31, 0.1), transparent);
    transition: left 0.6s ease;
}

#page-types .card:hover::before {
    left: 100%;
}

#page-types .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(246, 117, 31, 0.15);
    border-color: var(--primary-color);
}

#page-types .card-body {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

#page-types .card-body span {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

#page-types .card:hover .card-body span {
    transform: scale(1.1);
}

#page-types .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

#page-types .card-text {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Header styling for page-types */
#page-types .text-center h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

#page-types .text-center p {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 300;
}


/* ---------------------------------------------
   Customer Reviews (Modern Slider)
   --------------------------------------------- */
.customer-reviews {
  padding: 80px 0;
  background-color: #ffffff;
}

/* ---------------------------------------------
   Owl Carousel Testimonial Styles (for about page)
   --------------------------------------------- */
.testimonial-carousel {
  padding: 20px 0;
  min-height: 400px;
}

.testimonial-carousel .owl-stage {
  display: flex;
}

.testimonial-item {
  padding: 0 10px;
  display: block;
  width: 100%;
  visibility: visible !important;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  visibility: visible !important;
  display: block !important;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  text-align: left;
}

.quote-icon {
  color: #646464;
  font-size: 2rem;
  margin-bottom: 20px;
}

/* SVG quote icon sizing to match Font Awesome icons */
.quote-icon svg {
  width: 2rem;
  height: 2rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* left align author info */
  gap: 15px;
}

.author-info h5 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}


/* Owl Carousel Navigation */

.owl-nav {
  text-align: center;
  margin-top: 30px;
}

/* Make Owl nav buttons visually match the custom testimonial buttons */
.owl-nav button {
  background: #e7e7e7 !important; /* light grey like .t-btn */
  color: #111827 !important;
  border: none !important;
  width: 44px;
  height: 44px;
  border-radius: 8px !important; /* match .t-btn */
  margin: 0 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08) !important;
  display: inline-grid !important;
  place-items: center !important;
}

.owl-nav button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12) !important;
}

.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db !important;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.owl-dot.active {
  background: var(--primary-color) !important;
  transform: scale(1.2);
}

/* Testimonial pagination spacing and styling */
.testimonial__slider .swiper-pagination {
    margin-top: 2rem;
    position: relative;
    bottom: auto;
}

.testimonial__slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d1d5db;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.testimonial__slider .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(246, 117, 31, 0.4);
}

/* Override dots to match custom testimonial dot colors */
.testimonial-carousel .owl-dots .owl-dot {
  background: #e5e7eb !important; /* light grey */
  width: 10px !important;
  height: 10px !important;
  border-radius: 999px !important;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  background: #111827 !important; /* dark active dot */
  transform: scale(1.15) !important;
}

/* -------------------------------------------------------

    Service pages

----------------------------------------------------------*/

.why-choose figure i{
    font-size: 2.3rem;
    font-weight: 500;
    color: var(--primary-color);

}


/* ---------------------------------------------
   Animation Classes
   --------------------------------------------- */
.animate-fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}

.animate-bounce-in {
  animation: bounceIn 0.6s ease-out;
}

.hover-lift {
  transition: var(--transition-fast);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ---------------------------------------------
   Keyframe Animations
   --------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0; 
    transform: translateY(30px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes bounceIn {
  0% { 
    opacity: 0; 
    transform: scale(0.3); 
  }
  50% { 
    opacity: 1; 
    transform: scale(1.05); 
  }
  70% { 
    transform: scale(0.9); 
  }
  100% { 
    opacity: 1; 
    transform: scale(1); 
  }
}

/* CTA Section - Consistent Design
-------------------------------------------------- */
.section__cta {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.3), transparent);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
    color: var(--text-light);
}

.cta-button:active {
    background: var(--primary-color-dark);
}

.cta-button i {
    font-size: 0.875rem;
    transition: transform 0.2s ease;
}

.cta-button:hover i {
    transform: translateX(3px);
}


/* Contact Page - Consistent Design
-------------------------------------------------- */
.section__contact-hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section__contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.5), rgba(242, 89, 57, 0.3), rgba(242, 89, 57, 0.5), transparent);
}

.section__contact {
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section__contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.3), transparent);
}

/* Contact Form Card */
.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(242, 89, 57, 0.1);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}


.contact-form .form-label {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    font-family: var(--font-primary);
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(242, 89, 57, 0.2);
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(242, 89, 57, 0.1);
    outline: none;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
    justify-content: center;
}

.contact-submit-btn:hover {
    background: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
    color: var(--text-light);
}

.contact-submit-btn i {
    font-size: 0.875rem;
    transition: transform 0.2s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(3px);
}

/* Contact Information */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-section {
    margin-bottom: 1.5rem;
}


.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    margin-bottom: 0;
}

.contact-info-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(242, 89, 57, 0.1), rgba(242, 89, 57, 0.05));
    border-radius: 50%;
    z-index: 1;
}

.contact-info-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    display: block;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-info-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}

.contact-info-subtext {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--text-gray);
}

.contact-info-link {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-link:hover {
    color: var(--primary-color-dark);
}

/* Social Links */
.contact-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-social-link {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(242, 89, 57, 0.1) 0%, rgba(242, 89, 57, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Response Time Card */
.contact-response-card {
    background: linear-gradient(135deg, rgba(242, 89, 57, 0.05) 0%, rgba(242, 89, 57, 0.02) 100%);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(242, 89, 57, 0.1);
}


.contact-response-text {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.contact-response-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-response-list li {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.contact-response-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* FAQ Section */
.section__faq {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section__faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.3), transparent);
}

.faq-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(242, 89, 57, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.faq-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: rgba(242, 89, 57, 0.2);
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-answer {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Form Validation Styles */
.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6 .4.4.4-.4m0 4.8-.4-.4-.4.4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.contact-form .form-control.is-valid,
.contact-form .form-select.is-valid {
    border-color: #198754;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.contact-form .invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

.contact-form .form-control.is-invalid ~ .invalid-feedback,
.contact-form .form-select.is-invalid ~ .invalid-feedback {
    display: block;
}

.contact-form .form-label .text-danger {
    color: var(--primary-color) !important;
}

.recaptcha-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

#formMessage {
    border-radius: 8px;
    padding: 1rem;
}

#formMessage.alert-success {
    background-color: #d1e7dd;
    border-color: #badbcc;
    color: #0f5132;
}

#formMessage.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c2c7;
    color: #842029;
}

.contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Solutions Page - Consistent Design
-------------------------------------------------- */
.section__solutions-hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section__solutions-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.5), rgba(242, 89, 57, 0.3), rgba(242, 89, 57, 0.5), transparent);
}

.section__portfolio-hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section__portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.5), rgba(242, 89, 57, 0.3), rgba(242, 89, 57, 0.5), transparent);
}

.section__about {
    position: relative;
    overflow: hidden;
}

.section__about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.5), rgba(242, 89, 57, 0.3), rgba(242, 89, 57, 0.5), transparent);
}

.section__solutions {
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section__solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.3), transparent);
}

/* Solution Cards */
.solution-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(242, 89, 57, 0.1);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(242, 89, 57, 0.2);
}

.solution-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(242, 89, 57, 0.1), rgba(242, 89, 57, 0.05));
    border-radius: 50%;
    z-index: 1;
}

.solution-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: block;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.solution-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.solution-description {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.solution-features li {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--text-gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Process Section */
.section__process {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section__process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.3), transparent);
}

.process-item {
    text-align: center;
    padding: 1.5rem;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(242, 89, 57, 0.3);
    transition: all 0.3s ease;
}

.process-item:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(242, 89, 57, 0.4);
}

.process-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.process-description {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Benefits Section */
.section__benefits {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section__benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 89, 57, 0.3), transparent);
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(242, 89, 57, 0.1), rgba(242, 89, 57, 0.05));
    border-radius: 50%;
    z-index: 1;
}

.benefit-icon-wrapper i {
    font-size: 1.75rem;
    color: var(--primary-color);
    display: block;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-description {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ---------------------------------------------
   Back to Top Button
   --------------------------------------------- */
.back-to-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: none;
    opacity: 0;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(242, 89, 57, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
}

.back-to-top-btn.show {
    display: flex;
    opacity: 1;
}

.back-to-top-btn:hover {
    background: rgba(242, 89, 57, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(242, 89, 57, 0.4);
}

.back-to-top-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(242, 89, 57, 0.3);
}

.back-to-top-btn i {
    color: #ffffff;
    transition: transform 0.3s ease;
}

.back-to-top-btn:hover i {
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
}