﻿   
        /* General Reset and Base Styles */
        :root {
            --primary-color: #000;
            --secondary-color: #333;
            --accent-color: #F86A19; /* #F86A19 NEW ORANGE COLOR #E55B00 */
            --bg-color: #fff;
            --light-bg: #E2E2E2; /* #f7f7f7 NEW GRID BG COLOR E2,E2,E2 */
            --font-stack: 'Arial', sans-serif;
        }

        body {
            font-family: var(--font-stack);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: var(--light-bg);
            color: var(--secondary-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        a {
            color: var(--accent-color);
            text-decoration: none;
        }

        /* Header Styles (Fixed Region) */
        .header {
            background-color: var(--primary-color);
            color: var(--bg-color);
            padding: 15px 0;
            text-align: center;
        }

        .header h1 {
            margin: 0;
            font-size: 2em;
        }

        .tagline {
            font-size: 0.9em;
            opacity: 0.8;
            margin-top: 2px;
        }

/* Navigation Styles (Fixed Region) - REVISED for Compact Mobile Menu */
        .nav {
            background-color: var(--secondary-color);
            padding: 5px 0; /* Reduced padding for compact look */
            text-align: center;
        }

        .nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: row; /* CHANGE: Set to row */
            flex-wrap: wrap; /* NEW: Allows items to wrap onto multiple lines */
            justify-content: center; /* Centers the links */
        }

        .nav ul li {
            /* CHANGE: Reduce vertical padding, add small horizontal margin */
            padding: 5px 5px; 
            box-sizing: border-box; /* Ensures padding is included in the width */
        }

        .nav ul li a {
            color: var(--bg-color);
            /* CHANGE: Reduce padding for a tighter fit */
            padding: 8px 10px; 
            display: block;
            text-transform: uppercase;
            font-size: 0.9em; /* Optional: slightly smaller font to fit more */
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .nav ul li a:hover {
            background-color: #444;
        }

        /* The Media Query for 768px+ does NOT need to be changed,
           as the new mobile settings now mirror the desktop layout
           but with the added flexibility of wrapping. */
        /* Main Content Styles (Editable Region) */
        .main-content {
            padding: 20px 0;  /* Content top padding was 40 */
            background-color: var(--bg-color);
            min-height: 500px; /* Ensures content area is visible */
        }

        /* Responsive Grid for Homepage Blocks (This is the specific style for your 'index' page content) */
        .content-grid {
            display: grid;
            /* Default: 1 column on small screens */
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
            gap: 20px;
            margin-top: 30px;
        }

        .grid-block {
		background-color: var(--light-bg);
		border: 1px solid #ddd;
		padding: 20px;
		text-align: center;
		border-radius: 5px;
		transition: transform 0.3s;
	}

        .grid-block:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .grid-block img {
            max-width: 100%;
            height: auto;
            margin-bottom: 10px;
        }

        .grid-block h3 {
            margin-top: 0;
            color: var(--accent-color);
        }

        /* Footer Styles (Fixed Region) */
.hr-Line-80 {
	width: 80%;
}
        .footer {
            background-color: var(--primary-color);
            color: var(--bg-color);
            text-align: center;
            padding: 20px 0;
            font-size: 0.85em;
        }
        
        /* Media Query for Tablet and Desktop (Tablet 768px+) */
        @media (min-width: 768px) {
            .nav ul {
                flex-direction: row; /* Horizontal layout on wider screens */
                justify-content: center;
            }
            .nav ul li {
                padding: 0 5px;
            }
            /* Grid expands to 3 columns on larger screens */
            .content-grid {
                grid-template-columns: repeat(3, 1fr); 
            }
        }
    .CenterThis {
		padding: 5px;
		right: auto;
		left: auto;
		margin-right: auto;
		margin-left: auto;
		width: auto;
		text-align: center;
		border-style: solid;
		border-width: 0px;
		border-color: #000000;
	}
    .GridTextLower {
		color: #000000;
	}
   
/* Video in page class start */

.VideoContainer {
    /* 1. Sets the positioning context */
    position: relative;
    /* 2. Creates the vertical space based on 16:9 ratio (9/16 = 56.25%) */
    padding-bottom: 48%; /* 56.25% to start */
    padding-top: 0;
    height: 0;
    overflow: hidden;
    margin: 20px auto; /* Centers the video block and adds vertical margin */
    max-width: 800px; /* Optional: Limits the video size on very wide screens for aesthetics */
}

.VideoContainer iframe {
    /* 3. Forces the iframe to absolutely fill the container's space */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video in page class end */


/* Responsive Video Wrapper */
.video-responsive {
    position: relative;
    padding-bottom: 48%; /* 16:9 aspect ratio (9 / 16 = 0.5625) was 56.25% */
    padding-top: 0;         /* Removed the 25px top padding for better vertical fit */
    height: 0;
    overflow: hidden;
    margin: 20px auto;      /* Center the video block and add margin */
    max-width: 800px;       /* Optional: limits the desktop width of the video for aesthetics */
}

.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* By applying this wrapper, the video will automatically size down to 100% of the screen width 
on a mobile device while perfectly maintaining its 16:9 aspect ratio, solving the problem of it being "too big.

<div class="video-responsive">
    <iframe 
        width="560" 
        height="315" 
        src="[YOUR_VIDEO_URL_HERE]" 
        frameborder="0" 
        allowfullscreen>
    </iframe>
</div>

*/


/* --- Client List Grid Formatting --- */

.client-list-container {
    padding: 20px 0; /* Add some vertical spacing */
}

.client-grid {
    /* Remove default list styling */
    list-style: none; 
    padding: 0;
    margin: 0;

    /* Enable CSS Grid */
    display: grid;
    /* Default: 4 equal columns for desktop */
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px 10px; /* Vertical and horizontal spacing between items */
    text-align: center; /* Center the text within each cell */
}

.client-grid li {
    /* Style for each client name */
    font-size: 1em;
    font-weight: 500;
    padding: 8px 5px;
    border-bottom: 1px solid #eee;
    color: var(--secondary-color); /* Use a less dominant color for names */
    transition: color 0.2s;
}

.client-grid li:hover {
    color: var(--accent-color); /* Highlight on hover for interaction */
}
/* Area for lower page links */
.highlightBox {
	border: 2px solid #FF7954;
	background-color: #E2E2E2;
	border-radius: 10px;
	padding: 5px;
	box-shadow: 4px 4px 10px #C0C0C0;
	position: relative;
	max-width: 900px;
	width: auto;
	height: auto;
	margin: 5px auto 30px auto;
	font-weight: bold;
	color: #333333;
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
	text-align: center;
	vertical-align: middle;
	font-size: 1.3em;
	font-family: Arial, Helvetica, sans-serif;
}

/* --- UNIVERSAL VIDEO SYSTEM ADD THIS TO .net and DANRR--- */

/* Base wrapper for all videos to handle centering and shadows */
.ccp-video-box {
    margin: 25px auto;
    background-color: #000;
    border: 3px solid var(--accent-color); /* Your orange brand color */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* HORIZONTAL (16:9) - Use for standard TV style ads */
.ccp-horizontal {
    max-width: 850px; /* Limits desktop width */
    width: 100%;
}

.ccp-horizontal video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9; /* Ensures no black bars */
    object-fit: cover;
}

/* VERTICAL (9:16) - Use for the 6-Pack Social Media ads */
.ccp-vertical {
    max-width: 320px; /* Keeps it phone-shaped on desktop */
    width: 100%;
}

.ccp-vertical video {
    width: 100%;
    display: block;
    aspect-ratio: 9 / 16; /* Forces vertical shape */
    object-fit: cover;
}

/* Caption area for both styles */
.ccp-video-info {
    padding: 15px;
    background-color: #fff;
    text-align: center;
    border-top: 1px solid #eee;
}

.ccp-video-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1em;
}

/* --- 6-PACK VIDEO GRID --- */
.ccp-grid-container {
    display: grid;
    /* Creates 3 equal columns on desktop */
  /*   grid-template-columns: repeat(3, 1fr); changed to 2 */
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px 0;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- ORANGE CALL TO ACTION BUTTON --- */
.ccp-cta-button {
    background-color: var(--accent-color);
    color: #fff !important; /* Forces white text */
    padding: 18px 35px;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 91, 0, 0.3); /* Soft orange glow */
    border: none;
    cursor: pointer;
}

.ccp-cta-button:hover {
    background-color: #000; /* Turns black on hover */
    color: var(--accent-color) !important; /* Text turns orange */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}


.responsive-max-qr-code-img {
    /* 1. Responsiveness & Max Size Control */
    max-width: 450px; /* Sets the absolute limit—the image will never exceed 482px wide */
    width: 100%;     /* Ensures the image uses 100% of its container (up to 482px) */
    height: auto;    /* This is the key: maintains the aspect ratio (482:243) */
    
    /* 2. Centering */
    display: block;  /* Changes the image from inline to a block element */
    margin: 0 auto;  /* Centers the block element horizontally */
}
.highlight-1 {
	font-weight: bold;
	text-decoration: underline;
	font-size: 1.2em;
}




/* Tablet Layout (2 columns) */
@media (max-width: 900px) {
    .ccp-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Layout (1 column) */
@media (max-width: 600px) {
    .ccp-grid-container {
        grid-template-columns: 1fr;
    }
    
    /* Center the video boxes on mobile */
    .ccp-video-box.ccp-vertical {
        max-width: 300px; 
    }
}

/* --- Media Queries for Responsiveness --- */

/* Tablet / Medium Screens (e.g., 900px wide and below) */
@media (max-width: 900px) {
    .client-grid {
        /* Change to 3 columns */
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile / Small Screens (e.g., 600px wide and below) */
@media (max-width: 600px) {
    .client-grid {
        /* Change to 2 columns */
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 5px;
    }
}

/* Extra Small Screens (e.g., 400px wide and below) */
@media (max-width: 400px) {
    .client-grid {
        /* Change to 1 column for stacking on very small devices */
        grid-template-columns: 1fr;
    }
}
.ccp-horizontal900w {
	border-radius: 4px;
	box-shadow: 3px 3px 3px 3px #CCCCCC;
	max-width: 850px; /* Limits desktop width */;
	width: 100%;
}
