/* Base Styles */
:root {
    --primary-color: #00ff9d;
    /* Neon Green */
    --secondary-color: #00f0ff;
    /* Neon Cyan */
    --accent-color: #051020;
    /* Deep Navy */
    --dark-color: #020c1b;
    /* Darkest Navy */
    --light-color: #0a192f;
    /* Light Navy */
    --text-color: #d9e2ec;
    /* Pale Blue/Grey */
    --light-text: #ffffff;
    --gradient-primary: linear-gradient(135deg, #00ff9d, #00f0ff);
    --gradient-secondary: linear-gradient(135deg, #00f0ff, #00ff9d);
    --box-shadow: 0 5px 15px rgba(0, 255, 157, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: var(--dark-color);
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

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

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

section {
    padding: 100px 0;
    position: relative;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header.light h2,
.section-header.light p {
    color: var(--light-text);
}

.separator {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* Parallax Sections */
.parallax-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: translateZ(-1px) scale(2);
}

.parallax-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(2, 12, 27, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 255, 157, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    font-family: 'Montserrat', sans-serif;
}

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

.nav-links a {
    color: var(--light-text);
    font-weight: 500;
    position: relative;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    margin: 3px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    color: var(--light-text);
}

.hero-content {
    max-width: 700px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.lochness-wordcloud {
    position: absolute;
    width: 650px;
    height: 400px;
    top: 40%;
    right: 5%;
    pointer-events: auto;
    animation: float 8s infinite ease-in-out;
    cursor: grab;
}

.lochness-wordcloud.dragging {
    cursor: grabbing;
    animation: none;
}

/* Word Cloud */
.word {
    position: absolute;
    padding: 8px 15px;
    background: rgba(0, 255, 157, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
    color: var(--primary-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    border: 1px solid rgba(0, 255, 157, 0.3);
}

.word:hover {
    background: rgba(0, 255, 157, 0.3);
    transform: scale(1.5);
    z-index: 100;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.word.dragging {
    transition: none;
    z-index: 200;
}

/* Word sizes */
.w-xsmall {
    font-size: 0.7rem;
}

.w-small {
    font-size: 0.9rem;
}

.w-medium {
    font-size: 1.1rem;
}

.w-large {
    font-size: 1.4rem;
}

.w-xlarge {
    font-size: 1.8rem;
}

/* Stat Items */
.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 255, 157, 0.15);
    border-color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
}

/* Tech Features */
.tech-feature {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.tech-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.15);
    border-color: var(--secondary-color);
}

/* Lochness monster shape positioning */
/* Head and neck */
.head {
    top: 20px;
    left: 20px;
    z-index: 10;
}

.neck1 {
    top: 40px;
    left: 70px;
}

.neck2 {
    top: 60px;
    left: 120px;
}

.neck3 {
    top: 70px;
    left: 170px;
}

/* Body */
.body1 {
    top: 90px;
    left: 220px;
}

.body2 {
    top: 130px;
    left: 180px;
}

.body3 {
    top: 160px;
    left: 140px;
}

.body4 {
    top: 180px;
    left: 100px;
}

.body5 {
    top: 190px;
    left: 60px;
}

.body6 {
    top: 150px;
    left: 200px;
}

.body7 {
    top: 170px;
    left: 80px;
}

/* Humps */
.hump1 {
    top: 40px;
    left: 260px;
}

.hump2 {
    top: 60px;
    left: 320px;
}

.hump3 {
    top: 90px;
    left: 370px;
}

.hump4 {
    top: 30px;
    left: 290px;
}

.hump5 {
    top: 70px;
    left: 345px;
}

.hump6 {
    top: 50px;
    left: 280px;
}

.hump7 {
    top: 80px;
    left: 330px;
}

/* Tail */
.tail1 {
    top: 120px;
    left: 400px;
}

.tail2 {
    top: 150px;
    left: 430px;
}

.tail3 {
    top: 180px;
    left: 450px;
}

.tail4 {
    top: 135px;
    left: 415px;
}

.tail5 {
    top: 165px;
    left: 445px;
}

.tail6 {
    top: 110px;
    left: 380px;
}

.tail7 {
    top: 140px;
    left: 390px;
}

.tail8 {
    top: 125px;
    left: 440px;
}

.tail9 {
    top: 155px;
    left: 410px;
}

/* Legs/Flippers */
.leg1 {
    top: 220px;
    left: 80px;
}

.leg2 {
    top: 240px;
    left: 120px;
}

.leg3 {
    top: 220px;
    left: 160px;
}

.leg4 {
    top: 240px;
    left: 200px;
}

.leg5 {
    top: 210px;
    left: 120px;
}

.leg6 {
    top: 230px;
    left: 170px;
}

.leg7 {
    top: 215px;
    left: 140px;
}

.leg8 {
    top: 235px;
    left: 190px;
}

.leg9 {
    top: 225px;
    left: 110px;
}

.leg10 {
    top: 245px;
    left: 150px;
}

/* Animation for the whole monster */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Individual word animations */
.word {
    animation: wordPulse 5s infinite ease-in-out;
}

.word:nth-child(odd) {
    animation-delay: 0.5s;
}

.word:nth-child(even) {
    animation-delay: 1s;
}

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

    50% {
        transform: scale(1.05);
    }

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    margin-bottom: 5px;
    opacity: 0.8;
}

.scroll-indicator i {
    font-size: 1.2rem;
}

/* About Section */
.about {
    background: var(--light-color);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-stats {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    color: var(--light-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dark-color);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Technology Section */
.tech-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.tech-visual {
    flex: 1;
    min-width: 300px;
}

.tech-diagram {
    position: relative;
    padding-bottom: 100%;
}

.tech-diagram img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tech-features {
    flex: 1;
    min-width: 300px;
}

.tech-feature {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.tech-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tech-feature h3 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.tech-feature h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* DataLayer Section */
.datalayer {
    color: var(--light-text);
}

.datalayer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.datalayer-info {
    flex: 1;
    min-width: 300px;
}

.datalayer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.datalayer-info>p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.datalayer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.dl-feature {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    transition: var(--transition);
}

.dl-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.dl-feature i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.dl-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.dl-feature p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.datalayer-diagram {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.datalayer-diagram img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.diagram-caption {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.diagram-subcaption {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    font-style: italic;
    opacity: 0.7;
}

.datalayer-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

    .datalayer-cta {
        flex-direction: column;
    }
}

/* Testimonials Section */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 40px;
    color: var(--light-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-testimonial,
.next-testimonial {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    cursor: pointer;
    transition: var(--transition);
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background: rgba(255, 255, 255, 0.3);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--light-text);
}

/* Enterprise Solutions Section */
.enterprise {
    background: var(--light-color);
    padding: 100px 0;
}

.enterprise-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.enterprise-info {
    width: 100%;
}

.enterprise-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.enterprise-info>p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
}

.enterprise-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.enterprise-feature {
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 157, 0.1);
}

.enterprise-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.15), rgba(0, 240, 255, 0.15));
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.feature-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 8px 20px;
    border: 2px solid white;
    border-radius: 30px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.enterprise-feature:hover .feature-overlay {
    opacity: 1;
}

.enterprise-feature:hover .feature-overlay span {
    transform: translateY(0);
}

.feature-icon {
    margin-right: 20px;
    min-width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 1.5rem;
}

.feature-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--light-text);
}

.feature-content p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.enterprise-cta {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-card {
    flex: 1;
    min-width: 300px;
    background: var(--gradient-primary);
    color: var(--dark-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(58, 172, 89, 0.2);
}

.cta-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cta-card p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.case-studies {
    flex: 1;
    min-width: 300px;
}

.case-studies h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.case-study {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-study:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.case-logo {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    border-radius: 10px;
    overflow: hidden;
}

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

.case-content h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--light-text);
}

.case-content p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

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

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

    .enterprise-feature {
        padding: 20px;
    }

    .feature-icon {
        min-width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Contact Section */
.contact {
    background: var(--light-color);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    margin-right: 15px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-text);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    flex: 1;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

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

.footer-column a {
    display: block;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-column a:hover {
    opacity: 1;
    transform: translateX(5px);
}

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

.footer-bottom p {
    opacity: 0.7;
}

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

.footer-social a {
    opacity: 0.7;
    transition: var(--transition);
}

.footer-social a:hover {
    opacity: 1;
}

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

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

@-webkit-keyframes float {
    0% {
        -webkit-transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@-webkit-keyframes bounce {
    0% {
        -webkit-transform: translateX(-50%) translateY(0);
    }

    20% {
        -webkit-transform: translateX(-50%) translateY(0);
    }

    40% {
        -webkit-transform: translateX(-50%) translateY(-10px);
    }

    50% {
        -webkit-transform: translateX(-50%) translateY(0);
    }

    60% {
        -webkit-transform: translateX(-50%) translateY(-5px);
    }

    80% {
        -webkit-transform: translateX(-50%) translateY(0);
    }

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

@keyframes bounce {
    0% {
        transform: translateX(-50%) translateY(0);
    }

    20% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    50% {
        transform: translateX(-50%) translateY(0);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }

    80% {
        transform: translateX(-50%) translateY(0);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Calculator Widget */
.calculator-widget {
    margin-top: 40px;
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.calculator-widget h4 {
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: 1.3rem;
}

.calculator-form .form-group {
    margin-bottom: 15px;
}

.calculator-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

#calculationResult {
    margin-top: 20px;
    padding: 15px;
    background: rgba(58, 172, 89, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

#calculationResult p {
    margin-bottom: 10px;
}

#calculationResult strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Modal Styles */
.modals-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: 2000;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2001;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: block;
    opacity: 1;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 50px auto;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: translateY(-50px);
    transition: transform 0.4s ease;
    animation: modalSlideIn 0.4s forwards;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    background: var(--gradient-primary);
    color: white;
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 20px;
}

.modal-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-color);
}

.modal-body h4 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--dark-color);
}

.modal-body ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.modal-body li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.case-study-hero {
    margin: -30px -30px 30px -30px;
    height: 200px;
    overflow: hidden;
}

.case-study-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background-color: #f9f9f9;
    border-left: 5px solid var(--primary-color);
    font-style: italic;
    color: #555;
}

.modal-body blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    font-style: normal;
    color: var(--dark-color);
}

.modal-footer {
    padding: 20px 30px;
    background: #f5f5f5;
    text-align: center;
    border-top: 1px solid #eee;
}

.modal-cta {
    display: inline-block;
    min-width: 200px;
}

/* Service Card Overlay */
.service-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.40), rgba(0, 240, 255, 0.40));
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 8px 20px;
    border: 2px solid white;
    border-radius: 30px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}

.service-card:hover .service-card-overlay span {
    transform: translateY(0);
}

/* Prevent body scrolling when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--dark-color);
        flex-direction: column;
        padding: 80px 30px;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1000;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
    }

    .lochness-wordcloud {
        width: 360px;
        height: 250px;
        transform: scale(0.6);
        right: 0;
        touch-action: none;
        /* Prevents scrolling while dragging on touch devices */
    }

    .w-xlarge {
        font-size: 1.5rem;
    }

    .w-large {
        font-size: 1.2rem;
    }

    .w-medium {
        font-size: 1rem;
    }

    .w-small {
        font-size: 0.8rem;
    }

    .w-xsmall {
        font-size: 0.6rem;
    }

    .about-content,
    .tech-showcase,
    .contact-content {
        gap: 30px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .footer-column {
        min-width: 45%;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .testimonial-content {
        padding: 30px 20px;
    }

    .footer-column {
        min-width: 100%;
    }
}

/* Careers / Register Page */
.register-section {
    position: relative;
    padding: 0;
    color: var(--light-text);
}

.register-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/blocks.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.glass-wizard-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    margin-top: 40px;
    margin-bottom: 60px;
}

.glass-header {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    margin-bottom: 40px;
    display: inline-block;
    /* Keep it centered and fitting content if preferred, or block */
    width: 100%;
}

.register-header h1,
.register-header p {
    color: var(--light-text);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.wizard-progress div.active {
    background: var(--gradient-primary) !important;
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

.form-group label {
    color: var(--light-text);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--light-text) !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 2px rgba(0, 255, 157, 0.2) !important;
}

.checkbox-item label {
    color: var(--light-text);
}