


/* ==================== ABOUT HERO SECTION ==================== */
.about-hero {
    padding-top: 130px;
    padding-bottom: 70px;
    background-color: #08081a;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: 
        radial-gradient(circle at 0% 0%, rgba(0, 247, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 100% 0%, rgba(0, 247, 255, 0.1) 0%, transparent 40%);
    z-index: 0;
}

.about-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* ==================== ABOUT INTRO SECTION ==================== */
.about-intro {
    padding: var(--section-padding) 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 247, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ==================== MISSION SECTION ==================== */
.mission {
    padding: var(--section-padding) 0;
    background-color: var(--darker-color);
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 247, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.mission-card {
    background-color: rgba(10, 10, 26, 0.7);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: rgba(0, 247, 255, 0.3);
}

.mission-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background-color: rgba(0, 247, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 247, 255, 0.2);
}

.mission-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.mission-icon img {
    width: 40px;
    height: 40px;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.mission-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* ==================== CTA SECTION ==================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(10, 10, 26, 0.8);
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    section.about-hero {
        padding-top: 80px;
        padding-bottom: 30px; /* Reduced from likely 80px */
    }

    .cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .cta h2 {
        font-size: 1.8rem;
    }
}

/* ==================== BLOG CONTENT SECTION ==================== */
.blog-content {
    padding: 120px 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.blog-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 247, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.horizontal-blogs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-post {
    background-color: rgba(10, 10, 26, 0.7);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.blog-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 247, 255, 0.1) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 247, 255, 0.2);
    border-color: rgba(0, 247, 255, 0.3);
}

.blog-post:hover::before {
    opacity: 1;
}

.blog-image-small {
    flex: 0 0 40%;
    min-height: 300px;
    overflow: hidden;
    position: relative;
}

.blog-image-small::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 26, 0.2) 0%, transparent 100%);
    z-index: 1;
    transition: var(--transition);
}

.blog-post:hover .blog-image-small::after {
    background: linear-gradient(to right, rgba(0, 247, 255, 0.1) 0%, transparent 100%);
}

.blog-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-post:hover .blog-image-small img {
    transform: scale(1.1);
}

.blog-text-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--light-color);
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.blog-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.blog-post:hover .blog-title {
    color: var(--primary-color);
}

.blog-post:hover .blog-title::after {
    width: 100%;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.blog-category {
    background-color: rgba(0, 247, 255, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 247, 255, 0.3);
    transition: var(--transition);
}

.blog-post:hover .blog-category {
    background-color: var(--primary-color);
    color: var(--dark-color);
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
}

.blog-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.blog-date::before {
    content: '•';
    margin-right: 10px;
    color: var(--primary-color);
}

.blog-content-full p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .blog-post {
        flex-direction: column;
    }
    
    .blog-image-small {
        flex: 0 0 auto;
        width: 100%;
        min-height: 250px;
    }
    
    .blog-text-content {
        padding: 30px;
    }
    
    .blog-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .blog-date::before {
        display: none;
    }
    
    .blog-title {
        font-size: 1.4rem;
    }
    
    .blog-text-content {
        padding: 25px;
    }
}



/* ==================== PRICING SECTION ==================== */

.pricing {
    padding: 90px 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 247, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.pricing-tabs {
    position: relative;
    z-index: 1;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.tab-btn {
    padding: 12px 30px;
    border-radius: var(--border-radius);
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: rgba(10, 10, 26, 0.7);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 247, 255, 0.1) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: rgba(0, 247, 255, 0.3);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border-color: var(--primary-color);
}

.pricing-card-inner {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.pricing-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--light-color);
}

.pricing-price {
    margin-bottom: 10px;
    color: var(--light-color);
    font-family: var(--font-secondary);
}

.pricing-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-timeline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 0;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 25px;
}

.pricing-features p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 14px;
}

.pricing-features ul {
    margin-bottom: 0;
}

.pricing-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.pricing-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {


    section#pricing.pricing {
        padding-top: 40px;
    }

    section.pricing-hero {
        padding-top: 90px;
        padding-bottom: 10px;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .pricing-price .amount {
        font-size: 2.5rem;
    }
}


/* ==================== LEGAL PAGES STYLES - UPDATED ==================== */
/* Replace the existing legal page CSS with this */

