/* Link2Trust Professional Website Styles */

/* CSS Custom Properties (Variables) */
:root {
    /* Brand Colors - Vibrant Professional Palette */
    --primary-color: #12426f;        /* deep professional blue */
    --primary-light: #4b7bb3;       /* lighter blue for hovers */
    --primary-dark: #0b3153;        /* darker blue (used sparingly, not as page bg) */
    --secondary-color: #00a3c4;     /* teal accent */
    --accent-color: #18c3b7;        /* fresh supporting accent */
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f5f9ff;         /* very light blue/gray for section backgrounds */
    --gray-100: #eef3fb;
    --gray-200: #dbe4f3;
    --gray-300: #c2d0e8;
    --gray-400: #99aed2;
    --gray-500: #718096;
    --gray-600: #4a5568;
    --gray-700: #2d3748;
    --gray-800: #1a202c;
    --gray-900: #171923;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--gray-700);
    /* Soft light gradient background for more vivid feel */
    background: radial-gradient(circle at top, #f5f9ff 0, #ffffff 55%, #f5f9ff 100%);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-medium);
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 1rem;
    line-height: 1.5;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 1rem 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
    position: relative;
}

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

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all var(--transition-normal);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    /* Fallback gradient behind the image */
    background: radial-gradient(circle at top left, #e1f4ff 0, #ffffff 45%, #f5f9ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.service-hero-support-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/assets/support.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25; /* high transparency: image visible but subtle */
    z-index: 0;
}

.service-hero-blog-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/assets/blog.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25; /* high transparency: image visible but subtle */
    z-index: 0;
}


/* Hero background image overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/assets/hero-bg.jpg"); /* save the provided image as assets/hero-bg.jpg */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.22; /* high transparency so content stays readable */
    z-index: 0;
}

.service-hero-support-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 66, 111, 0.70), rgba(0, 163, 196, 0.55));
    mix-blend-mode: multiply;
    z-index: 0;
}

.service-hero-blog-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 66, 111, 0.70), rgba(0, 163, 196, 0.55));
    mix-blend-mode: multiply;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Trust Network Animation */
.trust-network {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.node {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.central-node {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    font-size: 2rem;
    animation: rotate 10s linear infinite;
}

.node-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.5s;
}

.node-2 {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.node-3 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.node-4 {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background-color: var(--light-gray);
}

/*.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
*/

/* Services grid: 4 → 2 → 1 responsive layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* desktop: 2 per row */
  gap: 2rem;
}

/* tablet / small laptop */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }
}

/* mobile */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr; /* 1 per row */
  }
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    /* Vibrant blue → teal gradient */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: var(--font-weight-bold);
}

/* Clickable Service Card */
.service-card-clickable {
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
}

.service-card-clickable:hover {
    border-color: var(--secondary-color);
    transform: translateY(-8px);
}

.service-card-clickable .service-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.service-link-icon {
    font-size: 1rem;
    color: var(--secondary-color);
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.service-card-clickable:hover .service-link-icon {
    opacity: 1;
    transform: translateX(3px);
}

.service-card-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.learn-more {
    color: var(--gray-600);
    font-weight: var(--font-weight-medium);
    font-size: 0.925rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.service-card-clickable:hover .learn-more {
    color: var(--primary-color);
}

.learn-more i {
    transition: transform var(--transition-fast);
}

.service-card-clickable:hover .learn-more i {
    transform: translateX(3px);
}

/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.solution-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* Brighter gradient for solutions */
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.solution-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.solution-item p {
    color: var(--gray-600);
    margin-bottom: 0;
}



.white-paper-img {
  display: block;
  margin: 0 auto 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  max-width: 50%;
  height: auto;       /* keeps correct aspect ratio */
  object-fit: contain; /* ensures it won’t stretch or crop */
}

.vendor-logo {
  height: 50px;
  width: auto;
  margin: 0 auto;
}

/* Support Section */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-doc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* exactly 3 equal columns */
    gap: 2rem;
}

.support-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.support-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* Support icons echo the primary → secondary gradient */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.support-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.support-item p {
    color: var(--gray-600);
    margin-bottom: 0;
}


.support {
    background-color: var(--light-gray);
}

.supportcontent {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.support-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Team Section */
.team {
    background-color: var(--light-gray);
}

.team-member {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-600);
    font-weight: var(--font-weight-medium);
    margin-bottom: 0;
}

.security-layers {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.layer {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 163, 196, 0.08);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
    animation: rotate 20s linear infinite;
}

.layer-1 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.layer-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-direction: reverse;
}

