@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Dark/Purple Premium Theme */
  --primary-color: #8E44AD;
  --secondary-color: #9B59B6;
  --accent-color: #E74C3C;
  --light-color: #2C3E50;
  --dark-color: #0F1021;
  --gradient-primary: linear-gradient(135deg, #8E44AD 0%, #2980B9 100%);
  --hover-color: #7D3C98;
  --background-color: #0F0766; /* Deep dark blue/black base */
  --text-color: #ECF0F1;
  --border-color: rgba(142, 68, 173, 0.3);
  --divider-color: rgba(155, 89, 182, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.5);
  --highlight-color: #F1C40F;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Lato', sans-serif;
}

body {
    font-family: var(--alt-font);
    color: var(--text-color);
    background-color: var(--dark-color);
    /* Abstract tech/modern pattern */
    background-image: linear-gradient(rgba(15, 16, 33, 0.95), rgba(15, 16, 33, 0.95)), url('./img/bg.jpg');
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
}

header {
    background-color: rgba(15, 16, 33, 0.9);
}

/* Neuromorphism Dark Mode */
.feature-box, .testimonial-card, .faq-item {
    background: #15162b;
    box-shadow: 5px 5px 10px #0b0c19, 
                -5px -5px 10px #1f203d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    box-shadow: inset 5px 5px 10px #0b0c19, 
                inset -5px -5px 10px #1f203d;
    border-color: var(--secondary-color);
}

/* Sections Configuration */
section:not(.hero-section) {
    padding-top: 10vh;
    padding-bottom: 10vh;
}

/* Hero Section */
.hero-section {
    min-height: 80vh; 
    background: linear-gradient(to bottom, rgba(15, 7, 102, 0.7), var(--dark-color)), url('./img/bg.jpg') no-repeat center center/cover;
}

/* CTA Sections */
.cta-section {
    min-height: 50vh;
    background-image: url('./img/bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.cta-section .overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Mobile Menu Logic */
#menu-toggle:checked ~ .mobile-nav {
    transform: translateX(0);
}

/* Timeline Custom Styles for Features */
.right-timeline .feature-box {
    margin-left: 0; 
}
.left-timeline .feature-box {
    margin-right: 0;
}