/* ==========================================================================
   TYPOGRAPHY SYSTEM
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --font-primary: 'Poppins', sans-serif;
    --heading-color: #0f172a;
    --muted-color: #64748b;
}

body,
h1, h2, h3, h4, h5, h6,
p, a, span, div, li,
button, input, select, textarea {
    font-family: var(--font-primary) !important;
}

h1,
h2,
h3 {
    margin-top: 0;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.section-subheading {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.text-muted {
    color: var(--muted-color) !important;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}


/* ==========================================================================
   HERO SECTION (Black Background + Bright Navy Contrast)
   ========================================================================== */

.hero-section {
    position: relative;
    background-color: #000000; /* Black Background */
    padding: 60px 20px 80px 20px; 
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    color: #ffffff;
}

/* Glow Effect */
.glow-effect {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    /* Changed glow to Navy Blue to match theme */
    background: radial-gradient(circle, rgba(26, 35, 126, 0.3) 0%, rgba(0, 0, 0, 0) 65%);
    z-index: 1;
    filter: blur(90px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.badge i {
    /* Using Bright Blue for the star so it's visible */
    color: #448AFF; 
    text-shadow: 0 0 5px rgba(68, 138, 255, 0.6);
}

/* Main Heading */
.hero-heading {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff; /* White Main Text */
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

/* --- FIX FOR DULL NAVY TEXT --- */
.highlight-font {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-weight: 700;
    
    /* Changed from dark #1a237e to Brighter Royal Blue */
    /* This looks like Navy but shines on Black */
    color: #448AFF; 
    
    /* Added a Glow Shadow so it doesn't look flat */
    text-shadow: 0 0 15px rgba(26, 35, 126, 0.8);
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.highlight-bold {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    /* Bright Blue Underline */
    text-decoration-color: #448AFF; 
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #1a237e; /* Keep Button Dark Navy */
    color: #ffffff; 
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    
    /* White Border added to separate it from Black background */
    border: 2px solid rgba(255, 255, 255, 0.2); 
    box-shadow: 0 0 20px rgba(26, 35, 126, 0.5);
}

.cta-button:hover {
    transform: translateY(-3px);
    background-color: #ffffff;
    color: #1a237e;
    border-color: #ffffff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   HERO SECTION FIXES (Visibility Issue Solved)
   ========================================================================== */
/* Apply this to the main wrapper/parent of your Hero Section */
.hero-section {
    position: relative; /* Essential for the absolute positioning of the ticker */
    
    /* KEY FIX: Adds 150px of empty space at the bottom.
       This pushes your buttons and stats up, ensuring the ticker 
       occupies this empty space without overlapping the content. */
    padding-bottom: 150px !important; 
}


/* =========================================
   2. Buttons & Stats (Existing Styles)
   ========================================= */

.hero-section .cta-button {
    display: inline-block;
    background-color: #1a237e !important; /* Navy Blue Background */
    color: #ffffff !important; /* White Text */
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #1a237e;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-section .cta-button:hover {
    background-color: #1a237e !important;
    color: #ffffff !important;
    border-color: #1a237e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.hero-stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 5px;
    line-height: 1;
    display: block;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}


/* =========================================
   3. UPDATED TICKER CODE (Wider & Larger)
   ========================================= */

.hero-ticker-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    
    /* Slightly darker glass effect for better text contrast */
    background: rgba(0, 0, 0, 0.2); 
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    
    /* INCREASED PADDING: Makes the strip look wider/thicker (height) */
    padding: 35px 0; 
    
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1); /* Adds a subtle shadow upwards */
}

.ticker-track {
    display: inline-block;
    animation: scrollTicker 60s linear infinite; 
}

/* Pauses the animation when the user hovers over the strip */
.hero-ticker-wrap:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    font-family: 'Georgia', serif;
    font-style: italic;
    
    /* LARGER FONT: Increased from 1.3rem to 2.2rem for visibility */
    font-size: 2.2rem; 
    
    color: #ffffff;
    font-weight: 500;
    
    /* Increased horizontal spacing between news items */
    padding: 0 60px; 
    
    opacity: 1;
    display: inline-block;
}

.ticker-dot {
    color: #448AFF; 
    text-shadow: 0 0 5px rgba(68, 138, 255, 0.6);
    font-size: 1.5rem; /* Increased dot size to match text */
    vertical-align: middle;
    margin-right: 10px;
}

@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   4. Mobile Responsive Adjustments
   ========================================= */
@media (max-width: 768px) {
    /* Reduce bottom padding on mobile screens */
    .hero-section { 
        padding-bottom: 100px !important; 
    }
    
    .hero-ticker-wrap { 
        padding: 20px 0; 
    }
    
    .ticker-item { 
        font-size: 1.1rem; 
        padding: 0 20px; 
    }
    
    .stats-section { 
        gap: 30px; 
    }
    
    .hero-stat-number { 
        font-size: 2rem; 
    }
}


/* ==========================================================================
   PHARMA ABOUT SECTION (Why Join Us)
   ========================================================================== */

.pharma-about-section {
    padding: 80px 4%; /* Top/Bottom 80px, Sides 4% (Full width but breathable) */
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    color: #333;
    width: 100%;
    overflow-x: hidden;
}

/* --- VIDEO WRAPPER (Responsive 16:9 + Facade Styling) --- */
.pharma-video-box {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 1px solid #eee;
    background-color: #000; /* Black background prevents white flash on load */
    cursor: pointer; /* SHOWS HAND CURSOR ON HOVER */
}

/* 1. Thumbnail Image Styling */
.pharma-video-box .video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers full area without stretching */
    transition: transform 0.5s ease; /* Smooth zoom effect */
    opacity: 0.9;
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Perfectly centered */
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.3); /* Glow shadow */
    z-index: 2;
    transition: all 0.3s ease;
} 

.play-btn-overlay i {
    color: #1a237e; /* Navy Blue Icon */
    font-size: 24px;
    margin-left: 4px; /* Slight offset to make play triangle look centered */
}

/* --- HOVER EFFECTS --- */

/* Zoom image on hover */
.pharma-video-box:hover .video-thumb {
    transform: scale(1.05); 
    opacity: 0.7;
}

/* Pop button on hover */
.pharma-video-box:hover .play-btn-overlay {
    background-color: #1a237e; /* Turn Blue */
    transform: translate(-50%, -50%) scale(1.1); /* Grow slightly */
    box-shadow: 0 0 40px rgba(26, 35, 126, 0.5);
}

.pharma-video-box:hover .play-btn-overlay i {
    color: #ffffff; /* Turn Icon White */
}

/* --- IFRAME (Loads after click) --- */
.pharma-video-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 5; /* Ensures video sits on top of image once loaded */
}

