body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
  }

@font-face {
    font-family: 'Gilroy';
    src: url('/assets/fonts/Gilroy-Light.otf') format('opentype');
    font-weight: 300; /* Light */
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/assets/fonts/Gilroy-ExtraBold.otf') format('opentype');
    font-weight: 800; /* Extra Bold */
    font-style: normal;
}
  
/* Container and Base */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.containerbox
{
     max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.site-header {
  padding: 20px 0;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1000;
}

.logo img {
  width:70%;
  height:auto;
}

/* Main Nav */
.main-nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.main-nav ul li {
  margin: 0 15px;
}

.main-nav ul li a {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  color: #4A4A4A;
  padding-bottom: 5px;
}

.main-nav ul li.active a,
.main-nav ul li a:hover {
  border-bottom: 2px solid #00D459;
}

.main-nav .dropdown {
  position: relative;
}

.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  min-width: 180px;
}

.main-nav .dropdown-menu li a {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
}

.main-nav .dropdown-menu li a:hover {
  background: #f5f5f5;
}

.main-nav .dropdown.open .dropdown-menu {
  display: block;
}


/* CTA Button */
.header-cta .btn-demo, .solid_btn {
  background-color: #00D459;
  color: white;
  padding: 10px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  letter-spacing:0.5px;
  
}

.outline_btn
{
  background-color: #ffffff;
  color: #4A4A4A;
  padding: 10px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  letter-spacing:0.5px;
  border: 1px solid #00D459;
}

.outline_btn:hover
{
    background-color: #00D459;
    color: #ffffff;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #222;
  border-radius: 2px;
  display: block;
  transition: 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation Container */
.nav-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-container {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-container.active {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    width: 100%;
  }

  .main-nav ul li {
    margin: 10px 0;
  }

  .header-cta {
    margin-top: 10px;
    width: 100%;
  }

  .header-cta .btn-demo {
    width: 100%;
    text-align: center;
  }
}


  /* Hero Section */
.hero {
  background-image: url('/assets/images/Maskgroup.png'); 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  padding: 50px 20px;
}

.hero-content h1 {
  font-family: 'Gilroy', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #353535;
  line-height: 1.3;
  margin: 0;
}

.hero-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  color: #4A4A4A;
  margin-top: 20px;
}

/* ---------- Responsive Adjustments ---------- */

@media (max-width: 992px) {
  .hero {
    padding: 80px 15px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 15px;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero {
      
    padding: 40px 10px;
    background-position: top;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .hero-content p {
    font-size: 14px;
  }
}

  /* Patent Section */
/* Patent Section */
.patent-section {
  background-color: #fff;

}

.patent-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  padding-top:30px;
  
}

.patent-text {
  flex: 1;
}

.patent-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: #000;
  margin-bottom: 20px;
}

.patent-text p {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.6;
}

.patent-image {
  flex: 1;
  text-align: center;
}

.patent-image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* ✅ Responsive Styles */
@media (max-width: 991px) {
  .patent-container {
    flex-direction: column;
    text-align: center;
  }

  .patent-text h2 {
    font-size: 28px;
  }

  .patent-text p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .patent-text h2 {
    font-size: 24px;
  }

  .patent-text p {
    font-size: 14px;
  }

  .patent-container {
    gap: 30px;
  }
}

  
  /* Partner Logos */
  .partner-logos {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    background: linear-gradient(to right, #f6f6f6, #ffffff);
    border-radius: 10px;
  }
  
  .partner-logos img {
    max-height: 40px;
    object-fit: contain;
  }
  /*AI Automation section*/
.ai-automation-section {
  padding: 20px 20px;
  background-color: #fff;
}

.content-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.content-box h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
}

