/* ===================================
   Theme Colors & Variables
   =================================== */
:root {
    /* Primary Blue Palette - Professional & Modern */
    --primary-blue: #2563EB; /* Bright, professional blue */
    --dark-blue: #1E40AF; /* Deep blue for accents */
    --light-blue: #3B82F6; /* Lighter blue for hover states */
    --medium-blue: #60A5FA; /* Medium blue for gradients */
    
    /* Grey Palette - Sophisticated & Clean */
    --medium-grey: #6B7280; /* Neutral grey */
    --dark-grey: #4B5563; /* Dark grey */
    --black: #000000;
    
    /* Background Colors - Pearl White & Light Grey */
    --bg-primary: #FAFBFC; /* Pearl white - main background */
    --bg-secondary: #F3F4F6; /* Light grey - section backgrounds */
    --bg-tertiary: #E5E7EB; /* Slightly darker grey for contrast */
    --bg-card: #FFFFFF; /* Pure white for cards */
    --dark-bg: #1F2937; /* Dark background for contrast */
    
    /* Text Colors - Optimal Contrast */
    --text-dark: #111827; /* Rich dark text for headings */
    --text-medium: #4B5563; /* Medium grey text for body */
    --text-light: #6B7280; /* Light grey text for secondary */
    --text-white: #FFFFFF;
    
    /* Modern Gradients - Elegant Blue Tones */
    --accent-gradient: linear-gradient(135deg, #2563EB 0%, #1E40AF 50%, #1D4ED8 100%);
    --hero-gradient: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(30, 64, 175, 0.04) 100%);
    --card-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 251, 252, 0.95) 100%);
    --blue-gradient: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    
    /* Glass Morphism - Pearl White Effect */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(37, 99, 235, 0.15);
    
    /* Shadows - Subtle & Professional */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(37, 99, 235, 0.1);
    --shadow-lg: 0 8px 32px rgba(37, 99, 235, 0.12);
    --shadow-xl: 0 16px 48px rgba(37, 99, 235, 0.15);
    --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.02) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(30, 64, 175, 0.02) 0px, transparent 50%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
    scroll-margin-top: 80px; /* Offset for fixed navbar */
}

/* Optimized section padding for different sections */
.hero {
    padding: 120px 0 80px;
}

.offerings,
.highlights,
.about,
.services,
.test-cases,
.industries {
    padding: 70px 0;
}

.contact {
    padding: 80px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--medium-grey);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 18px 0;
    box-shadow: 0 4px 30px rgba(37, 99, 235, 0.08);
    border-bottom: 1px solid rgba(37, 99, 235, 0.12);
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0) !important;
}

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

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link:hover::after {
    opacity: 1;
}
.offering-icon-img {
    width: 83px;
    height: 83px;
}
.highlight-icon-img{
    width: 64px;
    height: 64px;
}
.focus-icon-img{
    width: 83px;
    height: 83px;
}
.form-icon-img{
    width: 83px;
    height: 83px;
}
.contact-form-icon-img{
    width:24px;
    height:24px;
}
.test-case-icon-img{
    width: 48px;
    height: 48px;
}
.industry-icon-img{
    width: 83px;
    height: 83px;
}

.nav-link.active {
    color: var(--primary-blue);
    background: rgba(37, 99, 235, 0.1);
}

.nav-link.active::before {
    width: 80%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
}

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

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

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

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    width: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 64, 175, 0.06) 0%, transparent 50%),
        var(--bg-primary);
}

