 :root {
            /* Brand Colors */
            --primary: #D40055; /* P3 Magenta/Pink */
            --secondary: #00A651; /* Vibrant Green */
            --blue-accent: #009FE3; /* Cyan/Blue often used in P3 date blocks */
            --dark: #1a1a1a;
            --text: #4a4a4a;
            --light-bg: #f3f4f6;
            --white: #ffffff;
            --gradient-pink: linear-gradient(135deg, #D40055 0%, #ff4081 100%);
            --gradient-green: linear-gradient(135deg, #00A651 0%, #00e676 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            background-color: var(--light-bg);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            color: #fff;
            font-weight: 700;
        }

        /* --- Animations --- */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animate-up {
            animation: fadeIn 0.8s ease-out forwards;
        }

        /* --- HEADER SECTION (UPDATED) --- */
        header {
            background: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            padding: 20px 0;
        }

        .container {
            width: 95%;
            max-width: 1300px;
            margin: 0 auto;
        }

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

        /* 1. Logo */
        .logo img {
            height: 110px;
            display: block;
        }

        /* 2. Middle Section: Date & Venue */
        .header-center {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start; /* Align text to left relative to center block */
        }

        .date-row {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 4px;
        }

        /* The Date Squares [10][11][12] */
        .d-sq {
            color: white;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            font-size: 1.4rem;
        }

        .bg-pink { background-color: var(--primary); }
        .bg-blue { background-color: var(--blue-accent); }
        .bg-green { background-color: var(--secondary); }

        .month-text {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--dark);
            margin-left: 8px;
            text-transform: capitalize;
        }

        .venue-text {
            font-size: 0.85rem;
            font-weight: 600;
            color: #555;
            white-space: nowrap;
        }

        /* 3. Right Section: Buttons */
        .header-buttons {
            display: flex;
            gap: 10px;
        }

        .btn-header {
            padding: 14px 20px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 0.85rem;
            border-radius: 4px;
            text-transform: uppercase;
            transition: transform 0.2s ease;
        }

        .btn-header:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .btn-green-solid { background-color: var(--secondary); }
        .btn-pink-solid { background-color: var(--primary); }

        /* Mobile Header Adjustments */
        @media (max-width: 992px) {
            .nav-wrapper { flex-direction: column; text-align: center; }
            .header-center { align-items: center; margin: 10px 0; }
            .venue-text { white-space: normal; }
        }

        /* --- HERO SECTION (PREMIUM) --- */
        .hero {
            position: relative;
            height: 80vh;
            min-height: 550px;
            background: url('https://img.tradeindia.com/new_website1/tradeshowslandingpage/plastic-packaging-printing/2026/bg.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            padding-left:8%;
        }

        .badge-pill {
            background: var(--secondary);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 20px;
            text-transform: uppercase;
            font-weight: 900;
        }

        .hero h1 span {
            color: transparent;
            -webkit-text-stroke: 1px white;
        }
        
        .hero h1 .highlight {
            color: var(--primary); /* Solid Pink */
             -webkit-text-stroke: 0;
        }

        /* --- INTRO SECTION --- */
        .intro {
            padding: 80px 0;
            background: white;
        }

        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .intro-img img {
            width: 100%;
            border-radius: 20px;
       
        }

        .intro-text h2 {
            font-size: 3rem;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .location-highlight {
            border-left: 5px solid var(--primary);
            padding-left: 20px;
            margin: 30px 0;
        }

        .location-highlight h4 {
            color: var(--dark);
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        /* --- COUNTDOWN SECTION --- */
        .countdown-section {
            background: var(--primary); 
            background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
            padding: 70px 0;
            text-align: center;
            color: white;
        }

        .timer-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .time-card {
            background: white;
            color: var(--dark);
            width: 140px;
            height: 140px;
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s;
        }

        .time-card:hover { transform: translateY(-10px); }

        .time-num {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1;
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
        }

        .time-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            font-weight: 600;
            color: #888;
            margin-top: 5px;
        }

        .countdown-footer h3 {
            font-size: 2.2rem;
            color: white;
            margin-bottom: 10px;
        }

        /* --- EXHIBITOR PROFILES --- */
        .profiles {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .section-heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-heading h2 {
            font-size: 3rem;
            text-transform: uppercase;
            margin-bottom: 10px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .profile-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            align-items: start;
        }

        /* Card Styling */
        .p-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.06);
            display: flex;
            flex-direction: column;
            height: 600px;
        }

        .p-card-header {
            padding: 25px;
            text-align: center;
            color: white;
        }

        .p-card.plastic .p-card-header { background: linear-gradient(135deg, #FF9966 0%, #FF5E62 100%); }
        .p-card.packaging .p-card-header { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
        .p-card.printing .p-card-header { background: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%); }

        .p-card-header h3 {
            color: white;
            font-size: 1.8rem;
            letter-spacing: 1px;
        }

        .p-card-body {
            padding: 0 25px 25px 25px;
            overflow-y: auto;
            flex-grow: 1;
        }

        /* Custom Scrollbar */
        .p-card-body::-webkit-scrollbar { width: 6px; }
        .p-card-body::-webkit-scrollbar-track { background: #f1f1f1; }
        .p-card-body::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

        .list-group-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
            margin: 20px 0 10px 0;
            padding-bottom: 5px;
            border-bottom: 2px solid #eee;
            position: sticky;
            top: 0;
            background: white;
            z-index: 2;
        }

        .p-list { list-style: none; }
        .p-list li {
            padding: 8px 0;
            border-bottom: 1px solid #f5f5f5;
            font-size: 0.9rem;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: #555;
        }
        .p-list li i {
            color: var(--secondary);
            margin-top: 4px;
            font-size: 0.8rem;
        }

        /* --- Footer --- */
        footer {
            background: #111;
            color: #888;
            text-align: center;
            padding: 40px 0;
   
        }

        /* Mobile adjustments */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .timer-grid { gap: 15px; }
            .time-card { width: 80px; height: 80px; }
            .time-num { font-size: 1.8rem; }
            .time-label { font-size: 0.6rem; }
            .intro-grid { grid-template-columns: 1fr; }
        }




          #footer-outer {
    background-color: #202226;
    padding: 40px 20px;
    text-align: center;
  }

  .cta-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .cta-button {
    background-color: var(--primary);
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
  }

  .cta-button:hover {
    background-color: #ff3b5f;
    transform: translateY(-3px);
  }

  @media (min-width: 600px) {
    .cta-container {
      flex-direction: row;
    }
  }
