/* Main CSS file for Document Compliance Lab */

:root {
  /* Color Palette */
  --primary-color-1: #3a506b; /* Deep Blue */
  --primary-color-2: #5bc0be; /* Teal */
  --primary-color-3: #f7bc05; /* Gold */
  --primary-color-4: #e54b4b; /* Coral Red */
  --primary-color-5: #6c464f; /* Burgundy */
  
  /* Shades and tints */
  --primary-color-1-light: #4c6789;
  --primary-color-1-dark: #2a3e57;
  --primary-color-2-light: #7ed3d1;
  --primary-color-2-dark: #409e9c;
  --primary-color-3-light: #ffd045;
  --primary-color-3-dark: #d9a404;
  --primary-color-4-light: #e97a7a;
  --primary-color-4-dark: #c42b2b;
  --primary-color-5-light: #8b5864;
  --primary-color-5-dark: #503339;
  
  /* Neutral colors */
  --neutral-100: #ffffff;
  --neutral-200: #f8f9fa;
  --neutral-300: #e9ecef;
  --neutral-400: #dee2e6;
  --neutral-500: #adb5bd;
  --neutral-600: #6c757d;
  --neutral-700: #495057;
  --neutral-800: #343a40;
  --neutral-900: #212529;
}

/* Global Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--neutral-800);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--neutral-900);
}

a {
  color: var(--primary-color-2);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-2-dark);
}

.btn {
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color-2);
  border-color: var(--primary-color-2);
  color: var(--neutral-100);
}

.btn-primary:hover {
  background-color: var(--primary-color-2-dark);
  border-color: var(--primary-color-2-dark);
}

.btn-secondary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  color: var(--neutral-100);
}

.btn-secondary:hover {
  background-color: var(--primary-color-1-dark);
  border-color: var(--primary-color-1-dark);
}

.btn-accent {
  background-color: var(--primary-color-3);
  border-color: var(--primary-color-3);
  color: var(--neutral-900);
}

.btn-accent:hover {
  background-color: var(--primary-color-3-dark);
  border-color: var(--primary-color-3-dark);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color-2);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--neutral-600);
}

/* Header Styles */
header {
  background-color: var(--neutral-100);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 5px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  color: var(--primary-color-1);
  font-weight: 700;
  font-size: 1.6rem;
}

.navbar-nav .nav-link {
  color: var(--neutral-800);
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color-2);
}

/* Hero Section */
.hero {
  background: linear-gradient(90deg, rgba(58, 80, 107, 0.9), rgba(58, 80, 107, 0.7)), url('../CYB_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--neutral-100);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--neutral-200);
  margin-bottom: 30px;
}

.hero-desc {
  color: var(--neutral-300);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-shape {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background-color: var(--primary-color-2);
  opacity: 0.1;
  border-radius: 50%;
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-img {
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.about-feature {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--neutral-100);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-color-2);
  margin-bottom: 20px;
}

.about-feature h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Services Section */
.services-section {
  background-color: var(--neutral-200);
  position: relative;
  overflow: hidden;
}

.service-item {
  background-color: var(--neutral-100);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-item:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
}

.service-name {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color-1);
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-3);
  margin-bottom: 15px;
}

.service-desc {
  margin-bottom: 20px;
  color: var(--neutral-700);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--neutral-300);
  display: flex;
  align-items: center;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: var(--primary-color-2);
  margin-right: 10px;
}

/* Features Section */
.features-section {
  position: relative;
}

.feature-item {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  background-color: var(--neutral-100);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background-color: var(--primary-color-2-light);
  color: var(--primary-color-2-dark);
  font-size: 2rem;
  margin: 0 auto 25px;
}

.feature-name {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color-1);
}

.feature-desc {
  color: var(--neutral-700);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--neutral-200);
  position: relative;
  overflow: hidden;
}

.price-item {
  background-color: var(--neutral-100);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  padding-bottom: 30px;
  height: 100%;
  position: relative;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
  background-color: var(--primary-color-1);
  padding: 30px;
  color: var(--neutral-100);
}

.price-item:nth-child(2) .price-header {
  background-color: var(--primary-color-2);
}

.price-item:nth-child(3) .price-header {
  background-color: var(--primary-color-3);
  color: var(--neutral-900);
}

.price-name {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
}

.price-period {
  font-size: 0.9rem;
  opacity: 0.8;
}

.price-body {
  padding: 30px;
}

