
        :root {
            --primary-color: #6366f1;
            --secondary-color: #8b5cf6;
            --dark-color: #1f2937;
            --light-color: #f9fafb;
            --text-color: #333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f5f5f5;
            color: var(--text-color);
            overflow-x: hidden;
        }

/* --- our service css --- */



        /* --- Navigation --- */
        nav {
            background: #ffffff;
            color: #000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .nav-buttons a {
            color: #111;
            padding: 8px 16px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .nav-buttons a:hover {
            background-color: #f0f0f0;
        }

        .toggle-btn {
            display: none;
            font-size: 26px;
            background: transparent;
            border: none;
            color: #111;
            cursor: pointer;
        }

        /* --- Hero Section & Slider --- */


        /* --- Home Heading & Typewriter --- */
        .home-heading {
            font-size: 28px;
            font-weight: 700;
            text-align: left;
            padding: 0 24px;
            margin-top: 32px;
            min-height: 40px;
            color: var(--dark-color);
            white-space: nowrap;
            overflow: hidden;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        #typewriter {
            border-right: 3px solid var(--dark-color);
            animation: blink 0.75s step-end infinite;
        }

        @keyframes blink {
            from, to { border-color: transparent; }
            50% { border-color: var(--dark-color); }
        }

        /* --- Services Section --- */
        .home-services {
            display: flex;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 24px auto;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .left-panel, .right-panel {
            flex: 1;
            min-width: 300px;
            padding: 32px;
        }
        
        .left-panel { background-color: #fdfdfd; }

        .left-panel h2 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 24px;
            text-align: center;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 20px;
        }

        .service-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 16px;
            border: 1px solid #eee;
            border-radius: 10px;
            text-align: center;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background-color: #fff;
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .service-item img {
            width: 70px;
            height: 70px;
            margin-bottom: 12px;
            object-fit: contain;
        }

        .service-item span {
            font-size: 14px;
            font-weight: 600;
            color: #222;
        }

        .right-panel {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 10px;
            align-content: center;
        }

        .right-panel .image-wrapper img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
        }

       

        /* --- "We Work With" Section --- */
        .partners-section {
            background-color: var(--light-color);
            padding: 60px 16px;
        }
        
        .partners-section h2 {
            font-size: 32px;
            font-weight: bold;
            color: var(--dark-color);
            margin-bottom: 24px;
            text-align: center;
        }

        .partners-section p {
            color: #4b5563;
            font-size: 14px;
            max-width: 600px;
            margin: 0 auto 40px;
            text-align: center;
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 32px;
            align-items: center;
            justify-items: center;
            max-width: 800px;
            margin: auto;
        }

        .partners-grid img {
            height: 64px;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .partners-grid img:hover {
            filter: grayscale(0%);
        }

        /* --- Experience Stats Section --- */
        .experience-stats {
            background-color: #ffffff;
            padding: 30px 16px;
        }

        .stats-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-item {
            padding: 8px;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2); /* Glowing effect */
        }

        .stat-number {
            font-size: 30px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 8px;
            min-height: 58px; /* Prevents layout shift during count-up */
        }

        .stat-item p {
            font-size: 16px;
            color: #4b5563;
            font-weight: 600;
        }
        
        /* --- Support Widget --- */
        #support-widget {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 10001;
        }

        #support-widget button {
            background: #128C7E;
            border: none;
            border-radius: 50%;
            width: 56px;
            height: 56px;
            color: white;
            font-size: 24px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        #support-widget button:hover {
            transform: scale(1.1);
        }

        #support-menu {
            display: none;
            position: absolute;
            bottom: 70px;
            right: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            overflow: hidden;
            font-family: 'Segoe UI', sans-serif;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        #support-menu a {
            display: block;
            padding: 12px 18px;
            text-decoration: none;
            color: #333;
            border-bottom: 1px solid #eee;
            font-size: 14px;
        }
        
        #support-menu a:last-child { border-bottom: none; }
        
        #support-menu a:hover { background-color: #f8f9fa; }

        /* --- Bot Popup --- */
        #bot-popup {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 100%;
            max-width: 360px;
            height: 520px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            z-index: 10000;
            overflow: hidden;
            border: 1px solid #ccc;
            transform-origin: bottom right;
            animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        @keyframes scaleIn {
            from { transform: scale(0); opacity: 0;}
            to { transform: scale(1); opacity: 1;}
        }

        .bot-header {
            background: var(--primary-color);
            color: white;
            padding: 12px 16px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 16px;
        }

        .bot-header button {
            background: transparent;
            border: none;
            color: white;
            font-size: 22px;
            cursor: pointer;
            font-weight: bold;
        }

        /* --- Footer --- */
        .site-footer {
            background-color: var(--dark-color);
            color: #a0aec0;
            padding: 60px 16px 20px;
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-grid h3 {
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 16px;
        }

        .footer-grid p, .footer-grid li {
            font-size: 14px;
            line-height: 1.8;
        }

        .footer-grid ul {
            list-style: none;
        }

        .footer-grid a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-grid a:hover {
            color: #ffffff;
        }
        
        .footer-subscribe input {
            width: 100%;
            padding: 12px;
            background-color: #2d3748;
            border: 1px solid #4a5568;
            border-radius: 8px;
            color: #ffffff;
            margin-bottom: 12px;
        }

        .footer-subscribe button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            font-weight: 600;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .footer-subscribe button:hover {
            opacity: 0.9;
        }

        .footer-bottom {
            border-top: 1px solid #2d3748;
            padding-top: 20px;
            text-align: center;
            font-size: 14px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* --- Scroll Reveal & to Top --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        #scrollToTopBtn {
            display: none;
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
            border: none;
            background-color: var(--primary-color);
            color: white;
            cursor: pointer;
            padding: 10px;
            border-radius: 50%;
            font-size: 20px;
            width: 48px;
            height: 48px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            transition: background-color 0.3s, transform 0.3s;
        }

        #scrollToTopBtn:hover {
            background-color: var(--secondary-color);
            transform: scale(1.1);
        }
        
        /* --- Responsive Design --- */
        @media (max-width: 992px) {
            .product-card-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }
            .products-container {
                flex-direction: column;
            }
            .view-all-arrow {
                margin-top: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .toggle-btn {
                display: block;
            }
            .nav-buttons {
                position: absolute;
                top: 100%;
                right: 0;
                background: #ffffff;
                flex-direction: column;
                width: 100%;
                text-align: right;
                padding: 1rem 2rem;
                display: none;
                border-top: 1px solid #eee;
            }
            .nav-buttons.show {
                display: flex;
            }
            .product-card-wrapper {
                grid-template-columns: 1fr;
            }
            #bot-popup {
                bottom: 0;
                right: 0;
                max-width: 100%;
                height: 100%;
                border-radius: 0;
            }
        }

