
  :root {
    --black: #256e99;
    --white: #f5f2ee;
    --accent: #25D366;
    --accent2: #12ad02;
    --gray: #1c1c1c;
    --gray2: #2e2e2e;
    --light: #f0ece6;
    --text-muted: #888;
    --radius: 4px;
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family:'Montserrat', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
  }
  h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif}
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: var(--white);
    /* backdrop-filter: blur(12px); */
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5vw; height: 64px;
  }
  .nav-logo {
   height: auto;height: 40px;
  }
  .nav-logo img { height: 40px; width: auto;margin-left: 20px;}
  .nav-links { display: flex; gap: 2rem; align-items: center; color: var(--black); }
  .nav-links a { font-size:1.1rem; font-weight: 600; opacity: 0.75; transition: opacity var(--transition); }
  .nav-links a:hover { opacity: 1; }
  .nav-cta {
    background: var(--black); color:var(--white);
    padding: 0.79rem 1.1rem; border-radius: var(--radius);
    font-weight: 700; font-size: 0.82rem; transition: background var(--transition);
  }
  .nav-cta:hover { background: var(--accent2);color: var(--white); }
  .hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 4px;
  }
  .hamburger span { display: block; width: 24px; height: 4px; background: var(--black); border-radius: 2px; transition: var(--transition); }
  .mobile-menu {
    display: none; position: fixed; top: 64px; left: 0; width: 100%; z-index: 999;
    background: var(--gray); border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: column; padding: 1.5rem 5vw 2rem;
    gap: 1.2rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-size: 1rem; font-weight: 500; opacity: 0.85; }
  .mobile-menu a:hover { opacity: 1; color: var(--accent); }

  /* ─── HERO ─── */
  .hero {
    min-height: 90vh; display: flex; flex-direction: column;
    justify-content: center; padding: 100px 5vw 5vw;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(180deg,rgba(255, 255, 255, 0) ,rgba(22, 93, 134, 0)), url('assets/h1_deco.png');
    background-repeat: no-repeat; background-position: right; }
  .hero-tag {
    font-size: 0.9rem; letter-spacing: 0.18em;font-family: cursive;
    color: var(--white); font-weight: 600; margin-bottom: 1.2rem; position: relative; z-index: 1;
  }
    .hero-tag span { color: var(--accent2);}
  .hero h1 {
    font-size: clamp(2.0rem, 7vw, 5rem); font-weight: 700;
    line-height: 1.0; letter-spacing: -0.03em;
    position: relative; z-index: 1; max-width: 800px;
  }
  .hero h1 .highlight { color: rgba(0, 0, 0, 0.63); }
  .hero-sub {
    margin-top: 1.5rem; font-size: clamp(1rem, 2vw, 1.15rem);
    opacity: 0.6; max-width: 500px; line-height: 1.6;
    position: relative; z-index: 1;
  }
  .hero-pills {
    display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem;
    position: relative; z-index: 1;
  }
  .pill {
    border: 1px solid rgba(255,255,255,0.15); border-radius: 2rem;
    padding: 0.4rem 1rem; font-size: 0.82rem; font-weight: 500;
    transition: var(--transition); cursor: pointer;
  }
  .pill:hover { border-color: var(--accent); color: var(--accent); }
  .hero-actions { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; position: relative; z-index: 1; }
  .btn-primary {
    background: var(--accent); color: var(--white);
    padding: 0.8rem 2rem; border-radius: var(--radius);
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem;
    transition: var(--transition); display: inline-block;
  }
  .btn-primary:hover { background: #046d12; transform: translateY(-1px); }
  .btn-outline {
    border: 1px solid rgba(255,255,255,0.25); color: var(--white);
    padding: 0.8rem; border-radius: var(--radius);
    font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.9rem;
    transition: var(--transition); display: inline-block;
  }
  .btn{
    background: var(--accent); color: var(--black);margin-top: 10px;
    padding: 0.8rem ; border-radius: 20px;border: none;
    font-family: 'Montserrat', sans-serif; font-weight: 750; font-size: 0.7rem;
    transition: var(--transition); display: inline-block;
  }
  .btn-outline:hover { border-color: var(--accent); color: var(--accent); }
  .hero-scroll {
    position: absolute; bottom: 2rem; left: 5vw; z-index: 1;
    font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
    opacity: 0.4; display: flex; align-items: center; gap: 0.6rem;
  }
  .hero-scroll::before { content:''; display:block; width:40px; height:1px; background:currentColor; }

  /* ─── SECTION COMMONS ─── */
  section { padding: 2rem 5vw; }
  .section-label {
    font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: black; font-weight: 600; margin-bottom: 0.8rem;
  }
  .section-title {
    font-size: clamp(1.0rem, 9vw, 2.5rem); font-weight: 700;
     letter-spacing: -0.03em;color: black;
    position: relative; z-index: 1;
  }
  .section-title span { color: var(--accent); }
  .divider { width: 48px; height: 3px; background: black; margin: 1.2rem 0; border-radius: 2px; }

  /* ─── SERVICES ─── */
  #services, .testimonials { background: linear-gradient(120deg,rgb(255, 255, 255) ,rgba(248, 249, 250, 0.034)), url('img/background\ \(1\).png');
    background-repeat: no-repeat;background-position: right;background-size:cover; }
  .services-intro { max-width: 600px; margin-bottom: 3rem;border-top: 2px solid var(--black);padding-top: 20px; }
  .services-intro p { opacity: 0.65; line-height: 1.7; margin-top: 1rem; }
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.05);
  }
  .service-card {
    background: var(--black); padding: 2.5rem 2rem;
    transition: background var(--transition);
    position: relative; overflow: hidden;
  }
  .service-card::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 3px; background: var(--accent); transition: width 0.4s ease;
  }
  .service-card:hover::after { width: 100%; }
  .service-card:hover { background: var(--gray2); }
  .service-icon { font-size: 2rem; margin-bottom: 1.2rem; }
  .service-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.8rem; }
  .service-card p { font-size: 0.9rem; opacity: 0.6; line-height: 1.7; }

  /* ─── PRINTING ─── */
  #printing { background: var(--black); }
  .printing-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .printing-text p { opacity: 0.65; line-height: 1.8; margin-top: 1rem; margin-bottom: 2rem; }
  .printing-visual {
    background: var(--white); border-radius: 8px; padding: 3rem 2rem;
    text-align: center; position: relative; overflow: hidden;
  }
  .printing-visual::before {
    content: 'PRINT'; position: absolute; font-family:'Montserrat', sans-serif;
    font-size: 8rem; font-weight: 800; color: rgba(42, 65, 90, 0.13);
    top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
    white-space: nowrap;
  }
  .print-emoji { font-size: 5rem; margin-bottom: 1rem; }
  .printing-visual p { opacity: 0.5; font-size: 0.9rem; }
  /* //////////// */
  .third, .fourth{
      width: 100%;
      max-width: 1200px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    box-sizing: border-box;
    margin: 10px auto;
    padding: 20px 5px 20px 5px;
    border-radius: 5px;
        transition: 0.9s;
  }
   .third1, .fourth1, .fourth2, .fourth3 {
    margin: 5px 0 10px 10px ;
    box-sizing: border-box;
  }
  .aboutus{position: relative; margin: -280px 0 0 300px; padding: 10px;
width: 90px;border-radius: 20px;
background-color: rgb(55, 87, 146); color: #fff;}

  .rangi{color:#25D366;}
  .third0 {
    background-image: url('img/rec.png');
    background-size: cover;
    margin: 10px;
  }
   .third2 {
    font-size: small;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 100;
    margin-top: 20px;
  }
  @media (max-width: 768px) {
   .third, .fourth {
      flex-direction: column;
      align-items: center;
    }
    .third1, .fourth1, .fourth2, .fourth3 {
      margin: 10px;
      text-align: center;
    }
    .aboutus{display: none;}
    .fourth1 img{width: 350px;}
    .heading{font-size: 0.8rem;font-weight: 400;}
  }
  /* ─── PRODUCTS ─── */
  .partners, .products-intro { text-align: center;}
  #product_list { background: var(--gray); }
  .products-intro { max-width: 100%; margin-bottom: 3rem; }
  .products-intro p { opacity: 0.65; line-height: 1.7; margin-top: 1rem; }
  .products-grid {
    display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem;
  }
  .product-tag {
    border: 1px solid rgba(255,255,255,0.12); border-radius: 2rem;
    padding: 0.35rem 0.9rem; font-size: 0.82rem; font-weight: 500;
    transition: var(--transition); cursor: default;
  }
  .product-tag:hover { border-color: black; color: var(--white); background: rgba(232,160,32,0.07); }

  /* ─── WHY US ─── */
  #why { }
  .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; }
  .why-card { background: var(--black) !important; padding: 2rem; border: 1px solid rgba(255,255,255,0.07); border-radius: 6px; transition: border-color var(--transition); }
  .why-card:hover { border-color: rgba(232,160,32,0.4); }
  .why-num {color: whitesmoke; font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 800; opacity: 0.3; line-height: 1; }
  .why-card h4 { font-size: 1rem; font-weight: 700; margin: 0.5rem 0 0.5rem; }
  .why-card p { font-size: 0.85rem; opacity: 0.55; line-height: 1.6; }

  /* ─── BRANDING ─── */
  #branding { background: var(--white); }
  .branding-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .branding-text p { opacity: 0.65; line-height: 1.8; margin-top: 1rem; }
  .branding-points { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
  .branding-point { display: flex; gap: 1rem; align-items: flex-start; }
  .branding-point .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--black); margin-top: 6px; flex-shrink: 0; }
  .branding-point p { font-size: 0.9rem; opacity: 0.65; line-height: 1.6; color: #1c1c1c; }
  .branding-visual { display: flex; flex-direction: column; gap: 1rem; }
  .brand-box {
    background:#fff; border-radius: 6px; padding: 1.8rem;
    border-left: 3px solid var(--black);
  }
  .brand-box h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem;color: #256e99; }
  .brand-box p { font-size: 0.9rem; opacity: 0.55;color: black; }

  /* ─── WEB DEV ─── */
  .heading{width: 100%;font-size: 1.8rem;font-weight: 600;text-align: center;margin:20px auto;}
  #about { background: var(--black); }
  .webdev-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .webdev-text p { opacity: 0.65; line-height: 1.8; margin-top: 1rem; }
  .webdev-services { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
  .webdev-item {
    display: flex; align-items: center; gap: 1rem;color: #1c1c1c;
    padding: 1rem 1.2rem; background: #fff; border-radius: 4px;
    transition: background var(--transition);
  }
  .webdev-item:hover { background: rgb(211, 210, 210); }
  .webdev-item span:first-child { font-size: 1.2rem; }
  .webdev-item span:last-child { font-size: 0.9rem; opacity: 0.75; }
  .webdev-visual {
    background: var(--black); border-radius: 8px; padding: 2rem 1rem;
    font-family: 'Montserrat', sans-serif; font-size: 0.82rem; color: rgba(255,255,255,0.5);
    line-height: 1.8;
  }
  .code-line .kw { color: #e879f9; }
  .code-line .fn { color: var(--accent); }
  .code-line .str { color: #86efac; }

  /* ─── PARTNERS ─── */
  
  .partners-grid {
    display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2.5rem;
    align-items: center; justify-content:center;
  }
  .partner-badge {
   
    background:var(--gray2); 
    border-radius: 50%; padding: 1rem ;
    opacity: 0.7; transition: opacity var(--transition), border-color var(--transition);
  }
  .partner-badge img{border-radius: 50%;}
  .partner-badge:hover { opacity: 1; border-color: rgba(232,160,32,0.4); }

  /* ─── TESTIMONIALS ─── */
  #testimonials { background: var(--black); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
  .testimonial-card {
    background: var(--black); border-radius: 6px; padding: 2rem;
    border: 1px solid rgba(255,255,255,0.06);
    transition: border-color var(--transition);
  }
  .testimonial-card:hover { border-color: rgba(232,160,32,0.3); }
  .stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 1rem; }
  .testimonial-card blockquote { font-size: 0.92rem; opacity: 0.75; line-height: 1.7; font-style: italic; }
  .testimonial-author { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.5rem; }
  .author-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--white); display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--black);
  }
  .author-info p:first-child { font-size: 0.9rem; font-weight: 600; }
  .author-info p:last-child { font-size: 0.78rem; opacity: 0.5; }

  /* ─── NEWSLETTER ─── */
  .newsletter {
    background: #fff; color: var(--black);
    padding: 5rem 5vw; text-align: center;
  }
  .newsletter h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; }
  .newsletter p { margin-top: 0.8rem; opacity: 0.7; max-width: 500px; margin-left: auto; margin-right: auto; }
  .newsletter-form { display: flex; gap: 0.5rem; max-width: 440px; margin: 2rem auto 0; flex-wrap: wrap; justify-content: center; }
  .newsletter-form input {
    flex: 1; min-width: 220px; padding: 0.8rem 1.2rem; border-radius: var(--radius);
    border: none; background: rgba(0,0,0,0.15); color: var(--black);
    font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
  }
  .newsletter-form input::placeholder { opacity: 0.6; }
  .newsletter-form input:focus { outline: 2px solid rgba(0,0,0,0.3); }
  .newsletter-form button {
    padding: 0.8rem 1.5rem; background: var(--black); color: var(--white);
    border: none; border-radius: var(--radius); cursor: pointer;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.88rem;
    transition: opacity var(--transition);
  }
  .newsletter-form button:hover { opacity: 0.85; }
  /* map */
  