/* --- Text Content --- */
.pharma-content {
    padding-left: 40px; 
    padding-right: 20px;
}

.section-subtitle {
    color: #1a237e; /* Navy Blue */
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 2px solid #00c6ff;
    padding-bottom: 3px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0d1b3e;
    margin-bottom: 30px;
    line-height: 1.2;
}

.text-highlight {
    color: #1a237e;
}

.text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.course-tag {
    color: #1a237e;
    font-weight: 700;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .pharma-content {
        padding-left: 0;
        padding-top: 40px;
    }
    .section-title {
        font-size: 2.2rem;
    }
}

/* =========================================
   STATS GRID (Perfect Alignment)
   ========================================= */

.stats-grid {
    display: grid;
    /* Creates 4 equal columns automatically */
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); 
    
    /* Flexbox ensures vertical centering inside the card */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Top Border Hover Effect */
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #1a237e; /* Navy Blue Line */
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(26, 35, 126, 0.1); /* Navy tinted shadow */
    border-color: #1a237e;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 32px;
    color: #1a237e; /* Navy Icon */
    margin-bottom: 15px;
    height: 40px;
    display: flex;
    align-items: center;
}

.stat-data {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    color: #0d1b3e; /* Dark Navy Text */
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.stat-unit {
    font-size: 20px;
    font-weight: 700;
    color: #00c6ff; /* Cyan Accent */
}

.stat-label {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on Tablet */
    }
    .pharma-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr; /* 1 Column on Mobile */
    }
}
/* ==========================================================================
   FIXED ALIGNMENT FOR STATS GRID
   ========================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 30px 20px; /* Increased padding for better look */
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    
    /* ALIGNMENT FIXES */
    height: 100%; /* Forces card to fill the grid cell */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #1a237e;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #1a237e; /* Navy Blue border on hover */
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 36px; /* Slightly larger */
    color: #1a237e; /* CHANGED: Black was too harsh, used Navy Blue */
    margin-bottom: 20px;
    height: 40px; /* Fixed height for icon area to ensure alignment */
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-data {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #0d1b3e;
    margin: 0;
    line-height: 1;
}

.stat-unit {
    font-size: 20px;
    font-weight: 700;
    color: #0d1b3e;
}

.stat-label {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    font-weight: 600; /* Made slightly bolder for readability */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}


/* ==========================================================================
   4. TRAINING SECTION (4 Cards Per Row - Clean)
   ========================================================================== */

.trainingwap {
    background-color: #f8f9fa;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.container-fluid {
    padding-left: 5%;
    padding-right: 5%;
}

.center-link {
    text-align: center;
    margin-top: 40px;
}

.top-contnet {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    max-width: 1320px; 
    margin-left: auto;
    margin-right: auto;
}

.training-title {
    color: #1a237e; /* Navy Blue */
    font-weight: 800;
    margin: 0;
    font-size: 2.5rem;
}

/* "View All" Button Styles */
.top-seemore-desktop-only {
    color: #1a237e;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #1a237e;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.top-seemore-desktop-only:hover {
    background: #1a237e;
    color: #fff;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.4);
}

.bottom-training-mobile-only {
    display: none;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    background: #1a237e;
    padding: 12px 30px;
    border-radius: 50px;
}

/* =========================================
   CARD STYLES
   ========================================= */

.course-card-wrapper {
    margin-bottom: 30px; 
}

.course-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 480px; 
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.15);
    border-color: #1a237e; /* Navy Blue Hover */
}

/* 1. Banner Image Area */
.card-banner-link {
    display: block;
    width: 100%;
    text-decoration: none;
    position: relative;
}

.card-banner-box {
    width: 100%;
    height: 260px; /* Big Image */
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

.card-banner-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    transition: transform 0.5s ease;
}

.course-card:hover .card-banner-box img {
    transform: scale(1.05);
}

/* REMOVED: .card-badge style deleted */

