/* Font Face Declaration */
@font-face {
    font-family: 'Orbitron';
    src: url('Orbitron-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}



.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-logo img:hover {
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.6));
    transform: scale(1.05);
}

.nav-logo h2 {
    color: #00ffff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00ffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #0080ff);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #00ffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

/* Hero Logo Background */
.hero-logo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}





.floating-logo {
    width: 400px;
    height: auto;
    opacity: 0.08;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
}

/* Floating logo for all pages */
.hero .floating-logo {
    opacity: 0.325;
    width: 528px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
}

/* Responsive scaling for floating logo */
@media (max-width: 1200px) {
    .hero .floating-logo {
        width: 400px;
    }
}
@media (max-width: 768px) {
    .hero .floating-logo {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .hero .floating-logo {
        width: 200px;
    }
}







.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

/* Hero background for all pages */
.hero::before {
    background: url('home-background.png') center center/cover no-repeat;
    opacity: 0.4;
}



.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 3;
    justify-items: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    animation: fadeInContent 2s ease-out 0.5s forwards;
    opacity: 0;
    filter: brightness(0);
}

@keyframes fadeInContent {
    0% {
        opacity: 0;
        filter: brightness(0);
    }
    100% {
        opacity: 1;
        filter: brightness(1);
    }
}

/* Make all hero titles white */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.9),
        4px 4px 8px rgba(0, 0, 0, 0.8),
        6px 6px 12px rgba(0, 0, 0, 0.7);
}



.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gradient-text {
    color: #ffffff;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 
        0 0 2px #000,
        1px 1px 3px rgba(0,0,0,0.8),
        2px 2px 6px rgba(0,0,0,0.7),
        3px 3px 10px rgba(0,0,0,0.6),
        4px 4px 16px rgba(0,0,0,0.5),
        6px 6px 24px rgba(0,0,0,0.4),
        8px 8px 32px rgba(0,0,0,0.3),
        10px 10px 40px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #000000;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
}

.btn-secondary:hover {
    background: #00ffff;
    color: #000000;
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.scroll-indicator.fade-out {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
}

.scroll-indicator i {
    font-size: 1.44rem;
    color: #00ffff;
    animation: bounce 2s infinite;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}



.hero-logo-main {
    width: 280px;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(0, 255, 255, 0.3));
}

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

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Compliance Section */
.compliance {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.compliance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 128, 255, 0.05) 0%, transparent 50%);
    animation: subtleGlow 8s ease-in-out infinite;
}

.compliance::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 98%, rgba(0, 255, 255, 0.03) 100%),
        linear-gradient(0deg, transparent 98%, rgba(0, 255, 255, 0.03) 100%);
    background-size: 100px 100px;
    animation: gridDrift 20s linear infinite;
    pointer-events: none;
}

@keyframes subtleGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes gridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

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

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.compliance-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.compliance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.compliance-card:hover::before {
    left: 100%;
}

.compliance-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.compliance-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.compliance-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.compliance-card p {
    color: #cccccc;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.compliance-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.compliance-card-link:hover .compliance-card {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.15);
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f23 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 20%, rgba(0, 128, 255, 0.03) 0%, transparent 50%);
    animation: subtleGlow 10s ease-in-out infinite reverse;
}

.services-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 98%, rgba(0, 255, 255, 0.02) 100%),
        linear-gradient(-45deg, transparent 98%, rgba(0, 255, 255, 0.02) 100%);
    background-size: 80px 80px;
    animation: gridDrift 25s linear infinite reverse;
    pointer-events: none;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.services-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Why Choose Us */
.why-choose {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f23 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 128, 255, 0.04) 0%, transparent 50%);
    animation: subtleGlow 12s ease-in-out infinite;
}

.why-choose::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 98%, rgba(0, 255, 255, 0.02) 100%),
        linear-gradient(-45deg, transparent 98%, rgba(0, 255, 255, 0.02) 100%);
    background-size: 120px 120px;
    animation: gridDrift 30s linear infinite;
    pointer-events: none;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    padding: 2rem;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 1rem;
    opacity: 0.7;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.feature p {
    color: #cccccc;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3,
.footer-section h4 {
    color: #00ffff;
    margin-bottom: 1rem;
}

.footer-logo {
    text-align: left;
    margin-top: 0.5rem;
}

.footer-logo h3 {
    color: #00ffff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.footer-logo p {
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1;
    opacity: 0.9;
}

.footer-section p,
.footer-section li {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00ffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    color: #888888;
}

/* About Page Styles */
.mission {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f23 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}
.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 128, 255, 0.04) 0%, transparent 50%);
    animation: subtleGlow 12s ease-in-out infinite;
}
.mission::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 98%, rgba(0, 255, 255, 0.02) 100%),
        linear-gradient(-45deg, transparent 98%, rgba(0, 255, 255, 0.02) 100%);
    background-size: 120px 120px;
    animation: gridDrift 30s linear infinite;
    pointer-events: none;
}
.mission .container {
    position: relative;
    z-index: 2;
}

