/*
Theme Name: g2k IT Company
Theme URI: #
Author: Custom Theme
Description: Custom WordPress Theme for g2k IT Company based on uTech design.
Version: 1.0
Text Domain: g2k
*/

:root {
    --primary-color: #0045ff;
    --secondary-color: #bd29f2;
    --text-color: #333333;
    --bg-color: #ffffff;
    --header-bg: #182044;
    --footer-bg: #182044;
    --white: #ffffff;
    --accent: #bd29f2;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

/* Header Styles */
.header-top-bar {
    background-color: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px 0;
    font-size: 14px;
}

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

.top-contact-info span {
    margin-right: 25px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
}

.top-contact-info i {
    color: var(--primary-color);
    margin-right: 8px;
}

.top-social-profile a {
    color: var(--white);
    margin-left: 15px;
    transition: color 0.3s;
}

.top-social-profile a:hover {
    color: var(--primary-color);
}

.site-header {
    background-color: var(--header-bg);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.site-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: 1px;
}

.site-title span {
    color: var(--accent);
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.header-btn:hover {
    background-color: var(--accent);
    color: #000;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 69, 255, 0.4), rgba(189, 41, 242, 0.4)), url('assets/img/abs_bg_3.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--accent);
    color: #000;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    border: 1px solid var(--white);
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--header-bg);
}

.section-padding {
    padding: 80px 20px;
}

.section-light {
    background-color: #f7f9fc;
}

.section-dark {
    background-color: #182044;
    color: #ffffff;
}

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

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 36px;
    font-family: inherit;
    margin-bottom: 10px;
}

.section-heading p {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 26px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #666;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-family: inherit;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.about-list li {
    margin-bottom: 10px;
    color: #444;
}

.about-list i {
    color: var(--primary-color);
    margin-right: 8px;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.counter-item h3 {
    font-size: 32px;
    margin: 10px 0 5px;
}

.counter-item p {
    margin: 0;
    color: #c2d1e2;
}

.counter-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: #ffffff;
}

.demo-grid .demo-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    text-align: left;
}

.demo-card img {
    width: 100%;
    display: block;
}

.demo-card h3 {
    font-size: 20px;
    padding: 15px 20px 20px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.testimonial-quote {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #555;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    margin: 0;
}

.testimonial-card span {
    color: #777;
    font-size: 14px;
}

.cta-section {
    color: #ffffff;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    .hero-section {
        height: auto;
        padding: 80px 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.g2k-scrolltop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease;
    z-index: 9999;
}

.g2k-scrolltop.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Footer Styles */
.site-footer {
    background-color: var(--footer-bg);
    color: #c2d1e2;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    display: inline-block;
    position: relative;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--white);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget a {
    color: #ffffff;
}

.footer-widget a:hover {
    color: var(--primary-color);
}

.site-info {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #182044;
    font-size: 14px;
    color: #c2d1e2;
}