/* 2. Card Body */
.card-body-custom {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-title {
    font-size: 19px; 
    font-weight: 800;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Skills Badges */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.skills-container {
        /* This creates the 3x2 Grid */
        display: grid; 
        grid-template-columns: repeat(3, 1fr); /* Exactly 3 columns */
        gap: 5px; /* Spacing between pills */
        margin-top: 10px;
        margin-bottom: 10px;
        min-height: 50px; /* Optional: keeps card height consistent even if empty */
    }

    .skill-pill {
        background-color: #f0f4f8; /* Light background */
        color: #555;
        border-radius: 4px;
        font-size: 0.75rem; /* Smaller font to fit 3 in a row */
        padding: 4px 2px;
        text-align: center;
        white-space: nowrap; 
        overflow: hidden;
        text-overflow: ellipsis; /* Adds '...' if text is too long */
        border: 1px solid #e1e1e1;
    }

.price-row {
    margin-top: auto;
    font-size: 13px;
    color: #28a745;
    font-weight: 700;
}

/* 3. Card Footer (Button) */
.card-footer-custom {
    padding: 5px 20px 25px 20px;
    background: #fff;
}

/* FULL WIDTH BUTTON - NAVY BLUE */
.btn-full-width {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #1a237e; /* Navy Blue */
    color: #ffffff;
    font-weight: 700;
    padding: 12px 0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    border: none;
}

.btn-full-width:hover {
    background-color: #000000; /* Hover turns Black */
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .card-banner-box {
        height: 240px; 
    }
}

@media (max-width: 768px) {
    .top-seemore-desktop-only {
        display: none;
    }
    .bottom-training-mobile-only {
        display: inline-block;
    }
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}
/* ==========================================================================
   PLATFORM SECTION (Full Width & User Friendly)
   ========================================================================== */

.platform-section {
    padding: 80px 0;
    background-color: #f9fbfd; /* Very light blue background */
    width: 100%;
}

/* ==========================================================================
   1. Sidebar Styles (Left) - FIXED COLORS
   ========================================================================== */
.custom-vertical-tabs {
    background: #fff;
    border-radius: 12px 0 0 12px; /* Rounded only on left */
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-right: 1px solid #eee;
}

.custom-vertical-tabs .nav-link {
    /* DEFAULT STATE (Inactive) */
    color: #555; /* Dark grey text */
    font-weight: 600;
    padding: 20px 25px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between; /* Space between text and arrow */
    align-items: center;
    position: relative;
}

/* Container for Icon + Text inside the button */
.icon-text-wrap {
    display: flex;
    align-items: center;
}
/* 1. Parent Button Active State */
.custom-vertical-tabs .nav-link.active {
    background-color: #1a237e;
    color: #ffffff !important; /* Force parent text color */
    box-shadow: 0 4px 10px rgba(26, 35, 126, 0.3);
}

/* 2. SPECIFIC FIX: Force the inner SPAN text to be white */
.custom-vertical-tabs .nav-link.active span {
    color: #ffffff !important;
}

/* 3. Force Icons to be white */
.custom-vertical-tabs .nav-link.active i {
    color: #ffffff !important;
}

.arrow-icon {
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.custom-vertical-tabs .nav-link.active .arrow-icon {
    opacity: 1; /* Show arrow only when active */
    transform: translateX(0);
}


/* ==========================================================================
   2. Content Area Styles (Right)
   ========================================================================== */
.content-box-shadow {
    background: #fff;
    padding: 50px;
    border-radius: 0 12px 12px 0; /* Rounded only on right */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    min-height: 500px; /* Minimum height ensures consistency */
    border: 1px solid #eee;
    border-left: none; /* Seamless connection */
}

/* Typography */
.tab-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
    line-height: 1.3;
}

.tab-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Lists */
.pain-point-list, .check-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.pain-point-list li, .check-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #444;
    display: flex;
    align-items: flex-start;
}

.pain-point-list i { margin-right: 10px; font-size: 1.1rem; margin-top: 4px; }
.check-list i { margin-right: 10px; color: #28a745; margin-top: 4px; } 

/* ==========================================================================
   3. New Elements (Tags, Steps, Alerts)
   ========================================================================== */

/* Tech Tags (For Resources Tab) */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background: #e3f2fd; /* Light Blue Bg */
    color: #1565c0; /* Dark Blue Text */
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #bbdefb;
}

/* Process Steps (For Resume Tab) */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.step-num {
    background: #1a237e;
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Alert Box */
.alert-custom {
    background-color: #fff3cd;
    border-color: #ffecb5;
    color: #856404;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid transparent;
}

/* ==========================================================================
   4. Images & Animation
   ========================================================================== */
.tab-img {
    max-height: 350px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.tab-pane.active .tab-img {
    animation: fadeInRight 0.6s ease-out; /* Simple animation on switch */
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   5. Mobile Responsiveness
   ========================================================================== */
@media (max-width: 991px) {
    .custom-vertical-tabs {
        border-radius: 12px 12px 0 0;
        flex-direction: row !important; /* Horizontal on mobile */
        overflow-x: auto; /* Scrollable */
        white-space: nowrap;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 5px; /* Space for scrollbar */
    }
    
    .content-box-shadow {
        border-radius: 0 0 12px 12px;
        padding: 30px 20px;
    }

    .custom-vertical-tabs .nav-link {
        border-bottom: none;
        border-right: 1px solid #eee;
        padding: 15px 20px;
        flex: 0 0 auto; /* Prevents buttons from shrinking */
    }
    
    .arrow-icon { display: none; } /* Hide arrow on mobile */
    
    .tab-heading { font-size: 1.5rem; }
    .tab-img { margin-top: 30px; max-height: 250px; }
}

/* ==========================================================================
   6. COURSES DISPLAY SECTION
   ========================================================================== */
/* This is for Course Display Container */
.courses-display-section {
    padding: 60px 0;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.course-cat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.cat-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a237e; /* Navy Blue */
    margin: 0;
    position: relative;
}

.cat-title::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #1a237e; /* UPDATED: Changed from Cyan to Navy Blue */
}

.btn-see-all {
    color: #000000; /* UPDATED: Changed from Cyan to Black */
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-see-all:hover {
    color: #1a237e; /* Hover turns Navy Blue */
    transform: translateX(5px);
}

/* This is for the Individual Course Card */
.card-anchor-wrapper {
    text-decoration: none;
    width: 100%;
    color: inherit;
    display: block;
}

.pharma-course-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.pharma-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #1a237e; /* UPDATED: Hover border is Navy Blue */
}

.card-img-holder {
    width: 100%;
    height: 180px;
    position: relative;
    background-color: #f4f7f6;
    overflow: hidden;
}

/* Update this specific block */
.card-img-holder img {
    width: 100%;
    height: 100%;
    /* Changed from cover to contain so the full image is visible */
    object-fit: contain;
    /* Centers the image within the container */
    object-position: center;
    transition: transform 0.5s ease;
}

.pharma-course-card:hover .card-img-holder img {
    transform: scale(1.08);
}

.card-body-content {
    padding: 20px;
    flex-grow: 1;
}

.course-name {
    font-size: 18px;
    font-weight: 700;
    color: #0d1b3e; /* Dark Navy */
    margin-bottom: 10px;
    line-height: 1.4;
}

.course-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer-custom {
    padding: 15px 20px;
    background-color: #fff;
    border-top: 1px solid #f5f5f5;
}

.read-more-btn {
    font-size: 13px;
    font-weight: 700;
    color: #1a237e; /* Text is Navy Blue */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.pharma-course-card:hover .read-more-btn {
    color: #000000; /* UPDATED: Hover text turns Black */
}

/* ==========================================================================
   8. PAIN POINTS & FEATURES SECTION (Full Width - Advanced Design)
   ========================================================================== */

.pain-points-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    padding: 100px 4%;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.pain-points-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(26, 35, 126, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(26, 35, 126, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-head-wrapper {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.pain-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.pain-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1a237e 0%, #3949ab 100%);
    border-radius: 2px;
}

.highlight-dark {
    color: #1a237e;
    position: relative;
}

.pain-desc {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-top: 30px;
}

/* Feature Cards Wrapper */
.features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Advanced Feature Card Design */
.feature-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 8px 30px rgba(26, 35, 126, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 380px;
}

/* Gradient overlay on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a237e 0%, #3949ab 50%, #1a237e 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.03) 0%, transparent 100%);
    transition: left 0.5s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(26, 35, 126, 0.15);
    border-color: #1a237e;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    left: 0;
}

/* Icon Wrapper with Advanced Design */
.icon-wrapper {
    margin-bottom: 30px;
    font-size: 55px;
    color: #1a237e;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.08) 0%, rgba(57, 73, 171, 0.05) 100%);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.4s ease;
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(26, 35, 126, 0.1);
    transition: all 0.4s ease;
}

.feature-card:hover .icon-wrapper {
    transform: rotateY(360deg) scale(1.1);
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.15) 0%, rgba(57, 73, 171, 0.1) 100%);
}

.feature-card:hover .icon-wrapper::before {
    border-color: #1a237e;
    transform: scale(1.15);
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #3949ab;
}

.feature-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pain-points-section {
        padding: 60px 4%;
    }

    .pain-title {
        font-size: 32px;
    }

    .section-head-wrapper {
        margin-bottom: 50px;
    }

    .features-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        padding: 40px 30px;
        min-height: 320px;
    }

    .icon-wrapper {
        width: 90px;
        height: 90px;
        font-size: 45px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-text {
        font-size: 15px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1400px) {
    .features-row {
        grid-template-columns: repeat(3, 1fr);
    }
}



/* ===============================
   FOUNDER SECTION - FINAL UPDATE
================================ */

.founder-section {
    background: #ffffff;
    padding: 80px 20px; /* Side padding added for mobile safety */
    width: 100%;
    overflow: hidden; /* Horizontal scroll rokne ke liye */
}

.founder-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center; /* Vertical center */
    justify-content: center;
    gap: 60px; /* Image aur text ke beech gap */
    flex-wrap: wrap; /* Screen choti hone par layout wrap karega */
}

/* --- Image Styling (Fix for Stretching) --- */
.founder-image {
    flex: 0 0 400px; /* Fixed width base */
    max-width: 100%;
    text-align: center;
}

.founder-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5; /* Standard portrait ratio */
    object-fit: cover; /* Image crop hogi par stretch nahi hogi */
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    display: block;
}

/* --- Content Styling --- */
.founder-content {
    flex: 1;
    min-width: 300px; /* Content area ko shrink hone se rokega */
}

.founder-heading {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.founder-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 8px;
    display: block;
}

.founder-role {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 20px;
    display: block;
}

.founder-desc {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* --- Highlights List --- */
.founder-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.founder-highlights li {
    margin-bottom: 10px;
    font-weight: 600;
    color: #1e293b;
    position: relative;
    padding-left: 26px;
    font-size: 0.95rem;
}

.founder-highlights li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 1px;
    color: #1a237e;
    font-size: 14px;
    font-weight: 900;
}

/* --- Action Area (Button + LinkedIn Icon) --- */
.founder-action-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

/* 1. Main Button */
.btn-primary-counsel {
    background-color: #1a237e;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #1a237e;
    white-space: nowrap;
}

.btn-primary-counsel:hover {
    background-color: #0f175c;
    border-color: #0f175c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
}

/* 2. LinkedIn Icon Button */
.btn-linkedin-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;  /* Fixed Square Size */
    height: 48px; /* Fixed Square Size */
    border-radius: 8px;
    background-color: #0077b5; /* LinkedIn Blue */
    color: #fff;
    transition: all 0.3s ease;
    border: 2px solid #0077b5;
    text-decoration: none;
}

