    body {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #2c3e50;
      line-height: 1.6;
    }

    * {
      box-sizing: border-box;
    }

    .site-wrapper {
      width: 100%;
      min-height: 100%;
    }

    header {
      background: #ffffff;
      padding: 1.5rem 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
    }

    nav {
      max-width:1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: #27ae60;
    }

    .logo img{
      width:80px;
      height:80px;
    }


    .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
      margin: 0;
      padding: 0;
    }

    .nav-links a {
      text-decoration: none;
      color: #2c3e50;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .nav-links a:hover {
      color: #27ae60;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      color: #2c3e50;
    }

    .nav-links.mobile-open {
      display: flex;
    }

    .hero {
      background-image:linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(images/background.jpeg);
      background-position: center;
      background-size: cover;
      color: white;
      padding: 8rem 2rem;
      text-align: center;
      width: 100%;
    }

    .hero-content {
      max-width: 800px;
      margin: 0 auto;
      overflow: hidden;
    }

    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .hero p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      opacity: 0.95;
    }

    .cta-button {
      background: #ffffff;
      color: #27ae60;
      padding: 1rem 2.5rem;
      border: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    section {
      padding: 5rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: #2c3e50;
    }

    .about-content {
      display: flex;
      align-items: center;
      gap: 3rem;
      flex-wrap: wrap;
    }

    .about-image {
      flex: 1;
      min-width: 300px;
      background: #f8f9fa;
      border-radius: 15px;
      padding: 3rem;
      text-align: center;
      font-size: 8rem;
    }

    .about-text {
      flex: 1;
      min-width: 300px;
    }

    .about-text p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #555;
    }


    /* about author */

    .about-author{
      width: 100%;
      background: #ccc;
      overflow: hidden;
    }

    .about-left, .about-right{
      width: 40%;
      float: left;
      margin: 20px;
    }

    .about-left .image-container{
      width:100%;
    }

    .image-container img{
      width: 100%;
    }


    .about-right h1, h2{
      padding: 0 20px;
    }

    .about-right .email-container{
      width: 200px;
      margin: 50px auto;
    }

    .email-container .btn{
      background:rgb(32, 204, 32);
      padding: 15px 20px;
      border-radius: 100px;
      text-decoration: none;
      color: white;
    }

    

    #mission-statement{
      width: 100%;
      background-color: whitesmoke;
      overflow: hidden;
    }

    .vision{
      width: 40%;
      background-color: white;
      float: left;
      margin-top: 20px;
      margin-left: 20px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
      padding: 10px;
      text-align: center;
      border-radius: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .vision:hover{
      transform: translateY(-10px);
      box-shadow: 0 0 10px rgba(0,0,0,0.4);
    }

    #vision-icon{
      font-size: 50px;
    }

    .vision h2{
      color: #27ae60;
    }

    .mission{
      width: 40%;
      background-color: white;
      float: right;
      margin-top: 20px;
      margin-right: 20px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
      padding: 10px;
      text-align: center;
      border-radius: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .mission:hover{
      transform: translateY(-10px);
      box-shadow: 0 0 10px rgba(0,0,0,0.4);
    }

    #mission-icon{
      font-size: 50px;
    }

    .mission h2{
      color: #27ae60;
    }



    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .service-card {
      background: white;
      padding: 2.5rem;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .service-icon {
      font-size: 4rem;
      margin-bottom: 1.5rem;
    }

    .service-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #27ae60;
    }

    .service-card p {
      color: #666;
      line-height: 1.7;
    }

    .contact-section {
      background: #f8f9fa;
      width: 100%;
      padding: 5rem 2rem;
    }

    .contact-content {
      max-width: 600px;
      margin: 0 auto;
      background: white;
      padding: 3rem;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
    }

    .form-group label {
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: #2c3e50;
    }

    .form-group input,
    .form-group textarea {
      padding: 0.8rem;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-size: 1rem;
      transition: border-color 0.3s ease;
      font-family: inherit;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #27ae60;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .submit-button {
      background: #27ae60;
      color: white;
      padding: 1rem 2rem;
      border: none;
      border-radius: 8px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .submit-button:hover {
      background: #229954;
    }

    .success-message {
      display: none;
      background: #d4edda;
      color: #155724;
      padding: 1rem;
      border-radius: 8px;
      text-align: center;
      margin-top: 1rem;
    }

    .success-message.show {
      display: block;
    }

    .comments-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .add-comment-box {
      background: white;
      padding: 2.5rem;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin-bottom: 3rem;
    }

    .add-comment-box h3 {
      margin-top: 0;
      margin-bottom: 1.5rem;
      color: #2c3e50;
    }

    .comment-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .comments-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .comment-item {
      background: white;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .comment-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      padding-bottom: 0.8rem;
      border-bottom: 2px solid #f0f0f0;
    }

    .comment-author {
      font-weight: 700;
      color: #27ae60;
      font-size: 1.1rem;
    }

    .comment-date {
      font-size: 0.9rem;
      color: #999;
    }

    .comment-text {
      margin: 1rem 0;
      color: #555;
      line-height: 1.7;
    }

    .comment-actions {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .reply-button {
      background: transparent;
      color: #27ae60;
      border: 2px solid #27ae60;
      padding: 0.5rem 1.5rem;
      border-radius: 6px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .reply-button:hover {
      background: #27ae60;
      color: white;
    }

    .reply-form {
      margin-top: 1.5rem;
      padding: 1.5rem;
      background: #f8f9fa;
      border-radius: 10px;
      border-left: 4px solid #27ae60;
    }

    .reply-form h4 {
      margin-top: 0;
      margin-bottom: 1rem;
      color: #2c3e50;
      font-size: 1rem;
    }

    .reply-actions {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .cancel-button {
      background: #95a5a6;
      color: white;
      padding: 0.6rem 1.5rem;
      border: none;
      border-radius: 6px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .cancel-button:hover {
      background: #7f8c8d;
    }

    .replies-container {
      margin-top: 1.5rem;
      margin-left: 2rem;
      padding-left: 1.5rem;
      border-left: 3px solid #e0e0e0;
    }

    .reply-item {
      background: #f8f9fa;
      padding: 1.5rem;
      border-radius: 10px;
      margin-bottom: 1rem;
    }

    .reply-item .comment-header {
      border-bottom: 2px solid #e0e0e0;
    }

    footer {
      background: #2c3e50;
      color: white;
      text-align: center;
      padding: 2rem;
      width: 100%;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background: #34495e;
      border-radius: 50%;
      text-decoration: none;
      font-size: 1.5rem;
      transition: all 0.3s ease;
      color: #fff;
    }

    .social-link:hover {
      background: #27ae60;
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
    }

    .top{
        position: fixed;
        bottom:40px;
        right: 30px;
        z-index: 99;
        border: none;
        outline: none;
        padding:5px;  
        color:red;
        cursor: pointer;
        font-size:20px;
        text-decoration: none;

    }

    .services-detail-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2.5rem;
      margin-top: 2rem;
    }

    .service-detail-card {
      background: white;
      padding: 2.5rem;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-detail-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .service-detail-icon {
      font-size: 4rem;
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .service-detail-card h3 {
      font-size: 1.6rem;
      margin-bottom: 1rem;
      color: #27ae60;
      text-align: center;
    }

    .service-detail-desc {
      color: #666;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .service-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .service-features li {
      padding: 0.6rem 0;
      color: #555;
      font-size: 0.95rem;
      border-bottom: 1px solid #f0f0f0;
    }

    .service-features li:last-child {
      border-bottom: none;
    }

    .blog-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .blog-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .blog-image {
      background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
      padding: 3rem;
      text-align: center;
      font-size: 5rem;
    }

    .blog-content {
      padding: 2rem;
    }

    .blog-date {
      display: inline-block;
      color: #27ae60;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .blog-title {
      font-size: 1.4rem;
      color: #2c3e50;
      margin: 0.5rem 0 1rem 0;
      line-height: 1.4;
    }

    .blog-excerpt {
      color: #666;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .blog-read-more {
      display: inline-block;
      color: #27ae60;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.3s ease;
    }

    .blog-read-more:hover {
      transform: translateX(5px);
    }

        .slider-section {
      background: #f8f9fa;
      width: 100%;
      padding: 5rem 2rem;
    }

    .slider-content {
      max-width: 1200px;
      margin: 0 auto;
    }

    .slider-container {
      position: relative;
      width: 100%;
      max-width: 900px;
      height: 500px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    .slider-wrapper {
      display: flex;
      transition: transform 0.5s ease-in-out;
      height: 100%;
    }

    .slide {
      min-width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
      position: relative;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }

    .slide-content {
      text-align: center;
      padding: 3rem;
      color: white;
      z-index: 2;
      position: relative;
    }

    .slide-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .slide-description {
      font-size: 1.2rem;
      opacity: 0.95;
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto;
    }

    .slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.9);
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      font-size: 1.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 10;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .slider-nav:hover {
      background: white;
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .slider-nav.prev {
      left: 20px;
    }

    .slider-nav.next {
      right: 20px;
    }

    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ccc;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .dot.active {
      background: #27ae60;
      transform: scale(1.3);
    }

    .dot:hover {
      background: #27ae60;
    }


    .share-section {
      background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
      width: 100%;
      padding: 4rem 2rem;
      text-align: center;
    }

    .share-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .share-title {
      color: white;
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .share-subtitle {
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.2rem;
      margin-bottom: 2.5rem;
    }

    .share-buttons {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .share-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      padding: 1rem 2rem;
      border: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      color: white;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .share-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .share-button.facebook {
      background: #1877f2;
    }

    .share-button.twitter {
      background: #1da1f2;
    }

    .share-button.linkedin {
      background: #0077b5;
    }

    .share-button.whatsapp {
      background: #25d366;
    }

    .share-button.instagram {
      background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }

    .share-icon {
      font-size: 1.5rem;
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2rem;
      }

      .hero p {
        font-size: 1.1rem;
      }

      .menu-toggle {
        display: block;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        gap: 0;
      }

      .nav-links li {
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
      }

      .nav-links li:last-child {
        border-bottom: none;
      }

      nav {
        position: relative;
      }

      .about-content {
        flex-direction: column;
      }

      .about-image {
        font-size: 5rem;
        padding: 2rem;
      }


      /* about author */

    .about-author{
      width: 100%;
      background: #ccc;
      overflow: hidden;
    }

    .about-left, .about-right{
      width:90%;
      float: none;
      margin:10px auto;
    }

    .about-left .image-container{
      width:100%;
    }

    .image-container img{
      width: 100%;
    }


    .about-right h1, h2{
      padding: 0 20px;
    }

    .about-right .email-container{
      width: 200px;
      margin: 50px auto;
      text-align: center;
    }

    .email-container .btn{
      background:rgb(32, 204, 32);
      padding: 15px 20px;
      border-radius: 100px;
      text-decoration: none;
      color: white;
    }


      #mission-statement{
      width: 100%;
      background-color: whitesmoke;
    }

    .vision{
      width: 95%;
      float: none;
      background-color: white;
      margin:10px auto;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
      padding: 10px;
      text-align: center;
      border-radius: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .vision:hover{
      transform: translateY(-10px);
      box-shadow: 0 0 10px rgba(0,0,0,0.4);
    }

    #vision-icon{
      font-size: 50px;
    }

    .vision h1{
      color: #27ae60;
    }

    .mission{
      width: 95%;
      background-color: white;
      float: none;
      margin:10px auto;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
      padding: 10px;
      text-align: center;
      border-radius: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .mission:hover{
      transform: translateY(-10px);
      box-shadow: 0 0 10px rgba(0,0,0,0.4);
    }

    #mission-icon{
      font-size: 50px;
    }

    .mission h1{
      color: #27ae60;
    }

      .services-grid {
        grid-template-columns: 1fr;
      }

      section {
        padding: 3rem 1.5rem;
      }

      .contact-content {
        padding: 2rem;
      }

      .replies-container {
        margin-left: 1rem;
        padding-left: 1rem;
      }

      .logo {
        font-size: 1.5rem;
      }

      .services-detail-container {
        grid-template-columns: 1fr;
      }

      .blog-container {
        grid-template-columns: 1fr;
      }

      .service-detail-card {
        padding: 2rem;
      }

      .blog-image {
        padding: 2rem;
        font-size: 4rem;
      }

            .slider-container {
        height: 400px;
      }

      .slide-title {
        font-size: 1.8rem;
      }

      .slide-description {
        font-size: 1rem;
      }

      .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
      }

      .slider-nav.prev {
        left: 10px;
      }

      .slider-nav.next {
        right: 10px;
      }

    }


