body {
    background: linear-gradient(135deg, #f0f0f0, #ffffff);
    font-family: 'Arial', sans-serif;
    /* background: linear-gradient(90deg, #5043fc, #b33bcc); color: white; padding-top: 40px; padding-bottom: 40px; position: relative; */

}


/* Styling for form inputs and buttons */
.form-control {
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    transition: background 0.4s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0056b3, #007bff);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
}

/* Sidebar styling */
.sidebar {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Card styling for generated images */
.card {
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: none !important;
    transform: none !important;
}

.card:hover {
    transform: none !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Loading spinner styles */
.loading-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    text-align: center;
}

.loading-spinner .spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Loading overlay styles */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
}
.gallery-item {
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    transition: none !important;
}
.gallery-item img:hover {
    transform: none !important;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    font-size: 15px;
}
.gallery-item:hover .overlay {
    opacity: 1;
}




/* Custom styles here */
.main-showcase img {
    max-width: 100%;
    height: auto;
}

.features-section {
    background-color: #181818;
    padding: 40px 0;
}

/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin-top: 0rem;
    position: relative;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #333;
}

.footer-link {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: #0d6efd;
    text-decoration: underline;
}

.footer-contact {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #495057;
    transition: none !important;
}

.social-icon:hover {
    background-color: #0d6efd;
    color: white;
    transform: none !important;
}

/* Dark Footer Variant */
.footer-dark {
    background-color: #212529;
    color: #f8f9fa;
}

.footer-dark .footer-heading {
    color: #f8f9fa;
}

.footer-dark .footer-link {
    color: #adb5bd;
}

.footer-dark .footer-link:hover {
    color: #fff;
}

.footer-dark .social-icon {
    background-color: #343a40;
    color: #e9ecef;
}

.footer-dark .text-muted {
    color: #adb5bd !important;
}

.navbar-brand img {
    width: 100%;
    height: auto;
}

.header-section {
    background: linear-gradient(90deg,#0d1f3c, #16482f );
    color: white;
    padding: 40px 0;
    position: relative;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin-left: 20px;
}

.btn-launch-app {
background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(110, 142, 251, 0.4);
}

.btn-launch-app:hover {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
}

/* Image Styling and Responsive */
.image-container {
    position: relative;
    display: inline-block;
    margin: 0.5rem;
    perspective: 1000px;
}

.image-wrapper {
    background: linear-gradient(135deg, #e9ecef, #702ac7);
    padding: 15px;
    border-radius: 16px;
    transition: none !important;
    transform: none !important;
    display: inline-block;
}

.image-wrapper-1, .image-wrapper-2, .image-wrapper-3 {
        transform: rotate(-5deg);
 
}

.image-wrapper {
    background: linear-gradient(135deg, #e9ecef, #702ac7);
    padding: 15px;
    border-radius: 16px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.image-wrapper:hover {
    transform: none !important;
}

.image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: none !important;
}

.image-wrapper:hover .image {
    transform: none !important;
}



    /* Wave Shape */
    .wave {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 150px;
        background: url('data:image/svg+xml;base64,...') no-repeat bottom;
        background-size: cover;
    }
    /* Features Section */
    #features {
        padding: 100px 0;
        background-color: #f8f9fa;
    }
    #features .feature-box {
        background: #fff;
        border-radius: 8px;
        padding: 30px;
        margin-bottom: 30px;
        transition: none !important;
    }
    #features .feature-box:hover {
        transform: none !important;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    /* Models Section */
    #models {
        padding: 100px 0;
    }
    #models .model-card {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        margin-bottom: 30px;
    }
    #models .model-card img {
        width: 100%;
        transition: none !important;
    }
    #models .model-card:hover img {
        transform: none !important;
    }
    #models .model-content {
        position: absolute;
        bottom: 0;
        background: rgba(0,0,0,0.7);
        color: #fff;
        width: 100%;
        padding: 20px;
        text-align: center;
    }
    /* Testimonials Section */
    #testimonials {
        padding: 100px 0;
        background-color: #f8f9fa;
    }
    #testimonials .testimonial {
        background: #fff;
        border-radius: 8px;
        padding: 30px;
        margin-bottom: 30px;
        position: relative;
    }
    #testimonials .testimonial::before {
        content: '“';
        font-size: 50px;
        position: absolute;
        top: -20px;
        left: 20px;
        color: #ccc;
    }
    /* Pricing Section */
    #pricing {
        padding: 100px 0;
    }
    #pricing .pricing-card {
        background: #fff;
        border: 1px solid #e3e3e3;
        border-radius: 8px;
        padding: 40px;
        margin-bottom: 30px;
        transition: none !important;
    }
    #pricing .pricing-card:hover {
        transform: none !important;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }


    .social-card {
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: none !important;
  transform: none !important;
  background-color: #1b1b1b;
  color: #fff;
}
.social-card:hover {
  transform: none !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.social-card .card-header {
  display: flex;
  align-items: center;
  padding: 10px;
}
.social-card .card-header .user-info {
  display: flex;
  align-items: center;
}
.social-card .user-info img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 15px;
}
.social-card .card-body p {
  font-size: 15px;
  margin: 0px 0;
  color: #ccc;
}
.social-card img {
  width: 100%;
  height: auto;
  border-bottom: 2px solid #444;
}
.social-card .image-overlay {
  position: relative;
}
.social-card .image-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.35); */
}
.social-card .image-overlay p {
  position: absolute;
  bottom: 10px;
  left: 15px;
  z-index: 2;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.social-card .card-footer {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1b1b1b;
  border-top: 1px solid #444;
}
.social-card .actions button {
  border: none;
  background-color: #444;
  color: #fff;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 14px;
  transition: none !important;
}
.social-card .actions button:hover {
  background-color: #666;
}

.testimonialssection{
    background-color: #101010;
    font-family: 'Poppins', sans-serif;
}

/* CSS for verified icon styling */
.verified-icon {
    width: 18px;
    height: 18px;
    fill: #1DA1F2; /* Twitter blue, customize the color here */
    stroke: #1DA1F2; /* Optional: Adds the same color to stroke */
}


@media (max-width: 768px) {
    .image-wrapper {
        padding: 8px;
        border-radius: 20px;
        transform: none !important;
    }

    .image-wrapper:hover {
        transform: none !important;
    }

    .image {
        border-radius: 15px;
    }

    .header-section h1 {
        font-size: 2rem;
    }

    .header-section p {
        font-size: 1.2rem;
    }

    .btn-launch-app {
        padding: 6px 12px;
    }
}








 .desktopx {
            display: block;

        }

        .mobilex {
            display: none;
        }

        @media (max-width: 768px) {
            .desktopx {
                display: none;

            }

            .mobilex {
                display: block;
            }
        }










/* Card animation override */
.no-card-animation {
    transform: none !important;
    transition: none !important;
}

.no-card-animation:hover {
    transform: none !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Class to disable all animations */
.disable-all-animations * {
    transition: none !important;
    transform: none !important;
    animation: none !important;
}









