        @font-face {
            font-family: 'Jost-Black';
            src: url(..fonts/Jost-Black.ttf) format('truetype');
        }
        @font-face {
            font-family: 'Jost';
            src: url(../fonts/Jost-Regular.ttf) format('truetype');
        }
        @font-face {
            font-family: 'Lato-Black';
            src: url(../fonts/Lato-Black.ttf) format('truetype');
        }
        @font-face {
            font-family: 'Lato';
            src: url(../fonts/Lato-Regular.ttf) format('truetype');
        }
        @font-face {
            font-family: 'Lato-Thin';
            src: url(../fonts/Lato-Thin.ttf) format('truetype');
        }
        @font-face {
            font-family: 'Montserrat-Black';
            src: url(../fonts/Montserrat-Black.ttf) format('truetype');
        }
        @font-face {
            font-family: 'Montserrat';
            src: url(../fonts/Montserrat-Regular.ttf) format('truetype');
        }
        @font-face {
            font-family: 'Montserrat-Thin';
            src: url(../fonts/Montserrat-Thin.ttf) format('truetype');
        }
        @font-face {
            font-family: 'Roboto-Black';
            src: url(../fonts/Roboto-Black.ttf) format('truetype');
        }
        @font-face {
            font-family: 'Roboto';
            src: url(../fonts/Roboto-Regular.ttf) format('truetype');
        }

        :root{
            --primary-color: #2563eb;
            --primary-light: #3b82f6;
            --primary-dark: #1e3a8a;
            --dark: #14213d;
            --secondary-color: #16a085;
            --secondary-light: #3ce2c1;
            --border-color: #e5e7eb;
            --light-gray: #e2e8f0;
            --grey-medium: #94a3b8;
            --grey-dark: #475569;
            --primary: #3a86ff;
            --secondary: #8338ec;
            --accent: #ff006e;
        }

        .container{max-width: 1140px; position: relative; margin: 0px auto;}
        .row{width: 100%; position: relative;}
        .row div{display: inline-block;}
        .col-1 {width: 8.33%;}
        .col-2 {width: 16.66%;}
        .col-3 {width: 25%;}
        .col-4 {width: 32.33%;}
        .col-5 {width: 41.66%;}
        .col-6 {width: 49.8%;}
        .col-7 {width: 58.33%;}
        .col-8 {width: 66.66%;}
        .col-9 {width: 75%;}
        .col-10 {width: 83.33%;}
        .col-11 {width: 91.66%;}
        .col-12 {width: 100%;}

        .padding{padding: 1rem;}
        .padding2{padding: 2rem;}
        .margin{margin: 1rem;}
        .margin2{margin: 2rem;}

        h1{font-size: 3rem;}
        h2{font-size: 2rem;}
        h3{font-size: 1.5rem;}

        .text-center, .center-text{
            text-align: center;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Arial', sans-serif;
            font-size: 1.3rem;
            background-color: #f5f5f5;
            padding: 20px;
        }

        .navbar {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            font-size: 1rem;
            border-radius: 12px;
            position: relative;
            overflow: visible;
            z-index: 100;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            font-family: 'Lato';
            font-size: 24px;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }
        .logo strong{
            font-family: 'Lato-Black';
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: block;
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            transition: all 0.3s ease;
            white-space: nowrap;
            border-radius: 4px;
            font-weight: 500;
        }

        .nav-link:hover {
            background-color: rgb(142, 146, 246);/*rgba(255, 255, 255, 0.1);*/
            color: #f0f0f0;
        }

        .nav-btn{
            margin-left: 16px;
            background: white;
            width: 120px;
            height: 48px;
            border-radius: 24px;
            color: black;
        }

        /* Services dropdown styles */
        .services-dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            width: 50vw;
            max-width: 600px;
            min-width: 500px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            margin-top: 10px;
        }

        .nav-item:hover .services-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-content {
            padding: 30px;
            
        }

        .dropdown-title {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }

        .dropdown-content .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .dropdown-content .service-item {
            padding: 20px;
            border-radius: 8px;
            /*background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);*/
            transition: all 0.3s ease;
            text-decoration: none;
            color: #333;
            border: 2px solid transparent;
        }

        .dropdown-content .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: #667eea;
        }

        .dropdown-content .service-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #2c3e50;
        }

        .dropdown-content .service-description {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }

         @media (max-width: 768px) {
            .services-dropdown {
                opacity: 1;
                visibility: visible;
            }
            .dropdown-content .services-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 20px;
            }
            
         }

        /* Mobile menu toggle */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        /*.hero-gradient-bg {
            background: linear-gradient(-45deg, #2563eb, #3b82f6, #8b5cf6, #ec4899, #3b82f6, #2563eb);
            background-size: 400% 400%;
            animation: gradient-shift 20s ease infinite;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.12;
            z-index: -1;
          }*/


          .hero-container {
            height: 90vh;
            position: relative;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            padding: 0 10%;
            z-index: 5;
        }

        .slide.active {
            opacity: 1;
            z-index: 10;
        }

        .slide-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
            gap: 60px;
        }

        .slide-content.reverse {
            flex-direction: row-reverse;
        }

        .text-content {
            flex: 1;
            color: #2c3e50;
            animation: slideInText 0.8s ease-out forwards;
        }

        .text-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(45deg, #3498db, #2c3e50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .text-content p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            color: #5d6d7e;
        }

        .cta-button {
            padding: 18px 36px;
            background: linear-gradient(45deg, #3498db, #2c3e50);
            text-decoration: none;
            color: white;
            border: none;
            cursor: default;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
            background: linear-gradient(45deg, #2980b9, #34495e);
        }

        .image-container {
            flex: 1;
            position: relative;
            height: 500px;
            perspective: 1000px;
        }

        .image-blocks {
            position: relative;
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            grid-template-rows: repeat(6, 1fr);
            gap: 2px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .block {
            background-size: 800% 600%;
            transition: transform 0.6s ease, opacity 0.6s ease;
            transform-style: preserve-3d;
        }

        .block.exploding {
            transform: translateZ(200px) rotateX(180deg) rotateY(180deg);
            opacity: 0;
        }

        .navigation {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 11;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(44, 62, 80, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .nav-dot.active {
            background: #3498db;
            border: 2px solid #fff;
            transform: scale(1.2);
            box-shadow: 0 2px 8px rgba(52, 152, 219, 0.4);
        }

        .nav-dot:hover {
            background: #3498db;
            transform: scale(1.1);
        }

        @keyframes slideInText {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Additional styling for light theme */
        .slide:nth-child(1) .text-content h1 {
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .slide:nth-child(2) .text-content h1 {
            background: linear-gradient(45deg, #27ae60, #16a085);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .slide:nth-child(3) .text-content h1 {
            background: linear-gradient(45deg, #f39c12, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .slide:nth-child(4) .text-content h1 {
            background: linear-gradient(45deg, #9b59b6, #8e44ad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .slide:nth-child(1) .cta-button {
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        }

        .slide:nth-child(1) .cta-button:hover {
            background: linear-gradient(45deg, #c0392b, #a93226);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
        }

        .slide:nth-child(2) .cta-button {
            background: linear-gradient(45deg, #27ae60, #16a085);
            box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
        }

        .slide:nth-child(2) .cta-button:hover {
            background: linear-gradient(45deg, #16a085, #138d75);
            box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
        }

        .slide:nth-child(3) .cta-button {
            background: linear-gradient(45deg, #f39c12, #e67e22);
            box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
        }

        .slide:nth-child(3) .cta-button:hover {
            background: linear-gradient(45deg, #e67e22, #d68910);
            box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
        }

        .slide:nth-child(4) .cta-button {
            background: linear-gradient(45deg, #9b59b6, #8e44ad);
            box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
        }

        .slide:nth-child(4) .cta-button:hover {
            background: linear-gradient(45deg, #8e44ad, #7d3c98);
            box-shadow: 0 8px 25px rgba(155, 89, 182, 0.4);
        }

        /* Chatbot Styles */
        .chatbot-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .chatbot-launcher {
            background-color: #16a085 /*var(--primary-color)*/;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }

        .chatbot-launcher:hover {
            transform: scale(1.05);
        }

        .chatbot-icon {
            width: 30px;
            height: 30px;
        }

        .chatbot-window {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 350px;
            background-color: white /*var(--white)*/;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            display: none;
            overflow: hidden;
            transition: transform 0.3s ease, opacity 0.3s ease;
            transform: translateY(20px);
            opacity: 0;
        }

        .chatbot-window.active {
            display: block;
            transform: translateY(0);
            opacity: 1;
            z-index: 10;
        }

        .chatbot-header {
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chatbot-title {
            font-weight: 600;
            font-size: 16px;
        }

        .close-chatbot {
            background: none;
            border: none;
            color: var(--white);
            cursor: pointer;
            font-size: 18px;
        }

        .chatbot-messages {
            height: 300px;
            overflow-y: auto;
            padding: 15px;
            font-size: 11pt;
        }

        .message {
            margin-bottom: 15px;
            max-width: 80%;
            padding: 10px 15px;
            border-radius: 15px;
            position: relative;
            word-wrap: break-word;
        }

        .bot-message {
            background-color: var(--light-gray);
            color: var(--text-color);
            border-top-left-radius: 5px;
            margin-right: auto;
        }

        .user-message {
            background-color: var(--secondary-light);
            color: var(--white);
            border-top-right-radius: 5px;
            margin-left: auto;
        }

        .chatbot-input {
            display: flex;
            padding: 10px 15px;
            border-top: 1px solid var(--border-color);
        }

        .message-input {
            flex: 1;
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            outline: none;
            font-size: 14px;
        }

        .send-message {
            background-color: var(--secondary-color);
            color: var(--white);
            border: none;
            border-radius: 5px;
            padding: 0 15px;
            margin-left: 10px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .send-message:hover {
            background-color: var(--secondary-dark);
        }

        .typing-indicator {
            display: none;
            padding: 10px 15px;
            background-color: var(--light-gray);
            border-radius: 15px;
            margin-bottom: 15px;
            width: fit-content;
            border-top-left-radius: 5px;
        }

        .dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: #888;
            border-radius: 50%;
            margin-right: 3px;
            animation: bounce 1.4s infinite ease-in-out;
        }

        .dot:nth-child(1) { animation-delay: 0s; }
        .dot:nth-child(2) { animation-delay: 0.2s; }
        .dot:nth-child(3) { animation-delay: 0.4s; }

        @keyframes bounce {
            0%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-8px); }
        }



        .wa-values {
            padding: 3rem;
            background: linear-gradient(135deg, var(--dark) 0%, #1e3a8a 100%);
            border-radius: 12px;
            color: white;
            margin: 4rem 0;
        }
        
        .wa-values-title {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .wa-values-list {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }
        
        .wa-value-item {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }
        
        .wa-value-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--light);
        }
        
        .wa-value-desc {
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
        }

        .wa-cta {
            text-align: center;
            margin-top: 3rem;
        }
        
        .wa-cta-title {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .wa-cta-desc {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            line-height: 1.6;
            color: var(--grey-dark);
        }
        
        .wa-cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            color: white;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 50px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
        }
        
        .wa-cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(58, 134, 255, 0.4);
        }

                /* Pricing Section */
                .pricing {
                    padding: 100px 20px;
                    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
                }
        
                .pricing h2 {
                    text-align: center;
                    font-size: 3rem;
                    margin-bottom: 3rem;
                    color: #333;
                }
        
                .pricing-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                    gap: 2rem;
                    max-width: 1200px;
                    margin: 0 auto;
                }
        
                .pricing-card {
                    background: white;
                    border-radius: 20px;
                    padding: 40px 30px;
                    text-align: center;
                    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                    position: relative;
                    overflow: hidden;
                }
        
                .pricing-card::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    height: 5px;
                    background: linear-gradient(135deg, #667eea, #764ba2);
                }
        
                .pricing-card:hover {
                    transform: translateY(-10px);
                    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
                }
        
                .pricing-card.featured {
                    transform: scale(1.05);
                    border: 3px solid #667eea;
                }
        
                .pricing-card.featured::before {
                    height: 8px;
                }
        
                .plan-name {
                    font-size: 1.8rem;
                    font-weight: 700;
                    color: #333;
                    margin-bottom: 1rem;
                }
        
                .plan-price {
                    font-size: 3rem;
                    font-weight: 800;
                    color: #667eea;
                    margin-bottom: 0.5rem;
                }
        
                .plan-description{
                    color: gray;
                    font-style: italic;
                    margin-bottom: 12px;
                }
                .plan-period {
                    color: #666;
                    margin-bottom: 2rem;
                    font-size: 1.1rem;
                }
        
                .plan-features {
                    list-style: none;
                    margin-bottom: 2rem;
                }
        
                .plan-features li {
                    padding: 10px 0;
                    color: #666;
                    border-bottom: 1px solid #eee;
                }
        
                .plan-features li:last-child {
                    border-bottom: none;
                }
        
                .plan-button {
                    background: linear-gradient(135deg, #667eea, #764ba2);
                    color: white;
                    border: none;
                    padding: 15px 30px;
                    border-radius: 50px;
                    font-size: 1.1rem;
                    font-weight: 600;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    width: 100%;
                }
        
                .plan-button:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
                }
        
                /* Animations */
                @keyframes fadeInUp {
                    from {
                        opacity: 0;
                        transform: translateY(30px);
                    }
                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }
        
                @keyframes float {
                    0%, 100% {
                        transform: translateY(0px) rotate(0deg);
                    }
                    50% {
                        transform: translateY(-20px) rotate(180deg);
                    }
                }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent), #f97316);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
        }

        .feature-icon svg{
            width: 32px;
        }

        /* Footer */
        footer {
            background-color: #0a2540;
            color: white;
            font-size: 0.9rem;
            /*padding: 4rem 0 2rem;
            margin-top: 4rem;*/
            padding: 40px 16px 32px 16px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .footer-heading {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.25rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }


        /* Modal Overlay */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            animation: fadeIn 0.6s ease-out forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        /* Modal Container */
        .modal {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            box-shadow: 
                0 32px 64px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.2);
            width: 90%;
            max-width: 500px;
            max-height: 90vh;
            overflow: hidden;
            position: relative;
            transform: scale(0.8) translateY(50px);
            animation: modalEnter 0.6s ease-out 0.2s forwards;
        }

        @keyframes modalEnter {
            to {
                transform: scale(1) translateY(0);
            }
        }

        /* Modal Header */
        .modal-header {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            padding: 32px 32px 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .modal-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .modal-title {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea, #764ba2);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .modal-subtitle {
            color: #6b7280;
            font-size: 16px;
            font-weight: 400;
            line-height: 1.5;
        }

        /* Close Button */
        .close-btn {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 40px;
            height: 40px;
            border: none;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #6b7280;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .close-btn:hover {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
            transform: scale(1.1) rotate(90deg);
            box-shadow: 0 6px 20px rgba(239, 68, 68, 0.2);
        }

        /* Modal Body */
        .modal-body {
            padding: 12px 32px 32px;
        }

        /* Form Styles */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .form-group {
            position: relative;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #374151;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid rgba(209, 213, 219, 0.5);
            border-radius: 16px;
            font-size: 16px;
            font-family: inherit;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            outline: none;
        }

        .form-input:focus,
        .form-textarea:focus {
            border-color: #667eea;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }

        .form-input:focus + .form-label,
        .form-textarea:focus + .form-label {
            color: #667eea;
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Submit Button */
        .submit-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 18px 32px;
            border-radius: 16px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-top: 8px;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(102, 126, 234, 0.3);
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            

            .col-1 {width: 100%;}
            .col-2 {width: 100%;}
            .col-3 {width: 100%;}
            .col-4 {width: 100%;}
            .col-5 {width: 100%;}
            .col-6 {width: 100%;}
            .col-7 {width: 100%;}
            .col-8 {width: 100%;}
            .col-9 {width: 100%;}
            .col-10 {width: 100%;}
            .col-11 {width: 100%;}
            .col-12 {width: 100%;}

            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                flex-direction: column;
                margin-top: 10px;
                border-radius: 12px;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                transition: all 0.3s ease;
                padding-bottom: 16px;
            }

            .nav-menu.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .mobile-toggle {
                display: block;
            }

            .nav-link{
                position: relative;
            }

            .hero-container {
                height: 860px;
                position: relative;
                overflow: hidden;
            }
            .image-container{
                width: 100%;
                height: 300px;
            }
            .image-blocks{
                height: 260px;
            }

            .services-dropdown {
                position: static;
                min-width: 320px;
                width: 100% !important;
                transform: none;
                margin: 0 auto;
                border-radius: 0;
                box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
            }

            .services-grid {
                width: 100%;
                grid-template-columns: 1fr;
            }
            .service-item{
                width: 85%;
            }

            .nav-item:hover .services-dropdown {
                transform: none;
            }

            .slide-content {
                flex-direction: column !important;
                text-align: center;
                gap: 30px;
            }

            .text-content h1 {
                font-size: 2.5rem;
            }

            .image-container {
                height: 300px;
            }

            .hero-container {
                padding: 0 5%;
            }

            .chatbot-window {
                width: 85vw;
                max-width: 350px;
            }

            .wa-values-list {
                flex-direction: column;
            }

            .modal {
                margin: 16px;
                border-radius: 20px;
            }
            
            .modal-header,
            .modal-body {
                padding-left: 24px;
                padding-right: 24px;
            }
            
            .modal-title {
                font-size: 24px;
            }

            .wa-values {
                padding: 1rem;
            }
        }

        /* Additional styling for better visual hierarchy */
        .dropdown-content::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 10px solid white;
        }