/* PharmaInsight Analytics - Main Stylesheet */

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0066CC;
    --secondary-green: #00A86B;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #F5F7FA;
    --white: #FFFFFF;
    --accent-orange: #FF6B35;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-gray);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* ===== Navigation ===== */
.navbar {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, #0066CC 0%, #00A86B 100%);
    padding: 120px 0;
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Stats Section ===== */
.stats-section {
    padding: 80px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: var(--light-gray);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--medium-gray);
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--medium-gray);
}

/* ===== Services ===== */
.services-overview {
    padding: 80px 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    color: var(--white);
    width: 30px;
    height: 30px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.service-card p {
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 10px;
}

/* ===== Testimonials ===== */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 12px;
    text-align: center;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    margin-top: 30px;
}

.author-name {
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.author-title {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: var(--white);
    color: var(--primary-blue);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* ===== Newsletter ===== */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 6px;
    display: none;
}

.form-message.success {
    background: rgba(0, 168, 107, 0.2);
    color: var(--white);
    display: block;
}

.form-message.error {
    background: rgba(255, 107, 53, 0.2);
    color: var(--white);
    display: block;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col a:hover {
    color: var(--white);
}

.contact-info i {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 20px;
}

/* ===== Chatbot Widget ===== */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
}

.chatbot-button:hover {
    transform: scale(1.1);
}

.chatbot-button i {
    color: var(--white);
    width: 30px;
    height: 30px;
}

.chatbot-window {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    max-height: 500px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    flex-direction: column;
}

.chatbot-window.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

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

.chatbot-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: var(--white);
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h4 {
    color: var(--white);
    margin: 0;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 300px;
}

.chatbot-message {
    margin-bottom: 15px;
    padding: 12px 16px;
    border-radius: 8px;
    max-width: 80%;
}

.chatbot-message.bot {
    background: var(--light-gray);
    color: var(--dark-gray);
}

.chatbot-message.user {
    background: var(--primary-blue);
    color: var(--white);
    margin-left: auto;
}

.chatbot-quick-replies {
    padding: 0 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-reply {
    padding: 10px 15px;
    background: var(--light-gray);
    border: 1px solid var(--primary-blue);
    border-radius: 8px;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.quick-reply:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.chatbot-input-form {
    padding: 15px 20px;
    border-top: 1px solid var(--light-gray);
    display: flex;
    gap: 10px;
}

.chatbot-input-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    font-size: 0.9rem;
}

.chatbot-input-form button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-blue);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Contact Form ===== */
.contact-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .chatbot-window {
        width: calc(100vw - 40px);
        right: -10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}/* Logo image size control */
.logo-img {
    height: 40px;      /* Adjust logo height */
    width: auto;       /* Automatic width to keep proportions */
    object-fit: contain;
    margin-right: 10px;
}
.logo span {
    font-family: 'Poppins', sans-serif;  /* clean, modern font */
    font-weight: 700;                    /* bold */
    font-size: 16px;                     /* adjust size */
    line-height: 1.2;                    /* spacing between lines */
    color: #0A2A43;                      /* optional: text color */
}
.logo span {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: #0A2A43;
    text-align: center;        /* center text under the logo */
    display: inline-block;     /* needed for letter spacing */
}

.logo span br + span, .logo span {  
    /* nothing needed here — we’ll adjust Analytics separately */
}

/* Specifically stretch "Analytics" */
.logo span br + * {
    letter-spacing: 2px;      /* increases horizontal spacing */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* space between logo image and text */
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column; /* stack lines */
    justify-content: flex-start;
}

.logo-text span {
    /* default text styling */
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #0A2A43;
}

.analytics-text {
    font-size: 22px;         /* bigger font */
    letter-spacing: 1px;     /* optional, slightly stretched */
    line-height: 1;           /* tight vertical spacing */
}
.tools-ticker {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f0f8ff;
    padding: 15px 20px;
    overflow: hidden;
    border-radius: 10px;
    margin: 40px 0;
}

.ticker-text {
    flex: 0 0 auto;
    font-weight: 600;
    font-size: 1rem;
    color: #0066CC;
}

.ticker-wrapper {
    overflow: hidden;
    flex: 1;
}

.ticker-move {
    display: flex;
    gap: 30px;
    animation: tickerScroll 20s linear infinite;
}

.ticker-move img {
    height: 50px;
    width: auto;
}

/* Animation */
@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media(max-width:768px){
    .tools-ticker {
        flex-direction: column;
        align-items: flex-start;
    }
    .ticker-move img {
        height: 40px;
    }
}
.tools-ticker {
    width: 100%;
    background: #f0f8ff;
    padding: 15px 20px;
    overflow: hidden;
    border-radius: 10px;
    margin: 40px 0;
}

.ticker-container {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
}

.ticker-text {
    flex: 0 0 auto;
    font-weight: 600;
    font-size: 1rem;
    color: #0066CC;
}

.ticker-wrapper {
    overflow: hidden;
    flex: 1;
}

.ticker-move {
    display: flex;
    gap: 30px;
    animation: tickerScroll 20s linear infinite;
}

.ticker-move img {
    height: 50px;
    width: auto;
}

/* Smooth scrolling animation */
@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media(max-width:768px){
    .ticker-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .ticker-move img {
        height: 40px;
    }
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px; /* space between logo and text */
}

.footer-logo img.logo-img {
    width: 40px;  /* adjust size to match header logo */
    height: auto;
}

.footer-logo .logo-text {
    font-family: 'Poppins', sans-serif;  /* same as header */
    font-weight: 700;
    line-height: 1;
}

.footer-logo .analytics-text {
    font-size: 1.1em; /* make it slightly longer to align visually */
    display: block;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px; /* space between logo and text */
}

.footer-logo img.logo-img {
    width: 40px;  /* adjust size to match header logo */
    height: auto;
}

.footer-logo .logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1;
}

