/* Custom CSS Variables */
:root {
    --primary-color: #00D9A3;
    --primary-hover: #00B88A;
    --primary-dark: #009671;
    --secondary-dark: #1F2937;
    --dark-bg: #0F1419;
    --darker-bg: #0A0E13;
    --light-text: #F9FAFB;
    --muted-text: #9CA3AF;
    --border-color: #374151;
    --shadow-light: rgba(0, 217, 163, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.4);
    --teal-glow: rgba(0, 217, 163, 0.2);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}



/* Custom Background Colors */
.bg-secondary-dark {
    background-color: var(--secondary-dark) !important;
}

.bg-dark {
    background-color: var(--dark-bg) !important;
}

/* Navigation Styles */
.navbar {
    transition: all 0.3s ease;
    background-color: transparent;
    backdrop-filter: blur(10px);
}

.navbar.shadow-lg {
    background-color:transparent;
    border-bottom: 1px solid rgba(0, 217, 163, 0.1);
}

.navbar.scrolled{
    background-color: rgba(15, 20, 25, 0.95) !important;

}

.navbar-brand {
    font-size: 1.8rem !important;
    font-weight: 700;
    color: var(--light-text) !important;
}

.logo-img {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--teal-glow));
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--light-text) !important;
}

.nav-item .nav-link:hover {
    color: var(--primary-color) !important;
    text-shadow: 0 0 8px var(--teal-glow);
}
.nav-item .nav-link.active{
color:var(--primary-color) !important;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    border-radius: 1px;
    box-shadow: 0 0 8px var(--teal-glow);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.hero-container-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 0;
    z-index: 1;
}

.hero-section .badge {
    background: var(--primary-color) !important;
    color: var(--dark-bg) !important;
    white-space: normal !important;
    font-weight: 600;
    box-shadow: 0 0 20px var(--teal-glow);
}

.hero-container-image img {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0.08;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(black 80%, transparent);
}

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



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

.hero-buttons .btn {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-light);
    font-weight: 600;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-light);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px var(--teal-glow));
    }
    50% {
        filter: drop-shadow(0 0 20px var(--teal-glow));
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slideIn {
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: rgba(31, 41, 55, 0.3);
    border-radius: 12px;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px var(--shadow-dark);
    background: rgba(31, 41, 55, 0.6);
}

.feature-icon i {
    animation: glow 3s ease-in-out infinite;
}

.container-infrastructure .feature-card{
    background: rgba(31, 41, 55, 0.3) !important;
        background-color: #1122246e !important;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: var(--secondary-dark);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 15px 35px var(--shadow-dark);
}

.service-icon {
    transition: transform 0.3s ease;
}

.text-muted {
    color: var(--muted-text) !important;
}

/* Offshore Notice Styles */
.offshore-notice .badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    line-height: 1.4 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Location Icon Animation */
.fa-globe-europe {
    animation: pulse 2s infinite;
}

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

/* Pricing Cards */

/* Pricing Table Container */
.pricing-table-container {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-table {
    background: rgba(31, 41, 55, 0.3) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(10px);
    overflow: hidden;
    padding: 0;
}

/* Plan Headers */
.plan-headers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 2px solid var(--border-color);
}

.plan-header {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.plan-header:last-child {
    border-right: none;
}

.plan-header:hover {
    background: rgba(31, 41, 55, 0.5);
}

.popular-header {
    background: rgba(0, 217, 163, 0.05) !important;
    border: 2px solid var(--primary-color);
    margin: -1px;
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.popular-badge .badge {
    background: var(--primary-color) !important;
    color: var(--dark-bg) !important;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 50px;
    box-shadow: 0 0 20px var(--teal-glow);
    padding: 0.4rem 1rem;
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.plan-price .price {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price .period {
    font-size: 1rem;
    margin-left: 0.2rem;
}

.plan-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    min-height: 2.8rem;
}

/* Contact Form */
.contact-form {
    position: sticky;
    top: 100px;
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
}

.form-control:focus,
.form-select:focus {
    background-color: var(--secondary-dark) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem var(--teal-glow) !important;
    color: var(--light-text) !important;
}

.form-control::placeholder {
    color: var(--muted-text);
}

/* Custom Form Styling */
.bg-secondary-dark.form-control,
.bg-secondary-dark.form-select {
    background-color: var(--secondary-dark) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--light-text) !important;
}

.form-select option {
    background-color: var(--secondary-dark);
    color: var(--light-text);
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--teal-glow);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--teal-glow);
}

.btn-outline-secondary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

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

#message{
    resize: none;
    min-height: 160px;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    background: var(--secondary-dark);
}

.hover-primary:hover {
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

/* Text Color Overrides */
.text-primary {
    color: var(--primary-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        margin-top: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .popular-plan {
        transform: none;
    }
    
    .service-card,
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .contact-form {
        position: static;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem !important;
    }
    
    .service-icon {
        font-size: 3rem !important;
    }
    
    .logo-img {
        height: 40px;
    }
}

/* Loading Animation */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success States */
.success-message {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-hover));
    color: var(--dark-bg);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    font-weight: 600;
}

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

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

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

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

/* Image Hover Effects */
img {
    transition: transform 0.3s ease;
}

/* Section Spacing */
section {
    position: relative;
}

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.border-primary-custom {
    border-color: var(--primary-color) !important;
}

/* Enhanced Shadows */
.shadow-custom {
    box-shadow: 0 10px 25px -5px var(--shadow-dark), 0 10px 10px -5px var(--shadow-dark);
}

.shadow-primary {
    box-shadow: 0 10px 25px -5px var(--teal-glow);
}

/* Glow Effects */
.glow-effect {
    box-shadow: 0 0 20px var(--teal-glow);
}