.content-box p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #4A4A4A;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content-box h2 {
    font-size: 28px;
  }

  .content-box p {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .content-box h2 {
    font-size: 24px;
  }

  .content-box p {
    font-size: 14px;
  }

  .ai-automation-section {
    padding: 40px 15px;
  }
}
/*Extractor Section*/
  .extractor-section {
    background-color: #ffffff;
    padding: 20px 20px;
  }
  
  .extractor-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .extractor-left {
    flex: 1;
    text-align: center;
    
  }
  
  .extractor-left img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
  }
  
  .extractor-caption {
    font-family: 'roboto',sans-serif;
    font-size: 16px;
    color: #333;
    max-width: 400px;
    margin: 10px auto;
  }
  
  .extractor-right {
    
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);

  }
  
  .extractor-tag {
    display: inline-block;
    background-color: #83FFB533;;
    color: #353535;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .extractor-right h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #000;
  }
  
  .extractor-right p {
    font-family: 'roboto',sans-serif;
    font-size: 16px;
    color: #353535;
    margin-bottom: 24px;
  }
  
  .extractor-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
  }
  
  .extractor-features li {
    font-family: 'roboto',sans-serif;
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  .demo-button {
    display: inline-block;
    padding: 12px 20px;
    background-color: #2FEA7A;
    color: #333;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 14px;
    letter-spacing:0.5px;
  }
  
  .demo-button:hover {
    background-color: #2FEA7A;
  }
  
@media (max-width: 767px) {
  .extractor-container {
    flex-direction: column;
    gap: 20px;
  }

  .extractor-left,
  .extractor-right {
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .extractor-left img {
    margin: 0 auto;
  }

  .extractor-caption {
    font-size: 14px;
    text-align: center;
    margin: 10px auto;
    padding: 0 10px;
  }

  .extractor-tag {
    font-size: 12px;
    padding: 4px 12px;
    margin: 0 auto 10px;
    display: inline-block;
  }

  .extractor-right {
    text-align: left;
    padding: 20px 10px;
    box-shadow: none;
    border-radius: 0;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
  }

  .extractor-right h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .extractor-right p {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .extractor-features {
    padding-left: 0;
    text-align: left;
    font-size: 14px;
    margin: 0 auto 20px;
  }

  .extractor-features li {
    margin-bottom: 8px;
    font-size:14px;
  }

  .demo-button {
      display: inline-block;
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 10px;
  }
}



  /*Testimonials*/
  .testimonial-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .testimonial-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.06);
    padding: 20px 24px;
    max-width: 480px;
    width: 100%;
  }
  
  .quote {
    font-size: 15px;
    color: #222;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  
  .user {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .user-info .name {
    font-weight: 600;
    color: #2d2d2d;
    font-size: 14px;
  }
  
  .user-info .role {
    font-size: 13px;
    color: #9a9a9a;
  }
  
  .company {
    color: #5c8edc;
  }
 
  /*footer*/
  .footer {
  background: linear-gradient(to bottom, #f4fef7, #e2f9ed);
  padding-top: 60px;
  
}



.footer-wrapper {
  max-width: 1200px;
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 20px;
  margin: 0 auto; 
}
.footer-col {
  flex: 1 1 300px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.product-hunt-box {
  display: flex;
  align-items: center;
  justify-content: left; 
  width: fit-content;
  margin:20px 0;
}

.footer-logo img {
  display: block; 
  width: 220px;
}


.product-hunt-box img {
  width:50%;  
}


.featured, .ph {
  margin: 0;
  font-size: 13px;
}

.ph {
  font-weight: bold;
  color: #e6623b;
}

.social-section p,
.newsletter .title,
.newsletter .desc {
  margin: 0;
  font-size: 14px;
  color: #444;
}

.social-icons a {
  outline: none; /* removes focus outline */
  text-decoration: none; /* removes underline just in case */
}

.social-icons a:focus,
.social-icons a:active {
  outline: none;
  box-shadow: none;
}




.newsletter-form-button {
  padding: 10px 18px;
  border-radius: 6px;
  background-color: #2d2d2d;
  color: white;
  border: none;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none; /* remove underline */
  display: inline-block; /* make it behave like button */
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.column a {
  text-decoration: none;
  color: #1c1c1c;
  font-size: 14px;
}

.column a:hover {
  color: #5c8edc;
}

.footer-bottom {
  background-color: #2d2d2d;
  color: #eee;
  margin-top: 50px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom a {
  color: #eee;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

 @media (max-width: 768px) {
  .footer-logo img {
    width: 70%;
    max-width: 150px;
    margin: 0 auto; 
  }
}

@media (max-width: 480px) {
  .footer-logo img {
    width: 80%;
    max-width: 130px;
    margin: 0; 
  }
}
   /* demo form */
  .modal {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border: 1px solid #ccc;
  width: 80%;
  max-width: 700px;
  border-radius: 6px;
  position: relative;
}

.modal-content h2 {
    font-family: 'Gilroy', sans-serif;
  background: #83FFB533;
  padding: 12px;
  text-align: center;
  margin: -30px -30px 20px;
  font-size: 20px;
  color: #353535;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.demo-form .row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom:20px;
}

.full-width {
  width: 100%;
}

input, select, textarea {
  font-family: 'Roboto', sans-serif;
  padding: 10px;
  font-size: 14px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.btn-submit {
  font-weight: bold;
  font-size: 14px;
  background-color: #00d459;
  color: white;
  padding: 10px 25px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 20px;
  letter-spacing: 1px;
}

.demo-label {
  font-weight: 600;
  font-family: 'Roboto',sans-serif;
  font-size: 14px;
  color: #353535;

}

.my-gradient {
  background-image: url('../images/gradebg.svg');
}
@media (max-width: 768px) {
  .modal-content {
    width: 90%;
    margin: 10% auto;
    padding: 20px;
  }

  .modal-content h2 {
    font-size: 18px;
    padding: 10px;
    margin: -20px -20px 15px;
  }

  .demo-form .row {
    flex-direction: column;
    gap: 10px;
  }

  .btn-submit {
    width: 100%; 
    padding: 12px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 95%;
    margin: 15% auto;
    padding: 15px;
  }

  .modal-content h2 {
    font-size: 16px;
    padding: 8px;
  }

  input, select, textarea {
    font-size: 13px;
    padding: 8px;
  }

  .btn-submit {
    font-size: 14px;
    padding: 10px;
  }
}

    /* How It Works Section */
.how-it-works {
    padding: 30px 20px;
}

.how-it-works .container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.how-it-works .content-box h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}
.how-it-works .content-box h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #353535;
}
.how-it-works .content-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .how-it-works {
        padding: 40px 15px;
    }
    .how-it-works .content-box h2 {
        font-size: 24px;
    }
}
@media (max-width: 768px) {
  .how-it-works .content-box img {
    border-radius: 6px;
    margin: 0 auto;
  }
}

/* Mobile view adjustments */
@media (max-width: 480px) {
  .how-it-works .content-box img {
    border-radius: 5px;
    max-width: 90%; 
  }
}

@media (max-width: 480px) {
    .how-it-works .content-box h2 {
        font-size: 22px;
    }
}
/* Contact Us Container */
.demo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Left form section */
.form-section {
  flex: 1 1 60%;
}

.form-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
}

/* Form styling */
form {
  display: block;
}


.input-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;

}

.input-row input {
  flex: 1;
  min-width: 200px;
}

/* Inputs, selects, textarea */
input,
select,
textarea {
  padding: 10px;
  border: 1px solid #c0c0c0;
  border-radius: 5px;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  width: 100%;
  box-sizing: border-box;
  color: #333; 
}

textarea {
  min-height: 100px;
  resize: vertical;
}

/* Submit button */
.submit-btn {
  display: inline-block; 
  width: auto;
  padding: 10px 20px;
  background-color: #00D459;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #00b34d;
}

/* Right quick look section */
.quick-look-wrapper-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  border-radius: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.image-section {
  width: 100%;
  text-align: center;
}

.demo-img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.look-box {
  width: 100%;
  background-color: #eaf6ff;
  padding: 25px 25px 50px 25px;
  border-radius: 12px;
  text-align: center;
}

.look-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}

/* Label styling */
label {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  color: #353535;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .demo-container {
    flex-direction: column;
  }

  .input-row {
    flex-direction: column;
  }

  .quick-look {
    justify-content: flex-start;
  }

  .look-box {
    max-width: 100%;
    padding: 20px;
  }
}
/*solutions*/
.solution-img img{
  margin: 0;
   max-width: 100%; 
  height: auto;   
  display: block;
}

.legal-section {
  background-color: #ffffff;
  padding: 10px 20px;
}

/* Main container */
.legal-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left section (image) */
.legal-left {
  flex: 1;
  text-align: center;
  max-width: 60%;
}

.legal-left img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

/* Right section (text content) */
.legal-right {
  max-width: 40%;
  flex: 1;
  background: #fff;
  padding: 40px;
}

.legal-right h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #000;
  line-height: 1.3;
}

.legal-right p {
  font-size: 16px;
  color: #4A4A4A;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Feature list */
.legal-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.legal-features li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #4A4A4A;
  position: relative;
  padding-left: 20px;
}



/* CTA Button */
.demo-button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #00D459;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
  font-size: 14px;
}

