:root {
  --primary-color: #667eea;
  --darkpurple: #2a1458;
  --secondary-color: #764ba2;
  --accent-color: #4c1d95;
  --accent-secondary: #5b21b6;
  --light-gray: #f3f4f6;
  --dark-gray: #333;
  --text-gray: #666;
  --badge-color1: linear-gradient(45deg, #6962ad, #e19898);
  --badge-color2: linear-gradient(45deg, #d91656, #640d5f);
  --badge-color3: linear-gradient(135deg, #d7c3f1 0%, #0d7c66 100%);
  --hero-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --facebook-blue: #1877f2;
}

/* Typography */
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

/* Our Service Section */
.our-service {
  background: white;
  position: relative;
  overflow: hidden;
}

.our-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(99, 102, 241, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.service-illustration {
  position: relative;
  z-index: 2;
}

.illustration-container {
  position: relative;
  margin-bottom: 2rem;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.illustration-bg {
  position: relative;
  width: 400px;
  height: 250px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

/* Person Illustration */
.person-illustration {
  position: absolute;
  left: 50px;
  top: 50px;
  z-index: 3;
}

.person-head {
  width: 40px;
  height: 40px;
  background: #fbbf24;
  border-radius: 50%;
  position: relative;
  margin-bottom: 5px;
}

.person-hair {
  position: absolute;
  top: -10px;
  left: 5px;
  width: 30px;
  height: 25px;
  background: #92400e;
  border-radius: 50% 50% 0 0;
}

.person-body {
  width: 60px;
  height: 80px;
  background: #ef4444;
  border-radius: 10px 10px 0 0;
  position: relative;
}

.microphone {
  position: absolute;
  right: -15px;
  top: 20px;
  width: 8px;
  height: 20px;
  background: #374151;
  border-radius: 4px;
}

.microphone::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -2px;
  width: 12px;
  height: 12px;
  background: #6b7280;
  border-radius: 50%;
}

/* Laptop */
.laptop {
  position: absolute;
  right: 80px;
  bottom: 40px;
  width: 80px;
  height: 50px;
  background: #374151;
  border-radius: 5px;
  z-index: 2;
}

.laptop::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 15px;
  background: #1f2937;
  border-radius: 2px;
}

.laptop::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: -10px;
  right: -10px;
  height: 8px;
  background: #4b5563;
  border-radius: 0 0 10px 10px;
}

/* Decorative Plants */
.decorative-plants {
  position: absolute;
  right: 20px;
  top: 30px;
  z-index: 1;
}

.plant {
  position: absolute;
  background: #6366f1;
  border-radius: 50%;
}

.plant-1 {
  width: 12px;
  height: 20px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: rotate(-15deg);
}

.plant-2 {
  width: 8px;
  height: 15px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  left: 15px;
  top: 10px;
  transform: rotate(10deg);
}

.plant-3 {
  width: 10px;
  height: 18px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  left: 8px;
  top: 25px;
  transform: rotate(-5deg);
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.service-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(99, 102, 241, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.service-content p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.service-intro h2 {
  color: #1e293b;
  position: relative;
}

.service-intro h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .illustration-container {
    height: 200px;
  }

  .illustration-bg {
    width: 300px;
    height: 180px;
  }

  .service-card {
    padding: 1.5rem 1rem;
  }
}

/* Navbar Customization */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand h1 {
  color: var(--primary-color);
  font-weight: 700;
}

/* Mega Dropdown Menu */
.mega-dropdown {
  position: static !important;
}

.mega-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  border: none;
}

.hosting-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding-right: 30px;
  border-right: 1px solid #eee;
}

.hosting-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-decoration: none;
  color: #333;
}

.hosting-icon {
  color: #666;
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.hosting-content h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.hosting-content p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #666;
}

.promo-section {
  text-align: center;
  padding: 0 20px;
}

.promo-section h3 {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
}

.promo-price {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin: 10px 0 5px;
}

.promo-price span {
  font-size: 16px;
}

.original-price {
  text-decoration: line-through;
  color: #666;
  font-size: 14px;
}

.discount-badge {
  display: inline-block;
  padding: 3px 10px;
  background: #10b981;
  color: white;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  margin: 10px 0;
}

.purchase-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #1a2234;
  color: white !important;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .hosting-options {
    grid-template-columns: 1fr;
    padding-right: 0;
    border-right: none;
    margin-bottom: 20px;
  }
}

