  
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html {
  scroll-behavior: smooth !important;
}
    
    body {
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(to bottom, #f5fffb, #ffffff);
      color: #333;
      overflow-x: hidden;
    }
    
    a:hover {
      text-decoration: none !important;
    }
    
    p {
      font-size: 16px;
      line-height: 1.6;
    }
    
    .container{
      max-width: 1400px !important;
      width:100%;
    }
    /* Header & Navigation */
    .top-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background: white;
      box-shadow: 0 1px 5px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
      position: fixed;
    }
    
    .logo {
      font-size: 24px;
      font-weight: 700;
      color: #27b99a;
      display: flex;
      align-items: center;
    }
    
    .logo img {
      width: 40px;
      margin-right: 10px;
    }
    
    .logo span {
      background: #a8ead7;
      padding: 2px 8px;
      border-radius: 6px;
      color: white;
    }
    
    .hamburger {
      display: none;
      background: transparent;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #27b99a;
    }
    
    nav {
      display: flex;
      align-items: center;
    }
    
    nav a {
      margin-left: 20px;
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.3s;
    }
    
    nav a:hover {
      color: #27b99a;
    }
    .section-title {
      color: #27b99a;
    }
    .demo-btn {
      background: #27b99a;
      color: white !important;
      padding: 8px 16px;
      border-radius: 5px;
      text-align: center;
    }
    .demo-btn:hover{
      color: #a8ead7 !important;
      transition: 0.2s;
    }
    textarea { resize: none !important; }
    /* Hero Section */
    .hero {
      padding: 25px 20px;
      position: relative;
      overflow: hidden;
      margin-top: 150px;
    }
    footer a{
      color:#27b99a !important;
    }
    .hero-text {
      max-width: 800px;
      animation: fadeInUp 1s ease-in-out;
      margin: 0 auto;
    }
    
    .hero h1 {
      font-size: 40px;
      line-height: 1.2;
      margin-bottom: 20px;
    }
    
    .highlight {
      color: #27b99a;
    }
    
    .hero p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 30px;
    width: 100%;
    max-width: 516px;
    margin: 0 auto;
    margin-bottom: 30px;
    }
    .cta-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    .btn {
      background: #27b99a;
      color: white;
      padding: 12px 24px;
      text-decoration: none;
      border-radius: 6px;
      transition: transform 0.3s, background 0.3s;
      display: inline-block;
    }
    
    .btn:hover {
      transform: translateY(-2px);
      background: #1ea889;
      color: white;
    }
    
    .btn.outline {
      background: white;
      color: #27b99a;
      border: 2px solid #27b99a;
    }
    
    .btn.outline:hover {
      background: #27b99a;
      color: white;
    }
    
    .floating-shape {
      position: absolute;
      width: 60px;
      height: 60px;
      background: #c7eceb;
      top: 20%;
      left: 70%;
      border-radius: 15%;
      opacity: 0.5;
      animation: float 6s ease-in-out infinite;
    }
    
    /* Content Sections */
    .spacer {
      padding: 60px 0;
    }
    
    .section-heading {
      text-align: center;
      margin: 0 auto;
      margin-bottom: 50px;
    }
    
    .section-heading h2 {
      color: #27b99a;
      font-weight: 700;
      font-size: 36px;
      margin-bottom: 20px;
    }
    
    .section-heading p {
      font-size: 16px;
      line-height: 26px;
      text-align: center;
      max-width: 800px;
      width: 100%;
      margin: 0 auto;
    }
    
    .cms-img {
      border-radius: 20px;
      box-shadow: 0px 0px 15px 12px #e5e7eb;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
      height: 600px;
    }
    
    .cms-img img {
      width: 100%;
      display: block;
    }
    
    .our-story h2 {
      color: #27b99a;
      margin-bottom: 20px;
    }
    
    .our-story p {
      font-size: 16px;
      line-height: 26px;
      text-align: justify;
      margin-bottom: 15px;
    }
    
    .mission {
      border-radius: 20px;
      background-color: white;
      padding: 25px;
      height: 100%;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
    }
    
    .mission h2 {
      color: #27b99a;
      margin-bottom: 20px;
    }
    
    .mission p {
      font-size: 14px;
      line-height: 24px;
      margin-bottom: 15px;
    }
    
    /* Product Cards */
    .products {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
      padding: 20px;
      border-radius: 20px;
      height: 100%;
    }
    
    .product-img {
      height: 300px;
      background-position: center;
      background-size: cover;
      position: relative;
      border-radius: 10px;
      overflow: hidden;
    }
    
    .text-tag {
      color: #fff;
      width: auto;
      display: inline-block;
      padding: 5px 15px;
      text-align: center;
      background-color: #1ea889;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }
    
    .text-block {
      position: absolute;
      bottom: 0;
      right: 0;
      background-color: #1ea889;
      color: white;
      padding: 5px 15px;
    }
    
    .product-desc {
      padding: 20px 10px;
    }
    
    .product-desc p {
      color: #666;
      text-align: left;
      margin-bottom: 15px;
      font-size: 14px;
    }
    
    .product-desc ul {
      padding-left: 20px;
      margin-bottom: 20px;
    }
    
    .product-desc ul li {
      line-height: 28px;
      font-size: 14px;
    }
    
    /* Client Section */
    .trusted-section {
      padding: 40px 0;
      text-align: center;
    }
    
    .icon-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .icon {
      width: 40px;
      height: 40px;
      background-color: #eafbf7;
      padding: 5px;
      border-radius: 50%;
    }
    
    .clinte-logo {
      width: 150px;
      height: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
    }
    
    .clinte-logo img {
      max-width: 100%;
      max-height: 100%;
    }
    
    /* Team Section */
    .card {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
    }
    
    .card-img-top {
      height: 250px;
      object-fit: cover;
    }
    
    .card-title {
      color: #27b99a;
    }
    
    /* Contact Section */
    .form-section {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }
    
    .form-control {
      margin-bottom: 15px;
    }
    
    .submit-btn {
      background-color: #27b99a;
      border: none;
      color: white;
    }
    
    .submit-btn:hover {
      background-color: #1ea889;
    }
    
    .contact-label {
      font-weight: bold;
    }
    
    .icon-circle {
      width: 40px;
      height: 40px;
      background-color: #27b99a;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin-right: 10px;
      color: white;
    }
    
    /* Footer */
    .footer {
      background-color: #2e2e2e;
      color: #fff;
      font-size: 14px;
    }
    
    .footer-container {
      display: flex;
      flex-wrap: wrap;
    }
    
    .footer-column {
      margin-bottom: 30px;
    }
    
    .footer-column h2,
    .footer-column h3 {
      margin-bottom: 15px;
      color: #fff;
    }
    
    .footer-column h3 {
      font-size: 20px;
    }
    
    .footer-column ul {
      list-style: none;
      padding: 0;
    }
    
    .footer-column ul li {
      margin-bottom: 10px;
    }
    
    .footer-column ul li a {
      color: #ccc;
      text-decoration: none;
    }
    
    .footer-column ul li a:hover {
      color: #fff;
    }
    
    .social-icons {
      margin: 15px 0;
    }
    
    .social-icons a {
      margin-right: 15px;
      color: #ccc;
      font-size: 20px;
      text-decoration: none;
    }
    
    .social-icons a:hover {
      color: #fff;
    }
    
    hr {
      border: 0;
      border-top: 1px solid #444;
      margin: 30px 0;
    }
    
    .footer-bottom {
      text-align: center;
      font-size: 13px;
    }
    
    /* Animations */
    @keyframes float {
      0% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(20deg); }
      100% { transform: translateY(0px) rotate(0deg); }
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Mobile Responsiveness */
    @media (max-width: 991px) {
      .hero h1 {
        font-size: 32px;
      }
      
      .section-heading h2 {
        font-size: 30px;
      }
      
      .our-story {
        margin-bottom: 30px;
      }
    }
    
    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }
      
      nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        z-index: 999;
      }
      
      nav.active {
        left: 0;
      }
      
      nav a {
        margin: 10px 0;
        width: 100%;
        padding: 10px;
      }
      
   
      
      .hero {
        padding: 50px 20px;
      }
      
      .hero h1 {
        font-size: 28px;
      }
      
      .cta-buttons {
        flex-direction: column;
      }
      
      .cta-buttons .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
      }
      
      .section-heading h2 {
        font-size: 26px;
      }
      
      .footer-column {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }
    
    @media (max-width: 576px) {
      .top-bar {
        padding: 10px 15px;
      }
      
      .logo {
        font-size: 20px;
      }
      
      .logo img {
        width: 30px;
      }
      
      .hero h1 {
        font-size: 24px;
      }
      
      .hero p {
        font-size: 14px;
      }
      
      .section-heading h2 {
        font-size: 22px;
      }
      
      .our-story p, .mission p {
        font-size: 14px;
      }
      
      .cms-img {
        box-shadow: 0px 0px 10px 5px #e5e7eb;
      }
      
      .clinte-logo {
        width: 120px;
        height: 120px;
      }
    }
  