/* assets/css/style.css */
:root {
    --primary-navy: #1B365D; /* Deep Corporate Navy Blue */
    --accent-orange: #F26522; /* Logo Accent Orange */
    --platinum-grey: #F5F7FA; /* Clean Backgrounds */
    --crisp-white: #FFFFFF;
    --text-dark: #333333;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background-color: var(--crisp-white);
    padding-top: 76px; /* Space for fixed header */
}

/* Typography & Links */
a { text-decoration: none; transition: 0.3s; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--primary-navy); }

/* B2B Buttons */
.btn-corporate {
    background-color: var(--accent-orange);
    color: var(--crisp-white);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 4px;
    border: none;
    transition: 0.3s;
}
.btn-corporate:hover {
    background-color: #d95316;
    color: var(--crisp-white);
}

/* Navbar B2B Styling */
.navbar-corporate {
    background-color: var(--crisp-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-corporate .nav-link {
    color: var(--primary-navy);
    font-weight: 500;
    margin: 0 10px;
}
.navbar-corporate .nav-link:hover {
    color: var(--accent-orange);
}

/* Top Bar (Contact Info) */
.top-bar {
    background-color: var(--primary-navy);
    color: var(--crisp-white);
    font-size: 0.85rem;
    padding: 5px 0;
}
.top-bar a { color: var(--crisp-white); margin-right: 15px; }
.top-bar a:hover { color: var(--accent-orange); }

/* --- NEW HOME PAGE STYLES --- */

/* Utility Classes */
.bg-navy { background-color: var(--primary-navy); color: var(--crisp-white); }
.bg-platinum { background-color: var(--platinum-grey); }
.text-navy { color: var(--primary-navy); }
.text-orange { color: var(--accent-orange); }

/* Hero Section */
.hero-section {
    padding: 80px 0 60px;
}
.hero-badge {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent-orange);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Stats Bar */
.stats-bar {
    background-color: var(--accent-orange);
    padding: 20px 0;
}
.stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.stat-item:last-child {
    border-right: none;
}
.stat-number { font-size: 2rem; font-weight: 700; line-height: 1; }
.stat-text { font-size: 0.9rem; font-weight: 500; text-transform: uppercase; }

/* Corporate Service Cards */
.service-card {
    background: var(--crisp-white);
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 30px 20px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 40, 80, 0.08);
    border-color: var(--accent-orange);
}
.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--platinum-grey);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-navy);
}

/* --- CLIENT LOGO SLIDER (TRUST BUILDING) --- */
.client-slider-section {
    background-color: var(--crisp-white);
    padding: 40px 0 30px;
    border-top: 1px solid #e0e6ed;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Gradient effect on left & right edges for smooth entry/exit */
.slider-container::before,
.slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none; /* 🚀 YEH LINE CLICKS KO ALLOW KAREGI */
}
.slider-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.slider-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.logo-track {
    display: flex;
    align-items: center;
    width: max-content; /* Important for infinite scroll */
    animation: scroll 30s linear infinite;
}

/* Hover karne par slider ruk jayega */
.logo-track:hover {
    animation-play-state: paused; 
}

.slide-logo {
    height: 50px; /* Fixed height so all logos look uniform */
    width: auto;
    max-width: 160px;
    margin: 0 40px;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
    object-fit: contain;
}

/* Hover karne par logo original color mein aayega */
.slide-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* --- TESTIMONIALS & BLOG SLIDERS --- */
.scroll-section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    background-color: var(--platinum-grey);
}

.scroll-track {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 20px 0;
}

/* Right to Left Animation (Testimonials) */
.scroll-rtl { animation: scrollRTL 15s linear infinite; }
.scroll-rtl:hover { animation-play-state: paused; }

/* Left to Right Animation (Blogs) */
.scroll-ltr { animation: scrollLTR 15s linear infinite; }
.scroll-ltr:hover { animation-play-state: paused; }

@keyframes scrollRTL {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes scrollLTR {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Testimonial Card */
.testimonial-card {
    background: var(--crisp-white);
    border-left: 4px solid var(--accent-orange);
    padding: 30px;
    border-radius: 8px;
    width: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    white-space: normal;
}

/* Blog Card */
.blog-card {
    background: var(--crisp-white);
    border-radius: 8px;
    width: 350px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    white-space: normal;
    border: 1px solid #e0e6ed;
}
.blog-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    background-color: var(--primary-navy);
}
.blog-content { padding: 20px; }
.blog-meta { font-size: 0.8rem; color: #777; margin-bottom: 10px; display: flex; justify-content: space-between;}