.team {
    padding: 5rem 0;
    background: #0f0f23;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.member-avatar {
    font-size: 3rem;
    color: #00ffff;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.member-title {
    color: #00ffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-skills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.skill-tag {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.values {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}
.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 128, 255, 0.05) 0%, transparent 50%);
    animation: subtleGlow 8s ease-in-out infinite;
}
.values::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 98%, rgba(0, 255, 255, 0.03) 100%),
        linear-gradient(0deg, transparent 98%, rgba(0, 255, 255, 0.03) 100%);
    background-size: 100px 100px;
    animation: gridDrift 20s linear infinite;
    pointer-events: none;
}
.values .container {
    position: relative;
    z-index: 2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2rem;
    position: relative;
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.value-card p {
    color: #cccccc;
    line-height: 1.6;
}

.certifications {
    padding: 5rem 0;
    background: #0f0f23;
}

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

.cert-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.cert-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.cert-item i {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
}

.cert-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.cert-item p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Services Page Styles */
.services-overview {
    padding: 3rem 0;
    background: #0f0f23;
}

.core-services,
.advanced-services {
    padding: 5rem 0;
}

.core-services {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f23 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.core-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 128, 255, 0.04) 0%, transparent 50%);
    animation: subtleGlow 12s ease-in-out infinite;
}

.core-services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 98%, rgba(0, 255, 255, 0.02) 100%),
        linear-gradient(-45deg, transparent 98%, rgba(0, 255, 255, 0.02) 100%);
    background-size: 120px 120px;
    animation: gridDrift 30s linear infinite;
    pointer-events: none;
}

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

.advanced-services {
    background: #0f0f23;
}

.service-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

.service-detail-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.service-header .service-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-right: 1rem;
}

.service-header h3 {
    font-size: 1.3rem;
    color: #ffffff;
}

.service-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.service-features ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: #cccccc;
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
}

.service-features li::before {
    content: '•';
    color: #00ffff;
    position: absolute;
    left: 0;
}

.compliance-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.compliance-services {
    padding: 5rem 0;
    background: #0a0a0a;
}

.compliance-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.compliance-service {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.compliance-service:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.compliance-service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.compliance-service-header i {
    font-size: 2rem;
    color: #00ffff;
    margin-right: 1rem;
}

.compliance-service-header h3 {
    font-size: 1.3rem;
    color: #ffffff;
}

.compliance-service p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.compliance-service ul {
    list-style: none;
}

.compliance-service li {
    color: #cccccc;
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
}

.compliance-service li::before {
    content: '•';
    color: #00ffff;
    position: absolute;
    left: 0;
}

.process {
    padding: 5rem 0;
    background: #0f0f23;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.process-step p {
    color: #cccccc;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
    background: #0a0a0a;
}

/* Scroll offset for contact form */
#contact-form {
    scroll-margin-top: 80px;
}

/* Section CTA buttons */
.section-cta {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-container h2,
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-form-container p,
.contact-info p {
    color: #cccccc;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

/* Style dropdown options for better visibility */
.form-group select option {
    background: #111111;
    color: #ffffff;
    padding: 8px;
}

.form-group select:focus,
.form-group select:focus option {
    background: #000000;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.hidden {
    display: none !important;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #cccccc;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
    width: auto;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #00ffff;
    margin-top: 0.2rem;
}

.contact-details h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: #cccccc;
    margin-bottom: 0.2rem;
}

.emergency-contact {
    background: rgba(255, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.emergency-contact h3 {
    color: #ff4444;
    margin-bottom: 0.5rem;
}

.emergency-contact p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.emergency-phone,
.emergency-email {
    color: #ff4444 !important;
    font-weight: 600;
}

.faq-section {
    padding: 5rem 0;
    background: #0f0f23;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.faq-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Responsive Design */

/* Tablet and smaller desktop */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .nav-logo img {
        height: 35px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-logo-main {
        width: 220px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .compliance-services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer mobile layout */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-logo h2 {
        font-size: 1.3rem;
    }

    .nav-logo img {
        height: 30px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    }

    .hero-container {
        padding: 0 10px;
    }

    .container {
        padding: 0 15px;
    }

    .compliance-grid,
    .services-grid,
    .features-grid,
    .mission-grid,
    .team-grid,
    .values-grid,
    .cert-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-detail-card,
    .compliance-service {
        padding: 1.5rem;
    }

    .contact-form-container h2,
    .contact-info h2 {
        font-size: 1.5rem;
    }

    .hero-logo-main {
        width: 180px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Prevent horizontal scrolling on mobile */
    .nav-container {
        padding: 0 10px;
    }
    
    .hero {
        min-height: 100vh;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero-container {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-content {
        width: 100%;
        overflow-x: hidden;
    }
    
    /* Hide scroll indicator on mobile */
    .scroll-indicator {
        display: none;
    }
} 

.work-with-us {
    padding: 5rem 0 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f23 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}
.work-with-us .container {
    position: relative;
    z-index: 2;
} 