/* 
    Inofection Studio - Premium Design Service Website
    Global Styles & Reset 
*/

:root {
    --bg-color: #0b1120;
    /* Deep Navy Dark Background */
    --text-primary: #ffffff;
    /* White text */
    --text-secondary: #94a3b8;
    /* Soft blue-gray for secondary text */
    --accent: #8cdd71;
    /* Original Lime Green */
    --accent-secondary: #4c9ff8;
    /* Original Sky Blue */
    --accent-glow: rgba(140, 221, 113, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);
    --nav-height: 100px;
    --section-min-height: 90vh;
    --font-primary: 'Outfit', sans-serif;
    --transition-speed: 0.4s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-color);
    color: var(--text-primary);
}

body {
    background-color: var(--bg-color);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 80%;
    /* Updated to 80% per user request */
    max-width: 1400px;
    /* Increased max-width for larger screens */
    margin: 0 auto;
}

/* 
    Typography & Text Utilities 
*/

h1,
h2,
h3,
h4 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

.section-Title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-Title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
}

/* 
    Buttons 
*/

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-color);
    border-color: var(--accent);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--accent-secondary);
    border-color: var(--accent-secondary);
}

.btn-outline:hover {
    background-color: var(--accent-secondary);
    color: #ffffff;
}

.btn-text {
    background: none;
    color: var(--text-secondary);
    border: none;
    padding-left: 0;
}

.btn-text:hover {
    color: var(--accent);
    transform: translateX(5px);
}

/* 
    Header & Navigation 
*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background-color: transparent;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
}

.header.scrolled {
    background-color: rgba(11, 11, 15, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    height: 80px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 75px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: width var(--transition-speed) ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    padding: 0;
    z-index: 10001;
    /* Higher than mobile menu */
    position: relative;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    transition: all var(--transition-speed) ease;
}

/* 
    Mobile Menu Overlay 
*/

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #081221;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav-links li {
    margin: 2rem 0;
    text-align: center;
}

.mobile-nav-links a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    /* Now Navy Blue */
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 3rem;
    color: var(--text-primary);
    /* Now Navy Blue */
    cursor: pointer;
}

/* 
    Main Content & Sections 
*/

.section {
    min-height: var(--section-min-height);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.section.bg-alt {
    background-color: #f8f9fa;
    /* Very Light Gray */
}

.center-content {
    text-align: center;
    max-width: 800px;
    /* Constrain width for readability */
}

/* 
    Hero Slider Section 
*/

/* 
    Hero Entrance Section (Mavera Inspired)
*/
.hero-entrance {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(140, 221, 113, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(76, 159, 248, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 2;
}

.hero-entrance-container {
    position: relative;
    z-index: 10;
    padding-top: 60px;
}

.hero-status-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInDown 0.8s forwards 0.5s;
}

.status-line {
    width: 40px;
    height: 1px;
    background-color: var(--accent);
}

.status-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent);
    text-transform: uppercase;
}

.hero-title-reveal {
    margin-bottom: 40px;
}

.reveal-line {
    display: block;
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -2px;
    color: var(--text-primary);
    overflow: hidden;
    margin-bottom: 5px;
}

