/* Main Colors */
:root {
--primary-color: #dc3545;
--secondary-color: #6c757d;
--text-color: #333333;
--light-color: #f8f9fa;
--border-color: #dee2e6;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: var(--text-color);
line-height: 1.6;
}

.lead {
font-size: 1.2rem !important;
}

/* Header Styles */
header {
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
width: 210px;	
}

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

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

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

.text-secondary {
color: var(--secondary-color) !important;	
}

.navbar-nav .nav-link {
color: var(--text-color);
font-weight: 600;
padding: 0.5rem 1rem;
}

.navbar-light .navbar-nav .nav-link:hover {
color: var(--primary-color);
}

.navbar-nav .nav-item {
  margin-right: 30px;
}

.navbar-nav .dropdown-menu {
  margin-top: 0px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: none;
}

.navbar-nav .dropdown-item {
  padding: 8px 20px;
  transition: background-color 0.2s ease;
}

.navbar-nav .dropdown-item:hover {
  background-color: #f8f9fa;
  color: var(--primary-color);
}

.navbar-nav .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
}

.dropdown:hover>.dropdown-menu {
display: block;
}

.category-item {
    /**white-space: nowrap;
    flex-shrink: 0;
    background: #f9f9f9;
    border-radius: 4px;**/
    margin-right: 10px;
    /**text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    transition: background 0.3s;
	margin-bottom: 10px;**/
}

.category-item:hover {
    background: #eee;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

/* Option 2: Red Gradient Background */
.hero-gradient-red {
  background: linear-gradient(135deg, #dc3545 0%, #9a1c28 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

/* Option 3: Diagonal Gradient */
.hero-gradient-diagonal {
  background: linear-gradient(45deg, #000000 0%, #dc3545 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

/* Option 4: Radial Gradient */
.hero-gradient-radial {
  background: radial-gradient(circle, #dc3545 0%, #721c24 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

/* Option 5: Subtle Pattern with Red Overlay */
.hero-pattern-red {
  background-color: #c82333;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23dc3545' fill-opacity='0.2' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/hero-pattern.png");
  opacity: 0.05;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

/* Card Styles */
.card {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

/* Provider Card Styles */
.provider-card {
    position: relative;
}

.provider-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    border-radius: 0 0 8px 0;
    font-weight: bold;
}

.badge-number {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 5px;
}

.provider-img {
	max-height: 125px;
}

.provider-img:hover {
	cursor: pointer;
}

/* Rating Box */
.rating-box {
    padding: 10px;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.rating-text {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.rating-score {
    color: var(--primary-color);
}

/* Price Box */
.price-box {
    font-weight: bold;
}

.currency, .period {
    font-size: 16px;
    color: #666;
}

.price {
    font-size: 32px;
    color: var(--primary-color);
}

/* Hosting Categories */
.hosting-categories {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    border-bottom: 1px solid var(--border-color);
}

.hosting-categories::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.category-item {
    display: inline-block;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.category-item:hover, .category-item.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

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

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

.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);
}

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

footer h5 {
    font-weight: 600;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
	
	.navbar-brand img {
		width: 200px;	
	}

    .hero-section {
        padding: 2rem 0;
    }
    
    .provider-card .row {
        flex-direction: column;
    }
    
    .provider-card .col-md-3, .provider-card .col-md-6 {
        width: 100%;
        margin-bottom: 1rem;
    }
	.provider-img {
	margin-top: 50px;
	}
	
}
