/* Ethical Hacker Penetration Testing Agency - Main Styles */

:root {
  /* Primary Color Palette - Cybersecurity Theme */
  --primary-green: #00ff88;
  --primary-blue: #0099ff;
  --primary-purple: #8855ff;
  --primary-red: #ff4444;
  --primary-orange: #ff8800;
  
  /* Light/Dark Shades */
  --light-green: #ccffee;
  --dark-green: #003322;
  --light-blue: #cceeff;
  --dark-blue: #002244;
  --light-purple: #ddccff;
  --dark-purple: #332255;
  --light-red: #ffcccc;
  --dark-red: #330000;
  --light-orange: #ffeecc;
  --dark-orange: #332200;
  
  /* Neutral Colors */
  --dark-bg: #0a0a0a;
  --light-bg: #f8f9fa;
  --text-light: #ffffff;
  --text-dark: #333333;
  --border-light: #dee2e6;
}

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

/* Conservative Font Sizes */
.navbar {
  background: var(--dark-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-scrolled {
  background: var(--dark-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

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

.navbar .navbar-brand {
  color: var(--primary-green) !important;
  font-weight: 700;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  font-size: 1.25rem;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  font-size: 1rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark-bg), var(--dark-blue));
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 225px;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.1);
}

.hero-blob-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  background: rgba(0, 153, 255, 0.1);
}

.hero-blob-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 15%;
  background: rgba(136, 85, 255, 0.1);
}

/* Service Cards */
.service-card {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
}

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

.service-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-green);
  margin: 1rem 0;
}

/* Team Cards */
.team-card {
  background: var(--light-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

/* Review Cards */
.review-card {
  background: var(--light-bg);
  border-left: 4px solid var(--primary-blue);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

/* FAQ Cards */
.faq-card {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: 8px;
  margin-bottom: 2rem;
  position: relative;
}

.process-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  color: var(--text-light);
  border-radius: 50%;
  line-height: 60px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Timeline */
.timeline-item {
  background: var(--light-bg);
  border-left: 4px solid var(--primary-purple);
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}

/* Case Study Cards */
.casestudy-card {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

/* Career Cards */
.career-card {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.career-role {
  color: var(--primary-orange);
  font-weight: 600;
}

/* Core Info Grid */
.coreinfo-item {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

.coreinfo-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: var(--light-bg);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 3rem;
  border-radius: 8px;
}

.contact-info-item {
  margin-bottom: 2rem;
}

.contact-info-icon {
  color: var(--primary-green);
  margin-right: 1rem;
  font-size: 1.25rem;
}

/* Blog Cards */
.blog-card {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-link {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-green);
}

/* Price Plan Cards */
.priceplan-card {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  position: relative;
}

.priceplan-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-blue);
  margin: 1rem 0;
}

.priceplan-features {
  list-style: none;
  padding: 0;
}

.priceplan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

/* Features Grid */
.features-item {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

.features-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* About Features */
.about-feature {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

/* Utility Classes */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.section-description {
  color: #6c757d;
  margin-bottom: 3rem;
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--text-dark);
  font-weight: 600;
}

.btn-primary-custom:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  color: var(--text-light);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
