/* Testimonial/Client Logo Strip */
.testimonial-strip {
    background: #f8f9fa;
    padding: 2.5rem 0 2.5rem 0;
    text-align: center;
}
.testimonial-content h3 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}
.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.client-logos img {
    height: 38px;
    filter: grayscale(1) brightness(1.2) contrast(1.1);
    opacity: 0.7;
    transition: filter 0.2s, opacity 0.2s, transform 0.2s;
}
.client-logos img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.08);
}
/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    right: 2.2rem;
    bottom: 2.2rem;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 0.9rem 1.5rem;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 164, 228, 0.18);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    border: none;
    outline: none;
    cursor: pointer;
}
.floating-contact-btn:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    box-shadow: 0 12px 32px rgba(0, 164, 228, 0.28);
    transform: translateY(-2px) scale(1.04);
}
.floating-contact-btn svg {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
}
.floating-contact-btn span {
    display: inline-block;
    vertical-align: middle;
}
@media (max-width: 600px) {
    .floating-contact-btn {
        padding: 0.7rem 1.1rem;
        font-size: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
    .floating-contact-btn span {
        display: none;
    }
}
:root {
    /* Brand Colors */
    --primary: #004b8d;
    --primary-dark: #003366;
    --secondary: #00a4e4;
    --secondary-light: #e6f4fc;
    --accent-red: #e74c3c;
    --accent-green: #2ecc71;
    
    /* Neutral Colors */
    --text-main: #2c3e50;
    --text-light: #6c7a89;
    --bg-body: #f8f9fa;
    --white: #ffffff;
    
    /* UI Variables */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 16px 32px rgba(0,0,0,0.15);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --divider: linear-gradient(90deg, rgba(0,75,141,0.08) 0%, rgba(0,164,228,0.12) 100%);
    scroll-behavior: smooth;
}

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

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

/* Background Shapes */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
}

.shape-1 {
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary-light) 0%, transparent 70%);
}

.shape-2 {
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,75,141,0.1) 0%, transparent 70%);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 75, 141, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 20px rgba(0, 75, 141, 0.45);
    filter: brightness(1.08);
}

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

.btn-outline:hover {
    background: var(--secondary-light);
    transform: translateY(-1px) scale(1.03);
    background: rgba(0, 164, 228, 0.04);
    transition: background 0.2s;
}

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

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

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
}

/* Header */
.glass-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 0.8rem 0;
    transition: var(--transition);
}

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

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

.nav-links {
    display: none; /* Hidden on mobile by default */
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2rem;
    }
    .nav-links a {
        text-decoration: none;
        color: var(--text-main);
        font-weight: 500;
        position: relative;
    }
    .nav-links a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 0;
        background: var(--secondary);
        transition: width 0.3s;
    }
    .nav-links a:hover::after {
        width: 100%;
    }
}

.contact-header {
    display: flex;
    gap: 0.8rem;
}

