/* 
 * Digital Business Mitra - Custom Stylesheet
 * Brand Guidelines: Primary (#0D6EFD), Secondary (#0A2540), Accent (#00C2A8)
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary-color: #0D6EFD;
  --secondary-color: #0A2540;
  --accent-color: #00C2A8;
  --text-color: #1B1B1B;
  --text-light: #5A6A85;
  --bg-white: #FFFFFF;
  --bg-light: #EEF2F6;
  --bg-light-gradient: linear-gradient(135deg, #E6F0FA 0%, #EEF2F6 45%, #E3F6F4 100%);
  --bs-light: #EEF2F6;
  --bs-light-rgb: 238, 242, 246;
  --bg-gradient: linear-gradient(135deg, #0A2540 0%, #0D6EFD 100%);
  --bg-gradient-accent: linear-gradient(135deg, #0D6EFD 0%, #00C2A8 100%);
  --shadow-soft: 0 10px 30px rgba(10, 37, 64, 0.05);
  --shadow-medium: 0 15px 35px rgba(10, 37, 64, 0.1);
  --shadow-hover: 0 20px 40px rgba(10, 37, 64, 0.15);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* Global resets & typography */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--secondary-color);
  font-weight: 700;
}

p {
  line-height: 1.7;
  color: var(--text-light);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--text-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Text Selection */
::selection {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

/* Button & Link Styles */
.btn-primary-custom {
  background: var(--bg-gradient);
  color: var(--bg-white) !important;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-gradient-accent);
  transition: var(--transition-smooth);
  z-index: -1;
  opacity: 0;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 194, 168, 0.4);
}

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

.btn-outline-custom {
  border: 2px solid var(--primary-color);
  color: var(--primary-color) !important;
  background: transparent;
  padding: 10px 26px;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
}

.btn-outline-custom:hover {
  background: var(--primary-color);
  color: var(--bg-white) !important;
  transform: translateY(-2px);
}

/* Sticky & Glassmorphism Header */
.header-glass {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  transition: var(--transition-smooth);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.header-scrolled {
  background: var(--secondary-color);
  box-shadow: var(--shadow-medium);
  padding: 8px 0;
}

.header-scrolled .navbar-brand,
.header-scrolled .nav-link {
  color: var(--bg-white) !important;
}

.header-scrolled .nav-link:hover,
.header-scrolled .nav-link.active {
  color: var(--accent-color) !important;
}

.navbar-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--secondary-color);
  transition: var(--transition-smooth);
}

.brand-logo-dark {
  display: inline-block;
}

.brand-logo-light {
  display: none;
}

.header-scrolled .brand-logo-dark {
  display: none;
}

.header-scrolled .brand-logo-light {
  display: inline-block;
}

.logo-img {
  height: 42px;
  width: auto;
  transition: var(--transition-smooth);
  vertical-align: middle;
}

.brand-dot {
  color: var(--accent-color);
}

