
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: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* 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: transform 0.3s ease-in-out;
}
.gallery-item img:hover {
    transform: scale(1.05);
}

.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 */
.footer {
        background-color: #222;
        color: #ddd;
        padding: 40px 0;
    }
    .footer a {
        color: #ddd;
        text-decoration: none;
    }
    .footer a:hover {
        color: #fff;
    }

.navbar-brand img {
    width: 100%;
    height: auto;
}

.header-section {
    background: linear-gradient(90deg, #5043fc, #b33bcc);
    color: white;
    padding: 40px 0;
    position: relative;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin-left: 20px;
}

.btn-launch-app {
    background-color: #a14afe;
    border-color: #a14afe;
    color: white;
    border-radius: 20px;
    padding: 8px 16px;
}

.btn-launch-app:hover {
    background-color: #8b36df;
    border-color: #8b36df;
}

/* Image Styling and Responsive */
.image-container {
    position: relative;
    display: inline-block;
    margin: 2rem;
    perspective: 1000px;
}

.image-wrapper {
    background: linear-gradient(135deg, #e9ecef, #702ac7);
    padding: 15px;
    border-radius: 16px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.image-wrapper-1 {
    transform: rotate(-5deg);
}

.image-wrapper-2 {
    transform: rotate(5deg);
}

.image-wrapper-3 {
    transform: rotate(-10deg);
}

.image-wrapper:hover {
    transform: rotate(0deg);
}

.image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.image-wrapper:hover .image {
    transform: scale(1.05);
}



    /* 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: transform 0.3s;
    }
    #features .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px 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: transform 0.5s;
    }
    #models .model-card:hover img {
        transform: scale(1.1);
    }
    #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: transform 0.3s;
    }
    #pricing .pricing-card:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 20px 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: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #1b1b1b;
  color: #fff;
}
.social-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.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: background-color 0.3s;
}
.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: rotate(0deg);
    }

    .image-wrapper:hover {
        transform: scale(1.02);
    }

    .image {
        border-radius: 15px;
    }

    .header-section h1 {
        font-size: 2rem;
    }

    .header-section p {
        font-size: 1.2rem;
    }

    .btn-launch-app {
        padding: 6px 12px;
    }
}