/* SVG Icon Size */
.btn-linkedin-icon svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

.btn-linkedin-icon:hover {
    background-color: #ffffff;
    color: #0077b5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

.btn-linkedin-icon:hover svg {
    fill: #0077b5; /* Icon turns blue on hover */
}

/* ===============================
   RESPONSIVE MEDIA QUERIES
================================ */

@media (max-width: 992px) {
    .founder-wrapper {
        flex-direction: column; /* Stack vertically */
        text-align: center;
        gap: 30px;
    }

    .founder-image {
        flex: none;
        width: 100%;
        max-width: 380px; /* Limit image size on tablet */
    }

    .founder-highlights {
        display: inline-block; /* List ko center align karne ka trick */
        text-align: left;
    }

    .founder-action-area {
        justify-content: center; /* Buttons center mein */
    }
}

@media (max-width: 576px) {
    .founder-section {
        padding: 50px 15px;
    }

    .founder-heading {
        font-size: 1.8rem;
    }
    
    .founder-name {
        font-size: 1.5rem;
    }

    /* Mobile pe buttons full width */
    .founder-action-area {
        flex-direction: column; /* Stack buttons */
        width: 100%;
        gap: 10px;
    }

    .btn-primary-counsel {
        width: 100%;
        text-align: center;
    }

    .btn-linkedin-icon {
        width: 100%; /* Icon button bhi full width bar ban jayega */
        border-radius: 8px;
    }
}

/* ==========================================================================
   9. WORKING & PARTNERS SECTION (Full Width - Real Colors - No Gaps)
   ========================================================================== */

.Working {
    padding: 50px 0;
    background-color: #fff;
    overflow: hidden;
    width: 100%;
}

/* Full Width Container */
.Working .container-fluid {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}

/* Heading Styling */
.section-head-wrapper {
    margin-bottom: 40px;
    padding: 0 15px; 
}

.placement-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
}

.highlight-blue {
    color: #1a237e;
}

/* Swiper Slide - Fixed Gaps */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    /* REMOVED min-width: 200px; -> This was creating the big gap */
}

/* Logo Bubble Styling */
.logo-bubble {
    /* Reduced size slightly for a tighter fit */
    width: 140px; 
    height: 140px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Reduced margins to bring logos closer */
    margin: 10px auto; 
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    
    /* Kept the lift effect on hover (optional, looks good) */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 35, 126, 0.2);
    border-color: #1a237e;
}

/* Image Styling - REAL COLORS ONLY */
.logo-bubble img {
    max-width: 70%;
    max-height: 50%;
    object-fit: contain;
    
    /* CHANGED: No grayscale, full opacity always */
    filter: none; 
    opacity: 1; 
}

/* Removed hover effect on image specifically, since you want original colors always */

/* Pagination Dots */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 0.5;
    margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
    background: #1a237e;
    opacity: 1;
}

.swiper-pagination {
    position: relative !important;
    margin-top: 30px;
    bottom: 0 !important;
}



/* ==========================================================================
   Counters (Legacy)
   ========================================================================== */


/* ==========================================================================
   10. OLD BANNER SECTION (Legacy)
   ========================================================================== */
