/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Header Styles */
header {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo-container {
    max-width: 550px;
    margin: 0 auto;
}

.logo-img {
    max-width: 100%;
    height: auto;
    padding: 25px;
    border-radius: 10px;
}

/* Hero Section */
.hero-section {
    position: relative;
}

/* Apply gradient background across entire hero section */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
        #272962 0%,
        #272962 25%,
        #272962 44%,
        rgba(39, 41, 98, 0.7) 60%,
        rgba(39, 41, 98, 0.4) 70%,
        rgba(39, 41, 98, 0.2) 80%,
        transparent 90%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-text-col {
    display: flex;
    align-items: center;
    padding: 60px 40px;
    position: relative;
    z-index: 3;
    min-height: 600px;
}

.hero-text-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 600px;
}

.hero-title {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
    color: white;
}

.bold-text {
    font-weight: 700;
    font-size: 2.2rem;
}

.hero-attribution {
    font-size: 1.5rem;
    margin-bottom: 30px;
    margin-top: 20px;
    color: white;
}

.hero-attribution em {
    font-style: italic;
}

.btn-custom {
    background-color: white;
    color: #272962;
    padding: 14px 40px;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-custom em {
    font-style: italic;
}

.btn-custom:hover {
   background-color: #f0f0f0;		
	color: #272962;         
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.hero-image-col {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    z-index: 1;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-text-col {
        padding: 40px 30px;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 1.3rem;
    }
    
    .bold-text {
        font-size: 1.5rem;
    }
    
    .hero-attribution {
        font-size: 1.1rem;
    }
    
    .hero-image-col {
        min-height: 400px;
    }
    
    /* Adjust gradient for tablet */
    .hero-section::before {
        background: linear-gradient(to right,
            #1e2b5f 0%,
            #2d3e7f 30%,
            #3a4d8f 45%,
            rgba(58, 77, 143, 0.7) 55%,
            rgba(58, 77, 143, 0.4) 65%,
            rgba(58, 77, 143, 0.2) 75%,
            transparent 85%
        );
    }
}

@media (max-width: 767px) {
    .hero-text-col {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.1rem;
    }
    
    .bold-text {
        font-size: 1.3rem;
        display: block;
        margin-bottom: 5px;
    }
    
    .hero-attribution {
        font-size: 1rem;
    }
    
    .btn-custom {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .hero-image-col {
        min-height: 300px;
    }
    
    /* Stack layout for mobile - vertical gradient */
    .hero-section::before {
        background: linear-gradient(to bottom,
            #1e2b5f 0%,
            #1e2b5f 40%,
            #2d3e7f 50%,
            rgba(58, 77, 143, 0.8) 65%,
            rgba(58, 77, 143, 0.5) 75%,
            rgba(58, 77, 143, 0.3) 85%,
            transparent 95%
        );
    }
}

@media (max-width: 575px) {
    .logo-container {
        max-width: 300px;
    }
    
    .logo-img {
        padding: 15px;
    }
    
    .hero-text-col {
        padding: 25px 15px;
    }
    
    .hero-title {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .bold-text {
        font-size: 1.2rem;
    }
    
    .hero-attribution {
        font-size: 0.95rem;
        margin-top: 15px;
        margin-bottom: 20px;
    }
    
    .btn-custom {
        padding: 8px 20px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .hero-image-col {
        min-height: 250px;
    }
}

/* Announcement Section */
.announcement-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
   
}

.announcement-badge-container {
    margin-bottom: 25px;
}

.announcement-badge {
    display: inline-block;
    background-color: #272962;
    color: white;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 5px;
    text-transform: uppercase;
}

.announcement-header {
    margin-bottom: 40px;
}

.announcement-time {
    font-size: 2rem;
    font-weight: 700;
    color: #272962;
    margin-bottom: 10px;
}

.announcement-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: #272962;
    margin-bottom: 5px;
}

.announcement-location {
    font-size: 1.5rem;
    font-weight: 700;
    color: #272962;
    margin-bottom: 5px;
}

.announcement-address {
    font-size: 1.5rem;
    font-weight: 700;
    color: #272962;
    margin-bottom: 0;
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #272962;
    margin-top: 30px;
    margin-bottom: 20px;
}

.agenda-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 30px;
    padding-left: 0;
}

.agenda-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.agenda-item:last-child {
    border-bottom: none;
}

.agenda-item:hover {
    padding-left: 10px;
}

.agenda-number {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background-color: #272962;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

.agenda-text {
    flex: 1;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}

.agenda-list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.agenda-list li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
}

.announcement-note {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.announcement-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.procedures-list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.procedures-list li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.6;
}

.email-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.email-link:hover {
    text-decoration: underline;
}

/* Video Section */
.video-section {
    background-color: white;
    padding: 80px 20px;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #272962;
    text-align: left;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-color: #f0f0f0;
    border: 3px solid #272962;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.video-placeholder-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(39, 41, 98, 0.3);
    transition: all 0.3s ease;
}

.video-placeholder:hover .video-play-overlay {
    background-color: rgba(39, 41, 98, 0.5);
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #272962;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    background-color: white;
}

/* Traffic Safety Section */
.traffic-safety-section {
    position: relative;
    background-color: #272962;
    display: flex;
    flex-wrap: wrap; /* Ensure that children are aligned correctly */
}

.traffic-text-col {
    display: flex;
    align-items: center;
    padding: 60px;
    position: relative;
    z-index: 2;
    min-height: 450px;
    background-color: #272962;
    flex: 1; /* Allows it to take available space */
}

.traffic-text-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 600px;
}

.traffic-title {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 400;
    color: white;
}

.traffic-bold {
    font-weight: 700;
    font-size: 1.6rem;
    display: block;
    margin-bottom: 15px;
}

.traffic-attribution {
    font-size: 1.3rem;
    margin-top: 25px;
    color: white;
    font-style: italic;
}

.traffic-image-col {
    position: relative;
    min-height: 450px;
    overflow: hidden;
    z-index: 1;
    flex: 1; /* Ensures it stretches to fill the container */
}

.traffic-image-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #272962;
    clip-path: polygon(0 0, 30% 0, 0 100%);
    z-index: 2;
    pointer-events: none; /* Ensures it's not interactive */
}

