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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #1a1a2e;
            background: #f8f9fa;
            overflow-x: hidden;
        }

        .announcement-banner {
            background: linear-gradient(90deg, #4a90e2 0%, #7b68ee 100%);
            color: white;
            text-align: center;
            padding: 0.75rem 2rem;
            font-size: 0.9rem;
            font-weight: 500;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1001;
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }

        .announcement-banner a {
            color: white;
            text-decoration: underline;
            font-weight: bold;
        }

        .header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 48px;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #4a90e2, #7b68ee);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            animation: pulse 2s ease-in-out infinite;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
            }
        }

        .logo-text {
            color: white;
            letter-spacing: 1px;
        }

        .logo-text .accent {
            background: linear-gradient(45deg, #4a90e2, #7b68ee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 500;
        }

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

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #4a90e2;
        }

        .hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: white;
            padding: 200px 2rem 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(74,144,226,0.1) 0%, transparent 70%);
            border-radius: 50%;
            top: -200px;
            right: -200px;
            animation: float 6s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(123,104,238,0.1) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -150px;
            left: -150px;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 40, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

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

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(45deg, #4a90e2, #7b68ee);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(74,144,226,0.4);
        }

        .services {
            padding: 80px 2rem;
            background: #f8f9fa;
        }

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

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #1a1a2e;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 4rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-bottom: 4rem;
        }

        .solution-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .solution-header {
            padding: 2rem;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .solution-header::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(74,144,226,0.2) 0%, transparent 70%);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }

        .solution-tag {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #4a90e2;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .solution-title {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            position: relative;
        }

        .solution-tagline {
            font-size: 1.1rem;
            font-weight: 600;
            color: #4a90e2;
            margin-bottom: 0.75rem;
        }

        .solution-description {
            font-size: 0.95rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .solution-body {
            padding: 2rem;
        }

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

        .solution-features li {
            padding: 0.75rem 0;
            border-bottom: 1px solid #f0f0f0;
            color: #444;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .solution-features li:last-child {
            border-bottom: none;
        }

        .solution-features li::before {
            content: '✓';
            color: #4a90e2;
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .cta-section {
    background: linear-gradient(135deg, #4a90e2, #7b68ee);
    color: white;
    text-align: center;
    padding: 100px 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.174) 0%, transparent 10%);
    animation: pulse-bg 8s ease-in-out infinite;
    z-index: 0;
}

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

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-main-button {
    display: inline-block;
    background: white;
    color: #4a90e2;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-main-button:hover {
    background: #1a1a2e;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}


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

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid #4a90e2;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: #1a1a2e;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
        }

        .about {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 2rem;
        }

        .process {
            padding: 80px 2rem;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .process::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(74,144,226,0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(123,104,238,0.05) 0%, transparent 50%);
            top: 0;
            left: 0;
        }

        .process-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .process .section-title {
            color: #1a1a2e;
        }

        .process .section-subtitle {
            color: #666;
        }

        .process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: stretch; /* ensure all items stretch to same height */
}