.price-desc {
  margin-bottom: 25px;
  color: var(--neutral-700);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--neutral-300);
  display: flex;
  align-items: center;
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li i {
  color: var(--primary-color-2);
  margin-right: 10px;
}

/* Team Section */
.team-section {
  position: relative;
}

.team-member {
  background-color: var(--neutral-100);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  height: 300px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.1);
}

.team-content {
  padding: 25px;
  text-align: center;
}

.team-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-color-1);
}

.team-role {
  color: var(--primary-color-2);
  margin-bottom: 0;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--neutral-200);
  position: relative;
  overflow: hidden;
}

.review-item {
  background-color: var(--neutral-100);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 30px;
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
}

.review-text:before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color-2);
  opacity: 0.3;
  font-size: 1.2rem;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-name {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-color-1);
}

.review-author-role {
  font-size: 0.9rem;
  color: var(--neutral-600);
}

/* Core Info Section */
.coreinfo-section {
  position: relative;
}

.coreinfo-item {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  background-color: var(--neutral-100);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-color-2);
  margin-bottom: 20px;
}

.coreinfo-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color-1);
}

.coreinfo-desc {
  color: var(--neutral-700);
}

/* Contact Section */
.contact-section {
  background-color: var(--neutral-200);
  position: relative;
  overflow: hidden;
}

.contact-form {
  background-color: var(--neutral-100);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  height: auto;
  padding: 15px;
  border: 1px solid var(--neutral-300);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-2);
  box-shadow: 0 0 0 0.2rem rgba(91, 192, 190, 0.25);
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--neutral-700);
}

.contact-info {
  background-color: var(--primary-color-1);
  border-radius: 10px;
  padding: 40px;
  color: var(--neutral-100);
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-info-item i {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--primary-color-2);
}

.contact-info-text {
  flex: 1;
}

.contact-info-text h5 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--neutral-100);
}

.contact-info-text p {
  margin: 0;
  color: var(--neutral-300);
}

/* Blog Section */
.blog-section {
  position: relative;
}

.blog-item {
  background-color: var(--neutral-100);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 220px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-date {
  font-size: 0.9rem;
  color: var(--primary-color-2);
  margin-bottom: 10px;
  display: block;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--neutral-700);
  margin-bottom: 20px;
}

.blog-link {
  font-weight: 600;
  color: var(--primary-color-2);
}

.blog-link i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
  background-color: var(--neutral-200);
  position: relative;
}

.accordion-item {
  border: none;
  background-color: transparent;
  margin-bottom: 15px;
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  background-color: var(--neutral-100);
  color: var(--neutral-900);
  font-weight: 600;
  padding: 20px;
  border-radius: 6px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-2);
  color: var(--neutral-100);
  box-shadow: 0 5px 15px rgba(91, 192, 190, 0.2);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(91, 192, 190, 0.5);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 20px;
  background-color: var(--neutral-100);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Gallery Section */
.gallery-section {
  position: relative;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-color-1-dark);
  color: var(--neutral-300);
  padding: 80px 0 0;
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 20px;
  display: inline-block;
}

.footer-logo h3 {
  color: var(--neutral-100);
  font-size: 1.8rem;
  margin: 0;
}

.footer-desc {
  margin-bottom: 20px;
  color: var(--neutral-400);
}

.footer-contact {
  margin-bottom: 30px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-contact-item i {
  color: var(--primary-color-2);
  margin-right: 10px;
  font-size: 1.2rem;
}

.footer-title {
  color: var(--neutral-100);
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color-2);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: var(--neutral-400);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links li a:before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 8px;
  color: var(--primary-color-2);
}

.footer-links li a:hover {
  color: var(--primary-color-2);
  padding-left: 5px;
}

.footer-bottom {
  padding: 25px 0;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  margin: 0;
  font-size: 0.9rem;
}

/* Additional Pages */
.page-header {
  background: linear-gradient(90deg, rgba(58, 80, 107, 0.9), rgba(58, 80, 107, 0.7)), url('../images/page-header.webp');
  background-size: cover;
  background-position: center;
  padding: 150px 0 80px;
  text-align: center;
  color: var(--neutral-100);
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.additional-section {
  padding: 100px 0;
  position: relative;
}

.additional-section:nth-child(even) {
  background-color: var(--neutral-200);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: float 5s ease-in-out infinite;
}

/* Media Queries will be handled in responsive.css */ 