/* Modern Design System for LI-MAT SOFT SOLUTIONS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700&display=swap');

:root {
    --primary: #5266ff;
    --primary-dark: #3b4ed9;
    --accent: #00c2ff;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --nav-text: #4a5568;
    --bg-gradient: linear-gradient(135deg, #4461ff 0%, #7d5cff 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: #f8fafc;
    overflow-x: hidden;
    color: #1a202c;
}

/* Header & Navigation */
header {
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img-wrapper {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nav-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a202c;
    letter-spacing: -0.2px;
    line-height: 1;
    margin-bottom: 2px;
}

.logo-text span {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 500;
}

.main-nav {
    margin-left: auto;
    margin-right: 40px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.main-nav ul li a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: #00c2ff;
}

.main-nav ul li a.active {
    color: #00c2ff;
    font-weight: 600;
    position: relative;
}

.main-nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #00c2ff;
    border-radius: 1px;
}

.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item-dropdown a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item-dropdown i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 220px;
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.12);
    border-radius: 14px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.98);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    list-style: none;
    z-index: 1000;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 12px;
    color: #4a5568 !important;
    font-size: 0.85rem !important;
    font-weight: 500;
    transition: all 0.2s ease !important;
    border-radius: 10px;
}

.dropdown-menu li a:hover {
    background: rgba(0, 194, 255, 0.12);
    color: #00c2ff !important;
}

.btn-get-demo-new {
    background: #00c2ff;
    color: white;
    padding: 10px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-get-demo-new:hover {
    background: #00b4eb;
    transform: translateY(-1px);
}

/* New Hero Section */
.hero-wrapper {
    min-height: 100vh;
    padding: 100px 4% 60px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-new {
    width: 100%;
    max-width: 1400px;
    height: 600px;
    background: #0b1222 url('Assests/Hero-Bgimage.png') no-repeat center;
    background-size: cover;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.hero-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 18, 34, 0.8) 0%, rgba(11, 18, 34, 0) 60%);
    padding: 0 8%;
    display: flex;
    align-items: center;
}

.hero-text-content {
    max-width: 800px;
    /* Increased to accommodate single-line text */
    color: white;
}

.hero-text-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.title-line {
    display: block;
    white-space: nowrap;
    /* Forces onto a single line */
}

.hero-accent {
    display: inline-block;
    padding: 2px 14px;
    background: rgba(0, 194, 255, 0.1);
    border: 1px solid rgba(0, 194, 255, 0.5);
    border-radius: 6px;
    color: #00c2ff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 194, 255, 0.3);
    backdrop-filter: blur(4px);
    margin-left: 10px;
    vertical-align: middle;
    animation: techPulse 3s ease-in-out infinite;
}

@keyframes techPulse {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(0, 194, 255, 0.2);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 194, 255, 0.5);
        transform: scale(1.02);
    }
}

@media (max-width: 600px) {
    .title-line {
        white-space: normal;
        /* Allow wrap on mobile */
    }
}

