* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --bg-color: var(--bg-color);
    --text-color: var(--text-color);
    --heading-color: var(--text-color);
    --accent-blue: var(--secondary-color);
    --accent-red: var(--primary-color);
    --card-bg: var(--card-bg);
    --border-color: var(--border-color);
    --banner-bg: var(--surface-color);
    --glass-bg: var(--glass-bg);
    --glass-border: var(--glass-border);
    --code-bg: var(--surface-color);
    --code-text: var(--text-color);
    --stat-item-bg: var(--card-bg);
    --feature-item-bg: var(--card-bg);
    --offer-card-bg: var(--surface-color);
    --hologram-glow: rgba(3, 164, 237, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}



.about-banner {
    background: var(--banner-bg);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-banner .left-content h2 {
    font-size: var(--h1-size);
    font-weight: 800;
    color: var(--heading-color);
    line-height: var(--lh-tight);
    margin-bottom: var(--space-lg);
}

.text-glow {
    text-shadow: none !important;
}

.dark-mode .text-glow {
    text-shadow: none !important;
}

/* Heading span reset */
h1 span, h2 span, h3 span {
    text-shadow: none !important;
}

.about-banner .left-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

.about-banner .right-image img {
    max-width: 100%;
    height: auto;
    max-height: 450px; /* Shrink hero image */
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

/* Glass Card Utility */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-blue);
}

/* Stats Section */
.stats-section {
    background: var(--bg-color);
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 45px 35px;
    margin-bottom: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-blue);
}

.stat-item .icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
    font-weight: 500;
}