/* This is for the OLD Banner Style (Backup) */
.BannerSction {
    position: relative;
    padding: 80px 0 0 0;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.banner-content-wrapper {
    padding-right: 20px;
    z-index: 2;
    position: relative;
}

.typing-highlight {
    color: #FFD700;
    font-weight: 700;
    font-size: 1.4rem;
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.main-heading {
    color: #ffffff;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.banner-desc {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 95%;
}

.banner-btns {
    display: flex;
    gap: 20px;
}

.btn-white-pop {
    background-color: #ffffff;
    color: #0056b3;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-white-pop:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #0056b3;
}

.btn-outline-light-custom {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-outline-light-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

.banner-image-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
    text-align: right;
    padding-top: 20px;
}

.banner-image-wrapper img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(-10px 10px 20px rgba(0, 0, 0, 0.2));
}

/* This is for the Old Ticker */
.course-ticker-bar {
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    margin-top: -5px;
    position: relative;
    z-index: 5;
    

}

.ticker-content {
    display: flex;
    gap: 50px;
    animation: scrollText 25s linear infinite;
    white-space: nowrap;
    width: max-content;
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* ==========================================================================
   UNIVERSITY LIST SECTION (Full Width)
   ========================================================================== */
.university-section {
    /* UPDATED: Added side padding (4%) for full-width layout breathing room */
    padding: 60px 4%; 
    background-color: #f8f9fa; 
    font-family: 'Poppins', sans-serif;
    width: 100%;
    overflow-x: hidden;
}

/* Ensure container takes full space */
.university-section .container-fluid {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title-uni {
    font-size: 28px;
    font-weight: 800;
    color: #1a237e; /* Navy Blue */
    margin: 0;
}

.btn-see-more-uni {
    padding: 8px 25px;
    border: 2px solid #1a237e; /* Navy Blue */
    color: #1a237e;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-see-more-uni:hover {
    background-color: #1a237e; /* Navy Blue Hover */
    color: #fff;
    box-shadow: 0 4px 10px rgba(26, 35, 126, 0.3);
}

/* University Card Styling */
.uni-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures equal height in row */
    position: relative;
}

.uni-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #1a237e; /* Navy Blue Border on Hover */
}

/* Banner Image Wrapper */
.uni-banner-wrapper {
    height: 140px; /* Slightly increased for better view */
    width: 100%;
    background-color: #f1f3f5;
    position: relative;
    border-bottom: 1px solid #eaeaea;
}

.uni-banner-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Keeps logo/banner proportions correct */
    object-position: center;
    padding: 10px;
}

/* Logo Wrapper */
.uni-logo-wrapper {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    bottom: -30px; 
    left: 20px;
    padding: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
    border: 2px solid #ffffff;
}

.uni-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    border-radius: 50%;
}

/* Card Body */
.uni-card-body {
    padding: 40px 20px 15px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.uni-name {
    font-size: 18px;
    font-weight: 700;
    color: #0d1b3e; /* Dark Navy */
    margin-bottom: 5px;
    line-height: 1.3;
    
    /* Truncate text after 2 lines to keep cards even */
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.uni-location {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.uni-info-box {
    background: #f4f8fb;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #eef2f5;
}

.uni-course-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 6px 0;
}

.uni-fees {
    font-size: 15px;
    color: #1a237e; /* Navy Blue */
    font-weight: 700;
    margin: 0;
}

.uni-fees span {
    color: #666;
    font-weight: 400;
    font-size: 12px;
}

.uni-reviews {
    font-size: 12px;
    color: #fbc02d; /* Gold Stars */
    font-weight: 600;
    margin-top: 5px;
}

/* Card Footer */
.uni-card-footer {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
    background-color: #fff;
    font-size: 12px;
    margin-top: auto; 
}

.uni-rank {
    color: #555;
    margin-bottom: 12px;
    display: block;
    font-weight: 500;
}

.uni-actions {
    display: flex;
    gap: 10px;
}

/* Updated Button Styles */

/* Outline Button (Black) */
.btn-uni-outline {
    flex: 1;
    text-align: center;
    font-size: 13px;
    padding: 9px 0;
    border: 1px solid #000000; /* Black Border */
    color: #000000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-uni-outline:hover {
    background-color: #000000;
    color: #fff;
}

/* Filled Button (Navy Blue) */
.btn-uni-fill {
    flex: 1;
    text-align: center;
    font-size: 13px;
    padding: 9px 0;
    background-color: #1a237e; /* Navy Blue Background */
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #1a237e;
    transition: all 0.3s;
}

.btn-uni-fill:hover {
    background-color: #0d1b3e; /* Darker Navy on Hover */
    border-color: #0d1b3e;
    box-shadow: 0 4px 10px rgba(26, 35, 126, 0.3);
}


/* =========================================
   HOME BLOG SECTION STYLES
   ========================================= */

.home-blog-section {
    padding: 80px 0;
    background-color: #ffffff; /* Clean white background */
    width: 100%;
}

/* Section Title */
.home-blog-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a237e; /* Navy Blue */
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-divider {
    width: 60px;
    height: 4px;
    background-color: #ff9800; /* Orange highlight (optional) */
    margin: 0 auto;
    border-radius: 2px;
}

/* Blog Card Container */
.home-blog-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%; /* Ensures equal height */
    display: flex;
    flex-direction: column;
}

.home-blog-card:hover {
    transform: translateY(-5px); /* Lift effect */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #e0e0e0;
}

/* Image Styles */
.blog-img-wrapper {
    position: relative;
    height: 200px; /* Fixed height for consistency */
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05); /* Zoom effect on hover */
}

/* Badge on Image */
.blog-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(26, 35, 126, 0.9);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Content Styles */
.home-blog-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title-link {
    text-decoration: none;
    color: inherit;
}

.blog-post-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s;
}

.home-blog-card:hover .blog-post-title {
    color: #1a237e; /* Change title color on hover */
}

.blog-post-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1; /* Pushes button to bottom */
}

.blog-divider {
    margin: 10px 0 15px 0;
    border-top: 1px solid #f0f0f0;
}

/* Read More Button (Inside Card) */
.read-more-btn {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a237e;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s;
}

.read-more-btn:hover {
    color: #ff9800;
    transform: translateX(5px); /* Arrow moves right */
}

/* View All Button (Bottom of Section) */
.btn-view-all-blogs {
    display: inline-block;
    background-color: #1a237e;
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(26, 35, 126, 0.3);
}

.btn-view-all-blogs:hover {
    background-color: #0d1245;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 35, 126, 0.4);
}

/* ==========================================================================
   10. STORIES & TESTIMONIALS (Video Thumbnails)
   ========================================================================== */
