:root {
  --primary-color: #cc1017;
  --secondary-color: #1a232a;
}

/* Global Styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--secondary-color);
}

/* Navigation */
.navbar {
  background-color: var(--secondary-color);
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: bold;
  color: white !important;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: color 0.3s ease;
}

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

.dropdown-menu {
  background-color: var(--secondary-color);
  border: 1px solid var(--primary-color);
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.8) !important;
}

.dropdown-item:hover {
  background-color: var(--primary-color);
  color: white !important;
}

.dropdown-item.active {
  background-color: var(--primary-color);
  color: white !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #a30d13;
  border-color: #a30d13;
}

.btn-primary:focus {
  background-color: #a30d13;
  border-color: #a30d13;
}

.btn-primary:active {
  background-color: #a30d13 !important;
  border-color: #a30d13 !important;
}

.btn-primary::after {
  background-color: #a30d13;
  border-color: #a30d13;
}

.steps {
  color: var(--primary-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

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

/* Contact Page Specific Styles */
.contact-icon i {
  color: var(--primary-color);
}

.card-title.text-primary {
  color: var(--primary-color) !important;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(204, 16, 23, 0.25);
}

/* Carousel */
.carousel {
  /* margin-bottom: 2rem; */
  position: relative;
  background-image: url("../assets/back1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.carousel-item {
  height: 500px;
  position: relative;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(248, 249, 250, 0.99) 0%, rgba(248, 249, 250, 0.5) 70%);
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 80%;
  z-index: 1;
}

.carousel-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1a232a;
}

/* Services Section */
.services-section {
  background-color: #f8f9fa;
  padding: 4rem 0;
}

.service-icon {
  margin-bottom: 1.5rem;
}

.service-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.card:hover .service-logo {
  transform: scale(1.1);
}

.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  height: 400px;
  border: 2px solid #fff;
}

.card:hover {
  /* box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); */
  /* border: 2px solid var(--primary-color); */
}

.card-title {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Page Title Background */
.page-title-bg {
  background-image: url("../assets/back.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 4rem 0;
  color: white;
}

.page-title-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, 0.2); */
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.5) 35%);
}

.page-title-content {
  position: relative;
  z-index: 1;
}

.page-title-content h1,
.page-title-content h2,
.page-title-content h3,
.page-title-content h4,
.page-title-content h5,
.page-title-content h6 {
  color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: white;
}

.footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .carousel-item {
    height: 400px;
  }

  .carousel-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 300px;
  }

  .carousel-content h2 {
    font-size: 1.5rem;
  }
}

