/* Custom CSS for Indeed Prime Redesign */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #007bff; /* Adjust to match brand color */
    --secondary-color: #6c757d;
    --accent-color: #28a745;
    --text-color: #333;
    --bg-light: #f8f9fa;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --radius-md: 8px;
    --radius-lg: 12px;
}

body {
    font-family: 'Poppins', sans-serif !important;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    padding-top: 70px; /* Prevent fixed navbar overlap */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #2c3e50;
}

/* Navbar Improvements */
.w3l-bootstrap-header {
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: #555 !important;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* Buttons */
.btn-theme {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 12px 40px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 22px rgba(0, 123, 255, 0.28), 0 6px 14px rgba(0, 0, 0, 0.12);
}

.btn-theme:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 123, 255, 0.35), 0 10px 18px rgba(0, 0, 0, 0.14);
    background-color: #0069d9; /* Darker shade */
}

/* Hero Section */
.w3l-index-block1 .content {
    background: transparent;
    padding: 0 !important;
}

.w3l-index-block1 img {
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    display: block;
}

/* Who We Are Section */
.w3l-who-we-are {
    background-color: #fff;
}

.w3l-who-we-are .head {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.w3l-who-we-are .sub-title {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.w3l-who-we-are p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.w3l-who-we-are img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

/* Attention Box */
.attention-box {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 3rem;
    text-align: center;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.attention-box strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #533f03;
}

.attention-box::before {
    content: '!';
    position: absolute;
    left: -10px;
    top: -20px;
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: bold;
    pointer-events: none;
}

/* Services Section */
.s-block {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    overflow: hidden;
    border: 1px solid #eee;
}

.s-block:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.s-block img {
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.s-block h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.s-block p {
    font-size: 0.9rem;
    color: #666;
}

/* Features / Benefits Section */
.w3l-index-block4 {
    background-color: var(--bg-light);
}

.features15-col-text {
    margin-bottom: 30px;
}

.feature-unit {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.feature-unit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.features15-para img {
    max-width: 64px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.features15-para h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
    color: #444;
}

/* Clients Section */
.w3l-index-block6 {
    background-color: #fff;
}

.w3l-index-block6 img {
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 100px; /* Ensure logos are uniform */
    filter: grayscale(100%);
}

.w3l-index-block6 img:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Call to Action / Info Section */
.w3l-index-block10 {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
}

.w3l-index-block10 .new-block {
    background: transparent;
    padding: 60px 0;
}

.w3l-index-block10 .middle-section {
    background: transparent;
    color: #fff;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
}

.w3l-index-block10 h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.w3l-index-block10 p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.w3l-market-footer footer.footer-28 {
    background-color: #000 !important;
    background: #000 !important;
    color: #ccc;
    padding-top: 60px;
}

.w3l-market-footer h6.footer-title-28 {
    color: #fff !important;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.w3l-market-footer h6.footer-title-28::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.w3l-market-footer .footer-list-28 ul li {
    list-style: none;
    margin-bottom: 10px;
}

.w3l-market-footer .footer-list-28 ul li a {
    color: #aaa !important;
    text-decoration: none;
    transition: color 0.3s ease;
    padding-left: 0;
}

.w3l-market-footer .footer-list-28 ul li a:hover {
    color: #fff !important;
    padding-left: 5px; /* Slight movement on hover */
}
