/* style.css */

body {
    font-family: 'Inter', sans-serif; /* Primary font for body text */
    background-color: #f8f9fa; /* Light background */
    color: #343a40; /* Dark text */
}
h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Playfair Display', serif; /* Elegant serif font for headings */
}
.navbar {
    background: linear-gradient(to right, #ca1995, #7a3ba1); /* Pink gradient from logo */
}
.navbar-brand, .nav-link {
    color: #ffffff !important;
}
.navbar-brand:hover, .nav-link:hover {
    color: #e2e6ea !important;
}
.hero-section {
    /* Hero background with blue gradient overlay and hero.png */
    /* background: linear-gradient(rgba(43, 108, 176, 0.7), rgba(87, 164, 232, 0.7)), url('./images/Yourapps_long.png') no-repeat center center; */
    background-image: url(./images/YA_Banner2.png);
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.services {
    background-image: url(./images/Blue_Pink_Splash.png);
    background-repeat: no-repeat;
    background-position: left bottom;    
    background-size: 30%;
    text-align: center;
}

.out-custmers {
    background-image: url(./images/Blue_Pink_Splash.png);
    background-repeat: no-repeat;
    background-position: left bottom;    
    background-size: 30%;
    text-align: center;
}

.section-padding {
    padding: 80px 0;
}
.card {
    border-radius: 15px; /* Rounded corners for cards */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}
.form-control, .btn {
    border-radius: 10px; /* Rounded corners for form elements and buttons */
}
.btn-primary {
    /* Blue button matching the logo's color scheme */
    /*background-color: #3399FF; /* Mid-tone blue from logo */
    /*border-color: #2B6CB0; /* Darker blue */
    background-color: black;
    border-color: black;
}
.btn-primary:hover {
    /*background-color: #007bff; /* Standard Bootstrap primary blue for hover */
    /*border-color: #0066CC; */
    background-color: purple;
    border-color: purple;
}
.footer {
    background-color: #343a40; /* Dark footer - keeping neutral for contrast */
    color: #ffffff;
    padding: 40px 0;
    font-size: 0.9em;
}
/* Icon styling for service cards */
.service-icon {
    font-size: 4rem; /* Large icon size */
    color: #2B6CB0; /* Darker blue for icons */
    margin-bottom: 20px;
}
/* New styles for customer logos */
.customer-logo-container {
    text-align: center;
    margin-bottom: 30px;
}
.customer-logo {
    width: 120px; /* Adjust size as needed */
    height: auto;
    margin: 10px; /* Spacing between logos */
    border-radius: 8px; /* Slightly rounded corners for logos */
}

/* Styles for Login/Admin Panel */
.login-container {
    max-width: 400px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: #ffffff;
    /* Centering for login page */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensure it takes full viewport height */
    margin: auto; /* Center horizontally */
}
.login-card { /* Replaces .login-container for consistency with .card styling */
    max-width: 400px;
    width: 100%;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: #ffffff;
}
.admin-panel-container {
    margin-top: 50px;
    margin-bottom: 50px;
}
.table th, .table td {
    vertical-align: middle;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(43, 108, 176, 0.05); /* Light blue tint for odd rows */
}