/* First, force visibility - REMOVED .legal-page .container from here */
.legal-page,
.legal-content,
.legal-wrapper {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
}

/* Page background - Match your site's gradient */
.legal-page {
    padding: 140px 0 80px;
    min-height: 100vh;
    background-color: #0a192f !important; /* Your dark blue color */
    position: relative;
    overflow-x: hidden;
}

/* Remove the old gradient, use your site's pattern */
.legal-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 247, 255, 0.08) 0%, transparent 50%);
    z-index: 0;
}

/* Match hero section with your site's hero styling */
.legal-hero {
    text-align: center;
    padding: 30px 0 20px;
    position: relative;
    z-index: 1;
}

/* Make main heading match your section-title style */
.legal-hero h1 {
    font-size: 3rem;
    color: var(--light-color) !important;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
    font-weight: 700;
}

.legal-hero h1::after {
    display: none; /* Remove the underline from earlier version */
}

.legal-hero h1 span {
    color: var(--primary-color);
    position: relative;
}

.legal-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0, 247, 255, 0.2);
    z-index: -1;
}

/* Match subtitle with your site's section-subtitle */
.legal-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color) !important;
    margin-bottom: 25px;
    position: relative;
    padding-left: 50px;
    display: inline-block;
}

.legal-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Match update badge with your hero-badge */
.legal-update {
    display: inline-flex;
    align-items: center;
    background-color: rgba(0, 247, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 247, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

.legal-update span {
    margin-left: 8px;
}

/* INCREASED WIDTH for desktop only */
.legal-content {
    position: relative;
    z-index: 1;
    padding: 5px;
}

.legal-wrapper {
    max-width: 950px; /* Increased from 800px for more width on desktop */
    margin: 0 auto;
    line-height: 1.7;
    background-color: rgba(10, 10, 26, 0.7); /* Match your card background */
    padding: 50px; /* Increased padding */
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.legal-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: rgba(0, 247, 255, 0.3);
}

/* Company name - match your site's headers */

/* Section headings - match your service card headings */
.legal-wrapper h3 {
    font-size: 1.5rem;
    color: var(--light-color) !important;
    margin: 40px 0 20px;
    position: relative;
    padding-left: 20px;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-wrapper h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Paragraph text - match your site's text */
.legal-wrapper p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Lists - match your service card lists */
.legal-wrapper ul {
    margin: 20px 0 25px 30px;
    padding: 0;
}

.legal-wrapper li {
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.legal-wrapper li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Buttons - match your site's .btn style exactly */
.legal-actions {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.legal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    z-index: 1;
    text-decoration: none;
}

/* Match .btn-primary */
.legal-btn {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: 1px solid var(--primary-color);
}

.legal-btn:hover {
    color: var(--primary-color);
    background-color: transparent;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.5);
}

/* Match .btn-secondary */
.legal-btn.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.legal-btn.secondary:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.5);
}

/* Match .btn-tertiary */
.legal-btn.tertiary {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.legal-btn.tertiary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .legal-wrapper {
        max-width: 800px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .legal-page {
        padding: 120px 0 60px;
    }
    
    .legal-hero h1 {
        font-size: 2.2rem;
    }
    
    .legal-subtitle {
        font-size: 12px;
        padding-left: 40px;
    }
    
    .legal-subtitle::before {
        width: 30px;
    }
    
    .legal-wrapper {
        padding: 30px 20px;
        max-width: 100%;
    }
    
    .legal-wrapper > h2 {
        font-size: 1.8rem;
    }
    
    .legal-wrapper h3 {
        font-size: 1.3rem;
        margin: 30px 0 15px;
    }
    
    .legal-wrapper p {
        font-size: 1rem;
    }
    
    .legal-actions {
        justify-content: center;
        gap: 15px;
    }
    
    .legal-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .legal-hero h1 {
        font-size: 1.8rem;
    }
    
    .legal-wrapper ul {
        margin-left: 20px;
    }
    
    .legal-wrapper li {
        padding-left: 20px;
    }
    
    .legal-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* Desktop only - keep original width */
@media (min-width: 1200px) {
    .legal-wrapper {
        max-width: 1000px; /* Even wider on extra large screens */
    }
}
