#head1{
 color:white;
}


/* WhatsApp Button */
    .whatsapp-chatbot {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      background-color: #25d366;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      z-index: 9999;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .whatsapp-chatbot:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
      animation: bounce 0.6s ease;
    }

    .whatsapp-chatbot img {
      width: 36px;
      height: 36px;
      pointer-events: none;
    }

    @keyframes bounce {
      0% { transform: translateY(0); }
      30% { transform: translateY(-10px); }
      50% { transform: translateY(0); }
      70% { transform: translateY(-5px); }
      100% { transform: translateY(0); }
    }

    /* Welcome Popup */
    #welcomePopup {
      position: fixed;
      bottom: 90px;
      right: 90px;
      background-color: #25d366;
      color: white;
      padding: 10px 20px;
      border-radius: 10px;
      font-size: 14px;
      display: none;
      z-index: 9999;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 600px) {
      #welcomePopup {
        right: 20px;
        bottom: 90px;
      }

      .whatsapp-chatbot {
        width: 55px;
        height: 55px;
      }

      .whatsapp-chatbot img {
        width: 32px;
        height: 32px;
      }
    }
    /* Custom CSS for modern chatbot */
        :root {
            --primary-color: #4f46e5;
            --secondary-color: #7c3aed;
            --dark-color: #1e1b4b;
            --light-color: #f8fafc;
            --text-color: #334155;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --error-color: #ef4444;
        }
         body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
        }
        
        .chatbot-wrapper {
            position: fixed;
            left: 20px;
            bottom: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .chatbot-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
            transition: all 0.3s ease;
            border: none;
            outline: none;
        }
        .chatbot-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(79, 70, 229, 0.4);
            background-color: var(--secondary-color);
        }
        
        .chatbot-button i {
            font-size: 24px;
            transition: transform 0.3s ease;
        }
        
        .chatbot-button.active i {
            transform: rotate(180deg);
        }
        .chatbot-container {
            width: 350px;
            max-height: 0;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            background-color: white;
            transition: all 0.4s ease;
            opacity: 0;
        }
        
        .chatbot-container.open {
            max-height: 600px;
            opacity: 1;
        }
         .chatbot-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top-left-radius: 16px;
            border-top-right-radius: 16px;
        }
        
        .chatbot-title {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            font-size: 18px;
        }
        .chatbot-title img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .chatbot-controls {
            display: flex;
            gap: 12px;
        }
        
        .chatbot-controls button {
            background: transparent;
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.2s;
        }
        .chatbot-controls button:hover {
            opacity: 1;
        }
        
        .chatbot-body {
            height: 450px;
            display: flex;
            flex-direction: column;
        }
        
        .chatbot-messages {
            flex-grow: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .message {
            max-width: 80%;
            padding: 12px 16px;
            border-radius: 12px;
            line-height: 1.5;
            font-size: 14px;
        }
        
        .bot-message {
            background-color: #f1f5f9;
            color: var(--text-color);
            border-top-left-radius: 4px;
            align-self: flex-start;
            position: relative;
        }
        .bot-message:before {
            content: '';
            position: absolute;
            left: -8px;
            top: 0;
            width: 0;
            height: 0;
            border: 8px solid transparent;
            border-right-color: #f1f5f9;
            border-left: 0;
            margin-top: 12px;
        }
        
        .user-message {
            background-color: var(--primary-color);
            color: white;
            border-top-right-radius: 4px;
            align-self: flex-end;
            position: relative;
        }
        .user-message:after {
            content: '';
            position: absolute;
            right: -8px;
            top: 0;
            width: 0;
            height: 0;
            border: 8px solid transparent;
            border-left-color: var(--primary-color);
            border-right: 0;
            margin-top: 12px;
        }
        
        .chatbot-input-area {
            border-top: 1px solid #e2e8f0;
            padding: 16px;
            display: flex;
            gap: 12px;
        }
        .chatbot-input {
            flex-grow: 1;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 12px 16px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.2s;
        }
        
        .chatbot-input:focus {
            border-color: var(--primary-color);
        }
        .chatbot-send {
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 8px;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .chatbot-send:hover {
            background-color: var(--secondary-color);
        }
        
        .chatbot-send i {
            font-size: 18px;
        }
        .typing-indicator {
            display: flex;
            gap: 4px;
            padding: 12px 16px;
            background-color: #f1f5f9;
            border-radius: 12px;
            width: fit-content;
            margin-top: 4px;
        }
        .typing-dot {
            width: 8px;
            height: 8px;
            background-color: #64748b;
            border-radius: 50%;
            opacity: 0.4;
            animation: typing-animation 1.5s infinite ease-in-out;
        }
        
        .typing-dot:nth-child(1) {
            animation-delay: 0s;
        }
        
        .typing-dot:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .typing-dot:nth-child(3) {
            animation-delay: 0.4s;
        }
         @keyframes typing-animation {
            0% { opacity: 0.4; transform: translateY(0); }
            50% { opacity: 1; transform: translateY(-4px); }
            100% { opacity: 0.4; transform: translateY(0); }
        }
        
        .quick-replies {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 8px;
        }
        
        .quick-reply {
            background-color: #e2e8f0;
            border: none;
            border-radius: 20px;
            padding: 8px 16px;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.2s;
        }
         .quick-reply:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* Responsive adjustments */
        @media (max-width: 640px) {
            .chatbot-wrapper {
                left: 10px;
                bottom: 10px;
            }
            
            .chatbot-container {
                width: calc(100vw - 20px);
                left: 10px;
            }
        }
        
        /* Custom scrollbar */
        .chatbot-messages::-webkit-scrollbar {
            width: 6px;
        }
         .chatbot-messages::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 3px;
        }
        
        .chatbot-messages::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 3px;
        }
        
        .chatbot-messages::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }
 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        :root {
            --primary-color: #6366f1;
            --secondary-color: #a855f7;
            --neon-glow: 0 0 10px rgba(99, 102, 241, 0.7);
            --glass-bg: rgba(255, 255, 255, 0.05);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #0f172a;
            color: #e2e8f0;
            scroll-behavior: smooth;
        }
        
        /* Glassmorphism Effect */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            transition: all 0.3s ease;
        }
        
        /* Neon Hover Effects */
        .neon-hover:hover {
            box-shadow: var(--neon-glow), 0 0 20px rgba(168, 85, 247, 0.5);
            transform: translateY(-5px);
        }
        
        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Parallax Effect */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        /* Navbar Scroll Effect */
        .navbar {
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background-color: rgba(15, 23, 42, 0.9);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Pulse Animation */
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.6;
            }
        }
        
        .animate-pulse {
            animation: pulse 2s infinite;
        }
        
        /* Animation Effects */
        @keyframes slideInLeft {
            from {
                transform: translateX(-50px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        @keyframes slideInRight {
            from {
                transform: translateX(50px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        .animate-slide-left {
            animation: slideInLeft 0.8s ease-out forwards;
        }
        .animate-slide-right {
            animation: slideInRight 0.8s ease-out forwards;
        }

        /* Text Hover Effects */
        .heading-hover {
            transition: all 0.3s ease;
        }
        .heading-hover:hover {
            text-shadow: 0 0 5px var(--primary-color),
                         0 0 15px var(--primary-color),
                         0 0 20px var(--primary-color);
            transform: translateY(-2px);
        }
        .text-hover {
            transition: all 0.3s ease;
        }
        .text-hover:hover {
            text-shadow: 0 0 3px var(--primary-color),
                         0 0 8px var(--primary-color);
        }

        /* Mobile Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .project-card {
                height: 48vw;
            }
        }

    
        /* Testimonial Carousel */
        .carousel-item {
            transition: opacity 0.5s ease-in-out;
            opacity: 0;
            position: absolute;
            width: 100%;
        }
        
        .carousel-item.active {
            opacity: 1;
            position: relative;
        }
