* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    margin: auto;
}

.header {
    background: #0088cc;
    padding: 15px 0;
    color: #fff;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.btn {
    background: #ff6600;
    padding: 8px 15px;
    border-radius: 5px;
}

.hero {
    background: url('https://via.placeholder.com/1920x600') center/cover no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 50px;
}

.hero button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: #ff6600;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.hero {
    position: relative;
    background: url('images/hero.png') center center/cover no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* dark overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section {
    padding: 60px 0;
}

.light {
    background: #eaf6fb;
}

.dark {
    background: #333;
    color: white;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.dark .card {
    background: #444;
    color: white;
}

.card img {
    width: 100%;
    border-radius: 8px;
}

.video-section {
    background: #111;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.inc-footer {
    background: #f3f3f3;
    padding: 50px 0;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-about {
    width: 280px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

.footer-about h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-about p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.footer-col {
    width: 200px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ff6600;
}
.logo img {
    height: 50px;   /* Adjust this value */
    width: auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0088cc;
    padding: 15px 0;
    color: #fff;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* When scrolling */
.header.scrolled {
    background: #006699;
    padding: 8px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.in-focus {
    background: #7ec0d8;
    padding: 60px 0;
}

.in-focus h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #0b2c4a;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.focus-card {
    background: transparent;
}

.focus-card img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

.focus-card .date {
    margin-top: 15px;
    font-size: 13px;
    font-weight: bold;
    color: #1c2b39;
}

.focus-card h3 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #1c2b39;
}

@media (max-width: 992px) {
    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .focus-grid {
        grid-template-columns: 1fr;
    }
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.key-issues {
    padding: 70px 0;
    background: #f5f6f7;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #0088cc;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.issue-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.issue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* IMAGE AREA */
.issue-img {
    position: relative;
    height: 220px;
}

.issue-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blue Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 153, 0.75);
}

/* Text On Image */
.img-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
}

/* Content */
.issue-content {
    padding: 25px;
}

.issue-content h3 {
    color: #0088cc;
    margin-bottom: 15px;
    font-size: 18px;
}

.issue-content p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.arrow {
    display: inline-block;
    margin-top: 20px;
    font-size: 20px;
    color: #0088cc;
    transition: 0.3s;
}

.issue-card:hover .arrow {
    transform: translateX(5px);
}@media (max-width: 992px) {
    .issues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .issues-grid {
        grid-template-columns: 1fr;
    }
}

.history-section {
    background: #1f3a3d;
    padding: 80px 0;
    color: #fff;
}

.history-title {
    font-size: 32px;
    margin-bottom: 50px;
}

.history-slider {
    overflow: hidden;
}

.history-track {
    display: flex;
    gap: 30px;
}

/* Card */
.history-card {
    flex: 0 0 32%;
}

/* FIXED IMAGE BOX */
.history-img {
    width: 100%;
    height: 260px;          /* FIXED HEIGHT */
    overflow: hidden;
    border-radius: 15px;
}

/* IMAGE ALIGN FIX */
.history-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* VERY IMPORTANT */
    display: block;
}

/* Content */
.history-content {
    margin-top: 20px;
}

.history-content .date {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 8px;
}

.history-content h3 {
    font-size: 18px;
    font-weight: 600;
}

.history-img img {
    transition: transform 0.4s ease;
}

.history-card:hover img {
    transform: scale(1.05);
}@media (max-width: 992px) {
    .history-card {
        flex: 0 0 48%;
    }
}

@media (max-width: 600px) {
    .history-card {
        flex: 0 0 100%;
    }
}

@media(max-width: 768px){
    .footer-container{
        flex-direction: column;
    }
    .footer-col,
    .footer-about{
        width: 100%;
        margin-bottom: 30px;
    }
}

.navbar {
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
}

.logo {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: bold;
}



.menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.menu li {
    position: relative;
	list-style: none;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

.join-btn {
    background: orange;
    padding: 6px 15px;
    border-radius: 5px;
}

/* Submenu */
.submenu {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
}

.submenu li {
    padding: 8px 15px;
}

.submenu li a {
    color: #333;
    font-size: 14px;
}

.submenu li:hover {
    background: #f2f2f2;
}

body {
    background: #f4f4f4;
    font-family: Arial, sans-serif;
}

.details-section {
    max-width: 1100px;
    margin: 85px auto;
    padding: 20px;
}

.details-section h2 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
}

.details-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 40px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #0a4a6e;
    border-radius: 40px;
    outline: none;
    font-size: 14px;
    background: #fff;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #1787b8;
    box-shadow: 0 0 5px rgba(23,135,184,0.3);
}

.full-width {
    grid-column: span 2;
}

.submit-btn {
    background: #1787b8;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #0f6d95;
}