@charset "utf-8";
/* CSS Document
   https://youthspace.ge/
*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family:;
	line-height: 1.6;
	color: #000;


	background:#faf8f4;
}

 @font-face {
   font-family: nino;
   src: url(fonts/bpg_nino_mtavruli_bold.ttf);
   }

  .nino{
     font-family: nino;
  }

  .noto-sans-georgian {
  font-family: "Noto Sans Georgian", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}


 @media only screen and (max-width: 767px) {
h1, h2, h3 {
font-size: 25px !important;
}
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: #FFFFFF;
	padding: 0rem 5%;
	z-index: 1000;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(71, 85, 105, 0.1);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;

	margin: 0 auto;
}

.logo {


	display: flex;
	align-items: center;

     /* 	gap: 0.8rem; */
	transition: all 0.3s ease;
}

.logo:hover {
	transform: scale(120%);
}

.logo-icon {

    display: flex;
	align-items: center;
	justify-content: center;

}

.nav-links {
	display: flex;
	list-style: none;
	gap: 3rem;
}

.nav-links a {
	text-decoration: none;
	color: #1a202c;
	font-weight: 500;
    font-size: 14px;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
}

.nav-links a:hover {
		color: #475569;
}

.nav-links a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #475569, #64748b);
	transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
	width: 100%;
  color:#2B2B2B;
}

.nav-links a.active {
	color: #2F6F3E;
	font-weight: 600;
}

