/* ============================================================
   ΝΟΗΣΙS+ — Custom additions (Curriculum tabs + Services cards)
   Loaded after main.css. Uses the theme brand CSS variables.
   ============================================================ */

:root {
	--nohsis-petrol: var(--theme-color, #2c7373);
	--nohsis-red: var(--theme-color-2, #e35d45);
	--nohsis-yellow: var(--ratting, #fbb438);
}

/* ---------------- Curriculum / Study Programme ---------------- */
.curriculum-section { background: #fff; }

.curriculum-wrapper {
	max-width: 860px;
	margin: 50px auto 0;
}

/* Accordion — self-contained (theme accordion CSS is scoped to .faq-wrapper). */
.curriculum-accordion {
	list-style: none;
	margin: 0;
	padding: 0;
}

.curriculum-accordion .accordion {
	background: #fff;
	border: 1px solid #e7eded;
	border-radius: 16px;
	margin-bottom: 18px;
	overflow: hidden;
	transition: box-shadow .3s ease, border-color .3s ease;
}

.curriculum-accordion .accordion.active-block {
	border-color: transparent;
	box-shadow: 0 18px 45px rgba(20, 63, 63, .10);
}

.curriculum-accordion .acc-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 28px;
	cursor: pointer;
	user-select: none;
	transition: all .3s ease;
}

.curriculum-accordion .acc-btn .grade-name {
	font-size: 19px;
	font-weight: 700;
	color: #143F3F;
	transition: color .3s ease;
}

.curriculum-accordion .acc-btn .icon {
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	border-radius: 50%;
	font-size: 17px;
	color: var(--nohsis-petrol);
	background: rgba(44, 115, 115, .1);
	transition: all .3s ease;
}

.curriculum-accordion .acc-btn.active {
	background: var(--nohsis-petrol);
}

.curriculum-accordion .acc-btn.active .grade-name { color: #fff; }

.curriculum-accordion .acc-btn.active .icon {
	color: #fff;
	background: rgba(255, 255, 255, .18);
}

.curriculum-accordion .acc-btn.active .icon:before {
	content: "\f056"; /* fa-minus-circle (far) */
}

/* Collapsed by default; main.js slideDown/Up handles the toggle. */
.curriculum-accordion .acc-content { display: none; }
.curriculum-accordion .acc-content.current { display: block; }
.curriculum-accordion .acc-content .content { padding: 6px 28px 26px; }

.curriculum-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
	border: 1px solid #eef3f3;
	border-radius: 12px;
	overflow: hidden;
}

.curriculum-caption {
	caption-side: top;
	text-align: left;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .4px;
	text-transform: uppercase;
	color: var(--nohsis-red);
	padding: 0 2px 10px;
}

.curriculum-table thead th {
	background: #f3f8f8;
	color: var(--nohsis-petrol);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .3px;
	text-transform: uppercase;
	padding: 14px 22px;
	text-align: left;
}

.curriculum-table thead th.hours-col,
.curriculum-table td.hours-col {
	text-align: center;
	width: 190px;
}

.curriculum-table tbody td {
	padding: 14px 22px;
	font-size: 16px;
	color: #143F3F;
	border-top: 1px solid #eef3f3;
}

.curriculum-table tbody tr:hover td { background: #f7fafa; }

.hours-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 50px;
	background: rgba(251, 180, 56, .18);
	color: #9a6b00;
	font-weight: 700;
	font-size: 16px;
}

@media (max-width: 575px) {
	.curriculum-accordion .acc-btn { padding: 16px 18px; }
	.curriculum-accordion .acc-btn .grade-name { font-size: 16px; }
	.curriculum-accordion .acc-content .content { padding: 4px 14px 18px; }
	.curriculum-table thead th,
	.curriculum-table tbody td { padding: 12px 14px; font-size: 14px; }
	.curriculum-table thead th.hours-col,
	.curriculum-table td.hours-col { width: 110px; }
}

/* ----------------------------- 404 page ----------------------------- */
.error-section { background: #fff; }

.error-404 {
	font-size: 160px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: 2px;
	background: linear-gradient(120deg, var(--nohsis-petrol), var(--nohsis-red));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 10px;
}

.error-content h2 { color: #143F3F; }
.error-content p { color: #6a7d7d; font-size: 17px; }

.error-search {
	position: relative;
	max-width: 460px;
	margin: 0 auto 32px;
}

.error-search input {
	width: 100%;
	height: 58px;
	border: 2px solid #e7eded;
	border-radius: 50px;
	padding: 0 60px 0 24px;
	font-size: 16px;
	outline: none;
	transition: border-color .3s ease;
}

.error-search input:focus { border-color: var(--nohsis-petrol); }

.error-search button {
	position: absolute;
	top: 50%;
	right: 6px;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 50%;
	background: var(--nohsis-petrol);
	color: #fff;
	cursor: pointer;
	transition: background .3s ease;
}

.error-search button:hover { background: var(--nohsis-red); }

.error-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

@media (max-width: 575px) {
	.error-404 { font-size: 110px; }
}

/* --------- Choose-section progress bars (editable width) --------- */
@keyframes nohsisBarLoad { from { width: 0; } to { width: var(--bar, 0%); } }
.progress-value.nohsis-bar {
	width: var(--bar, 0%);
	animation: nohsisBarLoad 2.2s normal forwards !important;
}

/* ----------------------- Services cards ----------------------- */
.service-card-item {
	height: 100%;
	background: #fff;
	border: 1px solid #e7eded;
	border-radius: 20px;
	padding: 40px 32px;
	transition: all .4s ease;
	display: flex;
	flex-direction: column;
}

.service-card-item:hover {
	border-color: transparent;
	box-shadow: 0 24px 50px rgba(20, 63, 63, .12);
	transform: translateY(-6px);
}

.service-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(44, 115, 115, .1);
	margin-bottom: 26px;
	transition: all .4s ease;
}

.service-card-item:hover .service-icon {
	background: var(--nohsis-petrol);
}

.service-icon i {
	font-size: 34px;
	color: var(--nohsis-petrol);
	transition: all .4s ease;
}

.service-card-item:hover .service-icon i {
	color: #fff;
}

.service-icon img {
	max-width: 40px;
	height: auto;
}

.service-content h3 {
	font-size: 23px;
	margin-bottom: 14px;
	color: #143F3F;
}

.service-content p {
	font-size: 16px;
	color: #6a7d7d;
	line-height: 1.7;
	margin-bottom: 24px;
}

.service-card-item .link-btn {
	margin-top: auto;
}

/* ------------------- Academic floating doodles ------------------- *
 * The childish cartoon shapes were replaced with academic icons.
 * Give them a consistent, subtle size (position/animation stay on the
 * parent .*-shape wrappers from the template).                       */
.perasute-shape > img,
.perashute-shape > img,
.car-shape > img,
.tree-shape > img,
.crown-shape > img,
.sun-shape > img,
.love-shape > img,
.tubelight-shape > img,
.butterfly-shape > img,
.coun-shape > img,
.zikzak-shape > img,
.snake-shape > img,
.flower-shape > img,
.pencil-icon > img,
.hut-shape > img,
.busket-shape > img,
.ball-shape > img,
.emoji-shape > img {
	width: 78px;
	height: auto;
	opacity: .9;
}

/* The hero parachute and breadcrumb sit a touch larger for presence. */
.hero-section .perasute-shape > img,
.breadcrumb-wrapper .perashute-shape > img,
.breadcrumb-wrapper .sun-shape > img,
.breadcrumb-wrapper .tree-shape > img {
	width: 96px;
}

/* ----------------------------- Hero video ----------------------------- */
.hero-img .hero-video {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 24px;
	object-fit: cover;
}

/* ------------------- Counters: cleaner, less "huge" ------------------- */
.counter-section .counter-box .count h2.odometer,
.counter-section .counter-box .count h3.odometer,
.counter-section .counter-box .count .plus {
	font-size: 40px;
	line-height: 1.1;
	font-weight: 700;
}
.counter-section .counter-items {
	padding: 18px 14px;
}
.counter-section .counter-box p {
	font-size: 15px;
	margin-top: 4px;
}
@media (max-width: 575px) {
	.counter-section .counter-box .count h2.odometer,
	.counter-section .counter-box .count h3.odometer,
	.counter-section .counter-box .count .plus { font-size: 32px; }
}

/* ------------------- Hero video + badge tweaks ------------------- */
/* Clean rounded video that sits above the section's bottom wave. */
.hero-1 .hero-img .hero-video {
	border-radius: 24px;
	max-height: 480px;
	object-fit: cover;
	box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
	position: relative;
	z-index: 2;
}
/* Keep the hero's bottom wave behind the video (was z-index 9911, cutting it). */
.hero-1 .line-shape { z-index: 1; }

/* "ADMISSION OPEN" badge: nudge it lower, and hide it on phones. */
.hero-1 .hero-img .text-shape { bottom: 0; left: -10%; z-index: 3; }
@media (max-width: 991px) {
	.hero-1 .hero-img .text-shape { display: none !important; }
}

/* Remove the orange backdrop blob behind the About photo. */
.about-wrapper .about-image-box .about-image .shape-bg { display: none; }

/* ------------- Course cards: equal icon sizing ------------- */
.program-box-item .program-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 96px;
	margin-bottom: 20px;
}
.program-box-item .program-icon img {
	width: auto;
	max-width: 96px;
	height: 90px;
	object-fit: contain;
}

/* --------- Alternating section backgrounds (after hero) --------- */
.about-section    { background: #ffffff; }
.program-section  { background: #eef6f4; }   /* light petrol tint */
.services-section { background: #ffffff; }
.choose-us-section{ background: #eef6f4; }

/* --------- Hero: badge sits in the left gap (off the video), space under video --------- */
.hero-1 .hero-img .text-shape {
	bottom: 6% !important;
	left: -44% !important;
	z-index: 5;
}
.hero-1 .hero-img .text-shape img { width: 205px !important; }
@media (max-width: 1399px) {
	.hero-1 .hero-img .text-shape { left: -30% !important; }
}
@media (max-width: 1199px) {
	.hero-1 .hero-img .text-shape { left: -8% !important; bottom: 2% !important; }
}
@media (max-width: 991px) {
	.hero-1 .hero-img .text-shape { display: none !important; }
}
/* keep the whole hero image/video stack above the bottom wave */
.hero-1 .hero-img { z-index: 50; }
.hero-1 .line-shape { z-index: 1 !important; }
/* more room below the header, and balanced space under the video */
.hero-section.hero-1 { padding-top: 240px; padding-bottom: 160px; }
@media (max-width: 991px) {
	/* on small screens show the video first, then the content */
	.hero-1 .hero-container > .row { flex-direction: column-reverse; }
	.hero-section.hero-1 { padding-top: 150px; padding-bottom: 80px; }
	.hero-1 .hero-content { margin-top: 34px; text-align: center; }
	.hero-1 .hero-content .hero-button { justify-content: center; }
	.hero-1 .hero-img { margin: 0 auto; }
}

/* --------- Why-Choose: clean, intentional photo collage --------- */
.choose-us-wrapper .choose-img-box {
	position: relative;
	margin: 0 auto;
	max-width: 560px;
}
.choose-us-wrapper .choose-img-box img { border-radius: 20px; display: block; }
.choose-us-wrapper .choose-img-box .style-2 {
	margin: 0 0 18px 0 !important;
	width: 100%;
	height: 250px;
	object-fit: cover;
	box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
}
.choose-us-wrapper .choose-img-box > .img-custom-anim-bottom {
	width: 74%;
	height: 300px;
	object-fit: cover;
	box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
}
.choose-us-wrapper .choose-img-box .img-3 {
	position: absolute;
	right: 0;
	bottom: 24px;
	top: auto;
	transform: none;
	width: 240px;
}
.choose-us-wrapper .choose-img-box .img-3 img {
	width: 100%;
	height: 210px;
	object-fit: cover;
	border: 6px solid #fff;
	box-shadow: 0 14px 34px rgba(0, 0, 0, .14);
}
@media (max-width: 575px) {
	.choose-us-wrapper .choose-img-box > .img-custom-anim-bottom { width: 100%; }
	.choose-us-wrapper .choose-img-box .img-3 { position: static; width: 60%; margin: 16px auto 0; }
}

/* ----------------------- Blog single (news details) ----------------------- */
.news-details-section { background: #fff; }
.news-details-wrapper .news-details-image img { border-radius: 18px; }
.news-details-wrapper > h2 { font-size: 30px; line-height: 1.25; color: #143F3F; margin-bottom: 18px; }
.news-details-wrapper .author-items { display: flex; flex-wrap: wrap; gap: 22px; list-style: none; padding: 0; }
.news-details-wrapper .author-items li { color: #6a7d7d; font-size: 15px; }
.news-details-wrapper .author-items i { color: var(--nohsis-red, #e8552d); margin-right: 6px; }
.news-details-content p { font-size: 17px; line-height: 1.8; color: #4a5a5a; margin-bottom: 18px; }
.news-details-content ul, .news-details-content ol { margin: 0 0 18px 22px; }
.news-details-content li { font-size: 17px; line-height: 1.8; color: #4a5a5a; margin-bottom: 8px; }
.news-details-content h2, .news-details-content h3 { color: #143F3F; margin: 26px 0 12px; }

/* sidebar */
.main-sidebar .single-sidebar-widget {
	background: #f6faf9;
	border: 1px solid #e7efed;
	border-radius: 16px;
	padding: 24px;
	margin-bottom: 26px;
}
.main-sidebar .wid-title h3 { font-size: 20px; color: #143F3F; margin-bottom: 16px; }
.main-sidebar .search-form, .main-sidebar form[role="search"] { display: flex; gap: 8px; }
.main-sidebar form input[type="search"], .main-sidebar form input[type="text"] {
	flex: 1; height: 46px; border: 1px solid #d9e4e2; border-radius: 10px; padding: 0 14px; outline: none;
}
.main-sidebar form input[type="submit"], .main-sidebar form button {
	height: 46px; padding: 0 18px; border: 0; border-radius: 10px;
	background: var(--nohsis-petrol, #2c7373); color: #fff; cursor: pointer;
}
.main-sidebar .recent-items h6 { font-size: 15px; line-height: 1.5; margin-bottom: 4px; }
.main-sidebar .recent-items h6 a { color: #143F3F; }
.main-sidebar .recent-items h6 a:hover { color: var(--nohsis-red, #e8552d); }
.main-sidebar .recent-items span { font-size: 13px; color: #8a9a98; }
.main-sidebar .news-widget-categories ul { list-style: none; padding: 0; margin: 0; }
.main-sidebar .news-widget-categories li { margin-bottom: 10px; }
.main-sidebar .news-widget-categories a {
	display: block; background: #fff; border: 1px solid #e7efed; border-radius: 10px;
	padding: 10px 16px; color: #143F3F; transition: .25s;
}
.main-sidebar .news-widget-categories a:hover { background: var(--nohsis-petrol, #2c7373); color: #fff; }

/* comment form — match the theme */
.news-details-wrapper .comment-respond { margin-top: 40px; }
.news-details-wrapper .comment-reply-title { font-size: 22px; color: #143F3F; margin-bottom: 16px; }
.news-details-wrapper .comment-form input:not([type="submit"]):not([type="checkbox"]),
.news-details-wrapper .comment-form textarea {
	width: 100%; border: 1px solid #d9e4e2; border-radius: 12px; padding: 14px 16px;
	margin-bottom: 16px; outline: none; font-size: 15px; background: #f9fbfb;
}
.news-details-wrapper .comment-form textarea { min-height: 140px; }
.news-details-wrapper .comment-form .form-submit input[type="submit"] {
	background: var(--nohsis-petrol, #2c7373); color: #fff; border: 0; border-radius: 50px;
	padding: 14px 30px; cursor: pointer; font-weight: 600;
}
.news-details-wrapper .comment-form .comment-form-cookies-consent { display: flex; gap: 8px; align-items: flex-start; }
.news-details-wrapper .comment-form .comment-form-cookies-consent input { width: auto; margin-top: 4px; }

/* ----------------------- Interest form (Εκδήλωση Ενδιαφέροντος) ----------------------- */
.nohsis-interest-section { background: #eef6f4; }
.nohsis-interest-wrap {
	max-width: 840px;
	margin: 44px auto 0;
	background: #fff;
	border: 1px solid #e7efed;
	border-radius: 24px;
	padding: 44px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, .06);
}
.nohsis-interest-form .nohsis-lbl {
	display: block;
	font-weight: 600;
	color: #143F3F;
	font-size: 14px;
	margin-bottom: 8px;
}
.nohsis-interest-form .nohsis-lbl .req { color: #e8552d; }
.nohsis-interest-form .inptFld {
	width: 100%;
	height: 54px;
	border: 1px solid #d9e4e2;
	border-radius: 12px;
	padding: 0 16px;
	background: #f9fbfb;
	color: #143F3F;
	font-size: 15px;
	outline: none;
	transition: border-color .25s ease;
}
.nohsis-interest-form .inptFld:focus { border-color: var(--nohsis-petrol, #2c7373); }
.nohsis-interest-form .nohsis-select-wrap { position: relative; }
.nohsis-interest-form select.nohsis-select {
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	padding-right: 40px;
}
.nohsis-interest-form .nohsis-select-wrap::after {
	content: "";
	position: absolute;
	right: 18px;
	top: 50%;
	width: 9px;
	height: 9px;
	border-right: 2px solid #6a7d7d;
	border-bottom: 2px solid #6a7d7d;
	transform: translateY(-70%) rotate(45deg);
	pointer-events: none;
}
.nohsis-interest-form .nohsis-checks {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}
.nohsis-interest-form .nohsis-check {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: #f1f7f6;
	border: 1px solid #e3eeeb;
	border-radius: 50px;
	padding: 11px 20px;
	cursor: pointer;
	color: #143F3F;
	font-size: 15px;
	transition: .2s ease;
	user-select: none;
}
.nohsis-interest-form .nohsis-check input { accent-color: var(--nohsis-petrol, #2c7373); width: 17px; height: 17px; }
.nohsis-interest-form .nohsis-check:has(input:checked) {
	background: var(--nohsis-petrol, #2c7373);
	border-color: var(--nohsis-petrol, #2c7373);
	color: #fff;
}
@media (max-width: 575px) {
	.nohsis-interest-wrap { padding: 26px 20px; }
	.nohsis-interest-form .nohsis-checks { flex-direction: column; }
	.nohsis-interest-form .nohsis-check { width: 100%; }
}

