/* CSS Variables */
:root {
    --primary-color: #6F1728;
    --secondary-color: #7D4FA9;
    --primary-color-light: #8a1c32;
    --secondary-color-light: #9466c0;
    --text-color: #333;
    --text-color-light: #666;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    --gray: #f8f9fa;
    --dark-gray: #343a40;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-color-light);
    border-color: var(--primary-color-light);
    color: var(--white);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar i {
    margin-right: 8px;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-brand i {
    margin-right: 8px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--text-color) !important;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 70%;
}

.btn-signup {
    background-color: var(--primary-color);
    color: var(--white) !important;
    border-radius: 20px;
    padding: 5px 15px !important;
    margin-left: 10px;
}

.btn-signup:hover {
    background-color: var(--primary-color-light);
    color: var(--white) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSIvPjwvcGF0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons a {
    margin-right: 15px;
}

.hero-form {
    position: relative;
    z-index: 2;
}

.hero-form .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hero-form .card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-form .form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px 15px;
}

.hero-form .input-group-text {
    background-color: var(--gray);
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    color: var(--text-color-light);
}

.hero-form .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 5px;
    padding: 12px;
    font-weight: 500;
}

.hero-form .btn-primary:hover {
    background-color: var(--primary-color-light);
    border-color: var(--primary-color-light);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-img img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.about-img img:hover {
    transform: scale(1.03);
}

.about-content {
    padding-left: 30px;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-color-light);
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.feature-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-color-light);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: var(--white);
}

.pricing-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    position: relative;
    border: 2px solid var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 500;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--white);
}

.price {
    margin: 20px 0;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
}

.price .period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    margin-right: 10px;
}

.pricing-features .fa-check {
    color: #28a745;
}

.pricing-features .fa-times {
    color: #dc3545;
}

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.pricing-footer .btn {
    width: 100%;
    border-radius: 5px;
    padding: 12px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-img {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
}

.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-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-info p {
    color: var(--text-color-light);
    margin-bottom: 15px;
}

.team-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-form {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px 15px;
}

.contact-form .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 5px;
    padding: 12px;
    font-weight: 500;
}

.contact-form .btn-primary:hover {
    background-color: var(--primary-color-light);
    border-color: var(--primary-color-light);
}

.contact-info {
    padding-left: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-text p {
    color: var(--text-color-light);
    margin: 0;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-heading {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-about p {
    margin-bottom: 20px;
    color: #ddd;
}

.footer-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ddd;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact ul li i {
    margin-right: 10px;
    margin-top: 5px;
    color: var(--primary-color);
}

.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-legal ul li a {
    color: #ddd;
    transition: all 0.3s ease;
}

.footer-legal ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    color: #ddd;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color-light);
    color: var(--white);
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .contact-info {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons a {
        display: block;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .hero-form {
        margin-top: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .team-img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 575px) {
    .top-bar {
        text-align: center;
    }
    
    .top-bar-right {
        text-align: center !important;
        margin-top: 5px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .nav-link {
        margin: 5px 0;
    }
    
    .btn-signup {
        display: inline-block;
        margin: 10px auto;
    }
}
/* Login Section Styles */
.login-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.login-form .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-form .card-body {
    padding: 40px;
}

.login-form .fa-3x {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.login-form h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.login-form p {
    color: var(--text-color-light);
    margin-bottom: 30px;
}

/* Register Section Styles */
.register-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.register-form .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.register-form .card-body {
    padding: 40px;
}

.register-form .fa-3x {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.register-form h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.register-form p {
    color: var(--text-color-light);
    margin-bottom: 30px;
}

/* Privacy Policy & Terms of Service Styles */
.privacy-policy-section,
.terms-of-service-section {
    padding: 80px 0;
    background-color: var(--white);
}

.privacy-content,
.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.privacy-text,
.terms-text {
    text-align: left;
}

.privacy-text h2,
.terms-text h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.privacy-text h2:first-child,
.terms-text h2:first-child {
    margin-top: 0;
}

.privacy-text h3,
.terms-text h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-text p,
.terms-text p {
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.8;
}

.privacy-text ul,
.terms-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-text li,
.terms-text li {
    margin-bottom: 10px;
    color: var(--text-color);
}