/*
Theme Name: IndianITTeam
Theme URI: https://indianitteam.com
Author: IndianITTeam
Author URI: https://indianitteam.com
Description: A custom WordPress theme for IndianITTeam - AI-Driven Digital Solutions & Software Development
Version: 1.0.0
License: GPL v2 or later
Text Domain: indianitteam
*/

/* ----- CSS VARIABLES ----- */
:root {
    --bg-header: #000000;
    --bg-dark-main: #111111;
    --bg-section-alt: #161616;
    --bg-card: #1c1c1c;
    --accent: #bbf21e;
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
    --border-color: #262626;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-dark-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: all 0.25s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
section {
    padding: 40px 0;
    position: relative;
    display: block;
    clear: both;
    background-color: var(--bg-dark-main);
}

/* ----- HEADER / MENU ----- */
header {
    background-color: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}
.logo img {
    height: 42px;
    width: auto;
    display: block;
}
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-grow: 1;
    margin-left: 20px;
    flex-wrap: wrap;
}
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 75px;
}
.nav-link {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    color: #cbd5e1;
    padding: 0 10px;
}
.nav-link:hover { color: #ffffff; }
.nav-link i { font-size: 0.6rem; }

/* Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 780px;
    max-width: 90vw;
    padding: 20px 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    z-index: 999;
    pointer-events: none;
}
.nav-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.mega-dropdown h4 {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 4px;
}
.mega-dropdown ul li { margin-bottom: 6px; }
.mega-dropdown ul li a {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    padding: 3px 0;
    transition: 0.2s;
}
.mega-dropdown ul li a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.nav-toggle {
    display: none;
    font-size: 1.4rem;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}
.btn-talk {
    background: var(--accent);
    color: #000;
    padding: 7px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    margin-left: 6px;
}
.btn-talk:hover { transform: translateY(-2px); background-color: #a3d416; }

/* Mobile Menu */
@media (max-width: 992px) {
    .nav-menu { gap: 4px; margin-left: 8px; }
    .nav-link { font-size: 0.65rem; padding: 0 6px; }
}
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: var(--bg-header);
        flex-direction: column;
        padding: 25px 18px;
        align-items: flex-start;
        overflow-y: auto;
        gap: 10px;
        transition: left 0.3s ease;
        margin-left: 0;
        flex-wrap: nowrap;
    }
    .nav-menu.open { left: 0; }
    .nav-item { height: auto; width: 100%; flex-wrap: wrap; }
    .mega-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        background: transparent;
        border: none;
        padding: 8px 0 8px 12px;
        display: none;
        grid-template-columns: 1fr;
        gap: 12px;
        pointer-events: auto;
        box-shadow: none;
    }
    .nav-item:hover .mega-dropdown { transform: none; }
    .nav-item .mega-dropdown.open { display: grid; }
    .nav-link { font-size: 0.85rem; padding: 4px 0; }
    .btn-talk { margin-left: 0; margin-top: 6px; }
}

/* ----- HERO ----- */
.hero { padding: 60px 0 50px 0 !important; }
.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hero-content { flex: 1 1 50%; }
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.hero-content h1 span { color: var(--accent); }
.hero-content p {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: 560px;
}
.hero-badge {
    display: inline-block;
    background: rgba(187, 242, 30, 0.1);
    color: var(--accent);
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    margin-bottom: 14px;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.btn-accent {
    background: var(--accent);
    color: #000;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.btn-accent:hover { transform: translateY(-2px); background-color: #a3d416; }
.btn-primary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
.btn-primary:hover { border-color: var(--accent); color: var(--accent); }
.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}
.hero-stat h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--accent);
    font-weight: 800;
    line-height: 1.2;
}
.hero-stat span {
    color: var(--text-muted);
    font-size: 0.8rem;
    display: block;
}
.hero-image {
    flex: 1 1 40%;
    display: flex;
    justify-content: flex-end;
}
.hero-image img {
    max-width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: auto;
}
@media (max-width: 992px) {
    .hero-grid { flex-direction: column; text-align: center; }
    .hero-content p { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { justify-content: center; }
    .hero-image img { max-width: 420px; }
}
@media (max-width: 768px) {
    .hero { padding: 40px 0 30px 0 !important; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-stats { gap: 20px; }
    .hero-stat h2 { font-size: 1.8rem; }
}
@media (max-width: 480px) {
    .hero { padding: 30px 0 20px 0 !important; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-image img { max-width: 100%; }
}

/* ----- SECTIONS ----- */
.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.25;
    letter-spacing: -1px;
}
.section-title span { color: var(--accent); }
.section-subtitle {
    font-family: var(--font-body);
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 28px;
    font-size: 0.95rem;
}

/* Stats */
.stats-strip {
    background-color: var(--bg-header);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    text-align: center;
    gap: 16px;
}
.stat-item h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 800;
}
.stat-item p {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Tabs */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.tab-btn {
    background: #161616;
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 9px 22px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.85rem;
}
.tab-btn.active {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px 25px;
    border-radius: 16px;
}
.service-card h3 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #fff;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.tab-content { display: none; }
.tab-content.active { display: grid; }

/* Brand Ribbon */
.brand-ribbon-strip {
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-section-alt);
}
.brand-flex-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.brand-item {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #444;
    text-transform: uppercase;
}

/* Footer */
footer {
    background-color: var(--bg-header);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 16px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
    gap: 35px;
    margin-bottom: 25px;
}
.footer-logo-side p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 14px 0 18px;
    line-height: 1.7;
}
.social-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.social-icons a {
    width: 35px;
    height: 35px;
    background-color: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background-color: var(--accent);
    color: var(--bg-header);
    border-color: var(--accent);
}
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}
.footer-links li,
.footer-links-arrows li {
    font-family: var(--font-body);
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.footer-links li:hover,
.footer-links-arrows li:hover {
    color: var(--accent);
    cursor: pointer;
}
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .services-grid, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.6rem; }
}

