/* Variables */
:root {
    --primary: #00f7ff;
    --primary-dark: #00c4cc;
    --dark: #0a0a0a;
}

/* Base styles */
body {
    background: linear-gradient(135deg, #000428, #004e92);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Navbar */
.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Header */
header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

.text-gradient {
    background: linear-gradient(120deg, var(--primary), #80ffdb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Cards */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 247, 255, 0.2);
}

.card {
    background: rgba(13, 13, 13, 0.6) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.1);
}

/* Partner cards */
.partner-card {
    padding: 1.5rem;
    background: rgba(13, 13, 13, 0.6);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.1);
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
}

/* Forms */
.form-control,
.form-select {
    border: 1px solid rgba(0, 247, 255, 0.2);
    background: rgba(13, 13, 13, 0.6) !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 247, 255, 0.25);
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

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

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .display-2 {
        font-size: 2.5rem;
    }

    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* Variables */
:root {
    --primary: #00f7ff;
    --primary-dark: #00c4cc;
    --dark: #0a0a0a;
}

/* Base styles */
body {
    background: linear-gradient(135deg, #000428, #004e92);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Navbar */
.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Header */
header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

.vh-50 {
    height: 50vh;
}

.text-gradient {
    background: linear-gradient(120deg, var(--primary), #80ffdb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Cards */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 247, 255, 0.2);
}

.card {
    background: rgba(13, 13, 13, 0.6) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.1);
}

/* Partner cards */
.partner-card {
    padding: 1.5rem;
    background: rgba(13, 13, 13, 0.6);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.1);
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
}

/* Forms */
.form-control,
.form-select {
    border: 1px solid rgba(0, 247, 255, 0.2);
    background: rgba(13, 13, 13, 0.6) !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 247, 255, 0.25);
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--dark);
}

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

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* About page styles */
.about-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

.team-img-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.team-img-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
}

.team-card {
    padding: 2rem;
    background: rgba(13, 13, 13, 0.6);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 247, 255, 0.1);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 1rem 0;
    position: relative;
    width: 50%;
    left: 0;
    margin-bottom: 2rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    top: 1.5rem;
    right: -10px;
    z-index: 2;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    padding: 1.5rem;
    position: relative;
    margin-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 2rem;
}

/* Offers page styles */
.offers-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

.offer-card {
    position: relative;
    padding: 3rem 2rem;
    background: rgba(13, 13, 13, 0.6);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    text-align: center;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 247, 255, 0.2);
}

.offer-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
}

.offer-icon {
    font-size: 3rem;
    color: var(--primary);
}

.offer-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-price .currency {
    font-size: 1rem;
    color: #ccc;
}

.offer-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.offer-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.offer-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.offer-features li i {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.offer-bonus {
    background: rgba(0, 247, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1.5rem;
}

.offer-bonus-label {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.service-card {
    padding: 2rem;
    background: rgba(13, 13, 13, 0.6);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
}

.service-price {
    font-weight: 600;
    color: var(--primary);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.5;
    line-height: 1;
}

.testimonial-card {
    padding: 2rem;
    background: rgba(13, 13, 13, 0.6);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.1);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
}

.cta-card {
    padding: 4rem 2rem;
    background: rgba(13, 13, 13, 0.8);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .timeline::before {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        left: 0;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-dot {
        left: 21px;
        right: auto;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: 21px;
    }

    .timeline-content {
        margin-left: 70px;
        margin-right: 0;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 70px;
        margin-right: 0;
    }
}

@media (max-width: 768px) {

    .display-2,
    .display-3 {
        font-size: 2.5rem;
    }

    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .offer-card,
    .service-card,
    .team-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }
}

/* Variables */
:root {
    --primary: #00f7ff;
    --primary-dark: #00c4cc;
    --dark: #0a0a0a;
}

/* Base styles */
body {
    background: linear-gradient(135deg, #000428, #004e92);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Navbar */
.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Header */
header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

.vh-50 {
    height: 50vh;
}

.text-gradient {
    background: linear-gradient(120deg, var(--primary), #80ffdb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Cards */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 247, 255, 0.2);
}

.card {
    background: rgba(13, 13, 13, 0.6) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.1);
}

/* Partner cards */
.partner-card {
    padding: 1.5rem;
    background: rgba(13, 13, 13, 0.6);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.1);
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
}

/* Forms */
.form-control,
.form-select {
    border: 1px solid rgba(0, 247, 255, 0.2);
    background: rgba(13, 13, 13, 0.6) !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 247, 255, 0.25);
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--dark);
}

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

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* About page styles */
.about-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

.team-img-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.team-img-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
}

.team-card {
    padding: 2rem;
    background: rgba(13, 13, 13, 0.6);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 247, 255, 0.1);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 1rem 0;
    position: relative;
    width: 50%;
    left: 0;
    margin-bottom: 2rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    top: 1.5rem;
    right: -10px;
    z-index: 2;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    padding: 1.5rem;
    position: relative;
    margin-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 2rem;
}

/* Contact page styles */
.contact-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 247, 255, 0.1);
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 247, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(0, 247, 255, 0.3);
    transform: translateY(-5px);
}

.social-link {
    text-decoration: none;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 247, 255, 0.1);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.5;
    line-height: 1;
}

.testimonial-card {
    padding: 2rem;
    background: rgba(13, 13, 13, 0.6);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    font-style: italic;
}

.cta-card {
    padding: 4rem 2rem;
    background: rgba(13, 13, 13, 0.8);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.2);
}

/* Accordion styling */
.accordion-button:not(.collapsed) {
    background-color: rgba(0, 247, 255, 0.1) !important;
    color: var(--primary) !important;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 247, 255, 0.25);
}

.accordion-item {
    background-color: transparent !important;
    border-color: var(--primary) !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300f7ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

/* Responsive */
@media (max-width: 992px) {
    .timeline::before {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        left: 0;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-dot {
        left: 21px;
        right: auto;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: 21px;
    }

    .timeline-content {
        margin-left: 70px;
        margin-right: 0;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 70px;
        margin-right: 0;
    }
}

@media (max-width: 768px) {

    .display-2,
    .display-3 {
        font-size: 2.5rem;
    }

    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .offer-card,
    .service-card,
    .team-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }
}

/* Z-index utilities */
.z-1 {
    z-index: 1;
}

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