/* --- Global Styles --- */
:root {
    --color-black: #0A0A0A;
    --color-charcoal: #1A1A1A;
    --color-electric-blue: #0077FF;
    --color-light-blue: #77BFFF;
    --color-white: #EAEAEA;
    --gradient-primary: linear-gradient(90deg, #0077FF 0%, #00BFFF 100%);
    --font-primary: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--color-electric-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-light-blue);
}

/* --- Hero Section with Background Image --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    background: url('KYORA INFOTECH/IMAGE 5.jpg') no-repeat center center/cover; /* Path to your image */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden; /* Ensure content doesn't spill out */
}

/* Dark overlay to make text more readable */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Darker overlay */
    z-index: 1;
}

.hero-content {
    position: relative; /* Bring content above the overlay */
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    /* Apply gradient for extra pop, if desired */
    background-image: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #DDD;
}

.hero-buttons .btn {
    margin: 0 15px;
    font-size: 1.1rem;
    padding: 15px 35px;
}

/* Responsive adjustments for the hero section */
@media (max-width: 992px) {
    .hero-section {
        height: 500px;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .hero-buttons .btn {
        font-size: 1rem;
        padding: 12px 25px;
        margin: 0 10px;
    }
}

@media (max-width: 600px) {
    .hero-section {
        height: 450px;
        background-position: 70% center; /* Adjust for mobile focus */
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 80%;
        margin: 10px 0;
    }
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-black);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #00BFFF 0%, #0099FF 100%);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-electric-blue);
    color: var(--color-electric-blue);
}

.btn-secondary:hover {
    background-color: var(--color-electric-blue);
    color: var(--color-black);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    background-image: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Header --- */
.main-header {
    background-color: var(--color-charcoal);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 119, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background-image: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav a {
    margin-left: 30px;
    font-weight: 400;
    padding: 5px 0;
    position: relative;
}

.main-nav a.active::after,
.main-nav a:not(.cta-nav):hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

.cta-nav {
    /* Style for the Contact Us button in the nav */
    border: 1px solid var(--color-electric-blue);
    padding: 8px 15px;
    border-radius: 5px;
    margin-left: 20px;
}

/* --- Hero Section --- */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: url('img/hero-bg.jpg') no-repeat center center/cover; /* Placeholder image */
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
}

/* Futuristic overlay effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: left;
}

.headline {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    background-image: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-headline {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--color-light-blue);
}

.key-message {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--color-white);
    letter-spacing: 1px;
}

/* --- Services Section --- */
.services-section {
    padding: 80px 0;
    background-color: var(--color-charcoal);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--color-black);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(0, 119, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 119, 255, 0.3);
}

.service-icon {
    font-size: 3rem;
    color: var(--color-electric-blue);
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.tagline {
    font-size: 0.9rem;
    color: var(--color-light-blue);
    margin-bottom: 15px;
    font-style: italic;
}

/* --- Kyora Teaser Section --- */
.kyora-teaser {
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.kyora-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="%230077FF" stop-opacity="0.1"/><stop offset="100%" stop-color="%230077FF" stop-opacity="0.05"/></linearGradient></defs><rect width="100" height="100" fill="url(#g)"/></svg>') repeat; /* Subtle blue tech pattern */
    opacity: 0.1;
    z-index: 0;
}

.teaser-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.teaser-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--color-charcoal);
    padding: 50px 0 20px;
    border-top: 5px solid var(--color-electric-blue); /* Strong separation */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-info h3 {
    background-image: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.footer-contact h4, .footer-links h4, .footer-social h4 {
    color: var(--color-light-blue);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact p, .footer-links a {
    display: block;
    margin-bottom: 8px;
    color: var(--color-white);
}

.footer-social a {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--color-electric-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .headline {
        font-size: 3rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .headline {
        font-size: 2.5rem;
    }
    .sub-headline {
        font-size: 1.1rem;
    }
    .main-nav {
        display: none; /* Simple mobile navigation toggle needed for production */
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-info, .footer-contact, .footer-links, .footer-social {
        margin-bottom: 20px;
    }
}