/* --- SECTION CONTAINERS --- */
    .testimonials-section {
        background-color: #f8fafc;
        padding: 6rem 0;
        
        overflow: hidden;
    }

    /* --- SCROLL WRAPPER --- */
    .scrolling-wrapper-b {
        position: relative;
        width: 100%;
        padding: 40px 0;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    }

    .scrolling-content-b {
        display: inline-flex;
        gap: 2rem;
        padding-left: 1rem;
        animation: scroll 80s linear infinite;
        will-change: transform;
    }

    .scrolling-content-b:hover {
        animation-play-state: paused;
    }

    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* --- PRO REVIEW CARD --- */
    .pro-review-card {
        flex: 0 0 auto;
        width: 420px;
        min-height: 540px;
        background: #ffffff;
        border-radius: 24px;
        overflow: visible;
        box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
        border: 1px solid rgba(255, 255, 255, 0.5);
        display: flex;
        flex-direction: column;
        text-decoration: none;
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
        position: relative;
    }

    .pro-review-card:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.15);
        z-index: 10;
        border-color: #bfdbfe;
    }

    /* --- THUMBNAIL AREA --- */
    .card-thumb-area {
        position: relative;
        width: 100%;
        height: 240px;
        background: #000;
        overflow: hidden;
        flex-shrink: 0;
        border-radius: 24px 24px 0 0;
    }

    .card-thumb-area img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
        opacity: 0.92;
    }

    .pro-review-card:hover .card-thumb-area img {
        transform: scale(1.08);
        opacity: 1;
    }

    .thumb-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
        pointer-events: none;
    }

    /* --- GLASS PLAY BUTTON --- */
    .glass-play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 64px;
        height: 64px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
        z-index: 5;
    }

    .glass-play-btn svg {
        fill: white;
        width: 22px;
        height: 22px;
        margin-left: 4px;
        transition: fill 0.3s;
    }

    .pro-review-card:hover .glass-play-btn {
        background: #ff0000;
        border-color: #ff0000;
        transform: translate(-50%, -50%) scale(1.15);
        box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
    }

    /* --- CARD CONTENT LAYOUT --- */
    .card-content {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        background: white;
        flex-grow: 1;
        position: relative;
        border-radius: 0 0 24px 24px;
    }

    /* --- PROFILE LAYOUT --- */
    .profile-section {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid #f1f5f9;
        flex-shrink: 0;
        width: 100%;
    }

    .profile-header-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 1rem;
    }

    .student-name {
        font-size: 1.25rem;
        font-weight: 700;
        color: #0f172a;
  
        line-height: 1.2;
        letter-spacing: -0.01em;
        margin: 0;
        flex: 1;
        text-align: left;
    }

    .company-badge {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
        color: #2563eb;
        font-size: 0.65rem;
        font-weight: 700;
        padding: 4px 8px;
        border-radius: 6px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: 1px solid #bfdbfe;
        white-space: nowrap;
        height: fit-content;
        margin: 0;
    }

    .company-badge svg {
        width: 10px;
        height: 10px;
        flex-shrink: 0;
    }

    .student-role {
        font-size: 0.85rem;
        color: #64748b;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 5px;
        margin: 0;
        line-height: 1.4;
        text-align: left;
        width: 100%;
    }

    /* Quote Section */
    .quote-section {
        position: relative;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        min-height: 100px;
    }

    .quote-icon-bg {
        position: absolute;
        top: -0.75rem;
        left: -0.5rem;
        font-size: 4rem;
        line-height: 1;
        color: #f1f5f9;
        font-family: Georgia, serif;
        pointer-events: none;
        z-index: 0;
        font-style: italic;
        opacity: 0.6;
    }

    .feedback-text {
        font-size: 0.95rem;
        color: #334155;
        line-height: 1.6;
        position: relative;
        z-index: 1;
        font-weight: 500;
        padding-left: 0.75rem;
        padding-right: 0.5rem;
        max-height: 180px;
        overflow-y: auto;
        font-style: italic;
        text-align: left;
    }

    /* Scrollbar */
    .feedback-text::-webkit-scrollbar { width: 5px; }
    .feedback-text::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 10px; }
    .feedback-text::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; transition: background 0.2s; }
    .feedback-text::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

    /* Loading State */
    .dynamic-thumb {
        background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
        background-size: 200% 100%;
        animation: shimmer 1.5s infinite;
    }
    @keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
    .dynamic-thumb[src] { animation: none; background: transparent; }




/* ==========================================================================   
   IT Pharma Courses page css
   ========================================================================== */

    /* Full width container adjustment */
    .full-width-container {
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
    }

    /* Section Heading Style */
    .section-heading-center {
        text-align: center;
        margin-bottom: 50px;
        font-weight: 700;
        font-size: 2.5rem;
        color: #333;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Dynamic Card Design */
    .dynamic-card {
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05); /* Soft shadow */
        transition: all 0.3s ease; /* Smooth animation */
        height: 100%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border: 1px solid #eee;
    }

    .dynamic-card:hover {
        transform: translateY(-10px); /* Lift up effect */
        box-shadow: 0 15px 30px rgba(0,0,0,0.15); /* Stronger shadow on hover */
    }

    /* Image Wrapper to keep images uniform */
    .card-img-wrapper {
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f9f9f9;
        padding: 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .card-img-wrapper img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

    /* Card Text Content */
    .card-content {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .card-content h6 {
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 15px;
        color: #2c3e50;
    }

    .card-content p {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* Read More Link inside card */
    .read-more-link {
        margin-top: auto; /* Pushes to bottom */
        font-weight: bold;
        color: #1a237e;
        text-transform: uppercase;
        font-size: 0.85rem;
    }

    /* Bottom See More Button */
    .btn-see-more-center {
        display: inline-block;
        margin-top: 40px;
        padding: 12px 40px;
        background-color: #1a237e; /* Change to your theme color */
        color: #fff;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.3s;
        box-shadow: 0 4px 15px rgba(0,123,255, 0.3);
    }

    .btn-see-more-center:hover {
        background-color: #1a237e;
        color: #fff;
        text-decoration: none;
    }


/* =========================================
   CONTACT SECTION STYLES (Clean & Modern)
   ========================================= */

.contact-section {
    padding: 80px 0;
    background-color: #f9fbfd; /* Light background */
    font-family: 'Poppins', sans-serif;
}

/* --- Left Side: Contact Info --- */
.contact-info-wrapper {
    padding-right: 30px;
}

.contact-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a237e; /* Navy Blue */
    margin-bottom: 15px;
}

.contact-sub {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    background-color: #e8eaf6; /* Light Navy tint */
    color: #1a237e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details p {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-details a {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #1a237e;
}

/* --- Right Side: Form Card --- */
.form-card-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid #1a237e; /* Accent Border */
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* Form Inputs & Textarea */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-control, .form-select {
    width: 100%;
    height: 55px;
    padding: 0 20px;
    font-size: 1rem;
    color: #495057;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    outline: none;
}

textarea.form-control {
    height: 150px;
    padding-top: 15px;
    resize: none; /* Disables dragging corner */
}


/* ===== HOMEPAGE STATIC FAQ SECTION ===== */
.homepage-faq-section {
    background: #f8fafc;
    padding: 70px 20px;
}

.faq-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-main-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 40px;
}

/* Container */
.static-faq-container {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 25px 35px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* FAQ Item */
.static-faq-item {
    border-bottom: 1px solid #e2e8f0;
    cursor: pointer;
}

.static-faq-item:last-child {
    border-bottom: none;
}

.static-faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.static-faq-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    flex: 1;
}

.static-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e2e8f0;
    position: relative;
    flex-shrink: 0;
}