/* App Idea Banner */
.app-idea-banner {
    background: linear-gradient(135deg, #161616, #222);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
}
.app-idea-banner h2 {
    font-size: 2.2rem;
    font-weight: 800;
}
.app-idea-banner h2 span {
    border-bottom: 3px solid var(--accent);
}
.app-idea-banner p {
    color: var(--text-muted);
}
.idea-tag {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 8px;
}

/* Roadmap */
.roadmap-split-engine {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 28px;
    margin-top: 20px;
}
.roadmap-showcase-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 35px 30px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.roadmap-showcase-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.12;
    position: absolute;
    top: 12px;
    right: 25px;
}
.roadmap-showcase-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 14px;
}
.roadmap-showcase-box h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}
.roadmap-showcase-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 14px;
}
.roadmap-numbers-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}
.roadmap-nav-item {
    background-color: #15171e;
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: #dfdfdf;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s ease;
}
.roadmap-nav-item .step-lbl {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.5;
}
.roadmap-nav-item.active {
    background-color: var(--bg-card);
    border-color: var(--accent);
    color: var(--accent);
    padding-left: 25px;
}
.roadmap-nav-item.active .step-lbl {
    color: var(--accent);
    opacity: 1;
}
@media (max-width: 768px) {
    .roadmap-split-engine { grid-template-columns: 1fr; }
    .roadmap-numbers-bar { order: -1; }
}

/* Industries */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.industry-card {
    background-color: var(--bg-card);
    padding: 30px 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}
.industry-header-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.industry-icon-container {
    background-color: #ffffff;
    color: var(--accent);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.industry-header-block h3 {
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}
.industry-list li {
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}
.industry-list li i {
    color: var(--accent);
    font-size: 0.65rem;
}
@media (max-width: 768px) {
    .industries-grid { grid-template-columns: 1fr; }
}

/* Locations */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    padding: 35px 0;
}
.location-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}
.location-card:hover { transform: translateY(-3px); }
.location-icon-box {
    margin-bottom: 14px;
    width: 45px;
    height: 45px;
    color: var(--accent);
    display: flex;
    align-items: center;
}
.location-card h3 {
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
    font-size: 1.2rem;
}
.location-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    min-height: 36px;
}
.loc-divider {
    height: 1px;
    background-color: var(--border-color);
    width: 100%;
    margin: 14px 0;
}
@media (max-width: 768px) {
    .locations-grid { grid-template-columns: 1fr; }
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px 24px;
    border-radius: 16px;
    text-align: center;
}
.testimonial-card .quote {
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
}
.testimonial-card p {
    color: #dfdfdf;
    font-style: italic;
    font-size: 0.85rem;
    margin: 6px 0 14px;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    justify-content: center;
}
.user-info h4 {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}
.user-info span {
    color: var(--text-muted);
    font-size: 0.75rem;
}
.user-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.blog-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.blog-body { padding: 20px; }
.blog-tag {
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.blog-body h3 {
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 8px;
    font-weight: 700;
    color: #fff;
}
.blog-body p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 14px;
}
.blog-footer {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.75rem;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
}

/* FAQ */
.faq-container { max-width: 850px; margin: 0 auto; }
.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    margin-bottom: 14px;
    border-radius: 12px;
    overflow: hidden;
}
.faq-header {
    padding: 16px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    transition: background 0.3s ease;
}
.faq-header:hover { background: rgba(187,242,30,0.05); }
.faq-header i { transition: transform 0.3s ease; }
.faq-item.active .faq-header i { transform: rotate(180deg); }
.faq-content {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0,1,0,1);
    color: var(--text-muted);
    font-size: 0.9rem;
}
.faq-item.active .faq-content {
    max-height: 300px;
    padding-bottom: 18px;
}

/* Awards */
.awards-recognition-section {
    background-color: #0d0d0d;
    background-image: radial-gradient(circle at 20% 30%, rgba(187,242,30,0.03) 0%, transparent 60%);
}
.awards-grid-box {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 28px;
}
.recognition-card {
    background-color: #121319;
    border: 1px solid var(--border-color);
    padding: 35px 24px;
    border-radius: 100% 100% 16px 16px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.recognition-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}
.award-brand-logo-frame {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #1d1e26, #252733);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    color: var(--accent);
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.recognition-card:hover .award-brand-logo-frame {
    border-color: var(--accent);
    background: linear-gradient(135deg, #222530, #111111);
}
.recognition-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
}
.recognition-card h4 {
    font-weight: 800;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}
.recognition-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Spacing adjustments */
.testimonials { padding-top: 60px; padding-bottom: 60px; }
.why-us { padding-top: 50px; padding-bottom: 50px; }
.services { padding-top: 50px; }

/* WordPress specific */
.aligncenter { text-align: center; }
.wp-caption { max-width: 100%; }
.wp-caption-text { color: var(--text-muted); font-size: 0.85rem; }
.bypostauthor { background: transparent; }