/**
* Template Name: iPortfolio
* Updated: Sep 18 2023 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/* 
  ==========================================
  THEME VARIABLES (Light Mode Default)
  ==========================================
*/
:root {
  /* Core Colors */
  --bg-color: #f8fafc;
  --bg-secondary: #ffffff;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --accent-color: #3b82f6;
  --accent-hover: #2563eb;
  
  /* Sidebar & Header */
  --sidebar-bg: #0f172a;
  --sidebar-text: #e2e8f0;
  
  /* Cards & UI Elements */
  --card-bg: #ffffff;
  --card-border: rgba(0, 0, 0, 0.05);
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  
  /* Gradients */
  --primary-gradient: linear-gradient(135deg, #3b82f6, #0ea5e9);
  
  /* Transitions */
  --theme-transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: "Poppins", "Open Sans", sans-serif;
	color: var(--text-primary);
    background-color: var(--bg-color);
    transition: var(--theme-transition);
}

a {
	color: var(--accent-color);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--accent-hover);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", "Raleway", sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-gradient);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #1d4ed8;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #149ddd;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 28px;
	color: #fff;
	line-height: 0;
}

.back-to-top:hover {
	background: #2eafec;
	color: #fff;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 300px;
	transition: all ease-in-out 0.5s;
	z-index: 9997;
	padding: 0 15px;
	background: var(--sidebar-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-right: 1px solid var(--glass-border);
	overflow-y: auto;
}

#header .profile img {
	margin: 15px auto;
	display: block;
	width: 120px;
	border: 4px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 4px;
  background: var(--primary-gradient);
  transition: transform 0.4s ease;
}

#header .profile img:hover {
  transform: scale(1.05) rotate(3deg);
}

#header .profile h1 {
	font-size: 24px;
	margin: 15px 0 0;
	padding: 0;
	font-weight: 700;
	text-align: center;
	font-family: "Poppins", sans-serif;
    color: var(--sidebar-text);
}

#header .profile h1 a,
#header .profile h1 a:hover {
	color: #fff;
	text-decoration: none;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(96, 165, 250, 0.3);
}

#header .profile .social-links {
  margin-top: 20px;
}

#header .profile .social-links a {
	font-size: 18px;
	display: inline-flex;
  justify-content: center;
  align-items: center;
	background: rgba(255, 255, 255, 0.05);
	color: var(--sidebar-text);
	line-height: 1;
	margin-right: 6px;
	border-radius: 50%;
	width: 38px;
	height: 38px;
	transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#header .profile .social-links a:hover {
	background: var(--primary-gradient);
	color: #fff;
	text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

#main {
	margin-left: 300px;
}

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

@media (max-width: 1199px) {
	#header {
		left: -300px;
	}

	#main {
		margin-left: 0;
	}

	.container,
	.container-fluid {
		padding-left: 12px;
		padding-right: 12px;
	}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
	padding: 30px 0 0 0;
}

.nav-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu > ul > li {
	position: relative;
	white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
	display: flex;
	align-items: center;
	color: var(--text-secondary);
	padding: 12px 18px;
	margin-bottom: 8px;
	transition: 0.3s;
	font-size: 15px;
  border-radius: 10px;
  font-weight: 500;
}

.nav-menu a i,
.nav-menu a:focus i {
	font-size: 20px;
	padding-right: 12px;
	color: var(--text-secondary);
  transition: 0.3s;
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover > a {
	text-decoration: none;
	color: #fff;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 3px 0 0 var(--accent-color);
}

.nav-menu a:hover i,
.nav-menu .active i,
.nav-menu .active:focus i,
.nav-menu li:hover > a i {
	color: #60a5fa;
}

/* Mobile Navigation */
.mobile-nav-toggle {
	position: fixed;
	right: 15px;
	top: 15px;
	z-index: 9998;
	border: 0;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	background-color: #149ddd;
	color: #fff;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	border-radius: 50px;
	cursor: pointer;
}

.mobile-nav-active {
	overflow: hidden;
}

.mobile-nav-active #header {
	left: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	width: 100%;
	height: 100vh;
	background: url("https://images.alphacoders.com/116/1161011.jpg") top center;
	background-size: cover;
  position: relative;
}

#hero:before {
	content: "";
	background: linear-gradient(135deg, rgba(10, 15, 28, 0.8), rgba(30, 58, 138, 0.6));
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1;
}