/* Additional Teal Theme Enhancements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, var(--teal-glow) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, var(--teal-glow) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align:center;
    z-index: 2;
}

/* Icon Glow Effects */
.fas.text-primary {
    filter: drop-shadow(0 0 8px var(--teal-glow));
}

















/* Pricing Section */
#pricing {
    background: linear-gradient(135deg, #0f1418 0%, #111a27 100%);
    position: relative;
}

/* Pricing Table Container */
.pricing-table-container {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-table {
    background: rgba(31, 41, 55, 0.3) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(10px);
    overflow: unset !important;
    padding: 0;
}

/* Plan Headers */
.plan-headers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 2px solid var(--border-color);
}

.plan-header {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.plan-header:last-child {
    border-right: none;
}

.plan-header:hover {
    background: rgba(31, 41, 55, 0.5);
}

.popular-header {
    background: rgba(0, 217, 163, 0.05) !important;
    border: 2px solid var(--primary-color);
    margin: -1px;
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.popular-badge .badge {
    background: var(--primary-color) !important;
    color: var(--dark-bg) !important;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 50px;
    box-shadow: 0 0 20px var(--teal-glow);
    padding: 0.4rem 1rem;
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.plan-price .price {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price .period {
    font-size: 1rem;
    margin-left: 0.2rem;
}

.plan-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    min-height: 2.8rem;
}

/* Feature Table */
.feature-table {
    padding: 0;
}

.feature-section {
    background: rgba(0, 217, 163, 0.1);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
    transition: all 0.3s ease;
}

.feature-row:hover {
    background: rgba(31, 41, 55, 0.3);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-label {
    font-weight: 500;
    color: var(--light-text);
    padding-right: 1rem;
}

.feature-value {
    text-align: center;
    color: var(--light-text);
    font-weight: 500;
    padding: 0.5rem;
}

.feature-value i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.feature-value i.fa-check {
    color: var(--primary-color) !important;
}

.feature-value i.fa-times {
    color: var(--muted-text) !important;
}

.feature-row:hover .feature-value i.fa-check {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px var(--teal-glow));
}

/* Bottom Actions */
.bottom-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 2px solid var(--border-color);
}

.bottom-actions .btn {
    border-radius: 0;
    padding: 1rem;
    font-weight: 600;
    border: none;
    border-right: 1px solid var(--border-color);
}

.bottom-actions .btn:last-child {
    border-right: none;
}

.bottom-actions .btn:first-child {
    border-bottom-left-radius: 20px;
}

.bottom-actions .btn:last-child {
    border-bottom-right-radius: 20px;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--shadow-light);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--teal-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline-secondary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

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

/* Order Button Loading State */
.order-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.order-btn.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Feature Items */
.feature-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
}

.feature-item:hover {
    background: rgba(31, 41, 55, 0.3);
    transform: translateY(-5px);
}

.feature-item i {
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--teal-glow));
}

/* Crypto Icon Animation */
.crypto-icon svg {
    transition: all 0.3s ease;
}

.feature-item:hover .crypto-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--teal-glow));
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    background: var(--secondary-dark);
}

.hover-primary:hover {
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: var(--bs-btn-active-color) !important;
    background-color: #00d9a3 !important;
    border-color: #00d9a3 !important;
}

.btn-check+.btn:hover{
    background-color: #00d9a3 !important;
    border-color: #00d9a3 !important;
    color:White !important;
    transform: translateY(0) !important;
}

/* Text Color Overrides */
.text-primary {
    color: var(--primary-color) !important;
}

.text-muted {
    color: var(--muted-text) !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px var(--teal-glow));
    }
    50% {
        filter: drop-shadow(0 0 20px var(--teal-glow));
    }
}

/* Glow effect for icons */
.text-primary.fs-3 {
    animation: glow 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-table-container {
        margin: 0 1rem;
    }
    
    .plan-headers {
        grid-template-columns: 1fr;
    }
    
    .plan-header {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .plan-header:last-child {
        border-bottom: none;
    }
    
    .popular-header {
        margin: 0;
        border: 2px solid var(--primary-color);
        border-top: 1px solid var(--primary-color);
        border-bottom: 1px solid var(--primary-color);
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }
    
    .feature-label {
        font-weight: 600;
        color: var(--primary-color);
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0, 217, 163, 0.2);
        margin-bottom: 0.5rem;
    }
    
    .feature-value {
        padding: 0.3rem 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .feature-value::before {
        content: attr(data-plan);
        font-size: 0.8rem;
        color: var(--muted-text);
        font-weight: 500;
    }
    
    .bottom-actions {
        grid-template-columns: 1fr;
    }
    
    .bottom-actions .btn {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        border-radius: 0;
    }
    
    .bottom-actions .btn:last-child {
        border-bottom: none;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    
    .feature-item {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.5rem !important;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .price-tag .h1 {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 1.5rem !important;
    }
}

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

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

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

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

/* Additional hover effects */
.pricing-card h3 {
    transition: all 0.3s ease;
}

.pricing-card:hover h3 {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--teal-glow);
}

/* SweetAlert2 custom styling */
.swal2-popup {
    background: var(--secondary-dark) !important;
    color: var(--light-text) !important;
    border: 1px solid var(--primary-color) !important;
}

.swal2-title {
    color: var(--light-text) !important;
}

.swal2-content {
    color: var(--muted-text) !important;
}

.swal2-confirm {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    border: none !important;
}

.swal2-cancel {
    background: transparent !important;
    border: 1px solid var(--border-color) !important;
    color: var(--light-text) !important;
}


.footer-section .text-link:hover {
    color: #07a981 !important;
}