.static-faq-icon::before,
.static-faq-icon::after {
    content: "";
    position: absolute;
    background: #475569;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.static-faq-icon::before {
    width: 14px;
    height: 2px;
}

.static-faq-icon::after {
    width: 2px;
    height: 14px;
}

/* Content */
.static-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
}

.static-faq-content p {
    padding-bottom: 18px;
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
}

/* Active state */
.static-faq-item.active .static-faq-content {
    max-height: 300px;
}

.static-faq-item.active .static-faq-icon {
    background: #2563eb;
}

.static-faq-item.active .static-faq-icon::before,
.static-faq-item.active .static-faq-icon::after {
    background: #fff;
}

.static-faq-item.active .static-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}



/* Focus State for Inputs */
.form-control:focus, .form-select:focus {
    background-color: #fff;
    border-color: #1a237e;
    box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.1);
}

/* =========================================
   DROPDOWN MENU FIX
   ========================================= */

/* 1. Make the Select box look like the Input boxes */
select.form-select {
    display: block;
    width: 100%;
    height: 55px; /* Ensures exact same height as text inputs */
    padding: 10px 20px; /* Text padding */
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057; /* Dark grey text */
    background-color: #ffffff; /* White background */
    border: 1px solid #e0e0e0; /* Light border matching other inputs */
    border-radius: 8px; /* Rounded corners */
    
    /* 2. CRITICAL: Remove the ugly default browser arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    
    /* 3. Add a Custom, Clean Arrow (Navy Blue to match theme) */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a237e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center; /* Position arrow on the right */
    background-size: 16px; /* Size of the arrow */
    
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
}

/* 4. Focus State (When user clicks it) */
select.form-select:focus {
    border-color: #1a237e; /* Navy Blue border on click */
    outline: 0;
    box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.1); /* Soft blue glow */
}

/* 5. Placeholder color styling (Optional) */
/* This makes the "Select Training Course *" text look lighter like a placeholder */
select.form-select:invalid {
  color: #6c757d;
}
option {
  color: #333; /* Actual options are dark */
}

/* --- Submit Button --- */
.homepage-submit {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #1a237e;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    border-radius: 50px; /* Pill shape */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    text-decoration: none; /* Ensures link looks like button */
}

.homepage-submit:hover {
    background-color: #0d1245; /* Darker Navy */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.4);
    color: #fff;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .contact-info-wrapper {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon-box {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .form-card-wrapper {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   11. MEDIA QUERIES (RESPONSIVE RULES)
   ========================================================================== */

/* This is for Tablet & Mobile (Max 991px) */
@media (max-width: 991px) {
    /* Hero Section */
    .hero-heading { font-size: 2.5rem; }
    .hero-image-box { justify-content: center; margin-top: 40px; }
    .hero-btns-group { flex-direction: column; width: 100%; }
    .btn-hero-primary, .btn-hero-outline { justify-content: center; }

    /* Old Banner */
    .main-heading { font-size: 2.5rem; }
    .banner-image-wrapper { justify-content: center; margin-top: 40px; }
    .banner-btns { flex-direction: column; width: 100%; }
    .btn-white-pop, .btn-outline-light-custom { justify-content: center; }

    /* Pharma About */
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title { font-size: 2rem; }
    .pl-lg-5 { padding-left: 15px; }

    /* Platform Tabs */
    .custom-vertical-tabs {
        flex-direction: row !important;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    .custom-vertical-tabs .nav-link {
        border-radius: 50px;
        border-left: 1px solid transparent;
    }
    .custom-vertical-tabs .nav-link.active {
        border-left: none;
        background-color: #1a237e;
    }
    .tab-img {
        margin-top: 30px;
        max-height: 200px;
    }
}

/* This is for Mobile Devices Only (Max 768px) */
@media (max-width: 768px) {
    /* Training Section */
    .top-seemore-desktop-only { display: none; }
    .training-title { font-size: 1.8rem; }
    .card-banner-box { height: 180px; }
    .mobile-see-more-wrapper { display: block; }

    /* Pharma About */
    .stats-grid { grid-template-columns: 1fr; gap: 15px; }
    .pharma-image-box { margin-bottom: 30px; }
}

/* This is for Desktop Only (Min 769px) */
@media (min-width: 769px) {
    .mobile-see-more-wrapper { display: none; }
}

/* =========================================
   FINAL JOBS SECTION STYLES (BALANCED LAYOUT)
   ========================================= */

/* --- Wrapper (Height Adjusted to 320px) --- */
.srp-jobtuple-wrapper {
    background: #ffffff;
    border: 1px solid #eaedf0;
    border-radius: 12px;
    height: 100%;
    width: 100%;
    min-height: 320px; /* Reduced from 340px */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.srp-jobtuple-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 35, 126, 0.12);
    border-color: #1a237e;
}

/* --- Container Padding (Thoda content failaya hai) --- */
.cust-job-tuple {
    padding: 24px; /* Padding badhai taaki content center me lage */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-decoration: none !important;
    color: inherit;
    text-align: left;
}

/* --- Header --- */
.row1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px; /* Gap badhaya */
    width: 100%;
}

.title strong {
    font-size: 16px; /* Font size badhaya (Pehle 15px tha) */
    color: #1a237e;
    font-weight: 700;
    line-height: 1.5; /* Line height badhai readability ke liye */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.imagewrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1px solid #eee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    padding: 3px;
    background: #fff;
}

.logoImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* --- Company Name --- */
.comp-name {
    font-size: 14px; /* Font badhaya */
    color: #555;
    font-weight: 600;
    margin-bottom: 25px; /* Gap badhaya taaki details niche shift ho jaye */
    display: block;
}

/* --- Details Block (Content Shifted Down) --- */
.job-details-block {
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Content ko thoda spread kiya */
}

.exp-sal-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px; /* Lines ke beech gap badhaya */
    color: #444;
    font-size: 14px; /* Font badhaya details ka */
    font-weight: 500;
}

.detail-item i {
    color: #888;
    margin-right: 8px;
    font-size: 14px;
}

.separator {
    margin: 0 12px;
    color: #ccc;
}

.loc-row {
    display: flex;
    align-items: center;
    color: #444;
    font-size: 14px; /* Font badhaya */
    font-weight: 500;
}

.loc-row i {
    color: #888;
    margin-right: 10px;
    font-size: 15px;
}

/* --- Apply Button --- */
.apply-div {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    background-color: #1a237e;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    text-align: center;
    margin-top: auto;
    transition: background 0.3s;
    letter-spacing: 0.5px;
}

.srp-jobtuple-wrapper:hover .apply-div {
    background-color: #0d1245;
}

/* --- FORCE CENTER BUTTON --- */
.view-all-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 50px;
}