#hero .hero-container {
	position: relative;
	z-index: 2;
	min-width: 300px;
}

#hero h1 {
	margin: 0 0 10px 0;
	font-size: 64px;
	font-weight: 800;
	line-height: 56px;
	color: #fff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

#hero p {
	color: #e2e8f0;
	margin-bottom: 50px;
	font-size: 26px;
	font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

#hero p span {
	color: var(--accent-color);
	padding-bottom: 4px;
	letter-spacing: 1px;
}

@media (min-width: 1024px) {
	#hero {
		background-attachment: fixed;
	}
}

@media (max-width: 768px) {
	#hero h1 {
		font-size: 32px;
		line-height: 40px;
	}

	#hero h2 {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 30px;
	}
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 80px 0;
	overflow: hidden;
}

.section-bg {
	background: var(--bg-secondary);
}

.section-title {
	padding-bottom: 40px;
}

.section-title h2 {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	color: var(--text-primary);
}

.section-title h2::after {
	content: "";
	position: absolute;
	display: block;
	width: 60px;
	height: 4px;
	background: var(--primary-gradient);
  border-radius: 2px;
	bottom: 0;
	left: 0;
}

.section-title p {
	margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

/* Global utility for consistent glass and hover effects on cards */
.glass-card-hover {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card-hover:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
  border-color: rgba(96, 165, 250, 0.3);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
	font-weight: 700;
	font-size: 28px;
	color: var(--text-primary);
}

.about .content ul {
	list-style: none;
	padding: 0;
}

.about .content ul li {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
  color: var(--text-secondary);
}

.about .content ul strong {
	margin-right: 10px;
  color: var(--text-primary);
}

.about .content ul i {
	font-size: 18px;
	margin-right: 8px;
	color: var(--accent-color);
	line-height: 0;
}

.about .content p:last-child {
	margin-bottom: 0;
}

.about .img-fluid {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.about .img-fluid:hover {
  transform: translateY(-5px);
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts {
	padding-bottom: 40px;
}

.facts .count-box {
	padding: 30px;
	width: 100%;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--card-border);
  margin-bottom: 20px;
}

.facts .count-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.facts .count-box i {
	display: flex;
  align-items: center;
  justify-content: center;
	font-size: 32px;
	color: #fff;
  background: var(--primary-gradient);
  width: 60px;
  height: 60px;
  border-radius: 50%;
	float: left;
	line-height: 0;
}

.facts .count-box span {
	font-size: 42px;
	line-height: 36px;
	display: block;
	font-weight: 800;
	color: var(--text-primary);
	margin-left: 75px;
}

.facts .count-box p {
	padding: 10px 0 0 0;
	margin: 0 0 0 75px;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	color: var(--text-secondary);
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
	height: 60px;
	display: block;
	background: none;
	border-radius: 0;
  margin-bottom: 15px;
}

.skills .progress .skill {
	padding: 0;
	margin: 0 0 8px 0;
	text-transform: uppercase;
	display: block;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	color: var(--text-primary);
}

.skills .progress .skill .val {
	float: right;
	font-style: normal;
  font-weight: 700;
  color: var(--accent-color);
}

.skills .progress-bar-wrap {
	background: #e2e8f0;
	height: 12px;
  border-radius: 10px;
  overflow: hidden;
}

.skills .progress-bar {
	width: 1px;
	height: 12px;
	transition: width 1.5s ease-in-out;
	background: var(--primary-gradient);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
	font-size: 26px;
	font-weight: 700;
	margin-top: 20px;
	margin-bottom: 20px;
	color: var(--text-primary);
}

.resume .resume-item {
	padding: 0 0 20px 25px;
	margin-top: -2px;
	border-left: 2px solid #cbd5e1;
	position: relative;
}

.resume .resume-item h4 {
	line-height: 22px;
	font-size: 18px;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
	color: var(--text-primary);
	margin-bottom: 10px;
}

.resume .resume-item h5 {
	font-size: 15px;
	background: var(--bg-color);
	padding: 6px 15px;
	display: inline-block;
	font-weight: 600;
	margin-bottom: 10px;
  border-radius: 5px;
  color: var(--text-secondary);
}

.resume .resume-item ul {
	padding-left: 20px;
  color: var(--text-secondary);
}

.resume .resume-item ul li {
	padding-bottom: 10px;
}

.resume .resume-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.resume .resume-item:last-child {
	padding-bottom: 0;
}

.resume .resume-item::before {
	content: "";
	position: absolute;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	left: -10px;
	top: 0;
	background: var(--bg-secondary);
	border: 3px solid var(--accent-color);
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.5);
  transition: all 0.3s ease;
}

.resume .resume-item:hover::before {
  background: var(--accent-color);
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
	margin-bottom: 30px;
}

.portfolio #portfolio-flters {
	padding: 0;
	margin: 0 auto 35px auto;
	list-style: none;
	text-align: center;
	background: var(--card-bg);
	border-radius: 50px;
	padding: 6px 15px;
  box-shadow: var(--shadow-sm);
}

