/* Main CSS File for Pharmaceutical Adverse Event Reporting Desk Template
   Created: 2025 */

/* ===== Custom Color Variables ===== */
:root {
    /* Primary color palette */
    --primary-1: #7da9c7; /* Soft blue - main brand color */
    --primary-2: #e6c8bc; /* Soft peach - accent color */
    --primary-3: #a3c5ab; /* Sage green - success color */
    --primary-4: #d2a3a9; /* Dusty rose - highlight color */
    --primary-5: #ccd6eb; /* Lavender blue - background color */
    
    /* Light/dark variations */
    --primary-1-light: #a0c1d9;
    --primary-1-dark: #5a8ab0;
    --primary-2-light: #f2ded6;
    --primary-2-dark: #c9a699;
    --primary-3-light: #bfd8c5;
    --primary-3-dark: #819e89;
    --primary-4-light: #e4c0c5;
    --primary-4-dark: #b5848a;
    --primary-5-light: #e0e5f2;
    --primary-5-dark: #a8b6d6;
    
    /* Neutral colors */
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --medium-gray: #e2e6ee;
    --dark-gray: #596682;
    --black: #2d3748;
    
    /* Function-specific colors */
    --success: #a3c5ab;
    --warning: #f0c987;
    --danger: #e7a8b0;
    --info: #7da9c7;
    
    /* Typography */
    --body-font: 'Nunito', sans-serif;
    --heading-font: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 90px 0;
    --section-padding-mobile: 60px 0;
}

/* ===== General Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 15px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary-1);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-1-dark);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--primary-1);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header h3 {
    color: var(--black);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--dark-gray);
}

section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--light-gray);
}

.btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-1);
    border-color: var(--primary-1);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-1-dark);
    border-color: var(--primary-1-dark);
}

.submit-btn {
    background-color: var(--primary-1);
    color: var(--white);
    border: none;
    padding: 12px 35px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--primary-1-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 997;
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 15px 0;
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-1);
}

.navbar-nav .nav-link {
    padding: 15px 20px;
    color: var(--black);
    font-weight: 600;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-1);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 80vh;
    min-height: 500px;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.swiper-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--white);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-2);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

/* ===== About Section ===== */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 36px;
    color: var(--primary-1);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* ===== Services Section ===== */
.services-section {
    position: relative;
    overflow: hidden;
}

.service-item {
    padding: 30px;
    margin-bottom: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-5-light);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 35px;
    color: var(--primary-1);
}

.service-item h4 {
    margin-bottom: 15px;
    font-weight: 700;
}

.service-item p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    flex-grow: 1;
}

.service-item ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.service-item ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-3);
    position: absolute;
    left: 0;
}

.price {
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-1);
    margin-top: auto;
}

/* ===== Features Section ===== */
.features-section {
    position: relative;
}

.feature-box {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 40px;
    color: var(--primary-1);
}

.feature-box h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-box p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* ===== Price Plan Section ===== */
.priceplan-section {
    position: relative;
}

.price-box {
    padding: 40px 30px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.price-box.featured {
    border: 2px solid var(--primary-1);
    transform: scale(1.05);
    z-index: 2;
}

.price-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-box.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-header {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--medium-gray);
}

.price-header h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.price-value {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-1);
    margin-bottom: 0;
}

.price-body p {
    color: var(--dark-gray);
    margin-bottom: 25px;
}

.price-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.price-body ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.price-body ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--success);
    position: absolute;
    left: 0;
}

/* ===== Team Section ===== */
.team-section {
    position: relative;
}

.team-member {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-img {
    overflow: hidden;
    position: relative;
}

.member-img img {
    width: 100%;
    transition: all 0.5s ease;
}

.team-member:hover .member-img img {
    transform: scale(1.1);
}

.member-info {
    padding: 25px 20px;
    text-align: center;
    background-color: var(--white);
}

.member-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.member-info p {
    color: var(--primary-1);
    margin-bottom: 0;
}

/* ===== Reviews Section ===== */
.reviews-section {
    position: relative;
    background-color: var(--light-gray);
}

.reviews-swiper {
    overflow: hidden;
    padding-bottom: 70px;
}

.review-item {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 20px 10px;
    transition: all 0.3s ease;
}

.review-content {
    position: relative;
    padding-top: 30px;
    text-align: center;
}

.review-content:before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-5);
    font-size: 30px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.review-content p {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.review-content h4 {
    font-weight: 700;
    margin-bottom: 0;
    color: var(--primary-1);
}

/* ===== Core Info Section ===== */
.coreinfo-section {
    position: relative;
}

.coreinfo-item {
    padding: 30px;
    margin-bottom: 30px;
    background-color: var(--white);
    border-radius: 10px;
    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 {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-5-light);
    border-radius: 50%;
    margin-bottom: 25px;
}

.coreinfo-icon i {
    font-size: 30px;
    color: var(--primary-1);
}

.coreinfo-item h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.coreinfo-item p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* ===== Contact Section ===== */
.contact-section {
    position: relative;
}

.contact-info {
    padding: 40px;
    border-radius: 10px;
    background-color: var(--primary-5-light);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-1);
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-item p {
    margin-bottom: 0;
    font-weight: 500;
}

.contact-form {
    padding: 40px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    height: 55px;
    padding: 10px 20px;
    border: 1px solid var(--medium-gray);
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-1);
    box-shadow: 0 0 0 3px rgba(125, 169, 199, 0.1);
}