/* Hero Section */
/* Hero Section Styles */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-item {
  height: 100vh;
}

.hero-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.carousel-indicators {
  z-index: 2;
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 2;
}

/* Ensure content stays on top of carousel */
.hero-section .container {
  position: relative;
  z-index: 3;
}

/* Make carousel indicators more visible */
.carousel-indicators [data-bs-target] {
  background-color: #fff;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 6px;
}

/* Style carousel control buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 1.5rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/pexels88.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.8);
  z-index: 0;
}

.hero-section .container {
  z-index: 1;
}

/* Remove text shadow and update text styles */
.text-white {
  text-shadow: none; /* Remove shadow effect */
}

.hero-section h1 {
  font-weight: 900; /* Make heading bolder */
  letter-spacing: -0.02em; /* Slight letter spacing adjustment for better readability */
}

.hero-section .lead {
  font-weight: 500; /* Make paragraph text slightly bolder */
}

.domain-search {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

/* Adjust button colors for better visibility */
.hero-section .btn-primary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  border: none;
  color: white;
  font-weight: 600;
}

.hero-section .btn-primary:hover {
  background: linear-gradient(45deg, #764ba2, #5a67d8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Remove the previous hero-image styles since we're using background image now */
.domain-search {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes footerGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(118, 75, 162, 0.5);
  }
}

.hero-section .row {
  animation: fadeIn 1s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding-top: 5rem;
  }

  .domain-search {
    padding: 1.5rem !important;
  }
}

/* NIRA Accreditation Section */
.nira-accreditation {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
  position: relative;
  overflow: hidden;
}