.portfolio #portfolio-flters li {
	cursor: pointer;
	display: inline-block;
	padding: 10px 20px 8px 20px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	color: var(--text-secondary);
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
  border-radius: 30px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
	color: #fff;
  background: var(--primary-gradient);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.portfolio #portfolio-flters li:last-child {
	margin-right: 0;
}

.portfolio .portfolio-wrap {
	transition: 0.3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.portfolio .portfolio-wrap::before {
	content: "";
	background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	transition: all ease-in-out 0.4s;
	z-index: 2;
	opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
	opacity: 1;
	left: 0;
	right: 0;
	bottom: -60px;
	z-index: 3;
	position: absolute;
	transition: all ease-in-out 0.4s;
	display: flex;
	justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
	color: #fff;
	font-size: 28px;
	text-align: center;
	background: rgba(30, 58, 138, 0.8);
	transition: 0.3s;
	width: 50%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
	background: var(--primary-gradient);
}

.portfolio .portfolio-wrap .portfolio-links a + a {
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio .portfolio-wrap:hover::before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
	opacity: 1;
	bottom: 0;
}

.portfolio .portfolio-wrap img {
  transition: transform 0.6s ease;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
	padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
	width: 100%;
	/* filter:drop-shadow( 10px 7px 20px orange); */
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.portfolio-details
	.portfolio-details-slider
	.swiper-pagination
	.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #fff;
	opacity: 1;
	border: 1px solid var(--accent-color);
}

.portfolio-details
	.portfolio-details-slider
	.swiper-pagination
	.swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
	padding: 30px;
	box-shadow: var(--shadow-md);
  border-radius: 12px;
  background: var(--card-bg);
}

.portfolio-details .portfolio-info h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--card-border);
	color: var(--text-primary);
}

.portfolio-details .portfolio-info ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
	margin-top: 10px;
}

.portfolio-details .portfolio-description {
	padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--text-primary);
}

.portfolio-details .portfolio-description p {
	padding: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
	margin-bottom: 30px;
  background: var(--card-bg);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--card-border);
  height: calc(100% - 30px);
}

.services .icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(96, 165, 250, 0.3);
}