.process-step {
    display: flex;
    flex-direction: column; /* keep number on top, content below */
}

        .process-step:nth-child(1) { animation-delay: 0.1s; }
        .process-step:nth-child(2) { animation-delay: 0.2s; }
        .process-step:nth-child(3) { animation-delay: 0.3s; }
        .process-step:nth-child(4) { animation-delay: 0.4s; }
        .process-step:nth-child(5) { animation-delay: 0.5s; }

        /* .process-step::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 50%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #4a90e2, #7b68ee);
            z-index: -1;
        } */

        .process-step:last-child::before {
            display: none;
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: white;
            border: 4px solid #4a90e2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            color: #4a90e2;
            margin: 0 auto 1.5rem;
            box-shadow: 0 5px 20px rgba(74,144,226,0.2);
            transition: all 0.3s;
            position: relative;
            z-index: 2;
        }

        .process-step:hover .process-number {
            background: linear-gradient(135deg, #4a90e2, #7b68ee);
            color: white;
            border-color: transparent;
            transform: scale(1.1) rotate(360deg);
            box-shadow: 0 10px 30px rgba(74,144,226,0.4);
        }

        .process-content {
            text-align: center;
        }
        .process-content {
    flex: 1;
    border: 2px solid #4a90e2;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
    margin-top: 1rem;
    color: #1a1a2e;
}

.process-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


.process-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

        .process-features {
            list-style: none;
            display: grid;
            gap: 0.5rem;
            text-align: left;
        }

        .process-features li {
            color: #444;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .process-features li::before {
            content: '✓';
            color: #4a90e2;
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 2px;
        }

        @media (max-width: 1200px) {
            .process-timeline {
                grid-template-columns: repeat(3, 1fr);
            }

            .process-step:nth-child(3)::before,
            .process-step:nth-child(5)::before {
                display: none;
            }
        }

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

            .process-step::before {
                display: none;
            }
        }

        .about {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 2rem;
        }

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

        .about-content p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #444;
            margin-bottom: 1.5rem;
        }

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

        .stat-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            background: linear-gradient(45deg, #4a90e2, #7b68ee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: #666;
            margin-top: 0.5rem;
        }

        .contact {
            padding: 80px 2rem;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-form {
            margin-top: 2rem;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #1a1a2e;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #4a90e2;
        }

        .submit-button {
            background: linear-gradient(45deg, #4a90e2, #7b68ee);
            color: white;
            padding: 1rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(74,144,226,0.4);
        }

        .footer {
            background: #1a1a2e;
            color: white;
            padding: 2rem;
            text-align: center;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .nav-links {
                gap: 1rem;
            }
            
            .solutions-grid {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

/* Container fixed at bottom-right */
#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Floating avatar button */
#chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a90e2, #7b68ee);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

#chatbot-toggle:hover {
    transform: scale(1.1);
}
#chatbot {
    margin-bottom: 70px; /* leave space for the avatar */
}

#chatbot-avatar {
    font-size: 1.5rem;
    color: white;
    animation: float-avatar 2s ease-in-out infinite;
}

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

/* Chatbox */
#chatbot {
    width: 350px;
    max-height: 450px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 10px;

    /* Start just behind avatar, not offscreen */
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

/* Active chatbox slides in */
#chatbot.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* Header */
#chatbot-header {
    background: linear-gradient(135deg, #4a90e2, #7b68ee);
    color: white;
    padding: 1rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#chatbot-close {
    cursor: pointer;
    font-size: 1.2rem;
}

/* Messages */
#chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Input area */
#chatbot-input-container {
    display: flex;
    border-top: 1px solid #ddd;
    padding: 0.5rem;
    background: #f1f1f1;
}

#chatbot-input {
    flex: 1;
    border: none;
    padding: 0.75rem;
    font-size: 0.95rem;
    border-radius: 12px;
}

#chatbot-input:focus {
    outline: none;
    box-shadow: 0 0 5px #4a90e2;
}

#chatbot-send {
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0 1rem;
    margin-left: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

#chatbot-send:hover {
    background: #357ab7;
}

/* Message bubbles */
#chatbot-messages .user {
    align-self: flex-end;
    background: #4a90e2;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 15px 15px 0 15px;
    max-width: 80%;
    word-wrap: break-word;
}

#chatbot-messages .bot {
    align-self: flex-start;
    background: #e0e0e0;
    color: #111;
    padding: 0.5rem 0.75rem;
    border-radius: 15px 15px 15px 0;
    max-width: 80%;
    word-wrap: break-word;


}


/* Make sure nothing interferes with positioning */
    #chatbot-container {
      all: initial;
      position: fixed !important;
      bottom: 20px !important;
      right: 20px !important;
      z-index: 999999 !important;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
  
    #chatbot-button {
      background: linear-gradient(135deg, #0078d7, #00a6fb);
      color: white;
      border-radius: 30px;
      padding: 12px 20px;
      cursor: pointer;
      font-weight: 600;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
    }
  
    #chatbot-button:hover {
      transform: scale(1.05);
    }
  
    #chatbot-box {
      display: none;
      position: fixed;
      bottom: 80px;
      right: 20px;
      width: 320px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
      overflow: hidden;
      z-index: 1000000;
    }
  
    #chatbot-header {
      background: #0078d7;
      color: white;
      padding: 12px 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
    }
  
    #chatbot-messages {
      height: 300px;
      overflow-y: auto;
      padding: 10px;
      background: #f9f9f9;
    }
  
    .message {
      margin: 8px 0;
      padding: 8px 12px;
      border-radius: 8px;
      max-width: 80%;
    }
  
    .message.bot {
      background: #e5f1fb;
      color: #003a75;
    }
  
    .message.user {
      background: #d1ffd6;
      color: #004d1a;
      align-self: flex-end;
    }
  
    #chatbot-input-container {
      display: flex;
      border-top: 1px solid #ddd;
    }
  
    #chatbot-input {
      flex: 1;
      border: none;
      padding: 10px;
      outline: none;
    }
  
    #chatbot-send {
      background: #0078d7;
      color: white;
      border: none;
      padding: 10px 14px;
      cursor: pointer;
    }
  
    #chatbot-close {
      cursor: pointer;
      font-size: 18px;
    }
    .chatbot-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

#chatbot-header .chatbot-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}