/* Hero Section */
.hero {
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.92);
    /* Removed heavy blur for performance */
    border-radius: 0 0 32px 32px;
    box-shadow: 0 2px 8px rgba(0, 164, 228, 0.04);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero h1 .highlight {
    color: var(--secondary);
    display: block;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Hero Graphic (CSS/SVG Animation) */
.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tech-graphic {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 20px 30px rgba(0, 164, 228, 0.2));
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-1 {
    animation-delay: 0.2s;
}

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

/* Services Section */
.services-section {
    padding: 5rem 0 5rem 0;
    background: rgba(255,255,255,0.96);
    /* Removed heavy blur for performance */
    border-radius: 32px;
    box-shadow: 0 2px 8px rgba(0, 164, 228, 0.03);
    margin-bottom: 2rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

.underline {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Accordion Styling */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    background: linear-gradient(135deg, var(--white) 0%, #fafbff 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 75, 141, 0.08);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--secondary), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: intersect;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.accordion-item:hover {
    box-shadow: 0 8px 32px rgba(0, 164, 228, 0.15);
    transform: translateY(-4px);
}

.accordion-item.expanded {
    box-shadow: 0 12px 40px rgba(0, 164, 228, 0.12);
    background: #fff;
    border-color: var(--secondary);
}

.accordion-item.expanded::before {
    opacity: 0;
}

.accordion-header {
    padding: 1.75rem 2.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    position: relative;
    z-index: 1;
}

.header-content-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.header-icon-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.header-illustration {
    display: none;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .header-illustration {
        display: block;
        opacity: 0.9;
        transition: opacity 0.3s;
    }
    
    .accordion-item:hover .header-illustration {
        opacity: 1;
    }
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--secondary-light);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 164, 228, 0.2);
    flex-shrink: 0;
}

.icon-box.box-red { 
    background: linear-gradient(135deg, #fde8e7 0%, #fdd7d7 100%);
    color: var(--accent-red);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.15);
}
.icon-box.box-green { 
    background: linear-gradient(135deg, #eafaf1 0%, #d5f4e6 100%);
    color: var(--accent-green);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.15);
}

.accordion-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.toggle-icon {
    font-size: 2rem;
    font-weight: 300;
    color: var(--secondary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.accordion-item.expanded .toggle-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: linear-gradient(135deg, #fafbff 0%, #f5f7fb 100%);
}

.content-wrapper {
    padding: 0 2.25rem 2.25rem 6.75rem;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    }
    .header-icon-title {
        gap: 1rem;
    }
    .header-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tech-stack {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 75, 141, 0.03) 0%, rgba(0, 164, 228, 0.03) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 164, 228, 0.1);
}

.tech-stack h4 {
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Cards Grid inside Accordion */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.info-card {
    background: linear-gradient(135deg, var(--white) 0%, #f9fafb 100%);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 75, 141, 0.08);
    border-left: 4px solid var(--secondary);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 164, 228, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 164, 228, 0.15);
}

.info-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.info-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Gradient card variants */
.info-card.gradient-blue {
    background: linear-gradient(135deg, #e6f4fc 0%, #cce7f7 100%);
    border-left-color: var(--primary);
}

.info-card.gradient-cyan {
    background: linear-gradient(135deg, #e0f7fa 0%, #b3e5fc 100%);
    border-left-color: #00bcd4;
}

.info-card.gradient-purple {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border-left-color: #9c27b0;
}

.info-card.gradient-green {
    background: linear-gradient(135deg, #eafaf1 0%, #d5f4e6 100%);
    border-left-color: var(--accent-green);
}

.info-card.gradient-red {
    background: linear-gradient(135deg, #fde8e7 0%, #fdd7d7 100%);
    border-left-color: var(--accent-red);
}

.info-card.gradient-orange {
    background: linear-gradient(135deg, #ffe0d2 0%, #ffd0b3 100%);
    border-left-color: #ff9800;
}

.info-card.gradient-pink {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    border-left-color: #e91e63;
}

.info-card.gradient-teal {
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
    border-left-color: #009688;
}

.info-card.gradient-blue-alt {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left-color: #2196f3;
}

.tech-stack .pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.pill {
    background: linear-gradient(135deg, var(--white) 0%, #f9fafb 100%);
    border: 2px solid var(--secondary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 164, 228, 0.1);
}

.pill:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, #00a4e4 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 164, 228, 0.2);
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.service-list span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

.service-list span::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.1rem;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 1rem;
    margin-top: 5rem;
/* Section Divider */
.section-divider {
    width: 100%;
    height: 32px;
    background: var(--divider);
    margin: 0 auto 0 auto;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 8px 32px rgba(0, 164, 228, 0.04);
    opacity: 0.7;
}
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #a0a0a0;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-logo {
    height: 30px;
    filter: grayscale(100%) brightness(200%); /* Make logo white/grey */
    margin-bottom: 1rem;
}

.footer-about {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 0.5rem;
}
.footer-social a {
    color: #e0e0e0;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: var(--secondary);
}


.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col p, .footer-col a {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #a0a0a0;
    text-decoration: none;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .glass-header .btn span {
        display: none; /* Hide text on small screens, show icons only */
    }
    .glass-header .btn {
        padding: 0.5rem;
        border-radius: 50%;
    }
    .hero {
        padding-top: 2rem;
        text-align: center;
    }
    .hero-grid {
        gap: 2rem;
    }
    .cta-group {
        justify-content: center;
    }
}


.services-section {
  padding: 80px 0;
  background: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card h3 {
  margin-bottom: 12px;
  color: #0f172a;
}

.service-card ul {
  padding-left: 18px;
}

.service-card li {
  margin-bottom: 6px;
  color: #475569;
}