.map1 {
  position: relative;
  width: 100%;
  height: 70vh; /* Full viewport height */
  overflow: hidden;
}
.map1 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
}
.map{padding-bottom: 20px;
display: flex;margin-top: 40px;
}


.clock {
  width: 200px;
  height: 200px;
  /* border: 10px solid #333; */
  border-radius: 50%;
  position: relative;
  background-image: url('assets/watch.png');
  display: flex;
  justify-content: center;
  align-items: center;
 
    background-size: cover;
    background-position: center;
    margin-top: 40px;
}
.dark-mode .clock{background-image: url('img/watchb.png');}
.arrow {
  position: absolute;
  width: 50%;
  height: 2px;
  background: #333;
  top: 50%;
  transform-origin: 100%;
  transform: rotate(90deg);
  border-radius: 2px;
   /* Move the arrow to start exactly at the center */
   margin-left: -30%;
}

 .hour {
  height: 2px;
  width: 15%;
  background: #fd9a05;
  margin-left: -20px;
}

.minute {
  width: 30%;
  background:#fd9a05;
  margin-left: -45px;
} 

.secondi {
  width: 70px;
  background:#0e8b02;
}
.openclock{display: flex;gap: 30px;}
  /* ─── CONTACT / FOOTER ─── */
  #contact { background: var(--black); }
  .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
  .contact-text p { opacity: 0.65; line-height: 1.8; margin-top: 1rem; }
  .contact-items { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
  .contact-item { display: flex; gap: 1rem; align-items: center; }
  .contact-item .icon { font-size: 1.3rem; width: 2.5rem; flex-shrink: 0; }
  .contact-item span { font-size: 0.9rem; opacity: 0.75; }
  .contact-item a { opacity: 0.85; transition: opacity var(--transition); }
  .contact-item a:hover { opacity: 1; color: var(--accent); }
  .contact-ctas { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
  .btn-wa {
    background: #25D366; color: #fff;
    padding: 0.9rem 1.5rem; border-radius: var(--radius);
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem;
    display: inline-flex; align-items: center; gap: 0.6rem;
    transition: opacity var(--transition); width: fit-content;
  }
  .btn-wa:hover { opacity: 0.9; }
  .contact-form-side { display: flex; flex-direction: column; gap: 1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
  .form-group label { font-size: 0.8rem; opacity: 0.6; font-weight: 500; }
  .form-group input, .form-group textarea, .form-group select {
    background: #fff; border: 1px solid var(--black);
    border-radius: var(--radius); padding: 0.8rem 1rem; color: var(--black);
    font-family: 'Montserrat', sans-serif; font-size: 0.9rem; width: 100%;
    transition: border-color var(--transition);
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--accent);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }
  footer {
    background: var(--gray); padding: 3rem 5vw 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; align-items: flex-end; }
  .footer-brand .nav-logo { font-size: 1.3rem; }
  .footer-brand p { opacity: 0.45; font-size: 0.82rem; margin-top: 0.5rem; max-width: 280px; line-height: 1.6; }
  .footer-links { display: flex; gap: 2.5rem; flex-wrap: wrap; }
  .footer-links a { font-size: 0.85rem; opacity: 0.55; transition: opacity var(--transition); }
  .footer-links a:hover { opacity: 1; }
  .footer-copy { margin-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; font-size: 0.78rem; opacity: 0.35; text-align: center; }

  /* ─── FLOATING WA ─── */
  .wa-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
    width: 56px; height: 56px; border-radius: 50%; background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform var(--transition);
    font-size: 1.6rem;
  }
  .wa-float:hover { transform: scale(1.1); }

  /* ─── SCROLL TOP ─── */
  .scroll-top {
    position: fixed; bottom: 2rem; left: 2rem; z-index: 900;
    width: 44px; height: 44px; border-radius: 50%; background: var(--black);
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
    border: 1px solid rgb(255, 255, 255); transition: var(--transition); cursor: pointer;
    opacity: 0; pointer-events: none;
  }
  .scroll-top.visible { opacity: 1; pointer-events: auto; }
  .scroll-top:hover { background: var(--accent); color: var(--black); border-color: var(--accent); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex;color: #256e99; }
    .printing-layout, .branding-layout, .webdev-layout, .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .hero-bg{background-image: none ;}
    .hero h1{font-size: 3rem;text-align: justify;}
    .map{flex-direction: column;
      align-items: center;}
      .clock{
          width:150px;height:150px;
      }
  }
  @media (max-width: 600px) {
    section { padding: 4rem 5vw; }
    .hero { padding: 90px 5vw 4rem; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-links { flex-direction: column; gap: 1rem; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; }
    .partners-grid { gap: 0.75rem; }
    .partner-badge { padding: 0.7rem 1rem; font-size: 0.82rem; }
  }
  @media (max-width: 400px) {
    .why-grid { grid-template-columns: 1fr; }
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform: translateY(0); } }
  .hero-tag { animation: fadeUp 0.6s ease both; }
  .hero h1 { animation: fadeUp 0.6s 0.1s ease both; }
  .hero-sub { animation: fadeUp 0.6s 0.2s ease both; }
  .hero-pills { animation: fadeUp 0.6s 0.3s ease both; }
  .hero-actions { animation: fadeUp 0.6s 0.4s ease both; }
 
 /* chatbot */
 .chat{
  cursor: pointer;
  /* background-color: #03425585; */
  /* border-radius: 5px; */
  font-size: xx-large;
  /* border-bottom-right-radius: 0%; */
  padding-right: 3px;
  position: fixed;
  z-index: 11;
  margin: 87vh 0 0 90vw;
}
/* modal style */
.modal {
  width: 100%;padding: 2rem;
 display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(13, 31, 45, 0.479); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; 
}


.modal-content {padding: 0 auto;
   max-width: 500px; width: 100%; height: auto; background: var(--off-white);
  border-radius: 16px; overflow: hidden; position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  animation: lbIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: rgba(0, 0, 0, 0.87);
  text-decoration: none;
  cursor: pointer;
}
.chat-container {
  width: 100%;
  max-width: 600px;
  background-color: #ffffff;
  box-shadow: 0 8px 16px rgba(32, 31, 31, 0.945);
  border-radius: 17px;
  overflow: hidden;
  display: flex;
  padding: 10px;
  flex-direction: column;
  height: 87%;
  margin-left: 23%;
}
@media screen and (max-width: 770px ){
  .chat-container{
    margin-left: 3%;
  }
}
.chat-box {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.input-container {
  display: flex;padding: 5px;

}

.input-field {
  flex: 1;
  padding: 15px;
  outline: none;
  font-size: 16px;
  border:none;
}

.send-button {
  padding: 6px 10px;
  background-color: var(--black);
  color: rgb(255, 255, 255);
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
.input-field:hover{
  border-bottom: 1px solid rgb(45, 161, 9);

}
.send-button:hover {
  background-color: #71f505;
  color: #000;
}

.message-container {
  margin-bottom: 10px;
}

.message {
  max-width: 80%;
  padding: 3px;
  border-radius: 5px;
  line-height: 1.4;
}

.message.user {
  background-color: #87b1c2;
  color: rgb(0, 0, 0);
  border-radius: 50px;
  padding: 4px;
  float: inline-end;
}

.message.bot {
  background-color:rgb(29, 33, 34);
  color:#fff;
  align-self: flex-start;
  border-radius: 20px;
  padding: 3px;
}

.sender {
  font-weight: bold;
  margin-bottom: 5px;
}
.typing-indicator .message.typing .text {
  font-style: italic;
  color: #87b1c2;
}

.message.bot.typing {
  background-color: transparent;
  border: none;
}
.text {
  padding: 4px;
  color: #fff; /* Make sure the text color is not blending with the background */
  word-wrap: break-word; /* Ensure long words break to the next line */
}
.bot_img {
  border-radius: 50%;
  background-color: white;
  border: 2px solid white;
  width: 25px; /* Adjust the size of the image as needed */
  height: 25px; /* Adjust the size of the image as needed */
  margin-right: 10px; /* Space between image and text */
}

.close-chatbot {
  color: #5df506;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.warning{
  display: flex;
  color: white;
  justify-content: space-between;
  width: 98%;
  margin-left: 5px;
}
.know_us_more{
border:none;border-radius: 3px; 
          float:left;padding: 10px; color:rgb(38, 0, 255); background:#fff;  cursor: pointer;
}

  @media (max-width: 768px) {
  .chat{width: 50px;
          padding: 5px;
  }
 }