#contact-popup {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100%;
  max-width: 360px;
  height: auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  z-index: 10001;
  overflow: hidden;
  border: 1px solid #ccc;
  transform-origin: bottom right;
  animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (max-width: 768px) {
  #contact-popup {
    bottom: 0;
    right: 0;
    max-width: 100%;
    border-radius: 0;
  }
}

:root{
  --bg:#f6f7fb;
  --card-bg:#fff;
  --text:#1f2937;
  --muted:#6b7280;
  --primary:#2563eb;
  --ring:#e5e7eb;
  --shadow:0 1px 3px rgba(0,0,0,.08), 0 10px 20px rgba(0,0,0,.04);
  --shadow-hover:0 4px 10px rgba(0,0,0,.08), 0 16px 32px rgba(0,0,0,.06);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:var(--text);
  background:var(--bg);
}

/* Section */
.reviews-section{
  padding:48px 20px;
  max-width:1200px;
  margin:0 auto;
}
.reviews-section h2{
  margin:0 0 24px;
  text-align:center;
  font-size:28px;
  letter-spacing:.2px;
  font-weight:700;
  color:#0f172a;
}

/* Horizontal list */
.reviews-container{
  display:flex;
  gap:16px;
  overflow-x:auto;
  padding:4px 2px 6px;
  scroll-snap-type:x mandatory;
}
.reviews-container::-webkit-scrollbar{height:8px}
.reviews-container::-webkit-scrollbar-thumb{
  background:#d1d5db;border-radius:8px
}
.reviews-container::-webkit-scrollbar-track{background:transparent}