/* What We Offer - Portfolio Style */
.offer-section {
    background: var(--bg-color);
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.section-heading h2 em {
    font-style: normal;
    color: var(--accent-blue);
}

.section-heading h2 span {
    color: var(--accent-red);
}

.section-heading p {
    font-size: 16px;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.offer-container {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.offer-card {
    background: var(--offer-card-bg);
    border-radius: 20px;
    padding: 40px;
    margin: 15px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #03a4ed 0%, #fe3f40 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.offer-card:hover {
    background: #fff;
    border-color: var(--accent-blue);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(3, 164, 237, 0.15);
}

.offer-card:hover::before {
    transform: scaleX(1);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #03a4ed 0%, #0284c7 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.offer-card:hover .offer-icon {
    background: linear-gradient(135deg, #fe3f40 0%, #ff4d61 100%);
    transform: rotate(10deg) scale(1.1);
}

.offer-icon i {
    font-size: 36px;
    color: #fff;
}

.offer-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.offer-card:hover h4 {
    color: var(--accent-blue);
}

.offer-card p {
    font-size: 15px;
    line-height: 26px;
    color: var(--text-color);
    margin: 0;
    flex-grow: 1;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-red) 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Add negative margin to row to compensate for card margins */
.offer-container .row {
    margin-left: -15px;
    margin-right: -15px;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .offer-container {
        padding: 40px 35px;
    }
}

@media (max-width: 991px) {
    .offer-container {
        padding: 40px 30px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .offer-card {
        padding: 35px;
        margin: 12px;
        height: calc(100% - 24px);
    }
}

@media (max-width: 767px) {
    .offer-section {
        padding: 50px 0;
    }

    .offer-container {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .offer-card {
        padding: 30px;
        margin: 10px;
        height: calc(100% - 20px);
    }

    .offer-icon {
        width: 70px;
        height: 70px;
    }

    .offer-icon i {
        font-size: 32px;
    }

    .offer-card h4 {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .offer-container {
        padding: 25px 15px;
    }

    .offer-card {
        padding: 25px;
        margin: 8px;
        height: calc(100% - 16px);
    }

    .offer-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .offer-icon i {
        font-size: 28px;
    }

    .offer-card h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .offer-card p {
        font-size: 14px;
        line-height: 24px;
    }

    .offer-badge {
        font-size: 11px;
        padding: 5px 14px;
        margin-top: 15px;
    }
}

/* Why Choose Section */
.why-choose-section {
    background: #fafafa;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.feature-item .number {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(105deg, rgba(3, 164, 237, 1) 0%, rgba(254, 63, 64, 1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.feature-item .content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.feature-item .content p {
    font-size: 15px;
    line-height: 26px;
    color: var(--heading-color);
    margin: 0;
}

/* Team Section - Blog Style */
.team-section {
    background: var(--bg-color);
}

.founder-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 30px;
}

.founder-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-blue);
}

.founder-card .image-section {
    height: auto;
    background: linear-gradient(135deg, #03a4ed 0%, #0284c7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 30px;
}

.founder-card .image-section img {
    width: 240px; /* Reduced from 280px */
    height: 240px; /* Reduced from 280px */
    /* object-fit: cover; */
    object-position: center top;
    position: relative;
    z-index: 2;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.founder-card .image-section::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: 1;
}

.founder-card .image-section::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
    z-index: 1;
}

.founder-card .info-section {
    padding: 40px;
}

.founder-card .info-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.founder-card .info-section ul li {
    display: inline-block;
    font-size: 15px;
    color: var(--text-color);
    font-weight: 300;
    margin-right: 20px;
}

.founder-card .info-section ul li i {
    color: #ff4d61;
    font-size: 16px;
    margin-right: 8px;
}

.founder-card .info-section h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.founder-card .info-section .role {
    font-size: 16px;
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.founder-card .info-section p {
    font-size: 15px;
    line-height: 28px;
    color: var(--heading-color);
}

/* Contact Details Styling */
.contact-details {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px;
    background: var(--offer-card-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f0f9ff;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 18px;
    color: var(--accent-red);
    min-width: 20px;
}

.contact-item a {
    color: var(--heading-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-blue);
}

/* Responsive Design */
@media (max-width: 991px) {
    .founder-card .image-section {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .founder-card .image-section {
        height: 300px;
        padding: 15px;
    }

    .founder-card .info-section {
        padding: 30px;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Footer */
footer {
    background-color: var(--bg-color);
    padding: 45px 0;
    text-align: center;
}

footer p {
    color: var(--heading-color);
    margin: 0;
    font-size: 15px;
    line-height: 30px;
}

/* CTA Section */
.cta-section {
    background-color: var(--banner-bg);
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-section h2 {
    font-weight: 700;
    font-size: 36px;
    color: var(--heading-color);
}

.cta-section .lead {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-section .slogan {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-red);
    margin-top: 50px;
}

footer p a {
    color: var(--accent-red);
    text-decoration: none;
}

/* Social Icons - Original Style */
.footer {
    background-color: var(--bg-color);
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.copyright-text {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
    padding: 5px 0;
}

.designer-text {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
    padding: 5px 0;
}

.designer-name {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 500;
}

.designer-name:hover {
    text-decoration: underline;
}


/* Floting Social Media Icons */
.social-icons-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background-color: var(--bg-color);
    /* Background color */
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    justify-content: center;
    align-items: center;
    gap: 20px;
    /* Modern gap between icons */
}

.social-icons a {
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icons a:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.social-icons a i {
    font-size: 2rem;
    /* Base size */
}

@media (max-width: 576px) {
    .social-icons {
        gap: 15px;
    }

    .social-icons a i {
        font-size: 1.5rem;
    }
}

@media (max-width: 375px) {
    .social-icons {
        gap: 10px;
    }

    .social-icons a i {
        font-size: 1.25rem;
    }
}


/* Responsive */
@media (max-width: 991px) {
    .header-area .nav {
        display: none;
    }

    .about-banner {
        padding: 150px 0 80px;
        text-align: center;
    }

    .about-banner .left-content h2 {
        font-size: 36px;
        line-height: 50px;
    }

    .about-banner .right-image {
        margin-top: 40px;
    }

    section {
        padding: 80px 0;
    }

    .section-heading {
        text-align: center;
        margin-bottom: 40px;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .about-banner .left-content h2 {
        font-size: 28px;
        line-height: 40px;
    }

    .stat-item h3 {
        font-size: 32px;
    }

    .social-icons a i {
        font-size: 1.5rem;
    }
}

/* Trinetra Section */
.trinetra-section {
    background: var(--banner-bg);
    padding: 100px 0;
}

.trinetra-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.trinetra-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--hologram-glow) 0%, transparent 70%);
    pointer-events: none;
}

.product-tag {
    background: var(--accent-red);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

/* Protocol Section */
.protocol-steps {
    position: relative;
    padding: 40px 0;
}

.protocol-step {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.step-number {
    font-size: 80px;
    font-weight: 900;
    color: rgba(3, 164, 237, 0.1);
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: -1;
}

.code-window {
    background: var(--code-bg);
    border-radius: 15px;
    padding: 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    color: var(--code-text);
    margin-top: 20px;
    border: 1px solid #30363d;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: left;
}

.code-keyword { color: #ff7b72; }
.code-comment { color: #8b949e; }
.code-string { color: #a5d6ff; }

/* Arsenal Grid */
.arsenal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}

@media (max-width: 767px) {
    .arsenal-grid {
        grid-template-columns: 1fr;
    }
}

.arsenal-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.arsenal-item:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(3, 164, 237, 0.1);
}

.arsenal-item h5 {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-blue);
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: var(--card-bg);
    color: var(--text-color);
    font-weight: 600;
    padding: 20px 25px;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--accent-blue);
    background: rgba(3, 164, 237, 0.05);
}

.faq-accordion .accordion-body {
    background: var(--card-bg);
    color: var(--text-color);
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
}

/* Manifesto Section */
.manifesto-quote {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--heading-color);
    position: relative;
    padding: 40px;
    background: rgba(3, 164, 237, 0.05);
    border-radius: 20px;
    border-left: 5px solid var(--accent-blue);
    margin: 50px 0;
}

.manifesto-quote::before {
    content: '"';
    font-size: 100px;
    color: rgba(3, 164, 237, 0.1);
    position: absolute;
    top: -20px;
    left: 20px;
}

/* Team Hover Effect */
.founder-card .image-section {
    perspective: 1000px;
}

.founder-card .image-section img {
    transition: transform 0.5s ease;
}

.founder-card:hover .image-section img {
    transform: rotateY(10deg) rotateX(5deg);
}

.about-banner .left-content .slogan {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--accent-red);
    margin-bottom: 20px;
    display: block;
    letter-spacing: 2px;
}

/* Arsenal Table */
.arsenal-table {
    width: 100%;
    margin-top: 50px;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.arsenal-table th {
    background: rgba(3, 164, 237, 0.1);
    padding: 20px;
    text-align: left;
    font-weight: 700;
    color: var(--accent-blue);
}

.arsenal-table td {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background: var(--card-bg);
}

.arsenal-table tr:hover td {
    background: rgba(3, 164, 237, 0.02);
}

.check-icon {
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
}

/* Team Section Premium Upgrades */
.founder-card {
    background: var(--card-bg);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-color: var(--accent-blue);
}

.founder-card .info-section h4 {
    color: var(--heading-color);
    font-weight: 800;
}

.founder-card .info-section p {
    color: var(--text-color);
}

/* Protocol Section Upgrades */
.protocol-step h4 {
    color: var(--heading-color);
    font-weight: 700;
    margin-top: 20px;
}

.protocol-step p {
    color: var(--text-color);
}

/* FAQ Upgrades */
.faq-accordion .accordion-button {
    background: var(--card-bg);
    color: var(--heading-color);
    border: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(3, 164, 237, 0.1);
    color: var(--accent-blue);
    box-shadow: none;
}

.faq-accordion .accordion-body {
    background: var(--card-bg);
    color: var(--text-color);
    line-height: 1.8;
}

/* manifesto upgrades */
.manifesto-section h2 {
    color: #ffffff !important;
}

.manifesto-section p {
    color: rgba(255,255,255,0.7) !important;
}

.manifesto-quote {
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    font-style: italic;
    border-left: 4px solid var(--accent-blue);
}

/* Global Footer Sync */
.footer {
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
}

.footer p {
    color: var(--text-color) !important;
    opacity: 0.8;
}

/* Header Sticky Logic */
.header-area.header-sticky {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.header-area.header-sticky .main-nav .nav li a {
    color: var(--heading-color) !important;
}

.header-area.header-sticky .main-nav .logo h4 {
    color: var(--heading-color) !important;
}

.dark-mode .trinetra-card {
    background: linear-gradient(145deg, #1e2227 0%, #161b22 100%);
    border: 1px solid rgba(255,255,255,0.05);
}

.dark-mode .arsenal-item {
    background: #1c2128;
    border: 1px solid #30363d;
}

/* Accessibility & Visibility fixes */
.text-white { color: #ffffff !important; }
.text-white-50 { color: rgba(255,255,255,0.5) !important; }

