/* General Styles */
/* General Styles */
body {
    background: linear-gradient(180deg, #241f38 0%, #1e1b31 100%);
    color: #eaeaea;
    font-family: 'Inter', sans-serif; /* Updated to use Inter */
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Inter', sans-serif; /* Updated to Inter for headings */
    font-weight: bold;
    margin-bottom: 15px;
}


/* Header Styles */
header {
    background: linear-gradient(180deg, #241f38, #2c2545); /* Gradient for depth */
    color: white;
    padding: 40px 0; /* Extra padding for spaciousness */
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}

header img {
    max-width: 600px!important; /* Larger logo */
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

header h1 {
    font-size: 2.8rem;
    margin-top: 10px;
}

header p {
    font-size: 1.2rem;
}

/* Footer Styles */
footer {
    background-color: #241f38; /* Matches header for consistency */
    color: #eaeaea;
    text-align: center;
    padding: 10px 0;
    margin-top: 30px;
}

/* Form Section */
form {
    background-color: #2c2545; /* Matches cards for consistency */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}

form label {
    color: #eaeaea; /* Light text for labels */
    font-size: 1rem;
    margin-bottom: 5px;
    display: block;
}

form input,
form button {
    background-color: #241f38; /* Matches body background */
    color: #eaeaea; /* Light text */
    border: 1px solid #29cded; /* Bright blue border */
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    width: 100%;
}

form input:focus,
form button:focus {
    outline: none;
    border-color: #fb4993; /* Pink focus effect */
}

form button {
    background-color: #fb4993; /* Pink button */
    font-size: 1.2rem;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Space between icon and text */
    border: none;
    color: #eaeaea; /* Ensure contrast */
}

form button:hover {
    background-color: #c6157b; /* Darker pink hover effect */
    color: #241f38; /* Contrast on hover */
}

/* Section Titles */
h2 {
    font-size: 2rem;
    text-align: center;
    color: #eaeaea;
    position: relative;
    margin-bottom: 30px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #29cded;
}

/* Product Cards */
.card {
    background-color: #2c2545; /* Matches form */
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Adds subtle depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px); /* Lift effect */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

.card-title {
    font-size: 1.5rem;
    color: #29cded; /* Bright blue for titles */
    font-weight: bold;
}

.card-text {
    font-size: 1rem;
    color: #eaeaea;
}

.card i {
    font-size: 2.5rem; /* Larger icons for emphasis */
    color: #fb4993;
    margin-bottom: 10px;
}

/* Buttons inside Product Cards */
.btn-primary {
    background-color: #9c1a65; /* Blue buttons for primary action */
    border: none;
    color: white; /* Contrasting text */
    font-weight: bold;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #fb4993; /* Pink hover */
    color: #241f38; /* Contrast on hover */
}

/* Layout Spacing */
section {
    padding: 40px 0; /* Add spacing between sections */
}

section + section {
    margin-top: 30px; /* Extra spacing between consecutive sections */
}

.text-highlight {
    color: #fb4993; /* Vibrant pink from your palette */
    font-style: italic;
}

.text-muted {
    color: #aaa; /* Subtle grey text for muted messages */
    font-size: 0.9rem; /* Slightly smaller size for disclaimers */
}

h2 {
    color: #eaeaea; /* Matches the light text tone */
    font-weight: bold;
}

.is-invalid {
    border-color: #dc3545; /* Red border for invalid inputs */
}

.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
}

.is-invalid + .invalid-feedback {
    display: block; /* Show the error message when the input is invalid */
}

.instagram-feed {
    background-color: #2c2545; /* Matches the theme */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    color: #ffffff; /* White text for contrast */
}
.instagram-feed h2 {
    color: #29cded; /* Bright blue for headings */
}
.instagram-feed p {
    color: #eaeaea; /* Light text for description */
}

.image-transformation-process {
    background-color: #241f38; /* Dark background for contrast */
    padding: 60px 20px;
}

.image-transformation-process h2,
.image-transformation-process h4,
.image-transformation-process p {
    line-height: 1.8;
}

.image-transformation-process .process-step {
    background: linear-gradient(135deg, #29cded, #fb4993); /* Gradient background */
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    text-align: center;
}

.image-transformation-process .process-step:hover {
    transform: scale(1.02);
    transition: all 0.3s ease-in-out;
}

.image-transformation-process .process-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
}

.image-transformation-process .process-step p {
    font-size: 1rem;
    color: #eaeaea;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fb4993, #29cded);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transform: translateY(-50%);
    z-index: 10;
}

.text-white {
    color: #ffffff !important;
}

.shadow-lg {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}


