:root {
    --bg-color: #0b0f14;
    --text-color: #f0f0f0;
    --primary-color: #00d2ff;
    --secondary-color: #3a7bd5;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
    --hover-bg: rgba(0, 210, 255, 0.1);
    --nav-height: 80px;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Typography & General */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
}

h1, h2, h3, h4 {
    font-weight: 700;
}

.subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.description {
    color: #a0aab5;
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
    border: none;
    cursor: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.5);
}

/* Background Text (HYKROX style) */
.bg-text {
    position: absolute;
    font-size: 15rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    white-space: nowrap;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(11, 15, 20, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 65px;
    width: 65px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
}

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

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.search-icon {
    color: var(--primary-color);
    cursor: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.search-icon:hover {
    transform: scale(1.1);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: none;
    color: var(--primary-color);
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 3rem;
}

.center {
    text-align: center;
}

.center-desc {
    margin: 0 auto 2rem auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-name {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 0 0 18px rgba(0, 210, 255, 0.25);
    line-height: 1.15;
}

.hero-name strong {
    background: linear-gradient(90deg, #fff 40%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.1rem;
    color: #a0aab5;
    font-style: italic;
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.7;
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
}

.hero .title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-wrapper img {
    max-width: 100%;
    height: 480px;
    width: 380px;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
    display: block;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    border-radius: 25px;
    filter: blur(20px);
    opacity: 0.6;
}

/* Services Section */
.services-header {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.services-title {
    flex: 1;
    min-width: 300px;
}

.services-title h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.services-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--hover-bg);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.1);
}

.service-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-card p {
    color: #a0aab5;
    font-size: 0.9rem;
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    display: block;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.feature .icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature h4 {
    margin-bottom: 0.5rem;
}

.feature p {
    color: #a0aab5;
    font-size: 0.9rem;
}

/* Certificates Section */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cert-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.cert-card:hover::before {
    transform: scaleY(1);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cert-img {
    width: 100%;
    height: 180px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(0,0,0,0.2);
}

.cert-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.cert-card:hover .cert-img img {
    transform: scale(1.1);
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: rgba(0, 210, 255, 0.3);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content .date {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-content p {
    color: #a0aab5;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
}

/* Stats Section */
.stats {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(0,0,0,0.2);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.stat-item .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 1rem;
    color: #a0aab5;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.stat-item .number {
    font-size: 2.5rem;
    font-weight: 800;
}

/* Contact Section */
.contact-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-item .icon {
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.info-item:hover .icon {
    background: var(--primary-color);
    color: #000;
    transform: scale(1.1);
}

/* Clickable social info items */
.social-info-item {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.social-info-item:hover {
    background: var(--hover-bg);
    transform: translateX(6px);
}

.social-info-item h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.social-info-item p {
    color: #a0aab5;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.info-item p {
    color: #a0aab5;
}

.contact-form {
    flex: 1.5;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.08);
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aab5;
    transition: color 0.3s ease;
}

.input-with-icon input {
    padding-left: 45px;
}

.input-with-icon input:focus + i,
.input-with-icon:focus-within i {
    color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.form-status {
    margin-top: 15px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    min-height: 24px;
}

.status-success {
    color: #00d2ff;
}

.status-error {
    color: #ff4b4b;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    background: #05070a;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container, .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero .title {
        font-size: 3rem;
    }

    .description {
        margin: 0 auto 2rem auto;
    }

    .bg-text {
        font-size: 8rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: rgba(11, 15, 20, 0.95);
        padding: 2rem 0;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero .title {
        font-size: 2.5rem;
    }
    
    .services-header {
        flex-direction: column;
    }
    
    .services-title {
        text-align: center;
    }

    .contact-container {
        flex-direction: column;
        gap: 3rem;
    }
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3) inset, 0 0 15px rgba(0, 210, 255, 0.3);
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

/* Hide default cursor on interactive elements */
a, button, input, textarea {
    cursor: none !important;
}