.hero .container {
    width: 100%;
    max-width: 100%;
    padding: 0 24px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.radar-wave {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(37, 99, 235, 0.15);
    border-radius: 50%;
    animation: radar-pulse 3s infinite;
}

.radar-wave:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.radar-wave:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.radar-wave:nth-child(3) {
    bottom: 10%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes radar-pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.hero-headline {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.4;
    letter-spacing: -0.5px;
    animation: fadeInUp 1s ease-out;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    color: var(--dark-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-headline .highlight {
    color: var(--primary-blue);
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-headline:hover {
    transform: translateY(-2px);
}

.hero-headline:hover .highlight {
    transform: scale(1.02);
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 500;
}

.hero-visuals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin: 40px 0 35px;
    flex-wrap: wrap;
}

.visual-card {
    position: relative;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.visual-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.3);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    animation: glow-pulse 3s ease-in-out infinite;
    pointer-events: none;
}

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

.visual-card:nth-child(2) .card-glow {
    animation-delay: 0.5s;
}

.visual-card:nth-child(3) .card-glow {
    animation-delay: 1s;
}

/* Data Visualization Card */
.data-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1;
}

.data-chart {
    width: 100%;
    height: 80px;
    margin-bottom: 12px;
}

.chart-line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: draw-line 2s ease-out forwards;
}

@keyframes draw-line {
    to {
        stroke-dashoffset: 0;
    }
}

.chart-dot {
    animation: dot-pulse 2s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes dot-pulse {
    0%, 100% {
        r: 4;
        opacity: 1;
    }
    50% {
        r: 6;
        opacity: 0.7;
    }
}

/* Network Visualization Card */
.network-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.network-node {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--blue-gradient);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
    animation: node-pulse 2s ease-in-out infinite;
}

.node-1 {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.node-2 {
    top: 20%;
    right: 25%;
    animation-delay: 0.3s;
}

.node-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 0.6s;
}

.node-4 {
    bottom: 25%;
    right: 20%;
    animation-delay: 0.9s;
}

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

.network-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-blue) 50%, transparent 100%);
    opacity: 0.4;
    animation: line-flow 2s linear infinite;
}

.line-1 {
    top: 25%;
    left: 20%;
    width: 40%;
    transform: rotate(25deg);
}

.line-2 {
    top: 50%;
    left: 30%;
    width: 35%;
    transform: rotate(-15deg);
    animation-delay: 0.5s;
}

.line-3 {
    bottom: 30%;
    left: 22%;
    width: 45%;
    transform: rotate(10deg);
    animation-delay: 1s;
}

@keyframes line-flow {
    0% {
        opacity: 0.2;
        transform: scaleX(0);
    }
    50% {
        opacity: 0.6;
        transform: scaleX(1);
    }
    100% {
        opacity: 0.2;
        transform: scaleX(0);
    }
}

/* Tech Visualization Card */
.tech-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.tech-ring {
    position: absolute;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    opacity: 0.3;
    animation: ring-rotate 4s linear infinite;
}

.ring-1 {
    width: 80px;
    height: 80px;
    border-color: var(--primary-blue);
    animation-duration: 3s;
}

.ring-2 {
    width: 100px;
    height: 100px;
    border-color: var(--dark-blue);
    animation-duration: 4s;
    animation-direction: reverse;
}

.ring-3 {
    width: 120px;
    height: 120px;
    border-color: rgba(37, 99, 235, 0.5);
    animation-duration: 5s;
}

@keyframes ring-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.tech-core {
    width: 24px;
    height: 24px;
    background: var(--blue-gradient);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
    animation: core-pulse 2s ease-in-out infinite;
}

@keyframes core-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(37, 99, 235, 0.8);
    }
}

.visual-label {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

/* ===================================
   CTA Button
   =================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    background: var(--accent-gradient);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(37, 99, 235, 0.4);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-center {
    text-align: center;
    margin-top: 48px;
}

/* ===================================
   Core Offerings
   =================================== */
.offerings {
    background: var(--bg-secondary);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
    align-items: stretch;
}

.offering-card {
    background: var(--card-gradient);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.offering-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.offering-card:hover::after {
    left: 100%;
}

.offering-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(37, 99, 235, 0.2);
    background: var(--text-white);
}

.offering-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.offering-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.offering-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    flex: 1;
    font-size: 0.95rem;
}

.offering-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================
   Highlights Section
   =================================== */