.services .icon {
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background: var(--primary-gradient);
	border-radius: 50%;
	transition: 0.5s;
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.services .icon i {
	color: #fff;
	font-size: 28px;
	line-height: 0;
}

.services .icon-box:hover .icon {
	background: #fff;
  border: 2px solid var(--accent-color);
}

.services .icon-box:hover .icon i {
	color: var(--accent-color);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services .title {
	margin-left: 85px;
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 20px;
}

.services .title a {
	color: var(--text-primary);
  transition: 0.3s;
}

.services .title a:hover {
	color: var(--accent-color);
}

.services .description {
	margin-left: 85px;
	line-height: 24px;
	font-size: 14px;
  color: var(--text-secondary);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
	overflow: hidden;
}

.testimonials .testimonial-item {
	box-sizing: border-box;
	text-align: center;
	min-height: 320px;
  padding: 30px;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin: 15px;
}

.testimonials .testimonial-item .testimonial-img {
	width: 100px;
	border-radius: 50%;
	margin: 0 auto 15px;
  border: 4px solid var(--accent-color);
  padding: 4px;
}

.testimonials .testimonial-item h3 {
	font-size: 20px;
	font-weight: bold;
	margin: 10px 0 5px 0;
  color: var(--text-primary);
}

.testimonials .testimonial-item h4 {
	font-size: 14px;
	color: var(--text-secondary);
	margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
	color: rgba(96, 165, 250, 0.4);
	font-size: 26px;
	line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
	transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
	font-style: italic;
	margin: 0 15px 15px 15px;
	padding: 20px;
	background-color: var(--bg-secondary);
	position: relative;
	margin-bottom: 35px;
	border-radius: 12px;
	box-shadow: inset 0px 2px 10px rgba(0, 0, 0, 0.02);
  color: var(--text-secondary);
}

.testimonials .testimonial-item p::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 20px solid var(--bg-secondary);
	border-right: 20px solid transparent;
	border-left: 20px solid transparent;
	position: absolute;
	bottom: -20px;
	left: calc(50% - 20px);
}

.testimonials .swiper-wrapper {
	height: auto;
}

.testimonials .swiper-pagination {
	margin-top: 40px;
	position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #cbd5e1;
	opacity: 1;
	border: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
	padding-bottom: 130px;
}

.contact .info {
	padding: 40px;
	background: var(--card-bg);
	width: 100%;
	box-shadow: var(--shadow-sm);
  border-radius: 16px;
}

.contact .info i {
	font-size: 20px;
	color: #fff;
	float: left;
	width: 50px;
	height: 50px;
	background: var(--primary-gradient);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.contact .info h4 {
	padding: 0 0 0 70px;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
	color: var(--text-primary);
}

.contact .info p {
	padding: 0 0 10px 70px;
	margin-bottom: 20px;
	font-size: 14px;
	color: #475569;
}

.contact .info .email p {
	padding-top: 5px;
}

.contact .info .social-links {
	padding-left: 70px;
}

.contact .info .social-links a {
	font-size: 18px;
	display: inline-flex;
  justify-content: center;
  align-items: center;
	background: #1e293b;
	color: #fff;
	line-height: 1;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	transition: 0.3s;
	margin-right: 10px;
}

.contact .info .social-links a:hover {
	background: var(--primary-gradient);
	color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
	background: #149ddd;
	color: #fff;
}

.contact .php-email-form {
	width: 100%;
	padding: 30px;
	background: var(--card-bg);
	box-shadow: var(--shadow-sm);
  border-radius: 16px;
}

.contact .php-email-form .form-group {
	padding-bottom: 8px;
}

.contact .php-email-form .validate {
	display: none;
	color: red;
	margin: 0 0 15px 0;
	font-weight: 400;
	font-size: 13px;
}

.contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .error-message br + br {
	margin-top: 25px;
}

.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .loading {
	display: none;
	background: var(--card-bg);
	text-align: center;
	padding: 15px;
}

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
	margin-bottom: 15px;
}

.contact .php-email-form label {
	padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
	border-radius: 8px;
	box-shadow: none;
	font-size: 14px;
	background: var(--bg-secondary);
	border: 1px solid var(--card-border);
	color: var(--text-primary);
}

.contact .php-email-form input {
	height: 44px;
}

.contact .php-email-form textarea {
	padding: 10px 15px;
}

.contact .php-email-form button[type="submit"] {
	background: #149ddd;
	border: 0;
	padding: 10px 24px;
	color: #fff;
	transition: 0.4s;
	border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
	background: #37b3ed;
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
	padding: 20px 0;
	background: var(--bg-secondary);
}

.breadcrumbs h2 {
	font-size: 26px;
	font-weight: 300;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 15px;
}

.breadcrumbs ol li + li {
	padding-left: 10px;
}

.breadcrumbs ol li + li::before {
	display: inline-block;
	padding-right: 10px;
	color: #0e2442;
	content: "/";
}

@media (max-width: 768px) {
	.breadcrumbs .d-flex {
		display: block !important;
	}

	.breadcrumbs ol {
		display: block;
	}

	.breadcrumbs ol li {
		display: inline-block;
	}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	padding: 15px;
	color: var(--sidebar-text);
	font-size: 14px;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 300px;
	z-index: 9999;
	background: var(--sidebar-bg);
}

#footer .copyright {
	text-align: center;
}

#footer .credits {
	padding-top: 5px;
	text-align: center;
	font-size: 13px;
	color: #eaebf0;
}

@media (max-width: 1199px) {
	#footer {
		position: static;
		width: auto;
		padding-right: 20px 15px;
	}
}

/* CARD GLASS */
.glass-card {
	background: #ffffff;
	border-radius: 18px;
	padding: 25px;
	border: 1px solid #000000;
}