.nav-link {
  font-weight: 500;
  color: var(--secondary-color) !important;
  margin: 0 10px;
  transition: var(--transition-smooth);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.header-scrolled .nav-link::after {
  background-color: var(--accent-color);
}

/* Mobile Navbar Toggle Custom */
.navbar-toggler {
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
}

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

.toggler-icon {
  width: 24px;
  height: 2px;
  background-color: var(--secondary-color);
  display: block;
  transition: var(--transition-smooth);
  position: relative;

}

.header-scrolled .toggler-icon {
  background-color: var(--bg-white);
}

.toggler-icon::before,
.toggler-icon::after {
  content: '';
  width: 24px;
  height: 2px;
  background-color: var(--secondary-color);
  display: block;
  position: absolute;
  transition: var(--transition-smooth);
}

.header-scrolled .toggler-icon::before,
.header-scrolled .toggler-icon::after {
  background-color: var(--bg-white);
}

.toggler-icon::before {
  top: -6px;
}

.toggler-icon::after {
  bottom: -6px;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon {
  background-color: transparent !important;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Section Spacing & Headings */
section {
  padding: 90px 0;
}

.bg-light-custom {
  background: var(--bg-light-gradient);
}

.bg-light {
  background-color: var(--bg-light) !important;
}

section.bg-light-custom {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(10, 37, 64, 0.06);
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
}

section.bg-light-custom::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.15) 0%, rgba(13, 110, 253, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

section.bg-light-custom::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40%;
  height: 55%;
  background: radial-gradient(circle, rgba(0, 194, 168, 0.15) 0%, rgba(0, 194, 168, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

section.bg-light-custom > * {
  position: relative;
  z-index: 2;
}

.section-tag {
  color: var(--accent-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: inline-block;
  background: rgba(0, 194, 168, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 50px auto;
}

/* Hero Section */
.hero-section {
  padding: 180px 0 120px 0;
  background: linear-gradient(135deg, #E6F0FA 0%, #EEF2F6 45%, #E3F6F4 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.hero-shape-1 {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.18) 0%, rgba(13, 110, 253, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-shape-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40%;
  height: 55%;
  background: radial-gradient(circle, rgba(0, 194, 168, 0.18) 0%, rgba(0, 194, 168, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

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

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-title span {
  background: var(--bg-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

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

.hero-image-card {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
}

.hero-image-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.hero-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius-md);
  padding: 15px 20px;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.hero-badge-1 {
  bottom: 30px;
  left: -30px;
  animation: float-badge 6s ease-in-out infinite;
}

.hero-badge-2 {
  top: 30px;
  right: -30px;
  animation: float-badge 6s ease-in-out infinite 3s;
}

.hero-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.hero-badge-2 .hero-badge-icon {
  background: rgba(0, 194, 168, 0.1);
  color: var(--accent-color);
}

@keyframes float-badge {

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

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

/* Service Highlights Section */
.service-card {
  background: var(--bg-white);
  border: 1px solid rgba(10, 37, 64, 0.05);
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--bg-gradient);
  transition: var(--transition-smooth);
  opacity: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(13, 110, 253, 0.1);
}

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

.service-icon-box {
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius-sm);
  background: rgba(13, 110, 253, 0.06);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
  background: var(--bg-gradient);
  color: var(--bg-white);
  transform: scale(1.05);
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 25px;
}

.service-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.925rem;
  color: var(--text-light);
}

.service-list li::before {
  content: '\F633';
  /* Bootstrap Icon check-circle fill */
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent-color);
}

.service-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

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

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

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

/* Why Choose Us Section */
.choose-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 30px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--accent-color);
  transition: var(--transition-smooth);
}

.choose-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-medium);
  border-left-color: var(--primary-color);
}

.choose-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 194, 168, 0.08);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.choose-card:hover .choose-icon {
  background: var(--accent-color);
  color: var(--bg-white);
}

.choose-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Mission Highlight Section */
.mission-box {
  background: var(--bg-gradient);
  border-radius: var(--border-radius-lg);
  padding: 60px 40px;
  color: var(--bg-white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.mission-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 75%);
  pointer-events: none;
}

.mission-box h2,
.mission-box p {
  color: var(--bg-white) !important;
}

/* Process Timeline Section */
.process-wrapper {
  position: relative;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(13, 110, 253, 0.1);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.process-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 4px solid rgba(13, 110, 253, 0.1);
  color: var(--secondary-color);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.process-step:hover .process-number {
  background: var(--bg-gradient);
  color: var(--bg-white);
  border-color: var(--accent-color);
  transform: scale(1.1);
}

.process-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Statistics Counter Section */
.stats-section {
  background: var(--secondary-color);
  color: var(--bg-white);
  padding: 70px 0;
  position: relative;
}

.stats-card {
  text-align: center;
}

.stats-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--bg-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
  display: block;
}

.stats-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Featured / Showcase Banner CSS */
.featured-box {
  background: var(--bg-light-gradient);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  border: 1px solid rgba(10, 37, 64, 0.06);
  position: relative;
  overflow: hidden;
}

.featured-box::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.12) 0%, rgba(13, 110, 253, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.featured-box::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 40%;
  height: 70%;
  background: radial-gradient(circle, rgba(0, 194, 168, 0.12) 0%, rgba(0, 194, 168, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.featured-box > * {
  position: relative;
  z-index: 2;
}

.showcase-tag {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}

/* Testimonials Carousel Styling */
.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  margin: 15px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3.5rem;
  color: rgba(13, 110, 253, 0.08);
  line-height: 1;
}

.stars {
  color: #FFC107;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 25px;
}

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

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

.client-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.client-designation {
  font-size: 0.85rem;
  color: var(--text-light);
}

.carousel-indicators [data-bs-target] {
  background-color: var(--primary-color);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  opacity: 0.4;
  margin: 0 5px;
  transition: var(--transition-smooth);
}

.carousel-indicators .active {
  opacity: 1;
  width: 28px;
  border-radius: 10px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 46px;
  height: 46px;
  background-color: var(--bg-white);
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.95;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
  color: var(--primary-color);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-next {
  right: -20px;
}

@media (max-width: 991.98px) {
  .carousel-control-prev {
    left: 5px;
  }
  .carousel-control-next {
    right: 5px;
  }
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--bg-gradient);
  color: var(--bg-white);
  opacity: 1;
  border-color: transparent;
  box-shadow: var(--shadow-hover);
}

/* FAQ Accordion Styling */
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: var(--border-radius-sm) !important;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.accordion-item:hover {
  box-shadow: var(--shadow-medium);
}

.accordion-button {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--secondary-color);
  padding: 20px 25px;
  box-shadow: none !important;
  transition: var(--transition-smooth);
}

.accordion-button:not(.collapsed) {
  background-color: rgba(13, 110, 253, 0.04);
  color: var(--primary-color);
}

.accordion-button::after {
  background-size: 1rem;
  transition: var(--transition-smooth);
}

.accordion-body {
  padding: 20px 25px;
  color: var(--text-light);
  line-height: 1.7;
}

/* CTA Banner Section */
.cta-banner {
  background: var(--bg-gradient);
  color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.cta-banner-shape {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(0, 194, 168, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner-shape-2 {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: rgba(13, 110, 253, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--bg-white);
  font-size: 2.25rem;
  font-weight: 700;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
}

.cta-contact-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-link-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
  padding: 12px 25px;
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.cta-link-btn:hover {
  background: var(--bg-white);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.cta-link-btn-accent {
  background: var(--accent-color);
  border: none;
  color: var(--secondary-color);
}

.cta-link-btn-accent:hover {
  background: var(--bg-white);
  color: var(--accent-color);
}

/* Footer Styling */
.footer-main {
  background-color: var(--secondary-color);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--bg-white) !important;
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: block;
}

.footer-text {
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-title {
  color: var(--bg-white);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
  display: inline-block;
}

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

.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-contact-icon {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.social-icon:hover {
  background: var(--accent-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Animations and Responsive Optimizations */
@media (max-width: 991.98px) {
  section {
    padding: 70px 0;
  }

  .hero-section {
    padding: 130px 0 80px 0;
    text-align: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-badge {
    padding: 10px 15px;
  }

  .hero-badge-1 {
    left: 10px;
    bottom: 10px;
  }

  .hero-badge-2 {
    right: 10px;
    top: 10px;
  }

  .process-line {
    display: none;
  }

  .process-step {
    margin-bottom: 40px;
  }

  .process-step:last-child {
    margin-bottom: 0;
  }

  .cta-banner {
    padding: 40px 25px;
  }

  .cta-contact-links {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-badge {
    display: none;
    /* Hide floating badges on extra small mobile screens for optimal spacing */
  }

  .logo-img {
    height: 36px;
  }
}

/* Projects Filter Tabs styling */
.nav-pills-custom {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-pills-custom .nav-link {
  color: var(--secondary-color);
  background-color: var(--bg-white);
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(10, 37, 64, 0.08);
  padding: 10px 22px;
}

.nav-pills-custom .nav-link:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

.nav-pills-custom .nav-link.active {
  background: var(--bg-gradient);
  color: var(--bg-white) !important;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
}

/* Project Card layout */
.project-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(10, 37, 64, 0.05);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  overflow: hidden;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(13, 110, 253, 0.1);
}

.project-thumbnail-wrapper {
  position: relative;
  overflow: hidden;
  background-color: var(--secondary-color);
}

.project-thumbnail {
  transition: var(--transition-smooth);
  opacity: 0.95;
}

.project-card:hover .project-thumbnail {
  transform: scale(1.05);
  opacity: 0.85;
}

.project-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: var(--shadow-soft);
}

.project-card-body {
  padding: 25px;
}

.project-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.project-card-text {
  font-size: 0.925rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Animations for filter filtering */
.project-item {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

/* Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 10px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  outline: none;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top-btn:hover {
  background: var(--secondary-color);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(10, 37, 64, 0.3);
}

.back-to-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 90px;
  right: 10px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float-btn:hover {
  background: #128C7E;
  color: #ffffff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}