:root {
    --primary-color: #6a3093;
    --primary-gradient: linear-gradient(135deg, #6a3093 0%, #a044ff 100%);
    --secondary-color: #23d5ab;
    --dark-color: #2d2b3a;
    --light-color: #f8f9fa;
    --accent-color: #ff7e5f;
    --text-color: #4a4a4a;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(106, 48, 147, 0.15);
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #fcfcfc;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    box-shadow: 0 5px 15px rgba(106, 48, 147, 0.3);
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(135deg, #a044ff 0%, #6a3093 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 48, 147, 0.4);
}

.btn-outline-secondary {
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
    background: transparent;
}

.btn-outline-secondary:hover {
    background-color: var(--dark-color);
    color: white;
    transform: translateY(-3px);
}

.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
}

.pulse-text {
    color: var(--primary-color);
}

.vault-text {
    color: var(--secondary-color);
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    padding: 5px 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.offcanvas {
    width: 100%;
}

.nin1 {
    height: 80px !important;
}

.hero-section {
    position: relative;
    padding: 120px 0 80px;
    background-color: #f8f9fa;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--primary-gradient);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
    opacity: 0.1;
}

.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-image-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

.hero-image {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.highlight-text {
    position: relative;
    color: var(--primary-color);
    z-index: 1;
}

.highlight-text:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--secondary-color);
    z-index: -1;
    opacity: 0.4;
}

.section-heading {
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
}

.subheading {
    display: inline-block;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 14px;
}

.section-description {
    font-size: 18px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-gradient);
    transition: all 0.5s ease;
    z-index: -1;
    opacity: 0;
}

.feature-card:hover:before {
    height: 100%;
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover h3,
.feature-card:hover p,
.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card.active:before {
    height: 100%;
    opacity: 1;
}

.feature-card.active h3,
.feature-card.active p,
.feature-card.active .feature-icon i {
    color: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(106, 48, 147, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.feature-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card h3 {
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.feature-card p {
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-gradient);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(106, 48, 147, 0.3);
}

.timeline-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin-left: 30px;
    flex: 1;
}

.timeline-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.timeline-content p {
    margin-bottom: 0;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin: 20px 0;
    position: relative;
}

.testimonial-card:before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: rgba(106, 48, 147, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--secondary-color);
}

.testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.testimonial-author p {
    margin-bottom: 0;
    color: #6c757d;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 10px;
    padding: 12px 20px;
    height: calc(3.5rem + 2px);
    border: 1px solid #e1e1e1;
    box-shadow: none;
}

.contact-form .form-floating label {
    padding: 12px 20px;
}

.contact-form textarea.form-control {
    min-height: 150px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(106, 48, 147, 0.25);
}

.contact-info-wrapper {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.contact-map {
    width: 100%;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    overflow: hidden;
}

.contact-map iframe {
    display: block;
}

.contact-info {
    padding: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: white;
    font-size: 20px;
}

.contact-info-item h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-info-item p {
    margin-bottom: 0;
    color: #6c757d;
}

.footer {
    background-color: var(--dark-color);
    color: white;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.footer h5 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

hr {
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-content p {
    margin-bottom: 0;
    margin-right: 20px;
}

.privacy-section {
    padding-top: 120px;
}

.privacy-header {
    margin-bottom: 50px;
}

.privacy-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.privacy-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-content p, 
.privacy-content ul, 
.privacy-content address {
    margin-bottom: 20px;
    line-height: 1.8;
}

.privacy-content ul {
    padding-left: 20px;
}

.privacy-content ul li {
    margin-bottom: 10px;
}

@media (max-width: 991.98px) {
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-content {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 100px 0 50px;
    }
    
    .section-heading {
        font-size: 32px;
    }
    
    .feature-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        text-align: center;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-icon {
        margin: 0 auto 15px;
    }
} 