.hero-text-content p {
    font-size: 1.15rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-explore-ghost {
    display: inline-block;
    border: 1.5px solid white;
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-explore-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Floating Tech Labels */
.tech-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.t-label {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #00e0ff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 224, 255, 0.5);
    animation: techBounce 4s ease-in-out infinite;
}

@keyframes techBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.t-label span {
    background: rgba(11, 18, 34, 0.6);
    padding: 4px 10px;
    border: 1px solid rgba(0, 224, 255, 0.3);
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #00e0ff, transparent);
    margin-top: 5px;
}

.lab-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.lab-2 {
    top: 20%;
    left: 45%;
    animation-delay: 0.8s;
}

.lab-3 {
    top: 55%;
    left: 43%;
    animation-delay: 1.5s;
}

.lab-4 {
    top: 55%;
    right: 35%;
    animation-delay: 2.2s;
}

@media (max-width: 968px) {
    .main-nav {
        display: none;
    }

    .hero-card-new {
        height: auto;
        min-height: 500px;
        padding-bottom: 60px;
    }

    .hero-overlay-content {
        background: linear-gradient(to bottom, rgba(11, 18, 34, 0.9) 0%, rgba(11, 18, 34, 0.6) 100%);
        text-align: center;
        justify-content: center;
    }

    .tech-labels {
        display: none;
    }
}

/* Bottom Controls */
.hero-controls {
    position: absolute;
    bottom: -110px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mouse-scroll {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
}

.mouse-scroll::after {
    content: '';
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    animation: scrollMove 2s infinite;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    width: 24px;
    background: white;
    border-radius: 10px;
}

/* Welcome Section */
.welcome-section {
    padding: 100px 5%;
    background: white;
    text-align: center;
}

.welcome-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.welcome-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .card-overlay {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Modal popup styling */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.visible {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    color: var(--text-main);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.know-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.know-more:hover {
    gap: 12px;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 5%;
    background: #f0f9ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Gives more space to text, less to image */
    gap: 60px;
    align-items: center;
}

.why-choose-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.why-choose-content .desc {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
}

.checklist {
    list-style: none;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #475569;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.why-choose-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    /* Reduced fixed maximum width */
    margin-left: auto;
    /* Keeps it right-aligned in its column */
}

.why-choose-image img {
    width: 100%;
    display: block;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollMove {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    header {
        padding: 15px 4%;
    }

    nav {
        display: none;
        /* In real app, add burger menu */
    }

    .hero-card {
        padding: 40px 5%;
        height: auto;
        min-height: 80vh;
        margin: 40px 0;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .welcome-header h2,
    .why-choose-content h2 {
        font-size: 2rem;
    }

    .docs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .docs-container {
        padding: 40px 20px;
    }
}

/* Specialized Solutions Section */
.solutions-section {
    padding: 100px 5%;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.section-header .underline {
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.solution-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

/* Solution Icon Colors */
.icon-blue {
    background: #5266ff;
}

.icon-cyan {
    background: #00c2ff;
}

.icon-purple {
    background: #7d5cff;
}

.icon-orange {
    background: #ff6b35;
}

.icon-green {
    background: #10b981;
}

.icon-light-blue {
    background: #3b82f6;
}

.icon-lavender {
    background: #8b5cf6;
}

.icon-pink {
    background: #f43f5e;
}

.solution-card h3 {
    font-size: 1.15rem;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 700;
}

.solution-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* Documentation Services Section */
.documentation-section {
    padding: 60px 5% 100px;
    background: #ffffff;
}

.docs-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #f0f9ff;
    border-radius: 24px;
    padding: 60px;
    text-align: center;
}

.docs-container h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 40px;
}

.docs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    text-align: left;
}

.docs-left,
.docs-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.docs-left h3,
.docs-right h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.docs-left p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
}

.docs-right ul {
    list-style: none;
}

.docs-right ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    color: #475569;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.docs-right ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* Industries Grid within docs-right */
.docs-right .industries-grid {
    margin-top: 20px;
    align-self: stretch;
}

.docs-right .industry-card {
    width: 100%;
    box-sizing: border-box;
}

/* About Details Section */
.about-details-section {
    padding: 100px 5%;
    background: #ffffff;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-text b,
.about-text strong {
    color: #1e293b;
    font-weight: 700;
}

.expertise-box {
    background: #f0faff;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
}

.expertise-box h4 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.expertise-list {
    list-style: none;
}

.expertise-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
}

.expertise-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00c2ff;
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 1;
}

.bold-tagline {
    font-size: 1.1rem;
    color: #4b5563;
    margin-top: 40px;
    font-weight: 500;
    /* Matching visual weight */
}

/* About Stats Cards */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 80px auto;
}

.about-stat-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.stat-icon-circle {
    width: 60px;
    height: 60px;
    background: #00c2ff;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.about-stat-card h3 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 8px;
    font-weight: 700;
}

.about-stat-card h4 {
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-stat-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* Certified Section */
.certified-section {
    padding: 20px 0 100px;
    text-align: center;
}

.certified-section h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 60px;
    font-weight: 700;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.logo-item img {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .logos-grid {
        gap: 40px;
    }

    .logo-item img {
        max-height: 50px;
    }
}

/* Prestigious Clients Section */
.clients-section {
    padding: 100px 5%;
    background: #ffffff;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.client-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
}

.card-def::before {
    background: linear-gradient(to right, #4461ff, #7d5cff);
}

.card-corp::before {
    background: linear-gradient(to right, #00c2ff, #00e0ff);
}

.card-forces::before {
    background: linear-gradient(to right, #7d5cff, #ff2d95);
}

.client-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 25px;
}

.icon-def {
    background: #5266ff;
}

.icon-corp {
    background: #00c2ff;
}

.icon-forces {
    background: #7d5cff;
}

.client-card h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.client-list {
    list-style: none;
}

.client-list li {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-list li::before {
    content: '•';
    color: #00c2ff;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Prestigious Projects Showcase */
.projects-showcase {
    background: #0099d6;
    padding: 80px 5%;
    color: white;
    text-align: center;
    margin-bottom: 80px;
}

.projects-showcase h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.projects-showcase p {
    opacity: 0.9;
    margin-bottom: 50px;
}

.project-bubbles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.project-chip {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 25px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.project-chip:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.03);
}

/* Bottom Stats Band */
.bottom-stats-row {
    display: flex;
    justify-content: space-around;
    max-width: 1100px;
    margin: 0 auto 100px;
    text-align: center;
}

.b-stat h3 {
    font-size: 2.5rem;
    color: #0077b6;
    font-weight: 700;
    margin-bottom: 10px;
}

.b-stat p {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 968px) {
    .project-bubbles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .project-bubbles {
        grid-template-columns: 1fr;
    }

    .bottom-stats-row {
        flex-direction: column;
        gap: 40px;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 5%;
    background: linear-gradient(rgba(0, 50, 100, 0.9), rgba(0, 50, 100, 0.9)),
        url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.cta-content p.cta-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 45px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-text span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 2px;
}

.contact-text a,
.contact-text p {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

.cta-btns {
    display: flex;
    gap: 20px;
}

.btn-schedule {
    background: white;
    color: #0077b6;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-schedule:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.btn-direct-link {
    background: transparent !important;
    color: white !important;
    padding: 14px 28px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: none !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
}

/* Hover Effect - Subtle Fill */
.btn-direct-link:hover {
    transform: translateY(-2px) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: white !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Active/Click Effect - Press Down */
.btn-direct-link:active {
    transform: translateY(0px) scale(0.98) !important;
    background: rgba(255, 255, 255, 0.25) !important;
    transition: all 0.1s ease !important;
}

/* Icon Animation on Hover */
.btn-direct-link i {
    width: 20px !important;
    height: 20px !important;
    color: white !important;
    transition: transform 0.3s ease !important;
}

.btn-direct-link:hover i {
    transform: scale(1.15) !important;
}

/* Ripple Effect on Click */
.btn-direct-link::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 0 !important;
    height: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translate(-50%, -50%) !important;
    transition: width 0.6s ease, height 0.6s ease !important;
}

.btn-direct-link:active::after {
    width: 300px !important;
    height: 300px !important;
}

/* Focus for Accessibility */
.btn-direct-link:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5) !important;
    outline-offset: 2px !important;
}

/* Secondary variant for download if needed */
.btn-download-alt {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-download-alt:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 35px;
    font-weight: 600;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-row {
    display: flex;
    gap: 20px;
}

.info-num {
    width: 32px;
    height: 32px;
    background: #00c2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-text p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

@media (max-width: 968px) {
    .cta-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .cta-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-btns {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-schedule,
    .btn-download-alt {
        justify-content: center;
    }

    .info-card {
        padding: 30px 20px;
    }
}

/* Site Footer Styling */
.site-footer {
    background: linear-gradient(rgba(11, 18, 34, 0.9), rgba(11, 18, 34, 0.9)), url('Assests/ietm-footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0 0;
    font-family: var(--font-body);
}

.footer-main-container {
    padding: 0 5% 100px;
}

.footer-card {
    background: rgba(74, 134, 247, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    position: relative;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.f-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 12px;
    padding: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.f-nav {
    display: flex;
    gap: 25px;
    list-style: none;
    margin-top: 20px;
}

.f-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.f-subscribe {
    max-width: 400px;
    margin-left: auto;
}

.f-subscribe h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.sub-input-group {
    display: flex;
    margin-bottom: 15px;
}

.sub-input-group input {
    flex: 1;
    background: #5d93f8;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 15px;
    color: white;
    outline: none;
}

.sub-input-group button {
    background: white;
    color: #4a86f7;
    border: none;
    padding: 0 25px;
    font-weight: 600;
    cursor: pointer;
}

.sub-small {
    font-size: 0.75rem;
    opacity: 0.8;
}

.f-divider {
    grid-column: span 2;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.f-bottom {
    grid-column: span 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.f-legal {
    display: flex;
    gap: 20px;
}

.f-legal a {
    color: white;
    text-decoration: underline;
}

/* Base Bottom Bar */
.footer-base-bar {
    background: #0b1222;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.f-base-links {
    display: flex;
    gap: 20px;
}

.f-base-links a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 968px) {
    .footer-card-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .f-logo,
    .f-nav,
    .f-subscribe {
        margin-left: auto;
        margin-right: auto;
    }

    .f-nav {
        justify-content: center;
    }

    .f-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Footer Card Animation */
.footer-card {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-card.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered animation for footer elements */
.footer-card.animate-on-scroll.visible .footer-card-left {
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.footer-card.animate-on-scroll.visible .footer-card-right {
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.footer-card.animate-on-scroll.visible .f-divider {
    animation: expandWidth 0.6s ease-out 0.6s both;
}

.footer-card.animate-on-scroll.visible .f-bottom {
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes expandWidth {
    from {
        opacity: 0;
        transform: scaleX(0);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Hover Effects */
.footer-card.animate-on-scroll.visible .footer-card-left:hover,
.footer-card.animate-on-scroll.visible .footer-card-right:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.footer-card.animate-on-scroll.visible:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 20px 45px rgba(0, 0, 0, 0.3),
        0 10px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.footer-card.animate-on-scroll.visible .social-icons a {
    transition: all 0.3s ease;
}

.footer-card.animate-on-scroll.visible .social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    color: #00c2ff !important;
    filter: drop-shadow(0 5px 10px rgba(0, 194, 255, 0.3));
}

.footer-card.animate-on-scroll.visible .f-nav a {
    transition: all 0.3s ease;
}

.footer-card.animate-on-scroll.visible .f-nav a:hover {
    color: #00c2ff !important;
    transform: translateX(8px) scale(1.05);
    text-shadow: 0 2px 8px rgba(0, 194, 255, 0.4);
}

.footer-card.animate-on-scroll.visible .sub-input-group input:focus {
    background: rgba(93, 147, 248, 0.8);
    border-color: #00c2ff;
    box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.2);
}

.footer-card.animate-on-scroll.visible .sub-input-group button:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Industries Grid Styles */
.industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.industry-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00c2ff, #5266ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.15);
    border-color: #00c2ff;
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00c2ff, #5266ff);
    border-radius: 12px;
    color: white;
    flex-shrink: 0;
}

.industry-icon i {
    width: 24px;
    height: 24px;
}

.industry-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 5px;
    line-height: 1.3;
}

.industry-content p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design for Industries */
@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .industry-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .industry-icon {
        width: 40px;
        height: 40px;
    }

    .industry-icon i {
        width: 20px;
        height: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Documentation Section Image Styles */
.docs-image-placeholder {
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.docs-image-placeholder:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.docs-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

/* Responsive design for docs image */
@media (max-width: 768px) {
    .docs-image-placeholder {
        margin-bottom: 20px;
    }

    .docs-main-image {
        max-height: 200px;
        object-fit: cover;
    }
}