.demo-button:hover {
  background-color: #2FEA7A;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .legal-container {
    flex-direction: column;
    text-align: center;
  }

  .legal-left,
  .legal-right {
    max-width: 100%;
  }

  .legal-right {
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  .legal-section {
    padding: 40px 15px;
  }

  .legal-right h2 {
    font-size: 24px;
  }

  .legal-right p,
  .legal-features li {
    font-size: 14px;
  }

  .demo-button {
    font-size: 14px;
    padding: 10px 16px;
  }
}
@media (max-width: 600px) {
  .solution-img img{
    margin: auto; 
    max-width: 90%;    
  }
}
/*case-stydy*/

/* Filter buttons */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  gap: 10px; 
  margin: 10px auto 30px auto; 
}

.filter-buttons button {
  background: #fff;
  border: none;
  padding: 8px 15px;
  margin: 5px;
  border-radius: 8px;
  font-size: 16px;
 box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.10);
    max-width:154px;
    min-width:154px;
    width:154px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-buttons button:hover {
  background: #f4fef7;
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 20px;
  max-width: 1200px;
  margin: auto;
}

/* Card styling */
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}
.card img {
  padding: 15px;
  width: 100%;
  height: auto;
}
.card-content {
  padding: 15px;
  background: transparent;
  display: flex;
  justify-content: space-between; 
  align-items: center; 
}