.reveal-line.line-2 {
    background: linear-gradient(to right, #ffffff, var(--accent-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations for Lines */
.line-1 {
    animation: slideUpReveal 1s cubic-bezier(0.77, 0, 0.175, 1) forwards 0.7s;
    transform: translateY(100%);
    opacity: 0;
}

.line-2 {
    animation: slideUpReveal 1s cubic-bezier(0.77, 0, 0.175, 1) forwards 0.9s;
    transform: translateY(100%);
    opacity: 0;
}

.line-3 {
    animation: slideUpReveal 1s cubic-bezier(0.77, 0, 0.175, 1) forwards 1.1s;
    transform: translateY(100%);
    opacity: 0;
}

@keyframes slideUpReveal {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

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

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 50px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 1.4s;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 1.6s;
}

.btn-explore {
    background: none;
    border: none;
    padding: 0;
    color: #ffffff;
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    height: 30px;
}

.btn-explore:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.btn-glow {
    background-color: var(--accent);
    background-image: linear-gradient(to right, var(--accent), var(--accent-secondary));
    box-shadow: 0 0 20px rgba(140, 221, 113, 0.3);
    border: none;
    border-radius: 8px;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(140, 221, 113, 0.6);
}

/* Glow Spheres */
.glow-sphere {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.3;
}

.sphere-1 {
    top: -10%;
    right: -5%;
    background-color: var(--accent);
}

.sphere-2 {
    bottom: -10%;
    left: 10%;
    background-color: var(--accent-secondary);
    width: 400px;
    height: 400px;
    opacity: 0.1;
}

/* Scroll Mouse */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    animation: fadeIn 1s forwards 2.5s;
    z-index: 10;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
}

.scroll-mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 2px;
    animation: mouseScroll 1.5s infinite;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

@keyframes mouseScroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.section-Title {
    color: var(--text-primary);
}

@media (max-width: 991px) {
    .reveal-line {
        font-size: 4.5rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .reveal-line {
        font-size: 3rem;
    }
}

/* 
    Footer 
*/

.footer {
    padding: 80px 0 40px;
    background-color: #050507;
    color: #ffffff;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-brand .footer-logo span {
    color: var(--accent);
}

.footer-brand .footer-logo,
.footer-desc {
    color: #ffffff;
}

.footer-desc {
    font-size: 0.9rem;
    max-width: 300px;
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav ul li,
.footer-social ul li {
    margin-bottom: 0.8rem;
}

.footer-nav a,
.footer-social a {
    color: #e0e0e0;
}

.footer-nav a:hover,
.footer-social a:hover {
    color: var(--accent);
    padding-left: 5px;
    /* Subtle shift */
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: #aaaaaa;
}

/* 
    Responsive Design 
*/

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Hide standard nav */
    }

    .hamburger {
        display: flex;
        /* Show hamburger */
    }

    .header-actions .btn {
        display: none;
        /* Hide CTA on small mobile to serve space, use menu instead */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .section-Title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-brand .footer-logo,
    .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

/* 
    Services Marquee Slider 
*/

.services-marquee {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: -45px auto 40px auto;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: scrollMarquee 30s linear infinite;
    padding: 0 1.5rem;
}

.service-item {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: default;
    text-transform: uppercase;
}

.service-item i {
    color: var(--accent);
    /* Lime Green Icon */
    font-size: 1.2rem;
}

.service-item:hover {
    color: var(--accent-secondary);
    /* Sky Blue hover */
}

.service-item::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: #ddd;
    /* Light gray separator circle */
    border-radius: 50%;
    margin-left: 3rem;
}

.service-item:last-child::after {
    display: none;
}

/* Updated Container Width as per user request */
.container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 
    About Us Section 
    */

.about-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow: hidden;
}

/* Subtle gradient line divider */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.about-container {
    width: 80%;
    /* Updated to 80% */
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Text wider than image */
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    /* Navy Blue */
    line-height: 1.2;
}

.about-text p {
    color: var(--text-secondary);
    /* Dark Gray */
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--accent);
    /* Lime Green */
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat span {
    color: var(--text-secondary);
    /* Dark Gray */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.about-visual {
    position: relative;
}

/* Image Placeholder Box with Border & Glow */
.about-img-placeholder {
    width: 100%;
    height: 500px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Optional: Actual image styling if used later */
/* Adjusted for Logo Display */
.about-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensure logo is not cropped */
    padding: 60px;
    /* Add spacing around the logo */
    opacity: 1;
    /* Always visible */
    transition: transform 0.5s ease;
}

.about-img-placeholder:hover img {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

/* Decorative element */
.about-visual::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent);
    /* Lime Green border */
    z-index: -1;
    border-radius: 12px;
    opacity: 0.3;
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-img-placeholder {
        height: 350px;
    }
}

/* 
    Interactive Services & Tools Section 
*/

.interactive-section {
    padding: 100px 0;
    /* Animated Gradient Background */
    background: linear-gradient(-45deg, #0b1120, #0f172a, #0b1120, #1e293b);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #ffffff;
    position: relative;
    border-top: 1px solid var(--border-color);
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.interactive-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
}

.interactive-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.interactive-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--accent);
    /* Lime Green */
    color: var(--text-primary);
    /* Navy Blue text */
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(140, 221, 113, 0.4);
}