/* LABEL */
.glass-label {
	font-weight: 600;
	font-size: 14px;
	color: var(--text-primary);
	margin-bottom: 6px;
}

/* INPUT */
.glass-input {
	background: #ffffff;
	border: 1px solid #000000;
	border-radius: 12px;
	color: #1e293b;
	padding: 11px 13px;
}

.glass-input::placeholder {
	color: #94a3b8;
}

.glass-input:focus {
	border-color: #38bdf8;
	background: rgba(255, 255, 255, 0.18);
	box-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
}

.btn-glass {
	border-radius: 12px !important;
	padding: 10px 0 !important;
	font-weight: 600 !important;
	color: white !important;
	border: none !important;

	background: linear-gradient(135deg, #1d4ed8, #3b82f6, #60a5fa) !important;

	box-shadow: 0 12px 30px rgba(37, 99, 235, 0.55) !important;
	position: relative !important;
	overflow: hidden !important;
	transition: 0.28s ease !important;
}

.btn-glass:hover {
	transform: translateY(-3px) scale(1.03) !important;
	box-shadow: 0 18px 45px rgba(37, 99, 235, 0.75) !important;
}

/* Shine effect */
.btn-glass::before {
	content: "";
	position: absolute;
	top: -20%;
	left: -80%;
	width: 50%;
	height: 160%;
	background: rgba(255, 255, 255, 0.55);
	transform: skewX(-20deg);
	filter: blur(8px);
	opacity: 0;
	transition: all 0.45s ease;
}

.btn-glass:hover::before {
	left: 130%;
	opacity: 1;
}

.btn-glass:active {
	transform: scale(0.97);
	box-shadow: 0 10px 20px rgba(30, 58, 138, 0.6);
}

.facts-cta {
	margin-top: 40px;
	text-align: center;
}

.wa-premium {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 16px 34px;
	border-radius: 999px;
	text-decoration: none;
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.3px;

	background: linear-gradient(135deg, #0f5132, #198754);
	box-shadow:
		0 10px 30px rgba(25, 135, 84, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.25);

	transition: all 0.35s ease;
	position: relative;
	overflow: hidden;
}

.wa-premium::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 255, 255, 0.35),
		transparent
	);
	opacity: 0;
	transition: 0.4s;
}

.wa-premium:hover::before {
	opacity: 1;
}

.wa-premium:hover {
	transform: translateY(-4px);
	box-shadow:
		0 18px 45px rgba(25, 135, 84, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.wa-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.wa-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.wa-text small {
	font-size: 11px;
	font-weight: 400;
	opacity: 0.85;
}


/* Premium Button Animations - PPT Morph */
.btn-premium-preview { transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); position: relative; overflow: hidden; } .btn-premium-preview:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(59, 130, 246, 0.15); background: rgba(59, 130, 246, 0.15) !important; color: #0284c7 !important; } .btn-premium-preview::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); animation: shimmer 3s infinite; }
.btn-premium-buy { transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); position: relative; overflow: hidden; z-index: 1; } .btn-premium-buy:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 20px rgba(29, 78, 216, 0.3); } .btn-premium-buy::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, #3b82f6, #1e3a8a); z-index: -1; transition: opacity 0.3s ease; opacity: 0; } .btn-premium-buy:hover::before { opacity: 1; } .btn-premium-buy::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: rgba(255, 255, 255, 0.1); transform: rotate(30deg); transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1); z-index: -1; } .btn-premium-buy:hover::after { transform: rotate(30deg) translateY(-20%); }
@keyframes shimmer { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }


/* Responsive Enhancements - PPT Morph */
@media (max-width: 768px) { .ppt-morph-card { display: flex; flex-direction: column; height: auto !important; } .ppt-morph-card .ppt-morph-img-container { height: 180px !important; } .ppt-morph-card .ppt-morph-content { padding: 18px !important; } .ppt-morph-card h4 { font-size: 16px !important; } .ppt-morph-card p { font-size: 13px !important; margin-bottom: 15px !important; } .ppt-morph-buttons { flex-direction: column; gap: 8px !important; } .ppt-morph-buttons .btn { width: 100%; display: flex; justify-content: center; padding: 10px 16px !important; font-size: 14px !important; border-radius: 12px !important; } .btn-premium-preview, .btn-premium-buy { border-radius: 12px !important; } }

