 :root {
            /* Brand Colors */
            --primary: #115a74; /* P3 Magenta/Pink */
            --secondary: #ee3d37; /* 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/fantechexpo/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;
    }
  }



        /* --- Main Hero Section --- */
        .hero-section {
            position: relative;
            width: 100%;
            height: 90vh; /* Full viewport height */
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: radial-gradient(circle at 70% 50%, #0253a3 0%, #0f1114 70%);
            overflow: hidden;
            font-family: 'Montserrat', 'Segoe UI', sans-serif; /* Modern, clean font */
        }

        /* --- Grid Texture Overlay --- */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 1;
            pointer-events: none;
        }

        /* --- Content Side (Left) --- */
        .content-wrapper {
            position: relative;
            z-index: 10;
            width: 50%;
            padding-left: 8%;
            padding-right: 20px;
        }

        .date-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 8px 16px;
            border-radius: 4px;
            color: #ee3d37;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 20px;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        h1 {
            font-size: 5rem;
            line-height: 1;
            font-weight: 900;
            margin-bottom: 20px;
            text-transform: uppercase;
            background: linear-gradient(to right, #ffffff, #999999);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        h1 span {
            color: #ee3d37; /* Red accent */
            -webkit-text-fill-color: #ee3d37;
        }

        p.tagline {
            font-size: 1.5rem;
            color: #ccc;
            margin-bottom: 40px;
            font-weight: 300;
            border-left: 4px solid #ee3d37;
            padding-left: 20px;
        }

        /* CTA Buttons */
        .btn-group {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .cta-button {
            background-color: #ee3d37;
            color: white;
            padding: 18px 45px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 5px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(238, 61, 55, 0.3);
            border: 2px solid #ee3d37;
        }

        .cta-button:hover {
            background-color: transparent;
            color: #ee3d37;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(238, 61, 55, 0.5);
        }

        .secondary-link {
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .secondary-link:hover {
            opacity: 1;
            text-decoration: underline;
        }

        /* --- Fan Visual Side (Right) --- */
        .visual-wrapper {
            position: absolute;
            right: 5%; /* Partial overlap */
            top: 50%;
            transform: translateY(-50%);
            width: 50%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        /* Fan Construction */
        #fan-unit {
            position: relative;
            width: 800px;
            height: 800px;
            /* Will be rotated by JS */
            opacity: 0.25; /* Subtle background element */
        }

        .fan-blade {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100px;
            height: 380px;
            background: linear-gradient(to right, #acabab, #4d4c4c);
            border: 1px solid #555;
            transform-origin: center top;
            border-radius: 50% 50% 10px 10px;
            box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
        }

        /* Metallic shine on blade */
        .fan-blade::after {
            content: '';
            position: absolute;
            top: 10%;
            left: 20%;
            width: 20%;
            height: 60%;
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
        }

        .fan-hub {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 140px;
            height: 140px;
            background: radial-gradient(circle at 30% 30%, #555, #000);
            border-radius: 50%;
            z-index: 5;
            box-shadow: 0 0 50px rgba(0,0,0,0.8);
            border: 2px solid #333;
        }
        
        .fan-hub::before {
             content: '';
             position: absolute;
             top: 50%; left: 50%;
             transform: translate(-50%, -50%);
             color: rgba(255,255,255,0.1);
             font-weight: bold;
             font-size: 1.5rem;
        }

        /* --- Responsive Design --- */
        @media (max-width: 900px) {
            .hero-section {
                flex-direction: column;
                justify-content: center;
                text-align: center;
            }

            .content-wrapper {
                width: 100%;
                padding: 20px;
            }
            
            p.tagline {
                border-left: none;
                border-bottom: 3px solid #ee3d37;
                padding-bottom: 10px;
                padding-left: 0;
                display: inline-block;
            }

            h1 { font-size: 3rem; }

            .visual-wrapper {
                width: 100%;
                right: auto;
                left: 0;
                top: 0;
                opacity: 0.15; /* Even fainter on mobile */
                pointer-events: none;
            }

            #fan-unit {
                width: 500px;
                height: 500px;
            }
            
            .fan-blade {
                width: 60px;
                height: 240px;
            }

            .btn-group {
                justify-content: center;
                flex-direction: column;
            }
        }




        
    /* --- Section Styling --- */
    .section-padding {
        padding: 80px 20px;
    }

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

    /* --- Title Styling --- */
    .sec-title {
        text-align: center;
        margin-bottom: 50px;
    }

    .sec-title h2 {
        font-size: 32px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #222;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

    /* Gold Underline */
    .sec-title h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #c5a059, transparent);
    }

    /* --- Grid Layout --- */
    .profile-grid {
        display: grid;
        /* Responsive columns: roughly 250px wide each */
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 30px;
    }

    /* --- Card Design --- */
    .profile-item {
        background: #fff;
        border: 1px solid #eaeaea;
        border-radius: 8px; /* Slight rounding */
        overflow: hidden; /* Keeps image inside border */
        transition: all 0.4s ease;
        position: relative;
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    }

    /* Hover State for Card */
    .profile-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: #c5a059; /* Gold border on hover */
    }

    /* --- Square Full Width Image Box --- */
    .img-box {
        width: 100%;
        padding-top: 80%; /* This creates a 1:1 Aspect Ratio (Perfect Square) */
        position: relative;
        background-color: #f4f4f4; /* Light gray background for contrast */
        border-bottom: 1px solid #eee;
        overflow: hidden;
    }

    /* The Image Itself */
    .img-box img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* 'contain' ensures the whole icon is seen. 
           'cover' would crop it if dimensions don't match. 
           Since these are icons, 'padding' adds breathing room. */
        object-fit: contain; 
        padding: 0px; 
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Image Zoom on Hover */
    .profile-item:hover .img-box img {
        transform: scale(1.15);
    }

    /* --- Text Box --- */
    .text-box {
        padding: 20px 15px;
        text-align: center;
        background: #fff;
    }

    .choose-title {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: color 0.3s ease;
    }

    /* Text Color Change on Hover */
    .profile-item:hover .choose-title {
        color: #c5a059;
    }

    /* --- Responsive Fixes --- */
    @media (max-width: 600px) {
        .profile-grid {
            grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
            gap: 15px;
        }
        .sec-title h2 {
            font-size: 24px;
        }
        .img-box img {
            padding: 20px; /* Less padding on small screens so icon is bigger */
        }
        .choose-title {
            font-size: 14px;
        }
    }