.layer-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.layer-4 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-direction: reverse;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius);
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.contact-details h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.contact-details p {
    margin-bottom: 0;
    color: var(--gray-600);
}

/* Form Styles */

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    background-color: #fee2e2;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}

.consent-checkbox {
    flex-shrink: 0;
    padding-top: 2px;
}

.consent-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.consent-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.consent-text a:hover {
    color: var(--color-primary-dark);
}
.consent-group {
    margin-bottom: 2rem;
}

.consent-label {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    cursor: pointer;
    width: 100%; 
}

.consent-label input[type="checkbox"] {
    position: relative;
    top: 0.125rem;
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin-top: 0.125rem;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.consent-text {
    font-size: 0.75rem;
    color: var(--gray-600);
    flex: 1;
    line-height: 1.5;
    font-style: italic;
}

.consent-text a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
}

.consent-text a:hover {
    text-decoration: underline;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.half {
    flex: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

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

.form-group.consent-group {
  text-align: left;
}         

/* Footer */
.footer {
    /* Professional, vivid footer (avoid near-black) */
    background: linear-gradient(135deg, #12426f 0%, #0b71b5 50%, #00a3c4 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-description {
    color: var(--gray-300);
    line-height: 1.6;
}

.footer-title {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-300);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    color: var(--white);
}

.team-photo.thumbnail {
  width: 150px;
  max-width: 150px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  margin: 0 auto 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.team-social {
  margin-top: 1rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        transition: left var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    @media (max-width: 480px) {
        .about-stats {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}


.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.linkedin-link i {
  font-size: 1.25rem;
  color: var(--secondary-color);
  transition: transform var(--transition-fast);
}

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

.linkedin-link:hover i {
  transform: scale(1.1);
  color: var(--primary-color);
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    
    .service-card,
    .solution-item {
        padding: 1.5rem;
    }
    .support-item {
    padding: 1.5rem;
    }
}

/* ============================================================================
   Cookie Consent Banner Styles
   ============================================================================ */

#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /* Light, friendly banner instead of dark grey/black */
    background: linear-gradient(135deg, #e1f4ff 0%, #f5f9ff 60%, #e0fff8 100%);
    color: #1a3350;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    z-index: 10000;
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out, opacity 0.3s ease;
    opacity: 0;
    border-top: 3px solid var(--secondary-color);
}

#cookie-consent-banner.cookie-banner-visible {
    transform: translateY(0);
    opacity: 1;
}

#cookie-consent-banner.cookie-banner-hidden {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

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

.cookie-banner-text p {
    margin-bottom: 10px;
    color: #1f2933;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner-text p:first-child {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cookie-banner-text p:last-child {
    margin-bottom: 0;
}

.cookie-banner-text a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-banner-text a:hover {
    color: #90cdf4;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
    white-space: nowrap;
}

.cookie-accept {
    background-color: #2f9e6f;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #2f855a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(56, 161, 105, 0.3);
}

.cookie-decline {
    background-color: #f97373;
    color: #ffffff;
}

.cookie-decline:hover {
    background-color: #c53030;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

/* Mobile responsiveness for cookie banner */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 16px;
    }
    
    .cookie-banner-text {
        min-width: unset;
    }
    
    .cookie-banner-text p {
        font-size: 13px;
    }
    
    .cookie-banner-text p:first-child {
        font-size: 15px;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-banner-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-btn {
        max-width: unset;
    }
}