.footer-logo .analytics-text {
    font-size: 1.1em;
    display: block;
}
.footer-logo .logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1;
    color: white; /* make text white */
}

.footer-logo .analytics-text {
    font-size: 1.3em; /* slightly longer for visual balance */
    display: block;
    color: white; /* ensure Analytics is white too */
}
.contact-info li {
    display: flex;
    align-items: center;   /* vertically centers the icon and text */
    gap: 10px;             /* space between icon and text */
    color: white;          /* make text white */
    font-size: 0.95em;
    margin-bottom: 8px;    /* space between each item */
}

.contact-info li i {
    min-width: 20px;       /* keeps all icons aligned */
    color: white;          /* icon color */
}
/* Footer Contact Info */
.footer-col .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col .contact-info li {
    display: flex;
    align-items: center;
    gap: 8px; /* space between icon and text */
    margin-bottom: 8px;
    color: #ffffff; /* adjust based on your footer background */
}

.footer-col .contact-info li i {
    min-width: 20px; /* ensures icons align vertically */
    color: #ffffff;
}
.footer .social-links a {
    margin-right: 10px;
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.footer .social-links a:hover {
    color: #00bfff; /* example hover color */
}
/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 90vh; /* Adjust height as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Hero Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes sure the video covers the section */
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Overlay (optional for dark effect) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust darkness */
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

/* Hero Title */
.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem; /* Adjust for responsiveness */
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Hero Buttons */
.hero-cta .btn {
    margin: 0 10px;
}
/* ===== PI TRACK-IT & PI ACADEMY ===== */

/* PI Track-It Section */
.trackit-section {
    padding: 80px 0;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.trackit-content {
    max-width: 550px;
}

.section-label {
    display: inline-block;
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.trackit-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.trackit-content h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.trackit-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.trackit-image {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 35px rgba(0, 102, 204, 0.12);
}

.trackit-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}


/* PI Academy Section */
.academy-section {
    padding: 60px 20px;
    background: var(--light-gray);
}

.academy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.academy-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.academy-content p {
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 1.05rem;
    line-height: 1.8;
}


/* Mobile Responsive */
@media (max-width: 768px) {

    .trackit-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .trackit-content {
        max-width: 100%;
        text-align: center;
    }

    .trackit-content h2 {
        font-size: 2.2rem;
    }

    .trackit-content h3 {
        font-size: 1.25rem;
    }

    .trackit-image {
        padding: 12px;
    }

    .academy-section {
        padding: 50px 20px;
    }

    .academy-content h2 {
        font-size: 2rem;
    }
}/* =====================================================
   MODERN PHARMAINSIGHT ANALYTICS FOOTER
   ===================================================== */

.footer {
    background: #17212b;
    color: var(--white);
    padding: 75px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.4fr 1fr;
    gap: 55px;
    margin-bottom: 55px;
}

/* Company column */
.footer-col:first-child {
    max-width: 390px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-logo img.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
}

.footer-logo .analytics-text {
    font-size: 1.15rem;
    color: #5cc8ff;
    letter-spacing: 1px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Footer headings */
.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 22px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--secondary-green)
    );
    margin-top: 9px;
}

/* Footer links */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--white);
    transform: translateX(4px);
}

/* Contact */
.footer-col .contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.footer-col .contact-info li i {
    width: 17px;
    min-width: 17px;
    color: #5cc8ff;
    margin-top: 3px;
}

/* Social icons */
.footer .social-links {
    display: flex;
    gap: 10px;
}

.footer .social-links a {
    width: 38px;
    height: 38px;
    margin-right: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.25s ease;
}

.footer .social-links a:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* Bottom bar */
.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--white);
}


/* =====================================================
   FOOTER RESPONSIVE
   ===================================================== */

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-col:first-child {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 55px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-col:first-child {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        gap: 18px;
    }
}