.hero6-single-input {
	position: relative;
}

.blog_img {
	height: 250px;
	width: 100%;
}

.hr_line {
	width: 150px;
	height: 4px;
	background: linear-gradient(to right, #ff5e57, #ff9966);
	margin: 10px auto 0px auto;
	border-radius: 2px;
}

.hr_line2 {
	width: 80px;
	height: 4px;
	background: linear-gradient(to right, #ff5e57, #ff9966);
	margin-top: 10px;
	border-radius: 2px;
}

.with-icon {
	padding-left: 2.5rem;
	/* space for the icon */
}

.search-icon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: #aaa;
	font-size: 1rem;
	cursor: pointer;
}


@media(max-width:600px) {
	#headerLogo {
		width: 100px;
	}
}

@media(min-width:600px) {
	#headerLogo {
		height: 50px;
		width: 100%;
	}
}


.floating_btn {
	position: fixed;
	bottom: 0px;
	left: 10px !important;
	width: 100px;
	height: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

@keyframes pulsing {
	to {
		box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
	}
}

.contact_icon {
	background-color: #42db87;
	color: #fff;
	width: 60px;
	height: 60px;
	font-size: 30px;
	border-radius: 50px;
	text-align: center;
	box-shadow: 2px 2px 3px #999;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translatey(0px);
	animation: pulse 1.5s infinite;
	box-shadow: 0 0 0 0 #42db87;
	-webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
	-moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
	-ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
	animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
	font-weight: normal;
	font-family: sans-serif;
	text-decoration: none !important;
	transition: all 300ms ease-in-out;
}


.text_icon {
	margin-top: 8px;
	color: #707070;
	font-size: 13px;
}

.custom-tabs {
	display: flex;
	margin-top: 30px;
	justify-content: center;
	gap: 10px;
}

.custom-tabs .nav-link {

	background-color: #f5f5f5;
	color: #223d92;
	border: 1px solid #223d92;
	border-radius: 6px;
	padding: 10px 20px;
	transition: all 0.3s ease;
	font-weight: 500;
}

.custom-tabs .nav-link:hover {
	background-color: #e0e0e0;
	color: #000;
}

.custom-tabs .nav-link.active {
	background-color: #223d92;
	color: #fff;
	border-color: #223d92;
}

/*payment page css*/
/* Payment Methods Container */
.payment-methods {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
}

/* Payment Method Cards */
.payment-card {
	flex: 1;
	min-width: 300px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding: 25px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.payment-card h2 {
	color: #223d92;
	margin-bottom: 20px;
	font-size: 1.5rem;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}

/* Bank Details Styles */
.bank-details {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 15px;
}

.bank-details dt {
	font-weight: 600;
	color: #555;
}

/* UPI QR Code Styles */
.upi-qr {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.upi-qr img {
	width: 200px;
	height: 200px;
	border: 1px solid #eee;
	margin-bottom: 20px;
	background-color: #f9f9f9;
	/* Placeholder styling for QR code */
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
}

.upi-id {
	background: #e4ebff;
	padding: 10px 15px;
	border-radius: 5px;
	font-family: monospace;
	font-weight: 600;
	color: #223d92;
}

/* Razorpay Button Styles */
.razorpay-btn-container {
	text-align: center;
	margin: 30px 0;
}

.razorpay-btn {
	background-color: #223d92;
	color: white;
	border: none;
	padding: 15px 30px;
	font-size: 1rem;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	font-weight: 600;
}

.razorpay-btn:hover {
	background-color: #4a5568;
}

/* Note Section */
.payment-note {
	background: #fff8e1;
	padding: 20px;
	border-radius: 8px;
	border-left: 4px solid #ffc107;
	margin-top: 40px;
}

.payment-note h3 {
	color: #e65100;
	margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.payment-methods {
		flex-direction: column;
	}

	.payment-card {
		width: 100%;
	}
}

/*end*/

/* Gallery Grid */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.gallery-item:hover {
	transform: translateY(-5px);
}

.gallery-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.gallery-item:hover img {
	transform: scale(1.05);
}

.gallery-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 10px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
	.tabs {
		justify-content: center;
	}

	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	}
}

@media (max-width: 480px) {
	.tab-btn {
		padding: 10px 15px;
		font-size: 0.9rem;
	}

	.gallery-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	z-index: 1000;
	align-items: center;
	justify-content: center;
}

.lightbox.active {
	display: flex;
}

.lightbox-content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
}