textarea.form-control {
    height: auto;
    border-radius: 20px;
}

/* ===== Blog Section ===== */
.blog-section {
    position: relative;
}

.blog-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background-color: var(--white);
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    transition: all 0.5s ease;
}

.blog-item:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-content h4 {
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-content p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-1);
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-1-dark);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

.footer h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-info {
    margin-bottom: 30px;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-2);
    padding-left: 5px;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-1);
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
    text-align: center;
}

.copyright small {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Additional Pages Styles ===== */
.add-page-section {
    padding: var(--section-padding);
}

/* Resources (additional_page1) */
.resource-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.resource-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.resource-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-5-light);
    border-radius: 50%;
    margin: 0 auto 25px;
}

.resource-icon i {
    font-size: 35px;
    color: var(--primary-1);
}

/* Guideline Items (additional_page1) */
.guideline-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.guideline-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.guideline-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-5-light);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.guideline-icon i {
    font-size: 30px;
    color: var(--primary-1);
}

/* Timeline (additional_page1) */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-5);
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 50%;
    padding-right: 50px;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 50px;
}

.timeline-item:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-1);
    top: 15px;
    right: -10px;
}

.timeline-item:nth-child(even):before {
    right: auto;
    left: -10px;
}

.timeline-content {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    margin-bottom: 0;
    color: var(--dark-gray);
}

/* Training Items (additional_page1) */
.training-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.training-content {
    padding: 20px 0;
}

.training-item {
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.training-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.training-item h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.training-item p {
    margin-bottom: 0;
    color: var(--dark-gray);
}

/* Case Studies (additional_page1) */
.case-study {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.case-study:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.case-img {
    overflow: hidden;
}

.case-img img {
    width: 100%;
    transition: all 0.5s ease;
}

.case-study:hover .case-img img {
    transform: scale(1.1);
}

.case-content {
    padding: 25px;
}

.case-content h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.case-content p {
    margin-bottom: 0;
    color: var(--dark-gray);
}

/* Compliance Items (additional_page2) */
.compliance-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.compliance-content {
    padding: 20px 0;
}

.compliance-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.compliance-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.compliance-icon {
    flex-shrink: 0;
    margin-right: 20px;
}

.compliance-icon i {
    font-size: 24px;
    color: var(--success);
}

.compliance-text h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.compliance-text p {
    margin-bottom: 0;
    color: var(--dark-gray);
}

/* Process Timeline (additional_page2) */
.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.process-icon {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-5-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.process-icon i {
    font-size: 30px;
    color: var(--primary-1);
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-1);
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-content {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    transition: all 0.3s ease;
}

.process-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.process-content h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.process-content p {
    margin-bottom: 0;
    color: var(--dark-gray);
}

/* Tool Items (additional_page2) */
.tool-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.tool-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tool-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-5-light);
    border-radius: 50%;
    margin: 0 auto 25px;
}

.tool-icon i {
    font-size: 35px;
    color: var(--primary-1);
}

/* Advisory Services (additional_page2) */
.service-box {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-box-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-5-light);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.service-box-icon i {
    font-size: 30px;
    color: var(--primary-1);
}

/* Benefits (additional_page2) */
.benefits-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    flex-shrink: 0;
    margin-right: 20px;
}

.benefit-icon i {
    font-size: 30px;
    color: var(--primary-1);
}

.benefit-content h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-content p {
    margin-bottom: 0;
    color: var(--dark-gray);
}

/* Space Page */
#space {
    min-height: 500px;
    margin: 120px 0 60px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.preloader.loaded {
    visibility: hidden;
    opacity: 0;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary-5);
    border-top: 3px solid var(--primary-1);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 996;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-1-dark);
    color: var(--white);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    animation: fadeIn 0.5s ease forwards;
}

/* Reduce animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
} 