:root {
    --bg-color: #050505;
    --card-bg: #111111;
    --input-bg: #1a1a1a;
    --border-color: #333;
    --primary-color: rgb(255, 76, 48);
    /* Vibrant Orange-Red */
    --primary-hover: rgb(230, 60, 40);
    --text-main: #ffffff;
    --text-muted: #888888;
    --success-color: #10b981;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* Tech Background Effect */
.background-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 85% 85%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.tech-line {
    position: fixed;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: -1;
}

.tl-1 {
    top: 100px;
    left: 0;
    width: 100%;
    height: 1px;
}

/* Navbar */
.navbar {
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-brand {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand i {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-link:hover {
    color: var(--primary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Mobile Menu Toggle (Simple Implementation) */
.menu-toggle {
    display: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Keep simple for now, or implement JS toggle if needed */
    }

    .menu-toggle {
        display: block;
    }
}


/* Hero Header */
.hero-header {
    position: relative;
    /*min-height: 400px;*/
    background: url('../images/contact-header.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 100px 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    color: #ccc;
    font-size: 18px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Navbar Override */
.navbar {
    background: #000 !important;
    border-bottom: 1px solid #222 !important;
    padding: 20px 0;
    margin: 0;
    position: relative;
    z-index: 100;
}

.nav-links {
    align-items: center;
}

/* Grid Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

@media (max-width: 900px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Cards */
.tech-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0.5;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
}

.card-title i {
    color: var(--primary-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    background-color: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

input:focus,
textarea:focus {
    border-color: var(--primary-color);
    background-color: #222;
}

.btn-submit {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* Info Items */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-content h4 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Map Container */
.map-container {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 300px;
    background: #111;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: #151515;
}

/* Footer */
.footer {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    background: #000;
    padding: 40px 0 20px;
}

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

.footer-col h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p,
.footer-col a {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

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

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    color: #444;
    font-size: 13px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ccc;
    transition: all 0.2s;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Top Bar Styles */
.top-bar {
    background: #000;
    border-bottom: 1px solid #222;
    padding: 10px 0;
    font-size: 13px;
    color: #888;
    position: relative;
    z-index: 101;
}

.top-info span {
    margin-right: 20px;
}

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

.top-social a {
    color: #aaa;
    margin-left: 15px;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}

.top-social a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.navbar-brand {
    margin: 0;
    padding: 0;
}

/* Dropdown Styles */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px 0;
    min-width: 220px;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu {
    display: flex;
    animation: fadeIn 0.2s ease;
}

.dropdown-menu a {
    color: #ccc;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
    border-left: 2px solid transparent;
    display: block;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-left-color: var(--primary-color);
    padding-left: 25px;
}

/* Talk Button */
.btn-talk {
    background: #d4af37;
    color: #000;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-talk:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar Container */
.navbar .container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Top Bar Container */
.top-bar .container-fluid {
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile Menu Responsive */
@media (max-width: 900px) {
    .navbar .container-fluid {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #333;
    }

    .nav-links.active {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-item-dropdown:hover .dropdown-menu {
        display: none;
    }

    .nav-item-dropdown .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        padding-left: 15px;
        background: transparent;
        display: none;
    }

    .nav-item-dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-item-dropdown .dropdown-trigger i {
        transition: transform 0.3s;
    }

    .nav-item-dropdown.active .dropdown-trigger i {
        transform: rotate(180deg);
    }

    /* Reduced Hero Height */
    .hero-header {
        min-height: 200px;
        height: auto;
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    /* Top Bar Mobile Styles */
    .top-bar .container-fluid {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
        height: auto;
    }

    .top-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .top-info span {
        margin: 0;
        font-size: 13px;
    }

    .top-social {
        margin: 5px 0 0 0;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-header p {
    color: var(--text-muted);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 76, 48, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    /* Large enough to fit content */
    padding-bottom: 10px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

@media (max-width: 900px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .faq-header h2 {
        font-size: 28px;
    }
}

/* Trust Seals Section */
.trust-seals {
    padding: 30px 0;
    background: #000;
    border-bottom: 1px solid #111;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.trust-seals.visible {
    opacity: 1;
    transform: translateY(0);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: default;
    border: 1px solid transparent;
}

.trust-badge:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.03);
}

.trust-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-icon i {
    animation: iconPulse 2s infinite ease-in-out;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.trust-subtitle {
    font-size: 11px;
    color: var(--text-muted);
    margin: 2px 0 0 0;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Trust Seals */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .trust-seals {
        padding: 30px 10px;
    }

    .trust-badge {
        justify-content: flex-start;
        padding: 12px 10px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 20px 15px;
    border-radius: 12px;
    transition: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    min-height: 280px;
    max-height: 280px;
}

.review-card:hover {
    border-color: var(--primary-color);
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
    border: 3px solid var(--primary-color);
    display: block;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.review-content {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
    font-style: normal;
    margin-bottom: 10px;
    position: relative;
    max-height: 120px;
    overflow: hidden;
    transition: none;
}

.review-content.expanded {
    max-height: 1000px;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 15px;
    text-align: left;
    display: block;
}

.read-more-btn:hover {
    text-decoration: underline;
}

.review-content::before {
    display: none;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.author-info h4 {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

.author-info span {
    font-size: 11px;
    color: var(--primary-color);
}

.review-stars {
    color: #ffb800;
    font-size: 12px;
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .review-card {
        padding: 15px 10px;
        min-height: 260px;
        max-height: 260px;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
    }

    .review-content {
        font-size: 12px;
        max-height: 100px;
    }

    .author-info h4 {
        font-size: 13px;
    }
}

/* Batch Starting Section */
/* Compact Batch Starting Section */
.batch-section {
    /* background: rgba(255, 68, 68, 0.08); */
    border-top: 1px solid rgba(255, 68, 68, 0.1);
    border-bottom: 1px solid rgba(255, 68, 68, 0.1);
    padding: 60px 0;
    margin: 60px 0;
}

.batch-section .container {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.batch-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    /*background: #ff4444;*/
}

.batch-header {
    flex: 1;
    min-width: 250px;
}

.batch-title {
    color: #ff4444;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.batch-info p {
    margin: 4px 0;
    font-size: 14px;
    color: #fff;
}

.batch-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

.seats-filled {
    color: #ffb800 !important;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    gap: 12px;
}

.timer-box {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 10px;
    border-radius: 8px;
    min-width: 65px;
    text-align: center;
}

.timer-box span {
    display: block;
}

.timer-num {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.timer-label {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 2px;
}

.batch-btns {
    display: flex;
    gap: 15px;
}

.btn-enroll {
    background: #ff4444;
    padding: 12px 25px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    transition: all 0.3s ease;
}

.btn-demo {
    background: transparent;
    border: 1px solid #fff;
    padding: 12px 25px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.btn-demo:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 1024px) {
    .batch-section {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .batch-title {
        justify-content: center;
    }

    .batch-header {
        min-width: 100%;
    }
}

@media (max-width: 600px) {
    .batch-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-enroll,
    .btn-demo {
        width: 100%;
        text-align: center;
    }

    .countdown-timer {
        gap: 8px;
    }

    .timer-box {
        min-width: 55px;
        padding: 8px;
    }

    .timer-num {
        font-size: 18px;
    }
}