.seemore {
    background: #1a237e;
    color: #fff !important;
    padding: 14px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: transform 0.3s;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.2);
}

.seemore:hover {
    transform: translateY(-3px);
    background: #0d1245;
}



/* ======================================================
   LAPTOP & 14-INCH SCREEN OPTIMIZATION (1280px - 1440px)
   Paste this at the VERY BOTTOM of your <style> tag
   ====================================================== */

@media screen and (max-width: 1440px) {
    
    /* 1. GLOBAL SCALING - Font sizes thode chote kiye */
    html {
        font-size: 14px; /* Base font size kam kiya taaki sab kuch proportionately chhota ho jaye */
    }

    body {
        overflow-x: hidden; /* Horizontal scroll rokne ke liye */
    }

    /* 2. HERO SECTION FIXES */
    .hero-section {
        min-height: auto !important; /* Fixed height hata di */
        padding: 40px 20px 100px 20px !important; /* Padding kam ki */
        height: auto;
    }

    .hero-heading {
        font-size: 2.8rem !important; /* Heading choti ki */
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        max-width: 600px;
        margin-bottom: 25px;
    }

    .badge {
        padding: 6px 18px;
        margin-bottom: 15px;
    }

    /* Stats ko compact kiya */
    .stats-section {
        margin-top: 30px;
        gap: 30px;
        padding-top: 20px;
    }

    .hero-stat-number {
        font-size: 2rem !important;
    }

    /* Ticker Strip adjustment */
    .hero-ticker-wrap {
        padding: 20px 0;
    }
    
    .ticker-item {
        font-size: 1.5rem; /* News ticker font adjust kiya */
        padding: 0 40px;
    }

    /* 3. SECTION PADDINGS (Space kam kiya) */
    .pharma-about-section, 
    .trainingwap, 
    .platform-section, 
    .home-blog-section, 
    .university-section, 
    .pain-points-section,
    .contact-section {
        padding: 50px 4% !important; /* 80px se 50px kar diya */
    }

    .section-title, 
    .placement-heading, 
    .pain-title, 
    .platform-title, 
    .training-title {
        font-size: 2.2rem !important; /* Sabhi main headings size fix */
    }

    /* 4. CARDS OPTIMIZATION (Training & Blog) */
    .course-card {
        min-height: 420px !important; /* Card ki height kam ki */
    }

    .card-banner-box {
        height: 180px !important; /* Image height kam ki */
    }

    .card-body-custom {
        padding: 15px;
    }

    .course-title {
        font-size: 1.1rem;
    }

    /* 5. STATS GRID (4 boxes wala section) */
    .stats-grid {
        gap: 15px; /* Gap kam kiya */
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }

    /* 6. PLATFORM SECTION (Vertical Tabs) */
    .content-box-shadow {
        padding: 30px;
        min-height: 400px;
    }

    .custom-vertical-tabs .nav-link {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    .tab-heading {
        font-size: 1.6rem;
    }

    .tab-img {
        max-height: 280px; /* Image size limit kiya */
    }

    /* 7. PAIN POINTS & FEATURES */
    .feature-card {
        padding: 30px 20px;
        min-height: auto; /* Height auto kar di */
    }

    .icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 35px;
        margin-bottom: 20px;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    /* 8. TESTIMONIALS (Alumni) */
    .pro-review-card {
        width: 320px; /* Card ki width kam ki */
        min-height: 450px;
    }

    .card-thumb-area {
        height: 180px;
    }

    /* 9. CONTACT FORM */
    .contact-heading {
        font-size: 2rem;
    }
    
    .form-card-wrapper {
        padding: 30px;
    }

    .form-control, .form-select {
        height: 45px; /* Input box ki height kam ki */
    }
    
    textarea.form-control {
        height: 100px;
    }
}

/* ======================================================
   SPECIFIC FIX FOR 1366x768 (Common Windows Laptop)
   ====================================================== */
@media screen and (max-height: 800px) {
    .hero-section {
        padding-top: 40px !important;
        padding-bottom: 80px !important;
    }
    
    .hero-heading {
        font-size: 2.4rem !important;
    }
    
    .cta-button {
        padding: 12px 35px;
    }
    
    /* Login/Auth Modal Height Fix */
    .auth-container {
        max-height: 95vh;
        margin: 10px auto;
    }
}

/* ==========================================================================
   HOMEPAGE INLINE STYLE EXTRACTIONS
   ========================================================================== */

.course-title,
.feature-title,
.tab-heading,
.blog-post-title,
.uni-name,
.form-title {
    margin-top: 0;
}

.training-card-link {
    text-decoration: none;
}

.training-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 12px;
    min-height: 60px;
}

.training-skill-pill {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    color: #5a67d8;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    text-align: center;
    white-space: nowrap;
    border: 1px solid #667eea30;
    transition: all 0.3s ease;
}

.training-view-all-wrap {
    text-align: center;
    margin-top: 20px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.testimonials-kicker {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 9999px;
    background-color: #eff6ff;
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid #dbeafe;
}

.testimonials-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonials-description {
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-track-wrapper {
    width: 100%;
}

.student-role-icon {
    color: #10b981;
    width: 16px;
    height: 16px;
}

.platform-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: inherit;
    text-transform: none;
    letter-spacing: normal;
    display: block;
}

.counters-section {
    padding: 60px 0;
    background-color: #fff;
}

.counters-section .dynamic-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.counters-section .dynamic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.counters-section .card-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0;
    border-bottom: 0;
    padding: 0;
}

.counters-section .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    max-width: none;
    max-height: none;
    transition: transform 0.5s ease;
}

.counters-section .dynamic-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.counters-section .card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.counters-section .card-content .course-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
    font-size: 16px;
    line-height: 1.4;
    display: block;
    -webkit-line-clamp: unset;
}

.counters-section .course-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.counters-section .read-more-link {
    color: #1a237e;
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
    display: inline-block;
}

.course-card-link {
    text-decoration: none;
    height: 100%;
    display: block;
}

.jobs-section {
    padding: 60px 0;
    background-color: #f9fbfd;
}

.jobs-main-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a237e;
}

.jobs-main-subtitle {
    color: #666 !important;
    margin-top: 5px;
}

.jobs-main-divider {
    width: 60px;
    height: 4px;
    background: #ff9800;
    margin: 15px auto 0;
    border-radius: 2px;
}

.jobs-empty-state {
    padding: 40px;
}

.jobs-arrow-icon {
    margin-left: 8px;
    font-size: 12px;
}

.uni-card-link {
    text-decoration: none;
    color: inherit;
}

.trophy-icon {
    color: #fbc02d;
    margin-right: 5px;
}

.btn-uni-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
