
    /* Reset and Base Styles */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { 
      font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
      line-height: 1.6; 
      background: #f9f9f9; 
      color: #333; 
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    .container { width: 90%; max-width: 1200px; margin: auto; }
    .btn {
      display: inline-block;
      padding: 14px 32px;
      background: #ca4da9;
      color: white;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 16px;
      box-shadow: 0 4px 6px rgba(13, 110, 253, 0.2);
    }
    .btn:hover {
      background: #084298;
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }
    .btn-secondary {
      background: #ffc107;
      color: #000;
      box-shadow: 0 4px 6px rgba(255, 193, 7, 0.3);
    }
    .btn-secondary:hover {
      background: #e0a800;
      box-shadow: 0 6px 12px rgba(255, 193, 7, 0.4);
    }
    section {
      padding: 100px 0;
    }
    h2 {
       
      text-align: center;
    margin-bottom: 20px;
    font-size: 42px;
    color: #fa754e;
    font-weight: 700;
}
    
    .section-subtitle {
      text-align: center;
      margin-bottom: 60px;
      color: #666;
      font-size: 18px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.8;
    }

    /* Header */
    header {
      background: #fff;
      color: #333;
      padding: 8px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    }
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo img {
    max-width: 100%;
    width: 225px;
    height: auto;
    }
    .logo i {
      margin-right: 10px;
    }
    nav ul {
      display: flex;
      list-style: none;
    }
    nav ul li {
      margin: 0 15px;
    }
    nav ul li a {
      color: #333;
      font-weight: 500;
      transition: 0.3s;
      padding: 5px 0;
      position: relative;
    }
    nav ul li a:after {
      content: '';
      position: absolute;
      width: 0;
      height: 3px;
      bottom: 0;
      left: 0;
      background-color: #0d6efd;
      transition: width 0.3s;
    }
    nav ul li a:hover:after {
      width: 100%;
    }
    .mobile-menu-btn {
      display: none;
      font-size: 24px;
      background: none;
      border: none;
      color: #333;
      cursor: pointer;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
                  url('img/hero-logo.png')
                  no-repeat center center/cover;
      color: #fff;
      padding: 150px 20px;
      text-align: center;
    }
    .hero-content {
      max-width: 850px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    .hero h1 {
      font-size: 52px;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: 800;
    }
    .hero p {
      font-size: 20px;
      margin-bottom: 30px;
      opacity: 0.95;
      line-height: 1.8;
    }
    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    /* Features */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      margin-top: 50px;
    }
    .feature-card {
      background: #fff;
      padding: 40px 30px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #f0f0f0;
    }
    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    .feature-icon {
      width: 90px;
      height: 90px;
      background: linear-gradient(135deg, #e9f1ff, #d4e4ff);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      font-size: 36px;
      color: #0d6efd;
      transition: transform 0.3s ease;
    }
    .feature-card:hover .feature-icon {
      transform: scale(1.1);
    }
    .feature-card h3 {
      margin-bottom: 20px;
      color: #0d6efd;
      font-size: 22px;
    }
    .feature-card p {
      color: #666;
      line-height: 1.8;
    }

    /* About */
    .about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 50px;
      margin-top: 50px;
    }
    .about-image {
      flex: 1;
      min-width: 300px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(0,0,0,0.12);
      position: relative;
    }
    .about-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }
    .about-image:hover img {
      transform: scale(1.05);
    }
    .about-text {
      flex: 1;
      min-width: 300px;
    }
    .about-text h3 {
      font-size: 32px;
      margin-bottom: 25px;
      color: #0d6efd;
    }
    .about-text p {
      margin-bottom: 20px;
      color: #555;
      line-height: 1.8;
    }
    .about-stats {
      display: flex;
      gap: 30px;
      margin-top: 40px;
      flex-wrap: wrap;
    }
    .stat {
      text-align: center;
      flex: 1;
      min-width: 120px;
    }
    .stat-number {
      font-size: 42px;
      font-weight: 800;
      color: #0d6efd;
      margin-bottom: 5px;
      line-height: 1;
    }
    .stat-label {
      color: #666;
      font-size: 16px;
      font-weight: 500;
    }

    /* NEW: Integration Section */
    .integrations {
      background: #f8fbff;
    }
    .integrations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    .integration-item {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }
    .integration-item:hover {
      transform: translateY(-5px);
    }
    .integration-icon {
      font-size: 42px;
      color: #0d6efd;
      margin-bottom: 15px;
    }
    .integration-item h4 {
      color: #333;
      font-size: 16px;
    }

    /* NEW: How It Works Section */
    .how-it-works {
      background: #fff;
    }
    .steps-container {
      display: flex;
      flex-direction: column;
      gap: 60px;
      margin-top: 60px;
      position: relative;
    }
    .step-line {
      position: absolute;
      left: 30px;
      top: 0;
      bottom: 0;
      width: 4px;
      background: #e9f1ff;
      z-index: 1;
    }
    .step {
      display: flex;
      align-items: flex-start;
      gap: 30px;
      position: relative;
      z-index: 2;
    }
    .step-number {
      width: 60px;
      height: 60px;
      background: #0d6efd;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 700;
      flex-shrink: 0;
    }
    .step-content {
      background: #f8fbff;
      padding: 30px;
      border-radius: 16px;
      flex: 1;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    .step-content h3 {
      margin-bottom: 15px;
      color: #0d6efd;
    }
    .step-content p {
      color: #666;
      line-height: 1.8;
    }

    /* Pricing */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 40px;
      margin-top: 50px;
    }
    .pricing-card {
      background: #fff;
      padding: 50px 40px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
      position: relative;
      overflow: hidden;
      border: 1px solid #f0f0f0;
    }
    .pricing-card.popular {
      border: 2px solid #0d6efd;
      transform: scale(1.03);
    }
    .pricing-card.popular:before {
      content: 'MOST POPULAR';
      position: absolute;
      top: 15px;
      right: -30px;
      background: #0d6efd;
      color: white;
      padding: 5px 30px;
      font-size: 12px;
      font-weight: bold;
      transform: rotate(45deg);
    }
    .pricing-card h3 {
      margin-bottom: 15px;
      color: #0d6efd;
      font-size: 24px;
    }
    .price {
      font-size: 48px;
      font-weight: 800;
      margin: 25px 0;
      color: #0d6efd;
    }
    .price span {
      font-size: 16px;
      color: #666;
      font-weight: normal;
    }
    .pricing-features {
      list-style: none;
      margin: 30px 0;
      text-align: left;
    }
    .pricing-features li {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      color: #555;
    }
    .pricing-features li i {
      color: #0d6efd;
      margin-right: 12px;
      font-size: 18px;
    }

    /* Testimonials */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 40px;
      margin-top: 50px;
    }
    .testimonial-card {
      background: #fff;
      padding: 40px;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.06);
      position: relative;
      border: 1px solid #f0f0f0;
    }
    .testimonial-card:before {
      content: '"';
      font-size: 80px;
      color: #e9f1ff;
      position: absolute;
      top: 20px;
      left: 20px;
      line-height: 1;
      font-family: Georgia, serif;
    }
    .testimonial-content {
      margin-bottom: 25px;
      color: #555;
      font-style: italic;
      position: relative;
      z-index: 1;
      line-height: 1.8;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
    }
    .author-image {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 15px;
      border: 3px solid #e9f1ff;
    }
    .author-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .author-details h4 {
      color: #0d6efd;
      margin-bottom: 5px;
      font-size: 18px;
    }
    .author-details p {
      color: #666;
      font-size: 14px;
    }

    /* NEW: Case Studies Section */
    .case-studies {
      background: #f8fbff;
    }
    .case-studies-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    .case-study-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }
    .case-study-card:hover {
      transform: translateY(-10px);
    }
    .case-study-image {
      height: 200px;
      overflow: hidden;
    }
    .case-study-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .case-study-card:hover .case-study-image img {
      transform: scale(1.1);
    }
    .case-study-content {
      padding: 30px;
    }
    .case-study-content h3 {
      margin-bottom: 15px;
      color: #0d6efd;
    }
    .case-study-content p {
      color: #666;
      margin-bottom: 20px;
      line-height: 1.7;
    }
    .case-study-stats {
      display: flex;
      justify-content: space-around;
      background: #f8fbff;
      padding: 15px;
      border-radius: 12px;
      margin-top: 20px;
    }
    .case-study-stat {
      text-align: center;
    }
    .case-study-stat .number {
      font-size: 24px;
      font-weight: 700;
      color: #0d6efd;
    }
    .case-study-stat .label {
      font-size: 14px;
      color: #666;
    }

    /* FAQ */
    .faq-container {
      max-width: 800px;
      margin: 50px auto 0;
    }
    .faq-item {
      background: #fff;
      margin-bottom: 20px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.06);
      border: 1px solid #f0f0f0;
    }
    .faq-question {
      padding: 25px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      font-size: 18px;
      background: #f8fbff;
    }
    .faq-question i {
      transition: transform 0.3s ease;
    }
    .faq-answer {
      padding: 0 25px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }
    .faq-item.active .faq-answer {
      max-height: 300px;
      padding: 0 25px 25px;
    }
    .faq-answer p {
      color: #666;
      line-height: 1.8;
    }

    /* NEW: Blog Section */
    .blog-preview {
      background: #fff;
    }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    .blog-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }
    .blog-card:hover {
      transform: translateY(-10px);
    }
    .blog-image {
      height: 200px;
      overflow: hidden;
    }
    .blog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .blog-card:hover .blog-image img {
      transform: scale(1.1);
    }
    .blog-content {
      padding: 30px;
    }
    .blog-date {
      color: #0d6efd;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 10px;
    }
    .blog-content h3 {
      margin-bottom: 15px;
      color: #333;
      font-size: 20px;
    }
    .blog-content p {
      color: #666;
      margin-bottom: 20px;
      line-height: 1.7;
    }
    .blog-link {
      color: #0d6efd;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    .blog-link:hover {
      text-decoration: underline;
    }

    /* CTA */
    .cta {
      background: linear-gradient(rgba(13, 110, 253, 0.9), rgba(13, 110, 253, 0.9)), url('https://source.unsplash.com/1600x900/?office,team') no-repeat center center/cover;
      color: #fff;
      text-align: center;
      padding: 100px 0;
    }
    .cta h2 {
      color: #fff;
      margin-bottom: 20px;
    }
    .cta p {
      max-width: 700px;
      margin: 0 auto 40px;
      font-size: 20px;
      opacity: 0.95;
      line-height: 1.8;
    }

    /* Footer */
    footer {
      background: #172e5e;
      color: #ccc;
      padding: 80px 0 30px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 50px;
    }
    .footer-column img {
     max-width: 100%;
     margin: auto;
    }
    .footer-links {
      list-style: none;
    }
    .footer-links li {
      margin-bottom: 15px;
    }
    .footer-links a {
      color: #ccc;
      transition: color 0.3s ease;
    }
    .footer-links a:hover {
      color: #0d6efd;
    }
    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 25px;
    }
    .social-links a {
      width: 45px;
     height: 39px;
    border-radius: 50%;
    background: #ca4da9;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s ease, transform 0.3s ease;
    }
    .social-links a:hover {
      background: #0d6efd;
      transform: translateY(-3px);
    }
    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid #444;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .hero h1 {
        font-size: 44px;
      }
    }

    @media (max-width: 992px) {
      .hero h1 {
        font-size: 38px;
      }
      .hero p {
        font-size: 18px;
      }
      h2 {
        font-size: 36px;
      }
      section {
        padding: 80px 0;
      }
    }

    @media (max-width: 768px) {
      nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
      }
      nav ul.show {
        display: flex;
      }
      nav ul li {
        margin: 10px 0;
      }
      .mobile-menu-btn {
        display: block;
      }
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
      .about-stats {
        flex-wrap: wrap;
        justify-content: center;
      }
      .step-line {
        left: 30px;
      }
    }

    @media (max-width: 576px) {
      .hero {
        padding: 100px 0;
      }
      .hero h1 {
        font-size: 32px;
      }
      section {
        padding: 60px 0;
      }
      h2 {
        font-size: 30px;
      }
      .step {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }
      .step-line {
        display: none;
      }
    }


    /* service */
 
.services {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}
.services h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.services .section-subtitle {
  color: #555;
  margin-bottom: 40px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-icon {
  font-size: 40px;
  color: #0073e6;
  margin-bottom: 15px;
}
.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #222;
}
.service-card p {
  color: #555;
  font-size: 0.95rem;
}


/* contact */

.contact {
  padding: 60px 20px;
  background: #f9f9f9;
}
.contact h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}
.contact .section-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.form-group {
  margin-bottom: 15px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}
.btn {
  display: inline-block;
  padding: 12px 20px;
  background: #0073e6;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.btn:hover {
  background: #005bb5;
}
.contact-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
@media(max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-image {
    order: -1;
  }
}