.highlights {
    background: var(--bg-primary);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.highlight-item {
    text-align: center;
    padding: 36px 28px;
    background: var(--card-gradient);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.highlight-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.highlight-item:hover::after {
    transform: scaleX(1);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.highlight-counter {
    font-size: 4rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.highlight-item:hover .highlight-counter {
    transform: scale(1.1);
}

.highlight-item p {
    color: var(--medium-grey);
    font-size: 1.1rem;
}

/* ===================================
   About Section
   =================================== */
.about {
    background: var(--bg-secondary);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro:last-of-type {
    margin-bottom: 0;
}

.focus-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
    align-items: stretch;
}

.focus-item {
    background: var(--card-gradient);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.focus-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s ease;
}

.focus-item:hover::before {
    left: 100%;
}

.focus-item:hover {
    transform: translateY(-8px) rotate(0.5deg);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(37, 99, 235, 0.15);
    background: var(--text-white);
}

.focus-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.focus-item h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.focus-item p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.focus-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.focus-item:hover .badge {
    background: rgba(37, 99, 235, 0.15);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

/* ===================================
   Services Section
   =================================== */
.services {
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 40px;
    align-items: stretch;
}

.service-pillar {
    background: var(--card-gradient);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-pillar::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translate(50%, 50%);
}

.service-pillar:hover::after {
    opacity: 1;
    transform: translate(30%, 30%);
}

.service-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-gradient);
    border-radius: 24px 24px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-pillar:hover::before {
    transform: scaleX(1);
}

.service-pillar:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-xl), 0 0 50px rgba(37, 99, 235, 0.25);
    background: var(--text-white);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.5rem;
}

.service-pillar h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 600;
}

.service-intro {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.service-list {
    list-style: none;
    flex: 1;
}

.service-list li {
    color: var(--text-dark);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    margin-bottom: 6px;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.service-list li strong {
    color: var(--primary-blue);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

/* ===================================
   Test Cases Section
   =================================== */
.test-cases {
    background: var(--bg-secondary);
}

.test-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 28px;
    margin-top: 40px;
    align-items: stretch;
}

.test-case-card {
    background: var(--card-gradient);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.test-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent-gradient);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.test-case-card:hover::before {
    transform: scaleY(1);
}

.test-case-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.test-case-card:hover::after {
    opacity: 1;
}

.test-case-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(37, 99, 235, 0.2);
    background: var(--text-white);
}

.test-case-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.test-case-icon {
    font-size: 2.5rem;
}

.test-case-header h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 600;
    flex: 1;
}

.test-case-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.test-case-challenge,
.test-case-solution {
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

.test-case-challenge strong,
.test-case-solution strong {
    color: var(--primary-blue);
}

.test-case-results {
    margin: 16px 0;
    padding: 24px 20px;
    background: rgba(250, 250, 252, 0.8);
    border-radius: 16px;
    border-left: 6px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.result-item {
    text-align: center;
    padding: 20px 16px;
    background: var(--text-white);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    box-sizing: border-box;
    overflow: hidden;
}

.result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.15);
}

.result-value {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.result-desc {
    font-size: clamp(0.65rem, 1.5vw, 0.75rem);
    color: #4A5568;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    padding: 0 4px;
}

.test-case-visual {
    margin-top: auto;
    padding: 20px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 10px;
}

.metric-bar {
    margin-top: 15px;
}

.metric-label {
    color: var(--medium-grey);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.metric-chart {
    display: flex;
    gap: 10px;
    align-items: center;
}

.metric-before,
.metric-after {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.metric-before {
    background: rgba(107, 114, 128, 0.3);
    color: var(--medium-grey);
}

.metric-after {
    background: var(--accent-gradient);
    color: var(--text-white);
    flex: 1;
    text-align: center;
}

/* ===================================
   Industries Section
   =================================== */
.industries {
    background: var(--bg-primary);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 40px;
    align-items: stretch;
}

.industry-card {
    background: var(--card-gradient);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 32px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:hover::before {
    width: 400px;
    height: 400px;
}

.industry-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(37, 99, 235, 0.2);
    background: var(--text-white);
}

.industry-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.industry-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.industry-card p {
    color: var(--text-medium);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: auto;
    padding-top: 16px;
    position: relative;
    z-index: 1;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.industry-card:hover .tag {
    background: rgba(37, 99, 235, 0.15);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.contact-wave {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    animation: contact-wave-pulse 8s ease-in-out infinite;
}

.contact-wave:nth-child(1) {
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.contact-wave:nth-child(2) {
    bottom: -150px;
    left: -100px;
    animation-delay: 2s;
    width: 400px;
    height: 400px;
}

.contact-wave:nth-child(3) {
    top: 50%;
    right: 10%;
    animation-delay: 4s;
    width: 300px;
    height: 300px;
}

@keyframes contact-wave-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    background: var(--bg-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
    margin-top: 48px;
    padding: 20px 0;
}

.testimonials-scroll {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px 0 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-blue) transparent;
    -webkit-overflow-scrolling: touch;
}

.testimonials-scroll::-webkit-scrollbar {
    height: 8px;
}

.testimonials-scroll::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 10px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-gradient);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.testimonials-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--dark-blue);
}

.testimonial-card {
    flex: 0 0 420px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 251, 252, 0.98) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 36px;
    border-radius: 24px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: 
        0 12px 40px rgba(37, 99, 235, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(37, 99, 235, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.7) inset;
    border-color: rgba(37, 99, 235, 0.25);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    flex-shrink: 0;
}

.avatar-bg {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .avatar-bg {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.company-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: contain;
    background: var(--bg-light);
    padding: 8px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .company-logo {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.testimonial-author h4 {
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.testimonial-author p {
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating .star {
    color: #FBBF24;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
    animation: star-twinkle 2s ease-in-out infinite;
}

.testimonial-rating .star:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-rating .star:nth-child(3) {
    animation-delay: 0.4s;
}

.testimonial-rating .star:nth-child(4) {
    animation-delay: 0.6s;
}

.testimonial-rating .star:nth-child(5) {
    animation-delay: 0.8s;
}

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

.testimonial-text {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    padding-left: 24px;
    flex: 1;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 3rem;
    color: var(--primary-blue);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
    align-items: stretch;
}

/* Form Container - Left Card */
.contact-form-container {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 44px;
    border-radius: 32px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 
        0 20px 60px rgba(37, 99, 235, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.6s ease;
}

.contact-form-container:hover::before {
    left: 100%;
}

.contact-form-container:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(37, 99, 235, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset,
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(37, 99, 235, 0.1);
}

.form-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: inline-block;
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.form-header h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
}

/* Modern Form Styles */
.contact-form {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.form-group.floating-label {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 50px 18px 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border: 2px solid rgba(37, 99, 235, 0.15);
    border-radius: 16px;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.05);
}

.form-group textarea {
    padding-top: 18px;
    padding-bottom: 18px;
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A90E2' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    padding-right: 45px;
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 18px;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    padding: 0 8px;
    z-index: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--text-white);
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.1),
        0 8px 24px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 15px;
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
    transform: scale(0.95);
}

.form-group select:not([value=""]) + label {
    top: -10px;
}

.input-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.4;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group:focus-within .input-icon {
    opacity: 0.7;
    transform: translateY(-50%) scale(1.1);
}

.form-group textarea + .input-icon {
    top: 20px;
    transform: translateY(0);
}

.form-submit-btn {
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 48px;
    position: relative;
    overflow: visible;
}

.button-arrow {
    transition: transform 0.3s ease;
}

.form-submit-btn:hover .button-arrow {
    transform: translateX(5px);
}

/* Contact Info Section - Right Card */
.contact-info {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 44px;
    border-radius: 32px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 
        0 20px 60px rgba(37, 99, 235, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.contact-info:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(37, 99, 235, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset,
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(37, 99, 235, 0.1);
}

.contact-info-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: inline-block;
    animation: icon-bounce 2s ease-in-out infinite 0.5s;
}

.contact-info-header h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-header p {
    color: var(--text-medium);
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
    flex: 1;
}

.contact-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.6) 0%, rgba(248, 250, 252, 0.6) 100%);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-detail-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gradient);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-detail-card:hover::before {
    transform: scaleY(1);
}

.contact-detail-card:hover {
    transform: translateX(8px) translateY(-4px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-color: var(--primary-blue);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.contact-card-icon-wrapper {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(37, 99, 235, 0.15);
}

.contact-detail-card:hover .contact-card-icon-wrapper {
    /* background: var(--accent-gradient); */
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.contact-icon {
    transition: transform 0.3s ease;
}

.contact-detail-card:hover .contact-icon {
    transform: scale(1.15);
}

.contact-card-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.contact-card-content h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.contact-card-content p,
.contact-card-content a {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.contact-card-content a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.contact-social {
    padding-top: 24px;
    border-top: 2px solid rgba(37, 99, 235, 0.1);
    text-align: center;
}

.contact-social p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 251, 252, 0.95) 100%);
    border: 2px solid rgba(37, 99, 235, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    color: var(--primary-blue);
}

.social-icon svg {
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    background: var(--accent-gradient);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    color: var(--text-white);
}

.social-icon:hover svg {
    transform: scale(1.1);
}

/* ===================================
   Modal Dialog
   =================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 16px;
    overflow: hidden;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 580px;
    max-height: 95vh;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 
        0 30px 80px rgba(37, 99, 235, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset,
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(37, 99, 235, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-dark);
}

.modal-close:hover {
    background: var(--accent-gradient);
    border-color: var(--primary-blue);
    color: var(--text-white);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.modal-close svg {
    width: 18px;
    height: 18px;
}

.modal-content {
    padding: 32px 36px 28px;
    overflow-y: visible;
    display: flex;
    flex-direction: column;
    max-height: calc(95vh - 16px);
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(37, 99, 235, 0.1);
    flex-shrink: 0;
}

.modal-header .form-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
    display: inline-block;
    animation: icon-bounce 2s ease-in-out infinite;
}

.modal-header h2 {
    color: var(--primary-blue);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.modal-header p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.modal-form {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.modal-form .form-group {
    margin-bottom: 18px;
    flex-shrink: 0;
}

.modal-form .form-group input,
.modal-form .form-group select,
.modal-form .form-group textarea {
    padding: 14px 45px 14px 18px;
    font-size: 0.95rem;
}

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

.modal-form .form-group label {
    font-size: 0.95rem;
    top: 14px;
}

.modal-form .input-icon {
    right: 16px;
    font-size: 1.1rem;
}

.modal-form .form-group textarea + .input-icon {
    top: 14px;
}

.modal-form .form-group input:focus + label,
.modal-form .form-group select:focus + label,
.modal-form .form-group textarea:focus + label,
.modal-form .form-group input:not(:placeholder-shown) + label,
.modal-form .form-group select:not([value=""]) + label,
.modal-form .form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 0.8rem;
}

.modal-form .form-submit-btn {
    margin-top: 4px;
    padding: 14px 36px;
    font-size: 1rem;
    flex-shrink: 0;
}

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

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-bg);
    padding: 32px 0;
    border-top: 1px solid rgba(37, 99, 235, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .result-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
    }

    .result-item {
        padding: 16px 12px;
    }

    .result-value {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .result-desc {
        font-size: 0.65rem;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonials-wrapper {
        margin-top: 36px;
        padding: 15px 0;
    }

    .testimonials-scroll {
        gap: 24px;
        padding: 15px 0 30px;
    }

    .testimonial-card {
        flex: 0 0 360px;
        padding: 28px;
        border-radius: 20px;
    }

    .testimonial-header {
        gap: 14px;
        margin-bottom: 16px;
    }

    .avatar-bg {
        width: 56px;
        height: 56px;
        font-size: 1.1rem;
    }

    .company-logo {
        width: 56px;
        height: 56px;
        padding: 6px;
    }

    .testimonial-author h4 {
        font-size: 1.05rem;
    }

    .testimonial-author p {
        font-size: 0.85rem;
    }

    .testimonial-rating {
        margin-bottom: 16px;
    }

    .testimonial-rating .star {
        font-size: 1.1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        padding-left: 20px;
    }

    .testimonial-text::before {
        font-size: 2.5rem;
        top: -6px;
    }

    .offering-stats {
        flex-direction: column;
        gap: 15px;
    }

    .hero-description {
        font-size: 1rem;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(250, 250, 250, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-headline {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        line-height: 1.35;
        margin-bottom: 20px;
    }

    .hero-subheadline {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .section-title {
        font-size: 2rem;
    }

    .offerings-grid,
    .highlights-grid,
    .focus-areas,
    .services-grid,
    .test-cases-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form-container {
        max-width: 100%;
        min-height: auto;
        width: 100%;
        justify-self: stretch;
    }

    .contact-info {
        max-width: 100%;
        min-height: auto;
        width: 100%;
        justify-self: stretch;
    }

    .contact-form-container,
    .contact-info {
        padding: 35px 30px;
    }

    .form-header h3,
    .contact-info-header h3 {
        font-size: 1.5rem;
    }

    .contact-detail-card {
        padding: 20px;
    }

    .contact-card-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .contact-icon {
        font-size: 1.5rem;
    }

    .hero-visuals {
        gap: 24px;
    }

    .visual-card {
        width: 150px;
        height: 150px;
    }

    .data-chart {
        height: 60px;
    }

    .visual-label {
        font-size: 0.75rem;
        padding: 3px 10px;
    }

    .network-node {
        width: 12px;
        height: 12px;
    }

    .tech-ring {
        border-width: 2px;
    }

    .ring-1 {
        width: 60px;
        height: 60px;
    }

    .ring-2 {
        width: 80px;
        height: 80px;
    }

    .ring-3 {
        width: 100px;
        height: 100px;
    }

    .tech-core {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 50px 0;
    }

    .testimonials-wrapper {
        margin-top: 32px;
        padding: 10px 0;
    }

    .testimonials-scroll {
        gap: 20px;
        padding: 10px 0 25px;
    }

    .testimonial-card {
        flex: 0 0 320px;
        padding: 24px;
        border-radius: 18px;
    }

    .testimonial-header {
        gap: 12px;
        margin-bottom: 14px;
    }

    .avatar-bg {
        width: 48px;
        height: 48px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .company-logo {
        width: 48px;
        height: 48px;
        padding: 5px;
        border-radius: 12px;
    }

    .testimonial-author h4 {
        font-size: 1rem;
    }

    .testimonial-author p {
        font-size: 0.8rem;
    }

    .testimonial-rating {
        margin-bottom: 14px;
        gap: 3px;
    }

    .testimonial-rating .star {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        padding-left: 18px;
    }

    .testimonial-text::before {
        font-size: 2rem;
        top: -4px;
    }

    .hero-visuals {
        gap: 16px;
        flex-direction: column;
    }

    .visual-card {
        width: 140px;
        height: 140px;
    }

    .data-chart {
        height: 50px;
    }

    .visual-label {
        font-size: 0.7rem;
        padding: 2px 8px;
    }

    .network-node {
        width: 10px;
        height: 10px;
    }

    .ring-1 {
        width: 50px;
        height: 50px;
    }

    .ring-2 {
        width: 70px;
        height: 70px;
    }

    .ring-3 {
        width: 90px;
        height: 90px;
    }

    .tech-core {
        width: 18px;
        height: 18px;
    }

    .modal-overlay {
        padding: 8px;
        padding-top: 16px;
    }

    .modal-container {
        max-height: calc(100vh - 16px);
        border-radius: 16px;
    }

    .modal-content {
        padding: 20px 16px 16px;
        max-height: calc(100vh - 16px);
    }

    .modal-close {
        top: 8px;
        right: 8px;
        width: 28px;
        height: 28px;
    }

    .modal-close svg {
        width: 14px;
        height: 14px;
    }

    .modal-header {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .modal-header .form-icon {
        font-size: 1.8rem;
        margin-bottom: 4px;
    }

    .modal-header h2 {
        font-size: 1.2rem;
        margin-bottom: 3px;
    }

    .modal-header p {
        font-size: 0.8rem;
    }

    .modal-form .form-group {
        margin-bottom: 14px;
    }

    .modal-form .form-group input,
    .modal-form .form-group select,
    .modal-form .form-group textarea {
        padding: 11px 38px 11px 14px;
        font-size: 0.85rem;
    }

    .modal-form .form-group textarea {
        min-height: 60px;
        max-height: 90px;
    }

    .modal-form .form-group label {
        font-size: 0.85rem;
        top: 11px;
    }

    .modal-form .form-group input:focus + label,
    .modal-form .form-group select:focus + label,
    .modal-form .form-group textarea:focus + label,
    .modal-form .form-group input:not(:placeholder-shown) + label,
    .modal-form .form-group select:not([value=""]) + label,
    .modal-form .form-group textarea:not(:placeholder-shown) + label {
        top: -7px;
        font-size: 0.75rem;
    }

    .modal-form .form-submit-btn {
        padding: 11px 24px;
        font-size: 0.9rem;
        margin-top: 0;
    }

    .input-icon {
        right: 14px;
        font-size: 1rem;
    }

    .hero-content {
        padding: 0 12px;
    }

    .hero-headline {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 28px;
    }

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

    .result-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }

    .result-item {
        padding: 14px 10px;
        border-radius: 16px;
    }

    .result-value {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }

    .result-desc {
        font-size: 0.6rem;
        padding: 0 2px;
    }

    .test-case-results {
        padding: 20px 16px;
        border-left-width: 5px;
    }

    .offering-card,
    .service-pillar,
    .test-case-card {
        padding: 25px;
    }

    .contact-form-container {
        max-width: 100%;
        min-height: auto;
        padding: 25px 20px;
        border-radius: 24px;
    }

    .contact-info {
        max-width: 100%;
        min-height: auto;
        padding: 25px 20px;
        border-radius: 24px;
    }

    .form-header,
    .contact-info-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .form-icon,
    .contact-info-icon {
        font-size: 2.5rem;
    }

    .form-header h3,
    .contact-info-header h3 {
        font-size: 1.3rem;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 45px 16px 18px;
        font-size: 0.95rem;
    }

    .contact-detail-card {
        padding: 18px;
        gap: 15px;
    }

    .contact-card-icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .contact-icon {
        font-size: 1.4rem;
    }

    .contact-card-content h4 {
        font-size: 1rem;
    }

    .contact-card-content p,
    .contact-card-content a {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .modal-overlay {
        padding: 12px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .modal-container {
        max-width: 100%;
        max-height: calc(100vh - 24px);
        border-radius: 20px;
        margin: 0;
    }

    .modal-content {
        padding: 24px 20px 20px;
        max-height: calc(100vh - 24px);
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
    }

    .modal-close svg {
        width: 16px;
        height: 16px;
    }

    .modal-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .modal-header .form-icon {
        font-size: 2rem;
        margin-bottom: 6px;
    }

    .modal-header h2 {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }

    .modal-header p {
        font-size: 0.85rem;
    }

    .modal-form .form-group {
        margin-bottom: 16px;
    }

    .modal-form .form-group input,
    .modal-form .form-group select,
    .modal-form .form-group textarea {
        padding: 12px 40px 12px 16px;
        font-size: 0.9rem;
    }

    .modal-form .form-group textarea {
        min-height: 70px;
        max-height: 100px;
    }

    .modal-form .form-group label {
        font-size: 0.9rem;
        top: 12px;
    }

    .modal-form .form-submit-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
        margin-top: 2px;
    }
}

/* ===================================
   Smooth Scroll Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Floating Animation */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Modern Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active,
.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Card Tilt Effect */
.offering-card,
.service-pillar,
.test-case-card,
.industry-card {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

/* Click Animation */
.nav-link.clicked {
    animation: click-pulse 0.3s ease;
}

@keyframes click-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* ===================================
   Form Notification System
   =================================== */
.form-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    min-width: 320px;
    max-width: 500px;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.form-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.form-notification-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.form-notification-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: white;
}

.notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
    opacity: 0.8;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive Notification */
@media (max-width: 768px) {
    .form-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: 100%;
        transform: translateY(-100px);
    }

    .form-notification.show {
        transform: translateY(0);
    }

    .notification-content {
        padding: 14px 16px;
    }

    .notification-message {
        font-size: 0.9rem;
    }
}