/* Blog Post Styles */
.blog-post-header {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.blog-post-meta {
  font-size: 0.9rem;
}

.blog-post-title {
  font-size: 2.5rem;
  color: var(--secondary-color);
}

.blog-post-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-post-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.blog-post-content h2 {
  color: var(--secondary-color);
  margin: 2rem 0 1rem;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-post-content li {
  margin-bottom: 0.5rem;
}

.share-buttons {
  border-top: 1px solid #dee2e6;
  padding-top: 2rem;
}

.related-posts {
  border-top: 1px solid #dee2e6;
  padding-top: 2rem;
}

.related-posts .card {
  transition: transform 0.3s ease;
}

.related-posts .card:hover {}

.related-posts .card-img-top {
  height: 210px;
  object-fit: cover;
}

/* Blog Card Styles */
.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card-text {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.card-footer {
  background-color: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.diy-hero-card {
  background: linear-gradient(135deg, #c70000 0%, #630303 100%);
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  height: 220px;
}

.diy-hero-card {
  transform: translateY(-5px);
}

.diy-hero-card .card-body {
  padding: 3rem;
  background: none;
  
}

.diy-hero-card .card-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.diy-hero-card .card-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.diy-hero-card .btn-primary {
  background: #ffffff;
  color: #2c3e50;
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.related-posts .card {
  height: 100%;
}

.provisioning-table th {
  background: #c70000;
}

/* Enhanced Pricing Page Styles */
.pricing-section {
  /* background: linear-gradient(0deg, #f8f9fa 0%, #e9ecef 100%); */
  padding: 4rem 0;
}

.pricing-intro {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--primary-color);
}

.pricing-intro h5 {
  color: var(--secondary-color);
  font-weight: 500;
  line-height: 1.8;
  margin: 0;
}

.pricing-category {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  /* border-top: 4px solid var(--primary-color); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-category:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-category h2 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.pricing-category h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #ff6b6b);
  border-radius: 2px;
}

/* Enhanced Table Styles */
.pricing-table {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: none;
  width: 100%;
  table-layout: fixed;
}

.pricing-table thead th {
  background: linear-gradient(135deg, var(--primary-color) 0%, #a30d13 100%);
  color: white;
  font-weight: 600;
  text-align: center;
  padding: 1.2rem 0.75rem;
  border: none;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 25%;
}

.pricing-table thead th:first-child {
  width: 25%;
  text-align: left;
  padding-left: 25px;
}

.pricing-table tbody tr {
  transition: all 0.3s ease;
  height: 70px;
}

.pricing-table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

.pricing-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.pricing-table tbody tr:hover {
  background-color: #e3f2fd;
  transform: scale(1.01);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-table tbody td {
  padding: 1rem 0.75rem;
  text-align: center;
  border: none;
  font-weight: 500;
  vertical-align: middle;
  width: 25%;
  height: 70px;
}

.pricing-table tbody td:first-child {
  font-weight: 600;
  color: var(--secondary-color);
  text-align: left;
  background: linear-gradient(90deg, rgba(204, 16, 23, 0.1), transparent);
  /* border-left: 3px solid var(--primary-color); */
  width: 25%;
  padding-left: 25px;
}

.pricing-table tbody td:not(:first-child) {
  color: #495057;
  font-size: 1.1rem;
  width: 25%;
}

/* Price Styling */
.price-value {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.price-currency {
  color: var(--primary-color);
  font-weight: 600;
}

/* Revenue Share Section */
.revenue-share-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.revenue-share-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  /* background: linear-gradient(90deg, var(--primary-color), #ff6b6b, #2c3e50, var(--primary-color)); */
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.revenue-share-section h3 {
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.revenue-share-section .lead {
  color: var(--secondary-color);
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
}

/* Feature Icons */
.feature-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: white;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Responsive Pricing */
@media (max-width: 768px) {
  .pricing-category {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .pricing-table {
    table-layout: fixed;
    width: 100%;
  }

  .pricing-table thead th {
    font-size: 0.9rem;
    padding: 1rem 0.5rem;
    width: 25%;
  }

  .pricing-table thead th:first-child {
    width: 25%;
    text-align: left;
  }

  .pricing-table tbody td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
    width: 25%;
    height: 60px;
  }

  .pricing-table tbody td:first-child {
    font-size: 0.85rem;
    padding-left: 20px;
    width: 25%;
  }

  .pricing-table tbody tr {
    height: 60px;
  }

  .revenue-share-section {
    padding: 2rem 1.5rem;
  }

  .revenue-share-section h3 {
    font-size: 1.5rem;
  }
}

/* Animation for table rows */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-table tbody tr {
  animation: fadeInUp 0.6s ease forwards;
}

.pricing-table tbody tr:nth-child(1) {
  animation-delay: 0.1s;
}

.pricing-table tbody tr:nth-child(2) {
  animation-delay: 0.2s;
}

.pricing-table tbody tr:nth-child(3) {
  animation-delay: 0.3s;
}

.pricing-table tbody tr:nth-child(4) {
  animation-delay: 0.4s;
}

/* Ready Start Banner Section */
.ready-start-banner {
  background-color: #f8f9fa;
  padding: 3rem 0;
}

.ready-start-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, #a30d13 100%);
  border-radius: 15px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ready-start-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.ready-start-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

.ready-start-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.ready-start-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.ready-start-btn {
  background: white;
  color: var(--secondary-color);
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ready-start-btn:hover {
  background: #f8f9fa;
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.ready-start-btn:active {
  transform: translateY(0);
}

/* Responsive Ready Start Banner */
@media (max-width: 768px) {
  .ready-start-card {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .ready-start-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .ready-start-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .ready-start-btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

.carousel-indicators .active {
  background: red;
}

.carousel-indicators {
  height: 2px;
}

.carousel-indicators [data-bs-target] {
  height: 2px !important;
}

.carousel-indicators button {
  background: red !important;
  height: 0px !important;
  padding: 1px !important;
  border-radius: 50px;
  max-height: 2px;
  max-width: 10px;
}

/* Carousel Control Buttons */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(204, 16, 23, 0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--primary-color);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 24 24'%3e%3cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 24 24'%3e%3cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3e%3c/svg%3e");
}

.page-title-content p {
  color: #1a232a;
}

.revenue-share-section .lead2 {
  color: #fff;
}

.bg-light2 {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255 0.5) 80%) !important;
}

/* Service Cards - White Minimalistic Design */
.service-card-white {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.service-card-white .card-body {
  padding: 2rem;
  color: var(--secondary-color);
}

.service-card-white .card-icon {
  text-align: center;
  margin-bottom: 1.5rem;
}

.service-card-white .card-icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color), #e74c3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card-white .card-title {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-align: center;
}

.service-card-white .card-text {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1.5rem;
}

.service-card-white .btn-primary {
  width: 100%;
  border-radius: 8px;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.service-card-white .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(204, 16, 23, 0.3);
}

a{
  text-decoration: none;
}
.card{
  height: 100%;
}

/* App Selection Cards Hover Effects */
.hover-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

.hover-card:hover .card-body {
  background-color: #f8f9fa;
}

.hover-card:hover i {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* App Selection Cards Container */
.card-header.bg-primary {
  background: linear-gradient(135deg, var(--primary-color), #e74c3c) !important;
  border-bottom: none;
}

.card-header.bg-primary h5 {
  font-weight: 600;
  letter-spacing: 0.5px;
}