.lightbox-img {
	max-height: 80vh;
	max-width: 90vw;
	object-fit: contain;
}

.lightbox-caption {
	color: white;
	text-align: center;
	padding: 15px 0;
	font-size: 1.2rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
	position: absolute;
	color: white;
	font-size: 2rem;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.5);
	border: none;
	padding: 10px 15px;
	border-radius: 50%;
}

.lightbox-close {
	top: 20px;
	right: 20px;
}

.lightbox-prev {
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.lightbox-next {
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
	background: rgba(255, 255, 255, 0.3);
}

/*end */

/*job career css*/


/* Header Styles */
.career-header {
	background: linear-gradient(135deg, #2c3e50, #3498db);
	color: white;
	padding: 60px 20px;
	text-align: center;
	margin-bottom: 40px;
}

.career-header h1 {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.career-header p {
	font-size: 1.1rem;
	max-width: 700px;
	margin: 0 auto;
}

/* Job Filter Section */
.job-filters {
	background: white;
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}

.filter-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 15px;
}

.filter-group {
	flex: 1;
	min-width: 200px;
}

.filter-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #2c3e50;
}

.filter-group select,
.filter-group input {
	width: 100%;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
}

.search-btn {
	background-color: #3498db;
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
	transition: background-color 0.3s;
}

.search-btn:hover {
	background-color: #2980b9;
}

/* Job Listings */
.job-listings {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 25px;
	margin-bottom: 50px;
}

.job-card {
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	padding: 25px;
	transition: transform 0.3s, box-shadow 0.3s;
}

.job-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.job-title {
	font-size: 1.4rem;
	color: #2c3e50;
	margin-bottom: 10px;
	font-weight: 600;
}

.job-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 15px;
}

.job-meta span {
	display: flex;
	align-items: center;
	color: #7f8c8d;
	font-size: 0.9rem;
}

.job-meta svg {
	margin-right: 5px;
	width: 16px;
	height: 16px;
}

.job-buttons {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.apply-btn,
.know-more-btn {
	padding: 8px 15px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s;
	border: none;
}

.apply-btn {
	background-color: #223d92;
	color: white;
}

.apply-btn:hover {
	background-color: #233363;
}

.know-more-btn {
	background-color: #f1f1f1;
	color: #2c3e50;
}

.know-more-btn:hover {
	background-color: #ddd;
}

/* Job Description Section */
.job-description {
	display: none;
	background: white;
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	margin-top: 20px;
}

.job-description h3 {
	color: #2c3e50;
	margin-bottom: 15px;
}

.job-description ul {
	margin-left: 20px;
	margin-bottom: 15px;
}

/* Popup Styles */
.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.popup-overlay.active {
	opacity: 1;
	visibility: visible;
}

.popup-container {
	width: 90%;
	max-width: 500px;
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transform: scale(0.9);
	transition: transform 0.3s ease;
	padding: 25px;
}

.popup-overlay.active .popup-container {
	transform: scale(1);
}

.popup-title {
	font-size: 1.5rem;
	color: #2c3e50;
	margin-bottom: 20px;
	text-align: center;
}

.form-group {
	margin-bottom: 15px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	color: #2c3e50;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
}

.form-group textarea {
	min-height: 100px;
	resize: vertical;
}

.submit-btn {
	background-color: #3498db;
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
	transition: background-color 0.3s;
	width: 100%;
	margin-top: 10px;
}

.submit-btn:hover {
	background-color: #2980b9;
}

.popup-close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 30px;
	height: 30px;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	color: white;
	font-weight: bold;
}

.success-message {
	text-align: center;
	padding: 20px;
	display: none;
}

.success-message svg {
	width: 50px;
	height: 50px;
	color: #2ecc71;
	margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.filter-row {
		flex-direction: column;
		gap: 15px;
	}

	.job-listings {
		grid-template-columns: 1fr;
	}

	.job-buttons {
		flex-direction: column;
	}
}

/*end*/

/* Marquee Container */
.partners-marquee {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding: 30px 0;
}

.partners-marquee:before,
.partners-marquee:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100px;
	z-index: 2;
	pointer-events: none;
}

.partners-marquee:before {
	left: 0;
	background: linear-gradient(90deg, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0) 100%);
}

.partners-marquee:after {
	right: 0;
	background: linear-gradient(90deg, rgba(248, 249, 250, 0) 0%, rgba(248, 249, 250, 1) 100%);
}

/* Marquee Track */
.marquee-track {
	display: flex;
	gap: 60px;
	width: max-content;
	animation: scroll 30s linear infinite;
}

