/* Global Styles */
:root {
    --primary-color: #290485;
    --accent-color: #e7960f;
    --white: #ffffff;
    --black: #000000;
    --light-bg: #f8f9fa;
    --text-dark: #333333;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    /* background-color: var(--primary-color); */
    padding: 15px 0;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(45, 70, 94, 0.9) 0%, rgb(245 27 181) 100%)!important;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--accent-color) !important;
}

.nav-link {
    color: var(--white) !important;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a0259 100%);
    color: var(--white);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d38609;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 150, 15, 0.3);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: bold;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Gallery */
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 20px;
}

.gallery-item img {
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* FAQ Accordion */
.accordion-button {
    color: var(--primary-color);
    font-weight: bold;
    padding: 15px;
    font-size: 1rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--primary-color);
}

/* Contact Form */
.form-control {
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.contact-info {
    padding: 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
}

/* Footer */
.footer {
    /* background-color: var(--primary-color); */
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    background:linear-gradient(135deg, rgba(45, 70, 94, 0.9) 0%, rgb(245 27 181) 100%)!important;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero img {
    animation: float 6s ease-in-out infinite;
    margin-left: 152px;
}

/* Advantages Section */
.advantages {
    background-color: #f8f9fa;
}

.advantage-card {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.advantage-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-align: center;
}

.advantage-card h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    /* text-align: center; */
}

.advantage-card ul {
    list-style: none;
    padding-left: 0;
}

.advantage-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.advantage-card ul li:before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Enhanced FAQ Styles */
.faq {
    background-color: #f8f9fa;
}

.accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.accordion-button::after {
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    color: var(--white);
}

.accordion-body {
    padding: 15px;
    background-color: #f8f9fa;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Add animation for accordion items */
.accordion-item[data-aos] {
    transition-duration: 0.6s;
}

/* Enhanced Feature Cards */
.features .row + .row {
    margin-top: 30px;
}

/* Enhanced Hero Section with Parallax */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('path-to-your-background-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 70, 94, 0.9) 0%, rgb(245 27 181) 100%);
    z-index: 1;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-buttons .btn {
    margin: 10px;
    padding: 12px 25px;
    font-size: 1rem;
}

.floating-image {
    max-width: 80%;
    margin: 30px auto 0;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* CTA Section */
.cta {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(45deg, var(--primary-color), #1a0259);
    overflow: hidden;
    text-align: center;
}

.cta-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(45, 70, 94, 0.95) 0%,
        rgba(26, 42, 58, 0.85) 100%);
    z-index: 1;
}

.cta .container {
    z-index: 2;
}

.cta h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.cta p {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    margin-bottom: 3rem;
}

.cta-buttons .btn {
    margin: 10px;
}

.cta-feature {
    color: var(--white);
    padding: 20px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.cta-feature:hover {
    transform: translateY(-10px);
}

.cta-feature i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-feature h4 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cta-feature p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.8;
}

/* Add these animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* General Responsive Styles */
:root {
    --primary-color: #290485;
    --accent-color: #e7960f;
    --white: #ffffff;
    --black: #000000;
    --light-bg: #f8f9fa;
    --text-dark: #333333;
}

/* Base Mobile-First Styles */
body {
    overflow-x: hidden;
}

.container {
    padding: 0 20px;
}

/* Navbar Responsive */
.navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.5rem;
}

/* Hero Section Responsive */
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin: 10px;
    padding: 12px 25px;
    font-size: 1rem;
}

.floating-image {
    max-width: 80%;
    margin: 30px auto 0;
}

/* Features Section Responsive */
.feature-card {
    margin-bottom: 20px;
    padding: 20px;
}

.feature-card i {
    font-size: 2.5rem;
}

.feature-card h3 {
    font-size: 1.2rem;
}

/* Advantages Section Responsive */
.advantage-card {
    margin-bottom: 20px;
    padding: 20px;
}

.advantage-icon {
    font-size: 2.5rem;
}

.advantage-card h3 {
    font-size: 1.3rem;
}

/* Gallery Section Responsive */
.gallery-item {
    margin-bottom: 20px;
}

/* FAQ Section Responsive */
.accordion-button {
    padding: 15px;
    font-size: 1rem;
}

.accordion-body {
    padding: 15px;
    font-size: 0.95rem;
}

/* CTA Section Responsive */
.cta {
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
}

.cta p {
    font-size: 1rem;
}

.cta-buttons .btn {
    margin: 10px;
}

.cta-feature {
    margin-bottom: 30px;
}

/* Contact Section Responsive */
.contact form {
    margin-bottom: 30px;
}

/* Footer Responsive */
.footer {
    text-align: center;
    padding: 20px 0;
}

/* Media Queries */
@media (min-width: 576px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 30px;
    }
}