.card-title {
  font-size: 17px;
  font-weight: bold;
  margin: 0;
  flex: 1;
}

.card button {
  background: #00c853;
  border: none;
  padding: 6px 14px;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.card button:hover {
  background: #00a844;
}
/*case-details*/
.study-intro {
  padding: 60px 20px;
  background: url('../images/Maskgroup.png') center/cover no-repeat;
}

.study-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.study-text h1 {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
  color: #1a1a1a;
}

.study-info {
  max-width: 500px;
}

.study-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.study-logo {
  width: 70px;
  height: 70px;
}

.study-tags {
  display: flex;
  align-items: center;
  gap: 30px;
}

.study-tags small {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}

.study-tag.study-green {
  background: #00c853;
  color: #fff;
  font-size: 14px;
  padding: 5px 12px;
  border-radius: 6px;
}

.study-flag {
  height: 20px;
}

.study-info p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
.challenge-section {
  max-width: 1200px;
  margin: -60px auto 0 auto; 
  position: relative;
  z-index: 5; 
  background: #fff; 
  border-radius: 8px;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1); 
  padding: 30px 20px;
}
.challenge-section .content-box {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.solution-section {
  padding: 40px 20px;
}

.solution-container {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left Column */
.solution-left {
  flex: 2;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
}

.solution-left h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
}

.solution-left p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.solution-img {
  width:100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.solution-left h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.solution-left ul {
  padding-left: 20px;
}

.solution-left ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Right Column */
.solution-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.study-recent {
  background: #a7f5b0;
  padding: 20px;
  border-radius: 12px;
}

.study-recent h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.study-recent ul {
  list-style: none;
  padding: 0;
}

.study-recent ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}

.study-recent ul li:last-child {
  border-bottom: none;
}



.result-section {
  max-width: 1200px;
  margin: 0 auto 30px auto; 
  position: relative;
  background: #fff; 
  border-radius: 8px; 
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
}


.result-section .content-box {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.result-section .content-box h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
}

.result-section .content-box p{
  font-size: 16px;
  line-height: 1.7;
  color: #4A4A4A;
}

/* Responsive */
@media (max-width: 992px) {
  .solution-container {
    flex-direction: column;
  }
}


/* Responsive */
@media (max-width: 900px) {
  .study-content {
    flex-direction: column;
    text-align: center;
  }

  .study-tags {
    justify-content: center;
  }
}
/* Pricing*/
.pricing {
        text-align: center;
    }
    .pricing h2 {
        font-size: 26px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .pricing p {
        font-size: 16px;
        color: #555;
        max-width: 800px;
        margin: 0 auto 40px;
    }
    .pricing-image {
        max-width: 800px;
        margin: 0 auto 30px;
    }
    .pricing-image img {
        width: 100%;
        height: auto;
    }
    .features-text {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        max-width: 800px;
        margin: 0 auto;
    }
    .feature {
        max-width: 200px;
        text-align: center;
    }
    .feature h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .feature p {
        font-size: 14px;
        color: #555;
    }
    .process h2 {
        font-size: 30px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .process p {
        font-size: 16px;
        color: #555;
    }
    
    .timeline {
        display: flex;
        flex-direction: column;
        position: relative;
        max-width: 900px;
        margin: 50px auto;
        padding: 0 20px;
    }
    /* Vertical line */
    .timeline::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
        background: #e0e0e0;
    }
    .timeline-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        margin-bottom: 40px;
    }
    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    /* Dots */
    .timeline-item::before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 12px;
        height: 12px;
        background: #00c853;
        border-radius: 50%;
        z-index: 1;
    }
    .timeline-content {
        width: 40%;
    }
    .timeline-content h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .timeline-content p {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
    }
    .timeline-image {
        width: 40%;
    }
    .timeline-image img {
        width: 100%;
        border: 2px solid #000;
        display: block;
    }
    @media (max-width: 768px) {
        .timeline {
            padding: 0 10px;
        }
        .timeline::before {
            left: 20px;
            transform: none;
        }
        .timeline-item {
            flex-direction: column !important;
            align-items: flex-start;
        }
        .timeline-item::before {
            left: 14px;
            top: 0;
            transform: none;
        }
        .timeline-image, .timeline-content {
            width: 100%;
        }
    }
    
     .pricing-form-section {
        max-width: 800px;
        margin: 50px auto;
        padding: 20px;
        text-align: center;
    }
    .pricing-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.pricing-form-group {
    flex: 1 1 48%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.pricing-form-group.full {
    flex: 1 1 100%;
}

.pricing-form label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.pricing-form input,
.pricing-form select,
.pricing-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.pricing-form textarea {
    resize: vertical;
    min-height: 100px;
}

.pricing-form .pricing-submit {
    background: #00c853;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.pricing-form .pricing-submit:hover {
    background: #009f43;
}


@media (max-width: 768px) {
    .pricing-form-group {
        flex: 1 1 100%;
    }
}


.quotation-button {
    display: inline-block;
    background-color: #00D459;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
    letter-spacing:0.5px;
}
.quotation-button:hover {
    background-color: #00b84e; 
}

/*Blog Details*/
 .blog-container {
      display: flex;
      justify-content: space-between;
      gap: 40px;
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }

    /* Content Section */
    .blog-content {
      flex: 3;
    }

    .blog-content p {
      line-height: 1.5;
      font-size: 15px;
      
      color: #444;
    }

    .blog-content strong {
      font-weight: bold;
    }

    .blog-image {
      margin: 30px 0;
      text-align: center;
    }

    .blog-image img {
      width: 100%;
      max-width: 750px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    /* Sidebar Section */
    .sidebar {
      flex: 1;
    }

    .sidebar h3 {
      background: #00D459;
      color: #fff;
      padding: 12px;
      border-radius: 5px;
      font-size: 18px;
      margin-bottom: 20px;
    }

    .sidebar ul {
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
    }

    .sidebar ul li {
      border-bottom: 1px solid #e5e5e5;
      padding: 10px 0;
    }

    .sidebar ul li a {
      text-decoration: none;
      color: #333;
      font-size: 15px;
      transition: color 0.3s ease;
    }

    .sidebar ul li a:hover {
      color: #00D459;
    }

    .subscribe-box {
      text-align: center;
      border: 1px solid #e5e5e5;
      border-radius: 5px;
      padding: 20px;
    }

    .subscribe-box p {
      margin-bottom: 15px;
      font-size: 14px;
    }

    .subscribe-box button {
      background: #00D459;
      border: none;
      padding: 10px 18px;
      color: #fff;
      font-size: 14px;
      font-weight: bold;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .subscribe-box button:hover {
      background: #00b745;
    }


.blog-detail-banner {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.blog-detail-connect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #3e3e3e; /* text color for contrast */
  padding: 20px;
}
.blog-detail-banner .banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-detail-content h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #353535;
  line-height: 1;
  margin: 0;
}

.blog-detail-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  color: #4A4A4A;
  margin-top: 20px;
}
    /* Responsive */
    @media(max-width: 992px) {
      .blog-container {
        flex-direction: column;
      }

      .sidebar {
        margin-top: 40px;
      }
    }
    
    
    /* Scroll Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 62px;
    right: 25px;
    width: 45px;
    height: 45px;
    background-color: #00D459; /* your color */
    color: #fff;
    border: none;
    outline: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    font-weight:bold;
    display: none; /* hidden by default */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);

    /* smooth appearing animation */
    transition: all 0.3s ease;
}

/* Hover effect */
#scrollTopBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.footer-bottom p {
    position: relative !important;
    top: 8px !important;
}