.mobile-menu {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.mobile-menu span {
	width: 28px;
	height: 3px;
	background: #475569;
	margin: 4px 0;
	transition: 0.3s;
	border-radius: 2px;
}

/* Hero Section */
   @media screen and (max-width: 768px) {
 .hero {
    background-image: url("images/background.png");
    /* Adjust background position if needed for mobile image composition */
    background-position: center top;
  }
}
	.section-title {

    }



.hero {
	height: 100vh;
    width: 100% ;
	min-height: 600px;
      background-image: url(images/background.png);
    background-repeat: no-repeat;
    background-size:cover;


	align-items: center;
	justify-content: center;

	color: #000;
	position: relative;
	overflow: hidden;
}



.hero-content {

	max-width: 900px;
	padding: 0 2rem 0 2.1rem;
	margin-top: 8rem;

}



.hero h1 {
   font-size:23px;
	font-weight: 800;
    color:#2b2b2b;
	margin-bottom: 1rem;
    line-height: 1.1;
	letter-spacing: 1px;
}

.hero p {
   /*	font-size: clamp(1.2rem, 3vw, 1.5rem);
	margin-bottom: 1rem;   */
    padding-top:5px;
	opacity: 0.95;
    color:#797777;
	font-weight: normal;
}

/* Add this to your existing CSS */
.hero-content h1,
.hero-content p {
	transition: opacity 0.5s ease-in-out;
}

.text-fade-out {
	opacity: 0;
}

.cta-button {
	display: inline-block;
	padding: 0.5rem 2.5rem;
    margin: 3rem 1.2rem;
	background: #ffffff;
	color: #2F6F3E;
	text-decoration: none;
	font-weight: 700;
	border-radius: 60px;
	transition: all 0.4s ease;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
	background: rgba(255, 255, 255, 1);
    color:#2F6F3E;
    border:3px solid  #2F6F3E;
}



.cta-button1 {
	display: inline-block;
		padding: 0.5rem 2.5rem;
    margin: 1.2rem;
	background: #2F6F3E;
	color: #ffffff;
	text-decoration: none;
	font-weight: 700;
	border-radius: 60px;
	transition: all 0.4s ease;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button1:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
	background: rgba(255, 255, 255, 1);
    color:#2F6F3E;
    border:3px solid  #2F6F3E;
}


/* Section Styles */
.section {
	padding: 3.4rem 5%;
	max-width: 1200px;
	margin: 0 auto;
    text-align: center;
}

.section-title {
	text-align: center;
	font-size: clamp(1.5rem, 5vw, 2.5rem);
	font-weight: 800;
	margin-bottom: 4rem;
	color: #1e293b;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
	letter-spacing: -1px;
}


.section-text {

	text-align: center;
	font-size:0.95rem;
    margin-bottom: 4rem;
    padding:30px;
    background-color:#fff;
    color:#727070;
    border-radius: 25px; 	border: 2px solid rgba(139, 69, 19, 0.1);
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
	letter-spacing: -1px;

}

.section-title.animate {
	opacity: 1;
	transform: translateY(0);
}
.section-contact{
   padding:0px;
	max-width: 1200px;
	margin: 0 auto;
    text-align: center;
}


/* Services Section - Tab Layout */
.services {

	position: relative;
}



.services-container {
	position: relative;
	z-index: 2;
}

.services-layout {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 4rem;
	margin-top: 4rem;
	align-items: start;
}

.services-content {
	background: rgba(255, 255, 255, 0.8);
	border-radius: 25px;
	padding: 2.5rem;
	backdrop-filter: blur(15px);
	border: 2px solid rgba(71, 85, 105, 0.1);
	min-height: 400px;
	transition: all 0.5s ease;
}

.service-details {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
	display: none;
}

.service-details.active {
	opacity: 1;
	transform: translateY(0);
	display: block;
}

.service-details h3 {
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: #1e293b;
}

.service-details .service-subtitle {
	font-size: 1rem;
	color: #475569;
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.service-details p {
	color: #64748b;
	line-height: 1.7;
	font-size: 1rem;
	margin-bottom: 1.5rem;
}

.service-features {
	list-style: none;
	padding: 0;
	margin-top: 1.5rem;
}

.service-features li {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.6rem 0;
	border-bottom: 1px solid rgba(71, 85, 105, 0.08);
}

.service-features li:last-child {
	border-bottom: none;
}

.feature-check {
	width: 20px;
	height: 20px;
	background: linear-gradient(135deg, #475569, #64748b);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 0.7rem;
	flex-shrink: 0;
}

.services-tabs {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.service-tab {
	background: rgba(255, 255, 255, 0.7);
	border: 2px solid rgba(71, 85, 105, 0.1);
	border-radius: 18px;
	padding: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.service-tab:hover,
.service-tab.active {
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(71, 85, 105, 0.3);
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(71, 85, 105, 0.15);
}

.service-tab.active {
	background: rgba(71, 85, 105, 0.1);
	border-color: rgba(71, 85, 105, 0.4);
}

.service-tab::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	background: linear-gradient(135deg, #475569, #64748b);
	transition: width 0.3s ease;
}

.service-tab.active::before {
	width: 4px;
}

.tab-icon {
	font-size: 2rem;
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, rgba(71, 85, 105, 0.1), rgba(100, 116, 139, 0.1));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.tab-content {
	flex: 1;
	min-width: 0;
}

.service-tab h4 {
	font-size: 1rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 0.3rem;
	position: relative;
	z-index: 2;
}

.service-tab p {
	color: #64748b;
	font-size: 0.8rem;
	line-height: 1.3;
	position: relative;
	z-index: 2;
}

.service-tab:hover .tab-icon,
.service-tab.active .tab-icon {
	background: linear-gradient(135deg, #475569, #64748b);
	color: white;
	transform: scale(1.05);
}

/* About Section - Enhanced Split Design */
.about-section {

	color: white;
	position: relative;
	overflow: hidden;
}


.about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.about-content {
	position: relative;
}

.about-content::before {
	content: '';
	position: absolute;
	left: -2rem;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(to bottom, #64748b, transparent);
	border-radius: 2px;
}

.about-content h2 {
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 800;
	margin-bottom: 2.5rem;
	color: white;
	letter-spacing: -1px;
	line-height: 1.2;
}

.about-content .highlight {
	color: #94a3b8;
	font-weight: 600;
	font-size: 1.3rem;
	margin-bottom: 2rem;
	letter-spacing: 0.5px;
}

.about-content p {
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 2rem;
	font-size: 1.15rem;
	line-height: 1.8;
}

.about-content a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(135deg, #94a3b8, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: all 0.3s ease;
}

.about-content a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(135deg, #94a3b8, #cbd5e1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.about-content a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.about-content a:hover {
    opacity: 0.8;
}

.about-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin: 3rem 0;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.feature-item:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateX(5px);
}

.feature-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #64748b, #94a3b8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.feature-text {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	font-size: 0.95rem;
}

.stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 0;
}

.stat:first-child {
	grid-column: 1 / -1;
}

.stat {
	text-align: center;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.stat:hover {
	transform: scale(1.05);
	background: rgba(255, 255, 255, 0.15);
}

.stat-number {
	font-size: 3rem;
	font-weight: 900;
	color: #94a3b8;
	display: block;
}

.stat-label {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 0.5rem;
}

.about-visual {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.about-image {
	position: relative;
	height: 350px;
	max-width: 450px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 30px;
	backdrop-filter: blur(15px);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 30px;
	opacity: 0.7;
}

.about-image::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(from 0deg, transparent, rgba(100, 116, 139, 0.3), transparent);
	animation: rotate 25s linear infinite;
	z-index: 1;
}

.visual-shapes {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
}

.visual-shape {
	position: absolute;
	background: rgba(0, 0, 0, 0.9);
	border-radius: 50%;
	animation: floatSlow 15s ease-in-out infinite;
}

.visual-shape:nth-child(1) {
	width: 140px;
	height: 140px;
	top: 20%;
	left: 20%;
	animation-delay: -2s;
}

.visual-shape:nth-child(2) {
	width: 80px;
	height: 80px;
	top: 60%;
	right: 30%;
	animation-delay: -5s;
}

.visual-shape:nth-child(3) {
	width: 160px;
	height: 160px;
	bottom: 25%;
	left: 30%;
	animation-delay: -8s;
}

@keyframes floatSlow {

	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
		opacity: 0.1;
	}

	50% {
		transform: translateY(-20px) rotate(180deg);
		opacity: 0.2;
	}
}

/* Team Section - Hexagonal Layout */
.team {

	position: relative;
}

.team-grid {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 3rem;
	margin-top: 0rem;
}

.team-member {
	width: 300px;
	position: relative;
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.6s ease;
}

.team-member.animate {
	opacity: 1;
	transform: translateY(0);
}

.member-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
	border-radius: 25px;
	padding: 2.3rem;
    height: 430px;
	text-align: center;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(139, 69, 19, 0.1);
	transition: all 0.5s ease;
}

.member-card:hover {
	transform: translateY(0px) rotate(0deg);
	border-color: rgba(71, 85, 105, 0.3);
	box-shadow: 0 20px 40px rgba(71, 85, 105, 0.2);
}

.member-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(100, 116, 139, 0.1), transparent);
	transition: left 0.5s ease;
}

.member-card:hover::before {
	left: 100%;
}

.member-avatar {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #1e293b, #475569, #64748b);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2.5rem;
	color: white;
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.member-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.member-info h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #1e293b;
	position: relative;
	z-index: 2;
}

.member-role {
	color: #475569;
	font-weight: 600;
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
}

.member-info p {
	color: #64748b;
	font-size: 0.95rem;
	line-height: 1.6;
	position: relative;
	z-index: 2;
}

/* Testimonials Section - Overlapping Layout */
.testimonials {

	position: relative;
	overflow: hidden;
}

.testimonials-container {
	position: relative;
	margin-top: 3rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.testimonial {
	position: relative;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.testimonial.animate {
	opacity: 1;
	transform: translateY(0);
}

.testimonial-content {
	background: rgba(255, 255, 255, 0.8);
	padding: 2rem;
	border-radius: 20px;
	position: relative;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(71, 85, 105, 0.1);
	box-shadow: 0 8px 25px rgba(71, 85, 105, 0.1);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.testimonial-content::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 4rem;
	color: rgba(71, 85, 105, 0.15);
	font-family: Georgia, serif;
	line-height: 1;
}

.testimonial-text {
	color: #1e293b;
	font-style: italic;
	margin-bottom: 1.5rem;
	font-size: 1rem;
	line-height: 1.6;
	position: relative;
	z-index: 2;
	flex-grow: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
	position: relative;
	z-index: 2;
	margin-top: auto;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, #475569, #64748b);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 1rem;
	flex-shrink: 0;
}

.author-info h4 {
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 0.2rem;
	font-size: 0.95rem;
}

.author-info span {
	color: #475569;
	font-size: 0.85rem;
}

/* Contact Section - Futuristic Form */
.contact {
	background: ;
	color: #000;
	position: relative;
	overflow: hidden;
}



@keyframes contactGridMove {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(80px, 80px);
	}
}

@keyframes zigzagMove {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(40px, 40px);
	}
}

.contact .section-title {
	color: #000;
}

.contact-content {
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.contact p {
	font-size: 0.95rem;
	margin-bottom: 3rem;
	opacity: 0.95;
	text-align: center;
}



.form-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}



.submit-btn {
	background: linear-gradient(135deg, #64748b, #475569);
	color: white;
	padding: 1.5rem 3rem;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.4s ease;
	justify-self: center;
	position: relative;
	overflow: hidden;
}



/* Mobile Styles */
@media (max-width: 1000px) {
	.about {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 3rem;
	}
}

@media (max-width: 900px) {}


@media (max-width: 940px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(248, 250, 252, 0.95);
		backdrop-filter: blur(20px);
		flex-direction: column;
		padding: 2rem 5%;
		box-shadow: 0 10px 30px rgba(71, 85, 105, 0.1);
		border-radius: 0 0 20px 20px;
	}

	.nav-links.active {
		display: flex;
	}

	.mobile-menu {
		display: flex;
	}

	.about {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 4rem;
	}

	.about-features {
		grid-template-columns: 1fr;
	}

	.stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.form-group {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 5rem 5%;
	}

	.services-tabs {
		flex-direction: column;
		gap: 1rem;
	}

	.service-tab {
		width: 100%;
		flex-shrink: 0;
		flex-direction: column;
		text-align: center;
		gap: 0.8rem;
	}

	.tab-content {
		text-align: center;
	}

	.services-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.services-tabs {
		order: -1;
	}

	.service-tab:hover,
	.service-tab.active {
		transform: translateY(-2px);
	}

	.team-grid {
		flex-direction: column;
		align-items: center;
	}

	.testimonials-container {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.testimonial-content {
		padding: 1.5rem;
	}

	.testimonial,
	.testimonial:nth-child(even) {
		transform: translateY(30px);
		margin: 0;
	}

	.testimonial.animate,
	.testimonial:nth-child(even).animate {
		transform: translateY(0);
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
	}

	.footer-links {
		flex-direction: column;
		gap: 1rem;
	}
}

@media (max-width: 480px) {
	.stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.stat:first-child {
		grid-column: 1;
	}

	.service-item {
		padding: 2rem;
	}

	.member-card {
		padding: 2rem;
	}
}

/* Scroll Animations */
.fade-in {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s ease;
}

.fade-in.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Loading Animation */
@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.7;
	}
}

.loading {
	animation: pulse 2s ease-in-out infinite;
}

/* social icons */

ul.style2{
	margin: 0px 0px 0px 0px;
	padding: 0px;
	list-style: none;
}

.socialimg  img:hover{
    opacity:0.5;
 }
.footer {
	background: #2F6F3E;
	color: white;
	padding: 3rem 5% 2rem;
	text-align: center;
	border-top: 1px solid rgba(71, 85, 105, 0.2);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.footer-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-weight: 400;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #64748b;
}

.footer-copyright {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

.footer-design {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
}

.footer-design a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-design a:hover {
	color: #64748b;
}