@media (min-width: 768px) {
    .hero {
        text-align: left;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .navbar-brand {
        font-size: 1.8rem;
    }

    .feature-card {
        margin-bottom: 30px;
    }

    .cta h2 {
        font-size: 2.5rem;
    }

    .footer {
        text-align: left;
    }
}

@media (min-width: 992px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .feature-card {
        margin-bottom: 0;
    }

    .advantage-card {
        margin-bottom: 0;
    }

    .cta-feature {
        margin-bottom: 0;
    }
}

/* Navigation Menu Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 15px;
        border-radius: 10px;
        margin-top: 15px;
    }

    .nav-link {
        padding: 10px 15px;
    }

    .navbar-nav {
        text-align: center;
    }
}

/* Grid System Adjustments */
@media (max-width: 767px) {
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Button Responsiveness */
@media (max-width: 575px) {
    .btn {
        width: 100%;
        margin: 10px 0;
    }

    .hero-buttons .btn,
    .cta-buttons .btn {
        display: block;
        margin: 10px 0;
    }

    .btn-lg {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Section Spacing Responsive */
@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

/* Image Responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* Form Responsiveness */
@media (max-width: 767px) {
    .form-control {
        margin-bottom: 15px;
    }

    textarea.form-control {
        height: 120px;
    }
}

/* Animation Adjustments for Mobile */
@media (max-width: 767px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }

    .floating-image {
        animation: none;
    }
    .hero img{
        margin-left: 0px;
    }
}

/* Utility Classes for Responsive Design */
.hide-on-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hide-on-mobile {
        display: block;
    }
}

.text-center-mobile {
    text-align: center;
}

@media (min-width: 768px) {
    .text-center-mobile {
        text-align: left;
    }
}

/* Info Cards Styles */
.info-cards {
    margin: 2rem 0;
}

.info-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-card h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Feature List Styles */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(10px);
    color: var(--accent-color);
}

.feature-list li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Card Overlay */
.card-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(45, 70, 94, 0.95),
        rgba(45, 70, 94, 0.8)
    );
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.info-card:hover .card-overlay {
    bottom: 0;
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.overlay-content span {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Card Animation */
@keyframes cardPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.info-card:hover {
    animation: cardPulse 1s infinite;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .info-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .card-icon {
        font-size: 2rem;
    }

    .info-card h3 {
        font-size: 1.3rem;
    }

    .feature-list li {
        font-size: 0.95rem;
    }
}

/* Card Border Animation */
.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-card:hover::before {
    border-color: var(--accent-color);
    animation: borderDance 1s infinite linear;
}

@keyframes borderDance {
    0% { clip-path: inset(0 0 95% 0); }
    25% { clip-path: inset(0 95% 0 0); }
    50% { clip-path: inset(95% 0 0 0); }
    75% { clip-path: inset(0 0 0 95%); }
    100% { clip-path: inset(0 0 95% 0); }
}

/* Ripple Effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* About Section Styles */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Image Container Styles */
.image-container {
    position: relative;
    perspective: 1000px;
    margin-bottom: 2rem;
}

.image-container img {
    transition: transform 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-container:hover img {
    transform: translateY(-10px) rotateY(5deg);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(41, 4, 133, 0.9),
        rgba(41, 4, 133, 0.7)
    );
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 1rem;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.play-demo-btn {
    background: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-demo-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.element {
    position: absolute;
    font-size: 2rem;
    animation: float 6s infinite ease-in-out;
    color: var(--accent-color);
}

.element:nth-child(1) { top: 10%; left: -20px; }
.element:nth-child(2) { top: 40%; right: -20px; }
.element:nth-child(3) { bottom: 30%; left: -15px; }
.element:nth-child(4) { bottom: 10%; right: -15px; }

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.advantage-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.advantage-icon {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.advantage-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Interactive Title */
.interactive-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.interactive-title:hover .title-underline {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .image-container {
        max-width: 400px;
        margin: 0 auto 2rem;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(var(--rotation)); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Privacy Policy Styles */
.privacy-policy {
    padding: 120px 0 60px;
    background-color: #f8f9fa;
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
}

.policy-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.last-updated {
    color: #666;
    font-style: italic;
}

.policy-section {
    margin-bottom: 40px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.info-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.info-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.info-card ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.usage-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.usage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.usage-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.protection-list {
    list-style: none;
    padding: 0;
}

.protection-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.protection-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.rights-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.right-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.contact-info {
    text-align: center;
}

.contact-details {
    margin-top: 20px;
}

.contact-details p {
    margin: 10px 0;
}

.contact-details i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Footer Styles */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 0 0px;
}

.footer h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: var(--white);
    margin-right: 15px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.newsletter-form .input-group {
    margin-top: 20px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 0 40px;
    }

    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-section {
        padding: 20px;
    }

    .usage-grid, .rights-container {
        grid-template-columns: 1fr;
    }

    .footer {
        text-align: center;
    }

    .footer .col-md-4 {
        margin-bottom: 30px;
    }
}

/* Gradient Text Effect Base Style */
.gradient-text {
    background: linear-gradient(45deg, #290485, #e7960f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

/* Hero Section Title */
.hero h1 {
    background: linear-gradient(45deg, #e7960f, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero h2 {
    background: linear-gradient(45deg, #ffd700, #e7960f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Section Titles */
.section-title {
    background: linear-gradient(135deg, #290485, #e7960f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

/* Feature Card Titles */
.feature-card h3 {
    background: linear-gradient(45deg, #290485, #e7960f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

/* Advantage Card Titles */
.advantage-card h3 {
    background: linear-gradient(45deg, #e7960f, #290485);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* FAQ Titles */
.accordion-button {
    background: linear-gradient(45deg, #290485, #e7960f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Footer Titles */
.footer h3 {
    background: linear-gradient(45deg, #e7960f, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* CTA Section Title */
.cta h2 {
    background: linear-gradient(45deg, #ffd700, #e7960f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Privacy Policy Titles */
.policy-header h1 {
    background: linear-gradient(135deg, #290485, #e7960f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.policy-section h2 {
    background: linear-gradient(45deg, #290485, #e7960f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Animated Gradient Effect for Main Titles */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animated-gradient-text {
    background: linear-gradient(
        270deg,
        #290485,
        #e7960f,
        #ffd700,
        #e7960f,
        #290485
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientFlow 5s ease infinite;
}

/* Hover Effects for Gradient Texts */
.gradient-text:hover {
    transform: scale(1.05);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Interactive Gradient Text */
.interactive-gradient {
    background: linear-gradient(
        45deg,
        #290485 0%,
        #e7960f 50%,
        #290485 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.interactive-gradient:hover {
    background-position: right center;
}

/* Navbar Brand Gradient */
.navbar-brand {
    background: linear-gradient(45deg, #e7960f, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    font-weight: bold;
}

/* Card Title Gradients */
.info-card h3 {
    background: linear-gradient(45deg, #290485, #e7960f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Contact Section Title */
.contact h2 {
    background: linear-gradient(135deg, #290485, #e7960f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Gallery Section Title */
.gallery h2 {
    background: linear-gradient(45deg, #e7960f, #290485);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gradient-text, 
    .section-title,
    .hero h1,
    .hero h2 {
        background-size: 150% auto;
    }
}

/* Fallback for Older Browsers */
@supports not (background-clip: text) {
    .gradient-text,
    .section-title,
    .hero h1,
    .hero h2,
    .feature-card h3,
    .advantage-card h3,
    .accordion-button,
    .footer h3,
    .cta h2,
    .policy-header h1,
    .policy-section h2 {
        color: #e7960f;
    }
} 