:root {
	--orange: #fca311;
	--dark-blue: #14213D;
	--light-blue: #007ce0;
	--black: #000;
	--white: #fff;
	--grey: #e5e5e5;
}

:root {
    --primary: #007ce0;
    --primary-dark: #005bb5;
    --secondary: #14213D;
    --accent: #FCA311;
    --accent-dark: #e6920f;
    --black: #000000;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --dark-bg: #0f0f0f;
    --dark-card: #1a1a1a;
    --dark-border: #2a2a2a;
    --dark-text: #e4e4e7;
    --dark-text-secondary: #a1a1aa;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

#home {
	/* display: block;
	padding-top: 0;
	margin-top: 10px; */
	transform: translateY(-7rem);
	/* position: relative;
    z-index: 2; */
}

.closed-btn {cursor: not-allowed;}

#main-header {
    background: linear-gradient(135deg, rgba(20, 33, 61, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%), 
                url("https://lh3.googleusercontent.com/p/AF1QipMbhbD3KtQ-XZ9ZVAfIGOWHcHXDb0oJ9rHS6AFy=s1360-w1360-h1020") center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.hero-left, .hero-right {
    padding: 30px;
}

.hero-left {
    border-right: 3px solid var(--accent);
    text-align: right;
}

.hero-right {
    border-left: 3px solid var(--accent);
    text-align: left;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.hero-date {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-logo {
    width: clamp(150px, 20vw, 250px);
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(252, 163, 17, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.cta-button {
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b35 100%);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(252, 163, 17, 0.4);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(252, 163, 17, 0.6);
    color: var(--white);
}

/* ✅ Responsive Fixes */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .hero-left, .hero-right {
        border: none;
        text-align: center;
        padding: 15px;
    }

    .hero-logo {
        width: clamp(120px, 30vw, 200px);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-date {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        gap: 15px;
    }
}

:root {
	--yellow: #ff9d00;
}

.countdown-timer {
  color: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 20px;
}
.countdown-timer h2 {
  color: #fca311;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #fca31188;
  letter-spacing: 1px;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.circle {
  position: relative;
  width: 120px;
  height: 120px;
}
.circle svg {
  width: 120px;
  height: 120px;
}
.circle circle {
  fill: none;
  stroke-width: 8;
  r: 50;
  cx: 60;
  cy: 60;
}
.bg {
  stroke: #444;
}
.progress {
  stroke: #fca311;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 1s linear;
  transform: rotate(-90deg);
  transform-origin: center;
  filter: drop-shadow(0 0 6px #fca311aa);
}

.circle text {
  fill: #2196f3;
  font-size: 2rem;
  dominant-baseline: middle;
  text-anchor: middle;
}
.label {
  margin-top: 10px;
  font-size: 1rem;
}

.app-status {
	background: rgba(20, 33, 61, 0.3) !important;
    display: flex;
    flex-direction: column !important; 
    align-items: center;     
    justify-content: center; 
    text-align: center;
    gap: 2rem;              
    padding: 2rem;
	width: 100%;
	border-radius: 20px;
	margin: 0 auto 2rem;
	max-width: 75rem;
	box-shadow: 0 10px 30px rgba(252, 163, 17, 0.2);
	/* transform: translateY(0); */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-status:hover {
	transform: translateY(-5px) !important;
	box-shadow: none !important;
}

.home-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	width: 100%;
	max-width: 75rem;
	padding: 2rem;
}

#hcon {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
	z-index: 100;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	width: 100%;
	padding: 2rem;
	color: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s ease;
	position: relative;
	gap: 2rem;
	flex-direction: row; 
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.5s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Only reverse the second card */
.card.c2 {
	flex-direction: row-reverse;
}

.card:hover {
	transform: translateY(-5px) !important;
	box-shadow: 0 7px 13px rgba(252, 163, 17, 0.3);
}

.card.c2:hover {
	box-shadow: 0 7px 13px rgba(0, 124, 224, 0.3);
}

.card-image {
	flex: 1;
	max-width: 400px;
}

.card-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	transition: transform 0.4s ease;
}

.card:hover .card-image img {
	transform: scale(1.05);
}

.card-content {
	flex: 2;
	padding: 1.5rem;
}

.card-content h2 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	position: relative;
	display: inline-block;
}

.card-content h2:after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 3px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s ease;
}

.card:hover .card-content h2:after {
	transform: scaleX(1);
	transform-origin: left;
}

.card-content p {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #e5e5e5;
}

/* Alternate card layout */
.card:nth-child(even) {
	flex-direction: row-reverse;
}

/* Responsive Layout */
@media (max-width: 768px) {
	.card,
	.card.c2 {
		flex-direction: column;
		text-align: center;
	}

	.card-image {
		max-width: 100%;
	}

	.card-content h2:after {
		left: 50%;
		transform: translateX(-50%) scaleX(0);
	}

	.card:hover .card-content h2:after {
		transform: translateX(-50%) scaleX(1);
	}

	.app-status {
		padding: 2rem 1rem;
	}
}

p.subtitle {
	font-family: 'Arimo', sans-serif;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: #db9304;
	font-size: medium;
	text-decoration: none !important;
}

.animated-img {
	width: 100%;
	max-width: 600px;
	margin: 20px auto;
	display: block;
	animation: fadeIn 3s ease-in-out;
    border-radius: 10px;
}

.animated-img:hover {
    transform: scale(1.1);
    box-shadow: 4px 4px 4px 4px rgb(0, 0, 0,0.5);
}


@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
	.text {font-size: 11px}
}

.continue-application {
	--color: #fff;
	--background: #404660;
	--background-hover: #3A4059;
	--background-left: #2B3044;
	--folder: #F3E9CB;
	--folder-inner: #BEB393;
	--paper: #FFFFFF;
	--paper-lines: #BBC1E1;
	--paper-behind: #E1E6F9;
	--pencil-cap: #fff;
	--pencil-top: #275EFE;
	--pencil-middle: #fff;
	--pencil-bottom: #5C86FF;
	--shadow: rgba(13, 15, 25, .2);
	border: none;
	outline: none;
	cursor: pointer;
	position: relative;
	text-align: center;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 500;
	line-height: 19px;
	-webkit-tap-highlight-color: transparent;
	padding: 17px 29px 17px 69px;
	transition: background 0.3s;
	color: var(--color);
	background: var(--bg, var(--background));
}

.continue-application > div {
	top: 0;
	left: 0;
	bottom: 0;
	width: 53px;
	position: absolute;
	overflow: hidden;
	border-radius: 5px 0 0 5px;
	background: var(--background-left);
}

.continue-application > div .folder {
	width: 23px;
	height: 27px;
	position: absolute;
	left: 15px;
	top: 13px;
}

.continue-application > div .folder .top {
	left: 0;
	top: 0;
	z-index: 2;
	position: absolute;
	transform: translateX(var(--fx, 0));
	transition: transform 0.4s ease var(--fd, 0.3s);
}

.continue-application > div .folder .top svg {
	width: 24px;
	height: 27px;
	display: block;
	fill: var(--folder);
	transform-origin: 0 50%;
	transition: transform 0.3s ease var(--fds, 0.45s);
	transform: perspective(120px) rotateY(var(--fr, 0deg));
}

.continue-application > div .folder:before, .continue-application > div .folder:after,
.continue-application > div .folder .paper {
	content: "";
	position: absolute;
	left: var(--l, 0);
	top: var(--t, 0);
	width: var(--w, 100%);
	height: var(--h, 100%);
	border-radius: 1px;
	background: var(--b, var(--folder-inner));
}

.continue-application > div .folder:before {
	box-shadow: 0 1.5px 3px var(--shadow), 0 2.5px 5px var(--shadow), 0 3.5px 7px var(--shadow);
	transform: translateX(var(--fx, 0));
	transition: transform 0.4s ease var(--fd, 0.3s);
}

.continue-application > div .folder:after,
.continue-application > div .folder .paper {
	--l: 1px;
	--t: 1px;
	--w: 21px;
	--h: 25px;
	--b: var(--paper-behind);
}

.continue-application > div .folder:after {
	transform: translate(var(--pbx, 0), var(--pby, 0));
	transition: transform 0.4s ease var(--pbd, 0s);
}

.continue-application > div .folder .paper {
	z-index: 1;
	--b: var(--paper);
}

.continue-application > div .folder .paper:before, .continue-application > div .folder .paper:after {
	content: "";
	width: var(--wp, 14px);
	height: 2px;
	border-radius: 1px;
	transform: scaleY(0.5);
	left: 3px;
	top: var(--tp, 3px);
	position: absolute;
	background: var(--paper-lines);
	box-shadow: 0 12px 0 0 var(--paper-lines), 0 24px 0 0 var(--paper-lines);
}

.continue-application > div .folder .paper:after {
	--tp: 6px;
	--wp: 10px;
}

.continue-application > div .pencil {
	height: 2px;
	width: 3px;
	border-radius: 1px 1px 0 0;
	top: 8px;
	left: 105%;
	position: absolute;
	z-index: 3;
	transform-origin: 50% 19px;
	background: var(--pencil-cap);
	transform: translateX(var(--pex, 0)) rotate(35deg);
	transition: transform 0.4s ease var(--pbd, 0s);
}

.continue-application > div .pencil:before, .continue-application > div .pencil:after {
	content: "";
	position: absolute;
	display: block;
	background: var(--b, linear-gradient(var(--pencil-top) 55%, var(--pencil-middle) 55.1%, var(--pencil-middle) 60%, var(--pencil-bottom) 60.1%));
	width: var(--w, 5px);
	height: var(--h, 20px);
	border-radius: var(--br, 2px 2px 0 0);
	top: var(--t, 2px);
	left: var(--l, -1px);
}

.continue-application > div .pencil:before {
	-webkit-clip-path: polygon(0 5%, 5px 5%, 5px 17px, 50% 20px, 0 17px);
	clip-path: polygon(0 5%, 5px 5%, 5px 17px, 50% 20px, 0 17px);
}

.continue-application > div .pencil:after {
	--b: none;
	--w: 3px;
	--h: 6px;
	--br: 0 2px 1px 0;
	--t: 3px;
	--l: 3px;
	border-top: 1px solid var(--pencil-top);
	border-right: 1px solid var(--pencil-top);
}

.continue-application:before, .continue-application:after {
	content: "";
	position: absolute;
	width: 10px;
	height: 2px;
	border-radius: 1px;
	background: var(--color);
	transform-origin: 9px 1px;
	transform: translateX(var(--cx, 0)) scale(0.5) rotate(var(--r, -45deg));
	top: 26px;
	right: 16px;
	transition: transform 0.3s;
}

.continue-application:after {
	--r: 45deg;
}

.continue-application:hover {
	--cx: 2px;
	--bg: var(--background-hover);
	--fx: -40px;
	--fr: -60deg;
	--fd: .15s;
	--fds: 0s;
	--pbx: 3px;
	--pby: -3px;
	--pbd: .15s;
	--pex: -24px;
}

/* Secretary General Message - Enhanced */
.sg-section {
    padding: 100px 0;
    position: relative;
}

.sg-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.sg-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    height: 100%; 
}

.sg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 124, 224, 0.102) 0%, rgba(0, 124, 224, 0.1) 100%);
    z-index: -1;
}

.sg-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.sg-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: var(--accent);
    transform: translateX(-50%);
    border-radius: 2px;
}

.sg-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.sg-signature {
    text-align: center;
}

.signature-name {
    font-family: 'Pacifico', cursive;
    font-size: 2.8rem;
    color: var(--accent);
    margin: 20px 0;
    transform: rotate(-2deg);
}

.signature-title {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Enhanced FAQ Section */
.faq-section {
    padding: 100px 0;
    background: rgba(20, 33, 61, 0.2);
    margin: 10px 20px;
    border-radius: 30px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--accent);
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 100px;
    height: 4px;
    background: var(--accent);
    transform: translateX(-50%);
    border-radius: 2px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 10px rgba(0, 124, 224, 0.2);
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 25px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--background-hover);
    color: var(--accent);
}

.faq-question .icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}