/* Content Area */
.content-area {
    min-height: 400px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

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

/* Services Grid (Single Column Stack) */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Remove gap for seamless list look */
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Top border for the list */
}

/* Services Card Grid Styles */
.services-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

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

@media (max-width: 768px) {
    .services-grid-container {
        grid-template-columns: 1fr;
    }
}

.service-card-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.service-card-item:hover {
    transform: translateY(-10px);
    background: rgba(140, 221, 113, 0.05);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card-item i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 25px;
    display: inline-block;
}

.service-card-item h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}




@media (max-width: 768px) {
    .services-bubble-container {
        min-height: 400px;
        gap: 20px;
    }

    .service-bubble {
        width: 150px;
        height: 150px;
        padding: 15px;
    }

    .service-bubble i {
        font-size: 2rem;
    }

    .service-bubble span {
        font-size: 0.85rem;
    }
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
}

.tool-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.tool-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-secondary);
    /* Sky Blue border */
    box-shadow: 0 5px 15px rgba(76, 159, 248, 0.2);
}



.tool-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
    filter: grayscale(80%);
    /* Subtle grayscale */
    transition: filter 0.3s ease, transform 0.3s ease;
}

.tool-card:hover .tool-img {
    filter: grayscale(0%);
    /* Full color on hover */
    transform: scale(1.1);
}

/* Specific Colors for brands on hover if desired, or keep uniform */

.tool-name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

@media (max-width: 600px) {
    .interactive-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 
    Why Choose Us Section 
*/
.why-us-section {
    padding: 100px 0;
    background-color: var(--bg-color);
    background-image: linear-gradient(rgba(11, 11, 15, 0.95), rgba(11, 11, 15, 0.95));
    text-align: center;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.why-header {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    padding: 0 1.5rem;
}

.why-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    /* Navy Blue */
    margin-bottom: 1rem;
}

.why-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.why-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top-color: var(--accent);
    /* Lime Green Top Border on Hover*/
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.why-item:hover .icon-circle {
    background-color: var(--text-primary);
    color: var(--accent);
}

.why-item h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.why-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .why-header h2 {
        font-size: 2rem;
    }
}

/* 
/* 
    Deployment Cycle Section (Operational Methodology)
*/
.deployment-section {
    padding: 120px 0;
    background-color: #081221;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.deployment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5rem;
    gap: 40px;
}

.workflow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.workflow-badge .dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.deployment-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2px;
}

.deployment-desc {
    max-width: 450px;
    padding-top: 60px;
}

.deployment-desc p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 1.1rem;
}

.deployment-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
}

.deployment-card {
    position: relative;
    padding: 30px 0;
    z-index: 2;
}

.step-num {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.deployment-card:hover .icon-box {
    background: var(--accent);
    color: #081221;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(140, 221, 113, 0.3);
}

.deployment-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.sub-subtitle {
    display: block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.deployment-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.6;
}

.deployment-line {
    position: absolute;
    top: 145px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.1) 0%,
            var(--accent) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
    opacity: 0.3;
}

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

    .deployment-header {
        flex-direction: column;
        gap: 20px;
    }

    .deployment-desc {
        padding-top: 0;
        max-width: 100%;
    }

    .deployment-line {
        display: none;
    }
}

@media (max-width: 600px) {
    .deployment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .deployment-card {
        padding: 20px 0;
        text-align: center;
    }

    .icon-box {
        margin: 0 auto 20px;
    }

    .deployment-main-title {
        font-size: 1.8rem;
    }
}

/* Horizontal Timeline Responsive */
@media (max-width: 991px) {
    .process-timeline {
        flex-wrap: wrap;
        gap: 30px;
    }

    .process-step {
        flex: 0 0 calc(50% - 15px);
    }

    .process-timeline::before {
        display: none;
        /* Line doesn't work well on grid flow */
    }
}

