body{
    background: #ecede2 !important;
}
/* Create keyframes for the loader animation */
          @keyframes loader {
              0% {
                transform: rotate(0deg);
              }
              100% {
                transform: rotate(360deg);
              }
            }
        
        /* Styling for the loader container */
        .loader {
          border: 4px solid #f3f3f3; /* Light grey border */
          border-top: 4px solid #3498db; /* Blue top border */
          border-radius: 50%;
          width: 50px;
          height: 50px;
          animation: loader 1s linear infinite; /* Apply the loader animation */
        }
        
        /* Center the loader */
        .loader-container {
          display: flex;
          justify-content: center;
          align-items: center;
          height: 100vh; /* Adjust the height as needed */
        }
        .urdu-txt{
	font-family: 'Noto Naskh Arabic', serif;
	text-align: right;
	}
/* main page div animation */
.service-card {
            perspective: 1000px;
            height: 400px;
        }

        .service-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s;
            transform-style: preserve-3d;
            cursor: pointer;
        }

        .service-card:hover .service-card-inner {
            transform: rotateY(180deg);
        }

        .service-card-front,
        .service-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 15px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .service-card-front {
            background: linear-gradient(45deg, #6366f1, #8b5cf6);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 2rem;
        }

        .service-card-back {
            background: white;
            color: #1f2937;
            transform: rotateY(180deg);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .icon-wrapper {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #e5e7eb;
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .hover-lift {
            transition: transform 0.2s;
        }

        .hover-lift:hover {
            transform: translateY(-5px);
        }
/* card body */