/**
* SecureHub Orange Gradient Theme
* Custom orange theme with gradient elements
*/

/* Orange Gradient Theme Colors */
:root {
  /* Primary orange gradient colors */
  --accent-color: #ff7b00; /* Primary orange accent */
  --accent-hover-color: #e56800; /* Darker orange for hover states */
  --gradient-primary: linear-gradient(135deg, #ff7b00 0%, #ff9500 50%, #ffb347 100%);
  --gradient-secondary: linear-gradient(135deg, #ff9500 0%, #ffb347 50%, #ffd700 100%);
  --gradient-dark: linear-gradient(135deg, #e56800 0%, #cc5500 50%, #b8860b 100%);
  
  /* Updated heading color to complement orange */
  --heading-color: #2c1810; /* Dark brown-orange for headings */
  
  /* Navigation colors updated for orange theme */
  --nav-hover-color: #ff7b00;
  --nav-dropdown-hover-color: #ff7b00;
}

/* Header with orange gradient background */
.header {
  background: var(--gradient-primary) !important;
  box-shadow: 0 2px 20px rgba(255, 123, 0, 0.3);
}

.header .sitename {
  color: #ffffff !important;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero section with orange gradient overlay */
#hero {
  background: linear-gradient(135deg, rgba(255, 123, 0, 0.9) 0%, rgba(255, 149, 0, 0.8) 50%, rgba(255, 179, 71, 0.7) 100%);
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0.1;
  z-index: 1;
}

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

/* Buttons with orange gradient */
.btn-get-started,
.cta .btn-cta {
  background: var(--gradient-primary) !important;
  border: none !important;
  color: #ffffff !important;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 123, 0, 0.4);
}

.btn-get-started:hover,
.cta .btn-cta:hover {
  background: var(--gradient-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 123, 0, 0.6);
}

/* Section headers with orange gradients */
.section-header h2 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Service items with orange accents */
.services .service-item {
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.services .service-item:hover {
  border-left-color: var(--accent-hover-color);
  box-shadow: 0 10px 30px rgba(255, 123, 0, 0.2);
  transform: translateY(-5px);
}

.services .service-item .icon {
  background: var(--gradient-primary);
  color: #ffffff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(255, 123, 0, 0.3);
}

/* Portfolio items with orange hover effects */
.portfolio .portfolio-item {
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.portfolio .portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 123, 0, 0.3);
}

.portfolio .portfolio-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}

.portfolio .portfolio-item:hover::before {
  opacity: 0.8;
}

/* CTA section with orange gradient background */
.cta {
  background: var(--gradient-primary) !important;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

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

/* Footer with dark orange background */
.footer {
  background: linear-gradient(135deg, #2c1810 0%, #3d2014 50%, #4a2518 100%);
  color: #ffffff;
}

.footer a {
  color: #ffb347;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ff7b00;
}

/* Accent elements */
.why-us .why-box {
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.why-us .why-box:hover {
  border-color: var(--accent-hover-color);
  box-shadow: 0 10px 30px rgba(255, 123, 0, 0.2);
  transform: translateY(-5px);
}

/* Stats section with orange accents */
.stats .stats-item {
  background: linear-gradient(135deg, rgba(255, 123, 0, 0.1) 0%, rgba(255, 149, 0, 0.05) 100%);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.stats .stats-item:hover {
  background: linear-gradient(135deg, rgba(255, 123, 0, 0.2) 0%, rgba(255, 149, 0, 0.1) 100%);
  transform: translateY(-5px);
}

.stats .stats-item .purecounter {
  color: var(--accent-color);
  font-weight: 700;
}

/* Form elements with orange styling */
.contact .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 123, 0, 0.25);
}

/* Scroll top button with orange gradient */
.scroll-top {
  background: var(--gradient-primary) !important;
  color: #ffffff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 15px rgba(255, 123, 0, 0.4);
  transition: all 0.3s ease;
}

.scroll-top:hover {
  background: var(--gradient-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 123, 0, 0.6);
}

/* Additional orange gradient elements */
.section-title::after {
  background: var(--gradient-primary);
  height: 3px;
  width: 60px;
  content: '';
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Custom animations for orange theme */
@keyframes orangeGlow {
  0% { box-shadow: 0 0 20px rgba(255, 123, 0, 0.3); }
  50% { box-shadow: 0 0 30px rgba(255, 123, 0, 0.6); }
  100% { box-shadow: 0 0 20px rgba(255, 123, 0, 0.3); }
}

.glow-orange {
  animation: orangeGlow 2s infinite;
}