@media (max-width: 600px) {
    .process-step {
        flex: 0 0 100%;
    }
}

/* 
    FAQ Section 
*/
.faq-section {
    padding: 100px 0;
    background: linear-gradient(-45deg, #103059, #1a4a8a, #0d2545, #163d71);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    position: relative;
    color: #ffffff;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.faq-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.faq-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    align-self: start;
}

.faq-item:hover {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.faq-item.active .faq-question {
    color: var(--accent);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px 25px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .faq-list {
        grid-template-columns: 1fr;
    }
}

/* 
    Newsletter Section 
*/
.newsletter-section {
    padding: 140px 0;
    background-color: var(--bg-color);
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border-color);
}

.newsletter-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(140, 221, 113, 0.1) 0%, rgba(11, 17, 32, 1) 100%);
    border-radius: 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.newsletter-card::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(140, 221, 113, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.newsletter-card h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.newsletter-card p {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 3.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    max-width: 550px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.newsletter-form:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}

.newsletter-form input {
    flex: 1;
    padding: 15px 30px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    padding: 15px 40px;
    border-radius: 40px;
    background: var(--accent);
    color: var(--text-primary);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(140, 221, 113, 0.2);
}

.newsletter-form button:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(140, 221, 113, 0.4);
}

/* 
    Floating Contact Button (FAB)
*/
/* 
    Simplified Direct Call FAB
*/
.fab-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    text-decoration: none;
}

.fab-main {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(140, 221, 113, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 10;
}

.fab-label {
    position: absolute;
    right: 75px;
    background: var(--accent);
    color: var(--bg-color);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.fab-container:hover .fab-main {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(140, 221, 113, 0.4);
}

.fab-container:hover .fab-label {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .fab-container {
        bottom: 20px;
        right: 20px;
    }

    .fab-main {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .fab-label {
        display: none;
    }
}



/* 
    Premium Footer Re-design
*/
.footer {
    padding: 100px 0 30px;
    background: #060e1a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(140, 221, 113, 0.05) 0%, transparent 70%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand .logo img {
    height: 45px;
    margin-bottom: 25px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 320px;
    font-size: 0.95rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links li a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--accent);
    width: 20px;
}

.footer-newsletter h4 {
    margin-bottom: 20px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-form-footer {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 5px;
}

.newsletter-form-footer input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 15px;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form-footer button {
    background: var(--accent);
    color: var(--bg-color);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form-footer button:hover {
    transform: scale(1.05);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-social-links {
    display: flex;
    gap: 20px;
}

.footer-social-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* 
    Blog Page Components
*/
.blog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-img-box {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-box img {
    transform: scale(1.1);
}

.blog-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--bg-color);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.blog-content h3 {
    font-size: 1.4rem;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: var(--accent);
}

.blog-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* 
    Blog Detail Page Styles
*/
.blog-post-header {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: #081221;
}

.blog-post-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 60px;
}

.blog-post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(8, 18, 33, 0.9) 100%);
}

.blog-post-meta-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.blog-post-meta-top .tag {
    background: var(--accent);
    color: var(--bg-color);
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-post-meta-top .date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.blog-detail-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-post-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.blog-content-rich {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.8;
}

.blog-content-rich p {
    margin-bottom: 30px;
}

.blog-content-rich h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin: 60px 0 30px;
    letter-spacing: -1px;
}

.blog-content-rich h3 {
    font-size: 1.6rem;
    color: var(--accent);
    margin: 40px 0 20px;
}

.blog-blockquote {
    position: relative;
    padding: 40px;
    background: rgba(140, 221, 113, 0.05);
    border-left: 4px solid var(--accent);
    border-radius: 0 20px 20px 0;
    margin: 50px 0;
}

.blog-blockquote p {
    font-size: 1.5rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.blog-blockquote cite {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-style: normal;
    font-weight: 700;
}

.blog-rich-img {
    margin: 50px 0;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.blog-rich-img img {
    width: 100%;
    display: block;
}

.blog-img-caption {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 25px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-accent-list {
    margin: 40px 0;
    padding-left: 0;
}

.blog-accent-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    list-style: none;
}

.blog-accent-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
}

.post-footer-author {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 30px;
    align-items: center;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--accent);
}

.author-info h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.author-socials {
    display: flex;
    gap: 15px;
}

.author-socials a {
    color: var(--accent);
    font-size: 1.1rem;
}

.author-socials a:hover {
    color: #ffffff;
}

.related-posts-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 768px) {
    .blog-post-hero {
        height: 40vh;
        border-radius: 20px;
    }

    .blog-post-title {
        font-size: 2.2rem;
    }

    .blog-content-rich {
        font-size: 1.1rem;
    }

    .blog-blockquote {
        padding: 30px;
    }

    .blog-blockquote p {
        font-size: 1.2rem;
    }

    .post-footer-author {
        flex-direction: column;
        text-align: center;
    }
}

/* 
    Project Detail Page Components
*/
/* 
    Modern Project Detail Components
*/
.project-detail-wrapper {
    padding-bottom: 120px;
}

.project-hero-area {
    margin-bottom: 80px;
}

.project-title-box {
    margin-bottom: 50px;
}

.project-title-box h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -2px;
    margin-bottom: 15px;
}