/* Card */
.review-card{
  scroll-snap-align:start;
  flex:0 0 280px;
  background:var(--card-bg);
  border:1px solid var(--ring);
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:18px;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  opacity:0;
  transform:translateY(10px);
  animation:cardIn .5s ease forwards;
}
.review-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
  border-color:#dbe1ea;
}

@keyframes cardIn{to{opacity:1; transform:translateY(0)}}
.review-card:nth-child(1){animation-delay:.05s}
.review-card:nth-child(2){animation-delay:.1s}
.review-card:nth-child(3){animation-delay:.15s}
.review-card:nth-child(4){animation-delay:.2s}

/* Avatar */
.review-card img{
  width:84px;height:84px;border-radius:50%;object-fit:cover;
  display:block;margin:0 auto 12px;border:4px solid #f3f4f6;
}

/* Text */
.review-card h4{
  margin:6px 0 2px;font-size:18px;font-weight:700;text-align:center;color:#111827;
}
.review-card em{
  display:block;text-align:center;color:var(--muted);font-style:normal;font-size:14px;margin-bottom:8px;
}
.rating{
  text-align:center;margin:6px 0 8px;color:#f59e0b;font-weight:600;
  position:relative;
}
.rating::before{
  content:""; position:absolute; left:50%; top:50%; width:0; height:0; border-radius:50%;
  background:rgba(245,158,11,.18); transform:translate(-50%,-50%); animation:pulse 2.2s ease infinite;
}
@keyframes pulse{
  0%{width:0;height:0;opacity:.6}
  60%{width:120%;height:160%;opacity:0}
  100%{opacity:0}
}

.review-card p{
  margin:4px 0;color:#374151;text-align:center;font-size:14px;
}

/* Button */
.book-btn{
  display:block;width:100%;
  background:#111827;color:white;
  padding:10px 14px;border:none;border-radius:10px;
  font-weight:600;letter-spacing:.2px;cursor:pointer;
  transition:background .18s ease, transform .18s ease;
  position:relative;overflow:hidden;
}
.book-btn:hover{background:#0b1220;transform:translateY(-1px)}
.book-btn::after{
  content:""; position:absolute; inset:0; transform:translateX(-120%);
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transition:transform .6s ease; pointer-events:none;
}
.book-btn:hover::after{ transform:translateX(120%); }

/* Popup (clean) */
.popup{
  display:none;position:fixed;inset:0;background:rgba(15,23,42,.5);
  justify-content:center;align-items:center;z-index:1000;
}
.popup-content{
  background:#fff;border:1px solid var(--ring);
  width:360px;max-width:92vw;border-radius:14px;box-shadow:var(--shadow-hover);
  padding:22px;position:relative;
}
.close-btn{position:absolute;top:10px;right:12px;font-size:22px;cursor:pointer;color:#6b7280}
.popup-content h3{margin:0 0 12px;text-align:center;font-size:18px}
.popup-content input{
  width:100%;padding:10px 12px;margin:8px 0;border:1px solid #e5e7eb;border-radius:10px;
  outline:none;transition:border-color .15s ease, box-shadow .15s ease;font-size:14px;
}
.popup-content input:focus{
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(37,99,235,.12);
}
.submit-btn{
  width:100%;background:var(--primary);color:#fff;border:none;border-radius:10px;
  padding:10px 14px;font-weight:600;cursor:pointer;transition:background .18s ease;
}
.submit-btn:hover{background:#1d4ed8}

    