 /* General Styles */
 body {
     margin: 0;
     font-family: 'Roboto', sans-serif;
     background-color: #000000;


     color: #fff;
     user-select: none;
 }









 .card-section {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 1.5rem;
     padding: 2rem 1rem;
     box-sizing: border-box;
 }

 .info-card {
     flex: 1 1 300px;
     max-width: 400px;
     width: 100%;
     font-family: 'Poppins', sans-serif;
     background: #fffefe;
     padding: 1.5rem;
     border-radius: 12px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
     text-align: center;
     transition: all 0.3s ease-in-out;
 }





 .info-card h3 {
     margin-bottom: 10px;
     color: #2c3e50;
 }

 .info-card p {
     font-size: 15px;
     color: #7f8c8d;
     margin-bottom: 20px;
 }

 .info-card button {
     padding: 10px 20px;

     color: white;
     border: none;
     border-radius: 8px;
     background: linear-gradient(135deg, #c6d0e9, #2c5ee7);
     cursor: pointer;
     transition: background-color 0.3s ease;
 }

 .info-card button:hover {

     background: linear-gradient(135deg, #2c5ee7, #c6d0e9);
 }

 .info-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 10px 30px rgba(52, 152, 219, 0.6);
     background: rgba(52, 152, 219, 0.1);
 }

 /* Fully Responsive */
 @media (max-width: 768px) {
     .card-section {
         flex-direction: column;
         align-items: center;
     }

     .info-card {
         max-width: 100%;
         width: 100%;
     }
 }

 @media (max-width: 480px) {
     .info-card {
         padding: 1rem;
     }

     .info-card h3 {
         font-size: 18px;
     }

     .info-card p {
         font-size: 14px;
     }

     .info-card button {
         width: 100%;
     }
 }

 .modal {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     font-family: 'Poppins', sans-serif;
     background: rgba(0, 0, 0, 0.6);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 1000;
 }

 .modal-content:hover {
     box-shadow: 0 0 50px rgba(151, 149, 149, 0.596);
 }


 .modal-content {
     background: #2c3e50;
     /* Dark background for contrast */
     color: white;
     /* White text */
     padding: 2rem;
     border-radius: 12px;
     text-align: center;
 }

 .modal-buttons button {
     margin: 10px;
     padding: 10px 20px;

     border-radius: 8px;
     cursor: pointer;
     background-color: #3498db;
     /* Blue button color */
     color: white;
     border: none;
 }

 .modal-buttons button:hover {
     background-color: #2980b9;
     /* Darker blue on hover */
 }

 /* Styling for Button hover effect */
 .modal-content h2 {
     color: #90adce;
     /* Golden color for header */
 }

 .modal-content p {
     font-size: 16px;
     color: #ecf0f1;
     filter: drop-shadow(0 0 5px rgba(255, 255, 255, 30));
     /* Lighter text for paragraph */
 }



 .chat-hover:hover {
     transform: scale(1.02);
     box-shadow: 0 0 30px rgba(0, 191, 255, 1);
     transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
 }

 .text-glow {
     text-shadow: 0 0 20px #000, 0 0 30px #000, 0 0 30px #000, 0 0 40px #000
 }

 .glow {
     box-shadow: 0 0 20px rgba(0, 191, 255, .5), 0 0 30px rgba(0, 191, 255, .4), 0 0 40px rgba(0, 191, 255, .3), 0 0 50px rgba(0, 191, 255, .2)
 }

 .border-glow {
     border: 2px solid rgba(0, 191, 255, .5);
     box-shadow: 0 0 10px rgba(0, 191, 255, .5), 0 0 20px rgba(0, 191, 255, .4), 0 0 30px rgba(0, 191, 255, .3), 0 0 40px rgba(0, 191, 255, .2)
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 20px;
 }



 .feature-section .content .btn:hover,
 .header a.register:hover,
 .welcome-section .btn:hover {



     background: linear-gradient(145deg, #0088cc, #0077b3);
     box-shadow: 0 8px 20px rgba(0, 191, 255, 1);
     transform: scale(1.05);
 }

 /* Header */
 .header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px 0;
     flex-wrap: wrap;
     transition: transform 0.9s ease-in-out, box-shadow 0.9s ease-in-out;
 }

 .header img {
     height: 40px;
     filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.548));
     border-radius: 6.99px;
 }

 .header a {
     color: #fff;
     text-decoration: none;
     margin-left: 20px;
     padding: 10px 15px;
     border-radius: 5px;
     transition: background-color 0.3s ease;
     display: inline-block;
     text-align: center;
     min-width: 100px;
 }

 .header a:hover {
     background-color: rgba(255, 255, 255, 0.2);

 }

 .header a.register {
     background-color: #007bff;
     padding: 10px 20px;
     border-radius: 5px;
     font-weight: bold;
     text-align: center;
 }

 .header a.register:hover {
     background-color: #0056b3;
 }

 @media (max-width: 600px) {
     .header {
         flex-direction: column;
         align-items: center;
     }

     .header a {
         margin: 10px 0;
         width: 100%;
         text-align: center;
     }
 }

 .welcome-section {
     background-color: #f7f7f7;
     color: #000;
     font-family: 'Poppins', sans-serif;

     padding: 40px;
     border-radius: 10px;
     text-align: center;
 }


 .welcome-section:hover {
     transform: scale(1.02);
     box-shadow: 0 0 30px rgba(0, 191, 255, 1);
 }


 .welcome-section h1 {

     font-size: 36px;
     font-weight: bold;
     margin-bottom: 20px
 }

 .welcome-section p {


     font-size: 18px;
     margin-bottom: 20px
 }

 .welcome-section .btn {
     background-color: #007bff;
     color: #fff;
     padding: 10px 20px;

     border: none;
     border-radius: 5px;
     display: inline-block;
     transition: background-color 0.3s ease;
 }

 .welcome-section .btn:hover {
     background: linear-gradient(135deg, #2c5ee7, #c6d0e9, );





 }


 .margintop {
     margin-top: 4%;
 }

 .feature-section .content h2 {
     font-size: 28px;
     margin-bottom: 20px
 }

 /* Feature Sections */
 .feature-section {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     align-items: center;
     margin: 40px 0;
     text-align: center;
 }


 .feature-section .content p {
     font-size: 16px;
     margin-bottom: 20px
 }

 .feature-section img,
 .feature-section .content {
     width: 100%;
     max-width: 500px;
     margin-bottom: 20px;
 }



 .feature-section .content .btn {
     background-color: #007bff;
     color: #fff;
     padding: 10px 20px;
     border-radius: 5px;
     transition: background-color 0.3s ease;
 }

 .feature-section .content .btn:hover {
     background-color: #0056b3;
 }

 /* Share Section */
 .sharecon {
     text-align: center;
     padding: 20px;
     background-color: #111;
     color: #fff;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     min-height: 50vh;
     border-radius: 10px;
     position: relative;
     overflow: hidden;
 }

 .image-container {
     display: inline-block;
     padding: 50px;
     border-radius: 10px;
     background-position: center;
     background-image: url(img66.png)
 }

 .sharecon h2 {
     font-size: 28px;

 }


 .sharecon:hover {
     box-shadow: 0 0 50px rgba(0, 191, 255, 0.8);

 }

 .image-container {
     position: relative;
     display: inline-block;
     background-color: #000;
     padding: 50px;
     border-radius: 10px;
     background-position: center;
 }

 .image-container img {
     width: 100%;
     max-width: 900px;
     border-radius: 20px;
 }


 .blog-section {
     background-color: #ffffff;
     color: #000;
     padding: 50px 20px;
     border-radius: 10px;
     text-align: center;
     position: relative;
     box-shadow: 0 0 20px rgba(0, 191, 255, 0.8);
     transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
 }

 .blog-section .blogs .blog a {
     color: #007bff;
     text-decoration: none
 }

 .blog-section .blogs .blog img {
     width: 100%;
     border-radius: 10px;
     margin-bottom: 20px
 }



 .blog-section:hover {
     transform: scale(1.02);
     box-shadow: 0 0 30px rgba(0, 191, 255, 1);
 }


 .blog-section .blogs {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 20px;
 }

 .blog-section .blogs .blog {
     width: 100%;
     max-width: 800px;
     background-color: #fff;
     padding: 20px;
     border-radius: 10px;
     transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
     box-shadow: 0 4px 10px rgba(0, 191, 255, 0.6);
     position: relative;
 }

 .blog-section .blogs .blog:hover {
     transform: scale(1.05);
     box-shadow: 0 8px 20px rgba(0, 191, 255, 1);
 }

 @media (min-width: 1200px) {
     .blog-section .blogs {
         flex-direction: row;
         flex-wrap: nowrap;
         justify-content: center;
     }

     .blog-section .blogs .blog {
         width: 25%;
     }
 }

 @media (max-width: 1024px) {
     .blog-section .blogs .blog {
         width: calc(50% - 20px);
     }
 }

 @media (max-width: 768px) {
     .blog-section .blogs {
         flex-direction: column;
         align-items: center;
     }

     .blog-section .blogs .blog {
         width: 100%;
     }

 }







 /* Footer */
 .bottom-bar {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     padding: 20px;
 }

 .logo img {
     width: 100px;
     height: auto;
 }

 /* Responsive Design */
 @media (min-width: 768px) {
     .feature-section {
         flex-direction: row;
         text-align: left;
     }

     .feature-section img,
     .feature-section .content {
         width: 38%;
     }

     .blog-section .blogs {
         justify-content: space-between;
     }
 }





 @keyframes float {
     0% {
         transform: translateY(0) rotate(0deg);
     }

     50% {
         transform: translateY(-12px) rotate(2deg);
     }

     100% {
         transform: translateY(0) rotate(0deg);
     }
 }

 .animate-float {
     animation: float 1.5s ease-in-out infinite;
 }

 .logo-container {
     width: 80px;
     height: 80px;
     position: relative;
     border-radius: 12px;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
     filter: drop-shadow(0 0 9px rgba(3, 3, 3, 50));
 }

 .logo-img {
     position: relative;
     z-index: 3;
     width: 60px;
     height: 60px;
     object-fit: contain;
     border-radius: 9px;
 }

 @keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }



 /* Popup Fullscreen Overlay */
 .popup-modal {
     position: fixed;
     inset: 0;
     background-color: rgba(0, 0, 0, 0.6);
     backdrop-filter: blur(6px);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 999;
 }

 /* Popup Card */
 .popup-content {
     position: relative;
     width: 90%;
     max-width: 500px;
     background-color: #ffffff10;
     color: #f9f9f9;
     padding: 24px;
     border-radius: 20px;
     box-shadow: 0 0 40px rgba(255, 255, 255, 0.19);
     backdrop-filter: blur(15px);
     z-index: 1;
     overflow: hidden;
 }

 .popup-content::before {
     content: '';
     position: absolute;
     inset: -20px;
     background: radial-gradient(circle, rgba(226, 223, 223, 0.418), transparent 70%);
     animation: smoke-spin 1.9s linear infinite;
     z-index: 0;
     filter: blur(20px);
     border-radius: 30px;
 }

 .popup-title {
     font-size: 1.25rem;
     font-weight: bold;
     margin-bottom: 1rem;
     position: relative;
     z-index: 2;
 }

 .popup-message {
     font-size: 0.95rem;
     line-height: 1.5;
     position: relative;
     z-index: 2;
 }

 .popup-close-btn {
     margin-top: 1.5rem;
     width: 100%;

     background-color: linear-gradient(135deg, #c6d0e9, #2c5ee7);
     box-shadow: 0 10px 30px rgba(5, 5, 5, 30);
     color: white;
     font-weight: bold;
     padding: 0.75rem;
     border-radius: 9999px;
     border: none;
     cursor: pointer;
     transition: background 0.3s ease;
     position: relative;

     z-index: 2;
 }

 .popup-close-btn:hover {
     background-color: #272626;
 }

 @keyframes smoke-spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }



 .download-btn {
     padding: 14px 28px;
     font-size: 1rem;
     font-weight: 600;
     color: #ffffff;
     background: linear-gradient(135deg, #6366f1, #8b5cf6);
     border: none;
     border-radius: 9999px;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 8px 20px rgba(139, 92, 246, 0.9);
     position: relative;
     filter: drop-shadow(0 0 9px rgba(3, 3, 3, 0.2));

     z-index: 2;
 }

 .download-btn:hover {
     background: linear-gradient(135deg, #4f46e5, #7c3aed);
     box-shadow: 0 12px 25px rgba(139, 92, 246, 0.6);
     transform: scale(1.05);

 }

 .download-btn:active {
     transform: scale(0.97);
     box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);

 }


 .about {
     padding: 2rem 1rem;
     background: #000000;
     text-align: center;
     color: #fcf8f8;
     border-radius: 10px;

 }

 .about-container {
     max-width: 800px;
     margin: 0 auto;
     filter: drop-shadow(0 0 5px rgba(255, 255, 255, 30));
 }

 .about h2 {
     font-size: 2rem;
     margin-bottom: 1rem;
     font-weight: 700;
 }

 .about p {
     font-size: 1.1rem;
     line-height: 1.6;
     margin-bottom: 1rem;
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
     .h1--scalingSize {
         font-size: 2rem;
     }

     .about h2 {
         font-size: 1.5rem;
     }

     .about p {
         font-size: 1rem;
     }
 }

 .card {
     width: 100%;
     max-width: 1900px;
     background: #1e1e1e;
     border-radius: 20px;
     color: #ffffff;
     box-shadow: 0 25px 60px rgba(0, 0, 0, 0.397);
     overflow: hidden;
     transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
     position: relative;
     transform: scale(0.97);
 }

 .card:hover {
     transform: scale(1);
     box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
 }

 .card img {
     width: 100%;
     height: 300px;
     object-fit: cover;
     border-top-left-radius: 20px;
     border-top-right-radius: 20px;
     transition: transform 0.6s ease;
 }

 .card:hover img {
     transform: scale(1.02);
 }

 .card-content {
     padding: 24px;
     transition: padding 0.3s ease-in-out;
 }

 .card-content h2 {
     font-size: 26px;
     margin-bottom: 10px;
     font-weight: 700;
     color: #ffffff;
     transition: color 0.3s ease-in-out;
 }

 .card-content p {
     font-size: 16px;
     color: #fcf9f9;
     line-height: 1.6;
     transition: color 0.3s ease-in-out;
 }

 .card-extra {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.7s ease, padding 0.5s ease;
     padding: 0 24px;
     opacity: 0;
 }

 .card-extra p {
     margin-top: 12px;
     font-size: 15px;
     color: #cccccc;
     line-height: 1.5;
 }

 .toggle-arrow {
     display: flex;
     justify-content: center;
     align-items: center;
     height: 60px;
     cursor: pointer;
     background: #151515;
     border-top: 1px solid rgba(255, 255, 255, 0.08);
     transition: background 0.3s ease;
 }

 .arrow {
     font-size: 24px;
     color: #ffffff;
     transition: transform 0.5s ease-in-out;
 }

 .card.expanded .arrow {
     transform: rotate(180deg);
 }

 .card.expanded .card-extra {
     max-height: 900px;
     padding: 20px 24px;
     opacity: 1;
 }

 .card.expanded {
     transform: translateY(-10px) scale(1.01);
 }

 @media (max-width: 600px) {
     .card img {
         height: 220px;
     }

     .card-content h2 {
         font-size: 22px;
     }

     .card-content p,
     .card-extra p {
         font-size: 14px;
     }
 }

 .watermark {
     text-align: center;
     margin-top: rem;
     font-size: 0.85rem;
     color: #94a3b8;
 }

 .infoo {
     text-align: center;
     margin-top: 2rem;
     font-size: 0.85rem;
     color: #d3d5d8;
 }