/* Main Stylesheet for Auditora Solutions */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette */
  --bg-dark: #0D0D0D;
  --bg-indigo: #1F1B2E;
  --text-color: #F7F7F7;
  --accent-turquoise: #2FFFD0;
  --accent-yellow: #FFFD44;
  --btn-lime: #C6FF00;
  --btn-light-green: #76FF03;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
}

body {
  font-family: 'Manrope', 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-indigo));
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  background: linear-gradient(90deg, var(--accent-turquoise), var(--accent-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: 2.5rem;
  color: var(--accent-turquoise);
}

h3 {
  font-size: 1.8rem;
  color: var(--accent-yellow);
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--accent-turquoise);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-yellow);
}

/* Image Styles */
img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  background: linear-gradient(90deg, var(--btn-lime), var(--btn-light-green));
  color: #000;
  font-weight: 700;
  border-radius: var(--border-radius-md);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  background: linear-gradient(90deg, var(--btn-light-green), var(--btn-lime));
}

/* Card Styles */
.card {
  background: rgba(15, 15, 25, 0.7);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(47, 255, 208, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-turquoise);
}

/* Header */
header {
  padding: var(--spacing-md) 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(47, 255, 208, 0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
}

.logo img {
  height: 100%;
}

/* Navigation Styles */
nav ul {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  align-items: center;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

nav ul li a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-turquoise), var(--accent-yellow));
  transition: width 0.3s ease;
}

nav ul li a:not(.btn):hover {
  color: var(--accent-turquoise);
}

nav ul li a:not(.btn):hover::after {
  width: 100%;
}

nav ul li a.btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-content {
  max-width: 500px;
}

.hero-image {
  max-width: 500px;
  margin-left: var(--spacing-md);
  flex-grow: 1;
}

.hero-img {
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(47, 255, 208, 0.3);
}

.hero h1 {
  margin-bottom: var(--spacing-sm);
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 1.2s ease;
}

.hero .btn {
  animation: fadeInUp 1.4s ease;
}

/* About Section */
.about {
  padding: var(--spacing-xl) 0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 200px;
}

.about-image {
  flex: 1;
  min-width: 200px;
}

.about-img {
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(47, 255, 208, 0.3);
}

/* Services Section */
.services {
  padding: var(--spacing-xl) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
}
.thankyou-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.service-card {
  display: flex;

  flex-direction: column;
  height: 100%;
}

.service-image {
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  border-radius: var(--border-radius-md);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-img:hover {
  transform: scale(1.05);
}

.service-card h3 {
  margin-bottom: var(--spacing-sm);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-top: auto;
  padding-top: var(--spacing-sm);
}

/* Why Us Section */
.why-us {
  padding: var(--spacing-xl) 0;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
}

.benefits-list li:before {
  content: "✓";
  color: var(--accent-turquoise);
  font-weight: bold;
  margin-right: var(--spacing-sm);
}

/* Audit Process Section */
.audit-process {
  padding: var(--spacing-xl) 0;
}

.timeline {
  display: flex;
  justify-content: space-between;
  margin: var(--spacing-lg) 0;
  position: relative;
}

.timeline:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-turquoise), var(--accent-yellow));
  top: 30px;
  z-index: 1;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 120px;
}

.timeline-dot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-indigo));
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--spacing-sm);
  border: 2px solid var(--accent-turquoise);
  box-shadow: 0 0 15px rgba(47, 255, 208, 0.6);
}

.timeline-dot span {
  font-size: 1.5rem;
  font-weight: 700;
}

.timeline-text {
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
  padding: var(--spacing-xl) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
}

.testimonial-card {
  position: relative;
}

.testimonial-image {
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  border-radius: var(--border-radius-md);
}

.testimonial-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.testimonial-img:hover {
  transform: scale(1.05);
}

.testimonial-card:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 4rem;
  color: var(--accent-turquoise);
  opacity: 0.3;
}

.testimonial-author {
  font-weight: 700;
  margin-top: var(--spacing-sm);
  color: var(--accent-yellow);
}

/* Contact Form Section */
.contact-form {
  padding: var(--spacing-xl) 0;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: var(--spacing-sm);
  border: 1px solid rgba(47, 255, 208, 0.3);
  border-radius: var(--border-radius-sm);
  background: rgba(15, 15, 25, 0.7);
  color: var(--text-color);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-turquoise);
  box-shadow: 0 0 0 3px rgba(47, 255, 208, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-sm);
}

.checkbox-group input {
  margin-right: var(--spacing-xs);
  margin-top: 6px;
}

/* Policy Pages */
.policy-page {
  padding: var(--spacing-xl) 0;
  margin-top: 80px;
}

.policy-page h1 {
  font-size: 2.5rem;
}

.policy-page h2 {
  font-size: 1.8rem;
  margin-top: var(--spacing-lg);
}

.policy-page h3 {
  font-size: 1.4rem;
  margin-top: var(--spacing-md);
}

.policy-page ul, .policy-page ol {
  margin-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.policy-page li {
  margin-bottom: var(--spacing-xs);
}

/* Thank You Page */
.thankyou {
  padding: var(--spacing-xl) 0;
  margin-top: 80px;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thankyou .btn {
  margin-top: var(--spacing-md);
}

/* Footer */
footer {
  background: rgba(10, 10, 15, 0.9);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  border-top: 1px solid rgba(47, 255, 208, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  color: var(--accent-turquoise);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.copyright {
  text-align: center;
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.95);
  padding: var(--spacing-md);
  z-index: 1000;
  border-top: 1px solid var(--accent-turquoise);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(47, 255, 208, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(47, 255, 208, 0.8);
  }
  100% {
    box-shadow: 0 0 5px rgba(47, 255, 208, 0.5);
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    max-width: 100%;
    margin-bottom: var(--spacing-lg);
  }
  
  .hero-image {
    max-width: 100%;
    margin-left: 0;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-text {
    order: 2;
  }
  
  .about-image {
    order: 1;
    margin-bottom: var(--spacing-md);
  }
  
  .timeline {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 30px;
  }
  
  .timeline:after {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
  }
  
  .timeline-item {
    flex-direction: row;
    width: 100%;
    margin-bottom: var(--spacing-md);
  }
  
  .timeline-dot {
    margin-bottom: 0;
    margin-right: var(--spacing-sm);
  }
  
  .timeline-text {
    text-align: left;
  }
  
  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-consent .btn {
    width: 100%;
  }
  
  nav ul {
    display: none;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin-bottom: var(--spacing-xs);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .header-container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: var(--spacing-sm);
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  nav ul li {
    margin-bottom: var(--spacing-xs);
  }
  
  .service-img,
  .testimonial-img {
    height: 180px;
  }
} 