.traffic-image-placeholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.traffic-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: none !important;
}

/* Responsive for Announcement Section */
@media (max-width: 767px) {
    .announcement-section {
        padding: 40px 15px;
    }
    
    .announcement-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }
    
    .announcement-time {
        font-size: 1.5rem;
    }
    
    .announcement-date,
    .announcement-location,
    .announcement-address {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .agenda-item {
        flex-direction: row;
        gap: 15px;
        padding: 15px;
    }
    
    .agenda-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .agenda-text {
        font-size: 0.9rem;
    }
    
    .agenda-list li,
    .procedures-list li,
    .announcement-text {
        font-size: 0.9rem;
    }
}

/* Responsive for Video Section */
@media (max-width: 767px) {
    .video-section {
        padding: 50px 15px;
    }
    
    .video-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Responsive for Traffic Safety Section */
@media (max-width: 991px) {
    .traffic-text-col {
        padding: 50px 40px;
        min-height: 500px;
    }
    
    .traffic-title {
        font-size: 1.2rem;
    }
    
    .traffic-bold {
        font-size: 1.4rem;
    }
    
    .traffic-attribution {
        font-size: 1.1rem;
    }
    
    .traffic-image-col {
        min-height: 400px;
    }
    
    .traffic-image-col::before {
        width: 100%;
        clip-path: polygon(0 0, 25% 0, 0 100%);
    }
}

@media (max-width: 767px) {
    .traffic-text-col {
        padding: 40px 25px;
        min-height: auto;
    }
    
    .traffic-title {
        font-size: 1.1rem;
    }
    
    .traffic-bold {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .traffic-attribution {
        font-size: 1rem;
        margin-top: 20px;
    }
    
    .traffic-image-col {
        min-height: 300px;
    }
    
    /* Remove diagonal on mobile since columns stack */
    .traffic-image-col::before {
        display: none;
    }
}

@media (max-width: 575px) {
    .traffic-text-col {
        padding: 30px 20px;
    }
    
    .traffic-title {
        font-size: 1rem;
    }
    
    .traffic-bold {
        font-size: 1.15rem;
    }
    
    .traffic-attribution {
        font-size: 0.95rem;
    }
    
    .traffic-image-col {
        min-height: 250px;
    }
}

/* Map Section */
.map-section {
    background-color: white;
    padding: 80px 20px;
}

.map-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #272962;
    text-align: left;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #f0f0f0;
    border: 3px solid #272962;
    border-radius: 0;
    overflow: hidden;
}

.map-iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive for Map Section */
@media (max-width: 767px) {
    .map-section {
        padding: 50px 15px;
    }
    
    .map-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .map-placeholder {
        height: 400px;
        border-width: 2px;
    }
}

@media (max-width: 575px) {
    .map-title {
        font-size: 1.5rem;
    }
    
    .map-placeholder {
        height: 300px;
    }
}

/* Opportunity Section (Reversed Layout) */
.opportunity-section {
    position: relative;
    background-color: #272962;
     display: flex;
    flex-wrap: wrap; 
}

.opportunity-image-col {
    position: relative;
    min-height: 450px;
    overflow: hidden;
    z-index: 1;
    flex: 1;
}

.opportunity-image-col::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #272962;
    clip-path: polygon(100% 0, 100% 100%, 70% 0);
    z-index: 2;
 pointer-events: none;
}