/* Pause on hover */
.marquee-track:hover {
	animation-play-state: paused;
}

/* Partner Logo */
.partner-logo {
	height: 80px;
	width: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: all 0.3s ease;
}

.partner-logo:hover {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.05);
}

/* Animation */
@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(calc(-50% - 30px));
	}
}

/* Responsive */
@media (max-width: 768px) {
	.section-header h2 {
		font-size: 2rem;
	}

	.partner-logo {
		height: 60px;
	}

	.marquee-track {
		gap: 40px;
	}
}

@media (max-width: 480px) {
	.partner-logo {
		height: 50px;
	}

	.marquee-track {
		gap: 30px;
	}
}

/*float button css*/

.float-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 99;
	animation: float 3s ease-in-out infinite;
}

.talk-to-expert {
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #3498db, #2c3e50);
	color: white;
	padding: 15px 25px;
	border-radius: 50px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	text-decoration: none;
	font-weight: 600;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.talk-to-expert:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	background: linear-gradient(135deg, #2980b9, #1a252f);
	color:#fff;
}

.talk-to-expert i {
	margin-right: 10px;
	font-size: 20px;
}

/* Animation */
@keyframes float {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(0px);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.float-btn {
		bottom: 20px;
		right: 20px;
	}

	.talk-to-expert {
		padding: 12px 20px;
		font-size: 14px;
	}

	.talk-to-expert i {
		font-size: 18px;
	}
}

/*end*/

/*header css*/
/* Container for the dropdown */
.topbutton {
	position: relative;
	display: inline-block;
}

/* Toggle button styling */
.topbutton>a {
	padding: 8px 16px;
	background-color: #007bff;
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	border-radius: 5px;
	cursor: pointer;
}

/* Dropdown content (hidden by default) */
.topbutton .dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 160px;
	background-color: #fff;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
	z-index: 999;
	border-radius: 5px;
	overflow: hidden;
}

/* Show dropdown on hover */
.topbutton:hover .dropdown-menu {
	display: block;
}

/* Dropdown items */
.topbutton .dropdown-menu li {
	list-style: none;
}

.topbutton .dropdown-menu a.dropdown-item {
	display: block;
	padding: 10px 15px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	transition: background-color 0.2s;
}

.topbutton .dropdown-menu a.dropdown-item:hover {
	background-color: #f5f5f5;
}

/* Optional: Add icon spacing */
.topbutton i {
	margin-right: 6px;
}

/*end*/

/*gallery design */

.image-container {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s;
    border-radius: 10px;
}

.image-container:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.image-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

.title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0 0 10px 10px;
    transition: background 0.3s;
}

.title-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.title-overlay h5 {
    margin-bottom: 0;
    text-align: center;
    color: white;
    transition: transform 0.3s, color 0.3s;
}

.title-overlay:hover h5 {
    transform: scale(1.1);
    color: white;
}


/*--------------------------------------------------
## Events
---------------------------------------------------*/
.events-active .event-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    margin-bottom: 25px;
}

.events-active .event-item img {
    width: 100%;
}

.events-active .event-item .event-item__hover {
    left: 0;
    top: 0;
    opacity: 1;
    /* Keep it fully visible */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 35px;
    transition: 0.5s;
    position: absolute;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(179.98deg, rgba(37, 41, 47, 0.6132) 15.88%, rgba(248, 77, 66, 0.84) 62.28%);
}

/* Change opacity to 0 on hover to hide the background */
.events-active .event-item:hover .event-item__hover {
    opacity: 0;
    /* Hide background on hover */
}

@media (max-width: 375px) {
    .events-active .event-item .event-item__hover {
        padding: 25px;
    }
}

.events-active .event-item .event-item__hover h4 {
    color: white;
    margin-bottom: 15px;
}

@media (max-width: 375px) {
    .events-active .event-item .event-item__hover h4 {
        font-size: 24px;
    }
}