.project-visuals {
    border-radius: 40px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.mini-slider {
    position: relative;
    height: 65vh;
    min-height: 450px;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Horizontal Minimal Dashboard */
.project-specs-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 30px;
    margin: -50px auto 60px;
    width: 90%;
    position: relative;
    z-index: 20;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-item:last-child {
    border-right: none;
}

.spec-icon {
    width: 45px;
    height: 45px;
    background: rgba(140, 221, 113, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.spec-info label {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.spec-info span {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
}

/* Project Content & Story */
.project-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.project-story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: -1px;
}

.story-block {
    margin-bottom: 45px;
}

.story-block h3 {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.story-block p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.85;
    font-size: 1.1rem;
}

/* Quote/Highlight Box */
.project-highlight-box {
    background: linear-gradient(135deg, rgba(140, 221, 113, 0.1), rgba(76, 159, 248, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    margin: 40px 0;
}

.highlight-title {
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.project-highlight-box p {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 1024px) {
    .project-specs-dashboard {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 30px;
    }

    .spec-item:nth-child(2) {
        border-right: none;
    }

    .project-story-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .project-specs-dashboard {
        width: 100%;
        padding: 20px;
    }

    .spec-item {
        border-right: none;
    }

    .project-highlight-box p {
        font-size: 1.2rem;
    }
}

/* 
    Contact Page Styles (Modern & Premium)
*/
.contact-page-wrapper {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: radial-gradient(circle at 10% 10%, rgba(124, 58, 255, 0.1), transparent 40%),
        var(--bg-color);
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.contact-hero-content {
    text-align: center;
    margin-bottom: 60px;
}

.contact-hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -2px;
    color: #ffffff;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid-premium {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 40px;
    align-items: stretch;
}

/* Info Cards Styling */
.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.premium-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.premium-info-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px) translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(140, 221, 113, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.premium-info-card:hover .card-icon {
    background: var(--accent);
    color: var(--text-primary);
    transform: rotate(10deg) scale(1.1);
}

.card-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.card-text p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Modern Glass Form */
.premium-contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.premium-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--accent), transparent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.floating-input-group {
    position: relative;
    margin-bottom: 30px;
}

.glass-input {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(140, 221, 113, 0.1);
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.premium-contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.submit-btn-premium {
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    background: var(--accent);
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(140, 221, 113, 0.3);
    background: #9dee7f;
}

@media (max-width: 991px) {
    .contact-grid-premium {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero-content h1 {
        font-size: 3rem;
    }
}

/* 
    Digital HUB Button & Page 
*/
.btn-tools {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff !important;
    font-weight: 800 !important;
    border: 1px solid var(--accent);
    position: relative;
    padding: 6px 16px !important;
    border-radius: 50px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-tools i,
.btn-tools img {
    height: 18px;
    width: auto;
    object-fit: contain;
}

.btn-tools:hover {
    background: var(--accent);
    color: #103059 !important;
    box-shadow: 0 8px 25px rgba(140, 221, 113, 0.4);
    transform: translateY(-2px);
}

.btn-tools:hover i {
    color: #103059;
}

@keyframes toolsPulse {
    0% {
        border-color: var(--accent);
    }

    50% {
        border-color: #ffffff;
    }

    100% {
        border-color: var(--accent);
    }
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Dashboard & HUB HUB HUB */
.dashboard-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    margin-top: 40px;
    color: #ffffff;
}

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

.dashboard-sidebar {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 35px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Tabs */
.hub-tabs {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 20px;
    margin-bottom: 20px;
    width: fit-content;
}

.hub-tab-btn {
    padding: 12px 25px;
    border-radius: 12px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hub-tab-btn.active {
    background: var(--accent);
    color: #103059;
}

.hub-tab-content {
    display: none;
}

.hub-tab-content.active {
    display: block;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.metric-card-hub {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
}

.metric-card-hub:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent);
}

.metric-card-hub h4 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.metric-card-hub .metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.metric-card-hub .metric-sub {
    font-size: 0.8rem;
    color: var(--accent);
    margin-top: 5px;
}

.chart-card-hub {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 40px;
    height: 400px;
    /* Constrain height to prevent stretching */
    position: relative;
    display: flex;
    flex-direction: column;
}

.chart-card-hub h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.chart-card-hub canvas {
    flex: 1;
    width: 100% !important;
    height: 100% !important;
}

/* Input Styles */
.hub-group {
    margin-bottom: 30px;
}

.hub-group label {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hub-select,
.hub-input,
.hub-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    color: #ffffff;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.hub-select:focus,
.hub-input:focus,
.hub-textarea:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(140, 221, 113, 0.2);
}

.hub-select option {
    background: #0d1e33;
    color: #ffffff;
}

/* Utils */
.text-accent {
    color: var(--accent);
}

.bg-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

/* Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 18, 33, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content-hub {
    background: #0d1e33;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content-hub {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.modal-close:hover {
    opacity: 1;
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 700;
}

.modal-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 115px;
    /* Above the FAB */
    right: 45px;
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: #0b1120;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 
    Enhanced Responsive Design System 
*/

@media (max-width: 1200px) {
    .container {
        width: 90%;
    }
}

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

    .project-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-specs-dashboard {
        position: static;
        width: 100%;
        order: -1;
        /* Dashboard comes before story on tablet/mobile if needed, or stays below visuals */
    }

    .contact-hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 80px;
    }

    .container {
        width: 92%;
    }

    .header-actions .btn-primary {
        display: none;
    }

    .header-actions {
        gap: 8px;
    }

    .btn-tools {
        padding: 6px 14px !important;
        font-size: 0.8rem;
    }

    .reveal-line {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .hero-entrance-container {
        padding-top: 40px;
    }

    .hero-status-bar {
        margin-bottom: 25px;
    }

    .status-text {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 5px 0 15px;
        -webkit-overflow-scrolling: touch;
        width: 100vw;
        margin-left: -4vw;
        /* Offset container padding */
        padding-left: 4vw;
        gap: 10px;
    }

    .blog-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .project-visuals {
        border-radius: 20px;
    }

    .mini-slider {
        height: 300px;
    }

    .project-story-content h2 {
        font-size: 1.8rem;
    }

    .story-block p {
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-info {
        align-items: center;
    }

    .newsletter-form-footer {
        flex-direction: column;
        background: transparent;
        border: none;
        gap: 10px;
    }

    .newsletter-form-footer input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        width: 100%;
        text-align: center;
    }

    .newsletter-form-footer button {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .modal-content-hub {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .modal-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .btn-tools span {
        display: none;
    }

    .btn-tools {
        width: 42px;
        height: 42px;
        justify-content: center;
        border-radius: 50% !important;
        padding: 0 !important;
    }

    .logo img {
        max-height: 50px;
    }

    .contact-hero-content h1 {
        font-size: 2.2rem;
    }

    .blog-img-box {
        height: 200px;
    }
}