.nira-accreditation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(102, 126, 234, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(118, 75, 162, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.nira-content {
  position: relative;
  z-index: 2;
}

.nira-badge {
  display: inline-block;
  margin-bottom: 1rem;
}

.nira-badge .badge-text {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.nira-badge .badge-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.nira-badge:hover .badge-text::before {
  left: 100%;
}

.text-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.nira-features .feature-item {
  transition: all 0.3s ease;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.nira-features .feature-item:hover {
  background: rgba(102, 126, 234, 0.05);
  transform: translateX(10px);
}

.nira-features .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.nira-features .feature-icon i {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nira-visual {
  position: relative;
  z-index: 2;
}

.nira-logo-container {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.nira-logo {
  max-width: 300px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  background: white;
  padding: 2rem;
}

.nira-logo:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.accreditation-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-width: 120px;
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.trust-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: 0.875rem;
  color: var(--text-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nira-cta .btn {
  transition: all 0.3s ease;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nira-cta .btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.nira-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.nira-cta .btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.nira-cta .btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nira-accreditation {
    text-align: center;
  }

  .nira-features .feature-item:hover {
    transform: translateY(-5px);
  }

  .trust-indicators {
    gap: 1rem;
  }

  .trust-item {
    min-width: 100px;
  }

  .nira-cta .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .nira-logo {
    max-width: 250px;
    padding: 1.5rem;
  }
}

/* Marketing Features Section */
.marketing-features {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
  position: relative;
  overflow: hidden;
}

/* Background pattern overlay */
.marketing-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(191, 161, 0, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(191, 161, 0, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Container positioning */
.marketing-features .container {
  position: relative;
  z-index: 2;
}

/* Section title enhancement */
.marketing-features h2 {
  background: linear-gradient(135deg, #2c3e50, #34495e, #bfa100);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
}

.marketing-features h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #bfa100, transparent);
  border-radius: 2px;
}

/* Featured image container */
.marketing-features .text-center.mb-5 {
  position: relative;
  margin-bottom: 4rem !important;
}

/* Image enhancements */
.marketing-features img {
  max-width: 100%;
  transition: all 0.4s ease;
  border-radius: 20px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.marketing-features img:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Feature cards grid */
.marketing-features .row {
  margin-top: 3rem;
}

/* Feature card styling */
.feature-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #bfa100, #d4af37, #bfa100);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(191, 161, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(191, 161, 0, 0.1);
}

/* Feature card titles */
.feature-card h3 {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: #bfa100;
}

/* Feature card text */
.feature-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #6c757d;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.feature-card:hover p {
  color: #495057;
}

/* CTA Button styling */
.marketing-features .btn-dark {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  border: none;
  border-radius: 50px;
  padding: 1rem 3rem;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

.marketing-features .btn-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.marketing-features .btn-dark:hover::before {
  left: 100%;
}

.marketing-features .btn-dark:hover {
  background: linear-gradient(135deg, #bfa100, #d4af37);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(191, 161, 0, 0.4);
  color: #2c3e50;
}

.btn-dark {
  background-color: var(--dark-gray);
  border: none;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animation on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card {
  animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Responsive enhancements */
@media (max-width: 768px) {
  .marketing-features {
    padding: 3rem 0;
  }

  .marketing-features h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  .marketing-features .btn-dark {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .marketing-features img {
    border-radius: 15px !important;
  }
}

@media (max-width: 576px) {
  .marketing-features h2 {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 1.25rem;
  }

  .feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .feature-card p {
    font-size: 0.95rem;
  }
}

.hero-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image:hover {
  transform: scale(1.02);
}

/* Get Started Section - Modern Pricing Cards */
.get-started-section {
  background: white;
  position: relative;
  overflow: hidden;
}

.get-started-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(102, 126, 234, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(118, 75, 162, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.get-started-section .container {
  position: relative;
  z-index: 1;
}

.section-header h2 {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-header .lead {
  color: #64748b;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

/* Modern Pricing Cards */
.pricing-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2, #4c1d95);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

/* Featured Plan Enhancement */
.featured-plan {
  transform: scale(1.05);
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05),
    rgba(255, 255, 255, 0.95)
  );
  border: 2px solid rgba(102, 126, 234, 0.2);
}

.featured-plan:hover {
  transform: translateY(-12px) scale(1.07);
}

/* Modern Pricing Badges */
.pricing-badge {
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.badge-color1 {
  background: var(--badge-color1);
  animation: pulse 2s infinite;
}

.badge-color2 {
  background: var(--badge-color2);
  animation: pulse 2s infinite 0.5s;
}

.badge-color3 {
  background: var(--badge-color3);
  animation: pulse 2s infinite 1s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Pricing Header Styling */
.pricing-header h3 {
  color: #1e293b;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Modern Price Tag */
.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 1.5rem 0;
}

.price-tag .currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3b82f6;
  margin-right: 4px;
}

.price-tag .amount {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-tag .period {
  font-size: 1rem;
  font-weight: 500;
  color: #64748b;
  margin-left: 4px;
}

/* Enhanced Feature List */
.pricing-features ul {
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  transition: all 0.3s ease;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li:hover {
  background: rgba(102, 126, 234, 0.05);
  padding-left: 0.5rem;
  border-radius: 8px;
}

.pricing-features li span {
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
}

.highlight-feature {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1),
    rgba(118, 75, 162, 0.1)
  );
  border-radius: 8px;
  padding: 0.75rem 1rem !important;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.highlight-feature span {
  color: #179bae !important;
}

/* Modern Buttons */
.pricing-footer .btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pricing-footer .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.pricing-footer .btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  border: none;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(45deg, #764ba2, #471396);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-outline-primary {
  border: 2px solid #b13bff;
  color: #b13bff;
  background: transparent;
}

.btn-outline-primary:hover {
  background: #2a1458;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .pricing-card {
    margin-bottom: 2rem;
  }

  .featured-plan {
    transform: none;
    margin-top: 0;
  }

  .price-tag .amount {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

/* Animation for cards on scroll */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-card {
  animation: slideInUp 0.6s ease-out;
}

.pricing-card:nth-child(2) {
  animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
  animation-delay: 0.4s;
}

/* Enhanced Why Choose Us Section */
.why-choose-us {
  background: #c0c9ee;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.why-choose-us::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: 
        linear-gradient(45deg, rgba(102, 126, 234, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(118, 75, 162, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(76, 29, 149, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(118, 75, 162, 0.03) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.4; */
  z-index: 0;
}

.why-choose-us .container {
  position: relative;
  z-index: 2;
}

/* Enhanced Section Title */
.section-title {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #4c1d95 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease-out;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
  animation: slideInScale 1s ease-out 0.5s both;
}

@keyframes slideInScale {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}

.why-choose-us .lead {
  color: #475569;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.7;
  text-shadow: none;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Modern Feature Boxes */
.feature-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  animation: slideInUp 0.8s ease-out;
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2, #4c1d95, #5b21b6);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-box:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(102, 126, 234, 0.2);
}

.feature-box:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-box:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-box:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-box:nth-child(4) {
  animation-delay: 0.4s;
}

/* Enhanced Icon Wrapper */
.icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.4s ease;
}

.icon-wrapper::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #667eea, #764ba2, #4c1d95, #5b21b6);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-box:hover .icon-wrapper::before {
  opacity: 1;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.feature-box:nth-child(1) .icon-wrapper {
  background: linear-gradient(135deg, #4c1d95, #5b21b6);
  box-shadow: 0 8px 25px rgba(76, 29, 149, 0.3);
}

.feature-box:nth-child(2) .icon-wrapper {
  background: linear-gradient(135deg, #667eea, #764ba2);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.feature-box:nth-child(3) .icon-wrapper {
  background: linear-gradient(135deg, #764ba2, #667eea);
  box-shadow: 0 8px 25px rgba(118, 75, 162, 0.3);
}

.feature-box:nth-child(4) .icon-wrapper {
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  box-shadow: 0 8px 25px rgba(30, 27, 75, 0.3);
}

.icon-wrapper i {
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-box:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.feature-box:hover .icon-wrapper i {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Enhanced Typography */
.feature-box h3 {
  color: #1e293b;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.feature-box:hover h3 {
  color: #3b82f6;
}

.feature-box p {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
  font-weight: 400;
  transition: color 0.3s ease;
}

.feature-box:hover p {
  color: #475569;
}

/* Enhanced Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .why-choose-us {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }

  .section-title::after {
    width: 60px;
  }

  .why-choose-us .lead {
    font-size: 1rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }

  .feature-box {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
  }

  .icon-wrapper i {
    font-size: 1.75rem;
  }

  .feature-box h3 {
    font-size: 1.25rem;
  }

  .feature-box p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .feature-box {
    padding: 1.5rem;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .icon-wrapper i {
    font-size: 1.5rem;
  }
}

/* Hover Effects for Row */
.why-choose-us .row:hover .feature-box:not(:hover) {
  opacity: 0.7;
  transform: scale(0.98);
}

/* ... existing code ... */

/* Enhanced Footer Styles */
footer {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--darkpurple) 25%,
    var(--accent-color) 50%,
    var(--accent-secondary) 75%,
    #2d1b69 100%
  );
  position: relative;
  overflow: hidden;
  box-shadow: 0 -10px 30px rgba(76, 29, 149, 0.3);
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 15% 15%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 85%,
      rgba(139, 92, 246, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(99, 102, 241, 0.1) 0%,
      transparent 60%
    ),
    linear-gradient(
      45deg,
      transparent 20%,
      rgba(255, 255, 255, 0.05) 50%,
      transparent 80%
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.02) 2px,
      rgba(255, 255, 255, 0.02) 4px
    );
  pointer-events: none;
  animation: footerShimmer 8s ease-in-out infinite;
}

@keyframes footerShimmer {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

footer .container {
  position: relative;
  z-index: 1;
}

footer h3 {
  color: #ffffff !important;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

footer p {
  color: #e2e8f0 !important;
  line-height: 1.6;
}

footer .list-unstyled li {
  margin-bottom: 0.5rem;
}

footer .list-unstyled a {
  color: #cbd5e1 !important;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

footer .list-unstyled a:hover {
  color: #ffffff !important;
  transform: translateX(5px);
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

footer .contact-list a {
  padding: 0.5rem 0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

footer .contact-list a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 1rem;
  backdrop-filter: blur(10px);
}

footer .fab,
footer .fas {
  color: #ffffff !important;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

footer .fab:hover,
footer .fas:hover {
  transform: scale(1.2) rotate(5deg);
  animation: footerGlow 2s infinite;
}

footer .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

footer .social-links a {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(139, 92, 246, 0.2) 50%,
    rgba(99, 102, 241, 0.1) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(76, 29, 149, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

footer .social-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

footer .social-links a:hover::before {
  left: 100%;
}

footer .social-links a:hover {
  transform: translateY(-3px) scale(1.1);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(139, 92, 246, 0.4) 50%,
    rgba(99, 102, 241, 0.3) 100%
  );
  box-shadow: 0 8px 25px rgba(76, 29, 149, 0.5),
    0 4px 15px rgba(139, 92, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}

footer .social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer background pattern */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(191, 161, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(191, 161, 0, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Footer container */
footer .container {
  position: relative;
  z-index: 2;
}

/* Footer links */
footer .list-unstyled {
  padding-left: 0;
}

footer .list-unstyled li {
  margin-bottom: 0.75rem;
  transition: transform 0.2s ease;
}

footer .list-unstyled li:hover {
  transform: translateX(5px);
}

footer .list-unstyled a {
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  position: relative;
}

footer .list-unstyled a:hover {
  color: #ffead8 !important;
  text-shadow: 0 0 8px rgba(191, 161, 0, 0.3);
}

footer .list-unstyled a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c0c9ee;
  transition: width 0.3s ease;
}

footer .list-unstyled a:hover::before {
  width: 100%;
}

/* Contact list specific styling */
footer .contact-list li {
  margin-bottom: 1rem;
}

footer .contact-list i {
  color: #ffead8;
  margin-right: 0.75rem;
  width: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

footer .contact-list a:hover i {
  transform: scale(1.1);
  text-shadow: 0 0 8px rgba(191, 161, 0, 0.5);
}

/* Social media icons */
footer .contact-list li:last-child {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .contact-list li:last-child a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 0.75rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* footer .contact-list li:last-child a:hover {
    background: rgba(191, 161, 0, 0.2);
    border-color: #BFA100;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(191, 161, 0, 0.3);
} */

footer .contact-list li:last-child a i {
  margin: 0;
  font-size: 1.1rem;
}

/* Footer columns */
footer .row > div {
  margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  footer {
    padding: 3rem 0 1.5rem;
  }

  footer h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  footer p,
  footer .list-unstyled a {
    font-size: 0.9rem;
  }

  footer .contact-list li:last-child a {
    width: 35px;
    height: 35px;
    margin-right: 0.5rem;
  }

  footer .contact-list li:last-child a i {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  footer {
    padding: 2.5rem 0 1rem;
  }

  footer .row > div {
    margin-bottom: 1.5rem;
    text-align: center;
  }

  footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  footer .list-unstyled li:hover {
    transform: none;
  }
}