.events-active .event-item .event-item__hover ul {
    display: flex;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.custom-tabs .nav-link {
   border: none;
   padding: 12px 25px;
   font-weight: 600;
   color: #080761;
   background-color: #f2f2f2;
   border-radius: 30px;
   border: 2px solid #080761;
   transition: all 0.3s ease;
}

.custom-tabs .nav-link:hover {
   background-color: #ddd;
   color: #000;
}

.custom-tabs .nav-link.active {
   background-color: #080761;
   color: #fff;
}

/*end*/

/*counter css*/
/* Counter Section Styles */
.counter-section {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.counter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.counter-box {
    flex: 1;
    min-width: 200px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-10px);
}

.counter-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #fff;
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.counter-text {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .counter-box {
        min-width: 150px;
    }
    
    .counter-number {
        font-size: 36px;
    }
    
    .counter-text {
        font-size: 16px;
    }
}
/*end*/

/*portfolio css*/
/* Header */
.section-header {
text-align: center;
margin-bottom: 60px;
}

.section-header h2 {
font-size: 2.8rem;
color: var(--secondary);
margin-bottom: 15px;
position: relative;
display: inline-block;
}

.section-header h2:after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: var(--accent);
border-radius: 2px;
}

.section-header p {
color: var(--gray);
font-size: 1.1rem;
max-width: 700px;
margin: 0 auto;
}

/* Filter Buttons */
.filter-buttons {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 15px;
margin-bottom: 40px;
}

.filter-btn {
padding: 10px 25px;
background: white;
border: 1px solid #e0e0e0;
border-radius: 30px;
cursor: pointer;
font-weight: 500;
transition: all 0.3s ease;
color: var(--gray);
}

.filter-btn:hover, .filter-btn.active {
background: var(--primary);
/*color: white;*/
border-color: var(--primary);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(67, 97, 238, 0.2);
}

/* Portfolio Grid */
.portfolio-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 30px;
}

.portfolio-item {
position: relative;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
aspect-ratio: 4/3;
}

.portfolio-item:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.portfolio-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to top, rgba(58, 12, 163, 0.9), transparent);
opacity: 0;
transition: opacity 0.3s ease;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 25px;
color: white;
}

.portfolio-item:hover .portfolio-overlay {
opacity: 1;
}

.portfolio-category {
background: var(--accent);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
margin-bottom: 15px;
align-self: flex-start;
}

.portfolio-title {
font-size: 1.4rem;
margin-bottom: 10px;
transform: translateY(20px);
transition: transform 0.3s ease;
}

.portfolio-description {
font-size: 0.9rem;
margin-bottom: 15px;
opacity: 0;
transform: translateY(20px);
transition: all 0.3s ease 0.1s;
}

.portfolio-link {
color: white;
font-size: 0.9rem;
font-weight: 600;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;
opacity: 0;
transform: translateY(20px);
transition: all 0.3s ease 0.2s;
}

.portfolio-item:hover .portfolio-title,
.portfolio-item:hover .portfolio-description,
.portfolio-item:hover .portfolio-link {
opacity: 1;
transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
.portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
}

@media (max-width: 768px) {
.section-header h2 {
    font-size: 2.2rem;
}

.filter-buttons {
    gap: 10px;
}

.filter-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}
}

@media (max-width: 480px) {
.portfolio-grid {
    grid-template-columns: 1fr;
}

.section-header h2 {
    font-size: 1.8rem;
}
}
/*end*/

/*notice*/

      
     
     

.notice-column {
    flex: 75%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 2rem;
}

.category-column {
    flex: 25%;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-title {
    color: var(--primary);
    margin: 0;
}

.search-box {
    position: relative;
    flex-grow: 1;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #918f8f;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.notice-item {
    padding: 1.5rem 0;
 
}


.notice-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.notice-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.notice-date {
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    align-items: center;
}

.notice-date i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.notice-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.notice-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.notice-link i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

/* Category Section */
.category-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.category-list {
    list-style: none;
}

.category-item {
    margin-bottom: 0.5rem;
    position: relative;
}

.category-item.has-subcategory > .category-link:after {
    content: "+";
    position: absolute;
    right: 0;
    font-weight: bold;
    transition: transform 0.3s;
}

.category-item.has-subcategory.active > .category-link:after {
    content: "-";
}

.category-link {
    color: var(--dark);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s;
    position: relative;
    padding-right: 1.5rem;
}

.category-link:hover {
    color: var(--primary);
}

.category-link.active {
    color: var(--primary);
    font-weight: 600;
}

.subcategory {
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    display: none;
    border-left: 2px solid var(--light-gray);
}

.category-item.active .subcategory {
    display: block;
}

.subcategory .category-link {
    padding: 0.3rem 0;
    font-size: 0.9rem;
}


/* Responsive */
@media (max-width: 768px) {
   
    .notice-column, .category-column {
        flex: 100%;
    }
    
    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-box {
        max-width: 100%;
        width: 100%;
    }
}

/*end*/
