        /* General Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      transition: 0.3s;
    }

    html, body {
      height: 100%;
      width: 100%;
      overflow-x: hidden; /* Hide horizontal scrollbar */
    }

    body{
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f9f9ff;
    }

    html::selection {
      background-color: #11938d;
      color: #fff;
    }

/* Header Section */
.header {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #00000067;
  backdrop-filter: blur(5px);
}

.logo_section {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100px;
  height: 100px;
}

.logo1 {
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

.logo_section:hover .logo1 {
  margin-top: -12.8vh;
}

.logo_section img {
  width: 100px;
}

.menu {
  display: flex;
  align-items: center;
}

.menu ul {
  display: flex;
  list-style: none;
}

.menu ul li {
  margin: 0 15px;
  position: relative;
  overflow: hidden;
  height: 20px;
}

.menu ul li a {
  display: block;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.menu ul li:hover a {
  margin-top: -23px;
}

.menu ul a {
  text-decoration: none;
  font-size: 18px;
  color: #ffffff;
  font-family: Calibri, sans-serif;
}

.hamburger {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

.main-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  text-align: center;
  flex-direction: column;
}

.main-content h1 {
  font-size: 55px;
  margin-top: -300px;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  color: #ffffff;
}

.main-content p {
  font-size: 25px;
  font-family: calibri;
  font-weight: 100;
  color: #ffffff;
  margin-top: 20px;
  animation: fadeInUp 1s ease 0.3s both;
    width: 800px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo_section {
    width: 80px;
    height: 80px;
  }
  
  .logo_section img {
    width: 80px;
  }
  
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 20px;
    background: #00000067;
    backdrop-filter: blur(5px);
    width: 200px;
    padding: 10px;
  }

  .menu.active {
    display: flex;
  }

  .menu ul {
    flex-direction: column;
  }

  .menu ul li {
    margin: 10px 0;
  }

  .hamburger {
    display: block;
  }

  .main-content h1 {
    font-size: 50px;
  }

  .main-content p {
    font-size: 20px;

  }
}

/* Mobile Adjustments */
@media (max-width: 576px) {
  .main-content h1 {
    font-size: 40px;
    margin-top: -200px;
  }

  .main-content p {
    font-size: 16px;
    width: 332px;
  }
}


/*now start our work*/



        .container {
/*            max-width: 1200px;*/
/*            margin: 0 auto;*/
        }
        
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }
        
        h2 {
            font-size: 2.2rem;
            margin-bottom: 1.2rem;
            color: #2c3e50;
            position: relative;
            display: inline-block;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #0e7c77, #11938d);
            border-radius: 2px;
        }
        
        /*p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 20px;
        }*/
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(90deg, #0e7c77, #11938d);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            margin-top: 20px;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(14, 124, 119, 0.2);
        }
        
        /* Hero Section */
 
        

        
        /* Service Details Section */
        .service-details {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 0px rgba(0, 0, 0, 0.05);
            padding: 50px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
/*            left: -40px;*/
        }
        
        .service-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .feature-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 30px;
            transition: all 0.3s ease;
            border-left: 4px solid #0e7c77;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-card h3 {
            color: #0e7c77;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: #11938d;
            margin-bottom: 20px;
        }
        
        /* Process Section */
        .process-steps {
            position: relative;
            padding-left: 50px;
            margin: 50px 0;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            height: 100%;
            width: 2px;
            background: linear-gradient(to bottom, #0e7c77, #11938d);
        }
        
        .step {
            position: relative;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px dashed #ddd;
        }
        
        .step:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .step-number {
            position: absolute;
            left: -50px;
            top: 0;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #0e7c77, #11938d);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        /* Pricing Section */
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        
        .pricing-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        
        .pricing-card.popular {
            border: 2px solid #0e7c77;
            position: relative;
        }
        
        .popular-tag {
            position: absolute;
            top: -15px;
            right: 20px;
            background: #0e7c77;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .pricing-card h3 {
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .price {
            font-size: 2.5rem;
            color: #0e7c77;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .price span {
            font-size: 1rem;
            color: #7f8c8d;
        }
        
        .pricing-features {
            list-style: none;
            margin: 30px 0;
        }
        
        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            color: #555;
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* FAQ Section */
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .faq-question {
            background-color: #f8f9fa;
            padding: 20px;
            cursor: pointer;
            font-weight: 600;
            color: #2c3e50;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question:hover {
            background-color: #f1f1f1;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        .faq-toggle {
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }
        
        /* CTA Section */
        .service-cta {
            background: linear-gradient(135deg, #0e7c77, #11938d);
            color: white;
            text-align: center;
            padding: 80px 0;
            border-radius: 10px;
        }
        
        .service-cta h2 {
            color: white;
        }
        
        .service-cta h2::after {
            background: white;
        }
        
        .service-cta p {
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .service-details {
                padding: 30px 20px;
            }
            
            .process-steps {
                padding-left: 30px;
            }
            
            .step-number {
                left: -30px;
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
            }
        }


        
    /* Footer Section */
    footer {
      background-color: #333;
      color: #fff;
      padding: 40px 20px;
      text-align: center;
      position: relative;
      top: 50px;
    }

    .footer-content {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-section {
      flex: 1;
      min-width: 200px;
      margin-bottom: 20px;
    }

    .footer-section h3 {
      font-size: 20px;
      margin-bottom: 15px;
      color: #0e7c77;
    }

    .footer-section .p {
/*      margin-top: 10px;*/
      margin-bottom: 10px;
      font-size: 14px;
      color: #ccc;
      text-decoration: none;
      display: block;
    }

    .footer-section .p1 {
/*      margin-top: 10px;*/
      margin-bottom: 10px;
      font-size: 14px;
      color: #ccc;
      text-decoration: none;
    }

    .footer-section .p1:hover , .footer-section .p:hover{
      color: #0e7c77;
    }

    .footer-section ul {
       list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 0px; /* row-gap column-gap */
  max-width: 300px; /* यह width आपके content के अनुसार adjust करें */
  margin: 0 auto;
    }

    .footer-section ul li {
      margin-bottom: 10px;
      flex: 0 0 calc(33.33% - 20px);
    }

    .footer-section ul li a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-section ul li a:hover {
      color: #0e7c77;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }

    .social-icons a {
      color: #fff;
      font-size: 20px;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #0e7c77;
    }

    .footer-bottom {
      margin-top: 40px;
      font-size: 14px;
      color: #ccc;
    }

    /* Responsive Footer */
    @media (max-width: 768px) {
      .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .footer-section {
        min-width: 100%;
      }
    }


/*    whatsapp design start*/


/* Font Awesome icon ka size aur color */
.whatsapp-icon i {
    font-size: 40px;
    color: #25D366;
    background-color: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Positioning the icon at the bottom right */
.whatsapp-icon {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 999;
}

/* Hover effect for the icon */
.whatsapp-icon:hover i {
    transform: scale(1.1);
}

/* For responsiveness: Adjust the icon size on smaller screens */
@media (max-width: 768px) {
    .whatsapp-icon i {
        font-size: 30px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .whatsapp-icon i {
        font-size: 25px;
        padding: 6px;
    }
}





/*    whatsapp design end*/