.opportunity-image-placeholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}




.opportunity-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    
}

.opportunity-text-col {
    display: flex;
    align-items: center;
    padding: 60px 60px;
    position: relative;
    z-index: 2;
    min-height: 450px;
    background-color: #272962;
 flex: 1;
}

.opportunity-text-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 600px;
}

.opportunity-title {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 400;
    color: white;
}

.opportunity-bold {
    font-weight: 700;
    font-size: 1.6rem;
    display: block;
    margin-bottom: 15px;
}

.opportunity-attribution {
    font-size: 1.3rem;
    margin-top: 25px;
    color: white;
    font-style: italic;
}

/* Responsive for Opportunity Section */
@media (max-width: 991px) {
    .opportunity-text-col {
        padding: 50px 40px;
        min-height: 500px;
    }
    
    .opportunity-title {
        font-size: 1.2rem;
    }
    
    .opportunity-bold {
        font-size: 1.4rem;
    }
    
    .opportunity-attribution {
        font-size: 1.1rem;
    }
    
    .opportunity-image-col {
        min-height: 400px;
    }
    
    .opportunity-image-col::before {
        clip-path: polygon(100% 0, 100% 100%, 75% 0);
    }
}

@media (max-width: 767px) {
    .opportunity-text-col {
        padding: 40px 25px;
        min-height: auto;
    }
    
    .opportunity-title {
        font-size: 1.1rem;
    }
    
    .opportunity-bold {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .opportunity-attribution {
        font-size: 1rem;
        margin-top: 20px;
    }
    
    .opportunity-image-col {
        min-height: 300px;
    }
    
    /* Remove diagonal on mobile since columns stack */
    .opportunity-image-col::before {
        display: none;
    }
}

@media (max-width: 575px) {
    .opportunity-text-col {
        padding: 30px 20px;
    }
    
    .opportunity-title {
        font-size: 1rem;
    }
    
    .opportunity-bold {
        font-size: 1.15rem;
    }
    
    .opportunity-attribution {
        font-size: 0.95rem;
    }
    
    .opportunity-image-col {
        min-height: 250px;
    }
}


@media (min-width: 992px) {
		.blue-overlay {
			width: 58%;
			clip-path: polygon(0 0, 54% 0, 100% 100%, 0% 100%);
		}
	}
	
	/* Tablet and Mobile - full width overlay */
	@media (max-width: 991px) {
		.blue-overlay {
			width: 100%;
			clip-path: none;
		}
	}







