/**
* Template Name: MyResume
* Template URL: https://bootstrapmade.com/free-html-bootstrap-template-my-resume/
* Updated: Jun 29 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Inter", "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --heading-font: "Inter", "Raleway", sans-serif;
  --nav-font: "Inter", "Poppins", sans-serif;
}

/* Global Colors - Futuristic Space Theme */
:root { 
  --background-color: #0a0e27; /* Dark navy background */
  --default-color: #e0e7ff; /* Light text for readability */
  --heading-color: #ffffff; /* White headings */
  --accent-color: #00d4ff; /* Cyan accent - primary glow color */
  --accent-color-secondary: #0099ff; /* Blue accent - secondary glow */
  --surface-color: #1a1f3a; /* Dark surface for cards */
  --contrast-color: #ffffff; /* White contrast */
  --glow-color: rgba(0, 212, 255, 0.5); /* Glow effect color */
  --glow-color-strong: rgba(0, 212, 255, 0.8); /* Strong glow */
}

/* Nav Menu Colors - Futuristic Space Theme */
:root {
  --nav-color: #8b9dc3;  /* Light blue-gray for nav links */
  --nav-hover-color: #00d4ff; /* Cyan glow on hover/active */
  --nav-mobile-background-color: #1a1f3a; /* Dark surface for mobile nav */
  --nav-dropdown-background-color: #1a1f3a; /* Dark dropdown background */
  --nav-dropdown-color: #e0e7ff; /* Light text for dropdown */
  --nav-dropdown-hover-color: #00d4ff; /* Cyan glow on dropdown hover */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #1a1f3a;
  --surface-color: #252a45;
}

.dark-background {
  --background-color: #0a0e27;
  --default-color: #e0e7ff;
  --heading-color: #ffffff;
  --surface-color: #1a1f3a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  overflow-x: hidden;
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: rgba(223, 21, 41, 0.9);
  color: #ffffff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid #ff4444;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: rgba(5, 150, 82, 0.9);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid #00ff88;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header - Top Navigation
--------------------------------------------------------------*/
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 997;
  background: rgba(10, 14, 39, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  padding: 15px 0;
}

.header-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.btn-contact-hire {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 255, 0.2));
  border: 2px solid #00d4ff;
  color: #00d4ff;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-contact-hire:hover {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 153, 255, 0.3));
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Contact Popup */
.contact-popup {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.contact-popup.show,
.contact-popup[style*="flex"] {
  display: flex !important;
  animation: fadeIn 0.3s ease;
}

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

.contact-popup-content {
  background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
  border: 2px solid rgba(0, 212, 255, 0.5);
  border-radius: 15px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
  animation: slideUp 0.3s ease;
}

.contact-popup-content::-webkit-scrollbar {
  width: 8px;
}

.contact-popup-content::-webkit-scrollbar-track {
  background: rgba(26, 31, 58, 0.5);
  border-radius: 10px;
}

.contact-popup-content::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 255, 0.5);
  border-radius: 10px;
}

.contact-popup-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 212, 255, 0.7);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  color: #00d4ff;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.close-popup:hover {
  color: #ffffff;
  transform: rotate(90deg);
}

.contact-popup-content h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 28px;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.contact-popup-content > p {
  color: #e0e7ff;
  margin-bottom: 25px;
  font-size: 16px;
}

.contact-popup-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-popup-form input,
.contact-popup-form textarea {
  background: rgba(26, 31, 58, 0.8) !important;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  padding: 12px 15px;
  color: #ffffff !important;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-popup-form input::placeholder,
.contact-popup-form textarea::placeholder {
  color: rgba(224, 231, 255, 0.5) !important;
}

.contact-popup-form input:focus,
.contact-popup-form textarea:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
  background: rgba(26, 31, 58, 0.9) !important;
  color: #ffffff !important;
}

.contact-popup-form input:invalid:not(:placeholder-shown),
.contact-popup-form textarea:invalid:not(:placeholder-shown) {
  border-color: #ff4444;
  background: rgba(26, 31, 58, 0.9) !important;
}

.contact-popup-form input:valid:not(:placeholder-shown),
.contact-popup-form textarea:valid:not(:placeholder-shown) {
  border-color: rgba(0, 212, 255, 0.4);
}

.contact-popup-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-popup-form button {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 255, 0.2));
  border: 2px solid #00d4ff;
  color: #00d4ff;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.contact-popup-form button:hover {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 153, 255, 0.3));
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
  transform: translateY(-2px);
  color: #ffffff;
}

.contact-alternative {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.contact-alternative p {
  color: #8b9dc3;
  margin-bottom: 15px;
  font-size: 14px;
}

.email-link {
  display: block;
  color: #00d4ff;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.email-link:hover {
  color: #ffffff;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.whatsapp-link:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

main {
  margin-top: 0 !important;
  padding-top: 0 !important;
  margin-left: 0 !important;
}

/* Old navigation menu styles removed - using top navigation now */

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed !important;
  visibility: visible !important;
  opacity: 1 !important;
  right: 30px !important;
  bottom: 30px !important;
  left: auto !important;
  z-index: 99999;
  background: rgba(0, 212, 255, 0.2);
  border: 1px solid #00d4ff;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: all 0.4s;
  color: var(--contrast-color);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.scroll-top i {
  font-size: 28px;
  color: #00d4ff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(0, 212, 255, 0.3);
  border-color: #00d4ff;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
  transform: translateY(-3px);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 30px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  overflow: clip;
}

section#hero.section {
  padding: 0 !important;
}

section#hero,
section#hero.section {
  padding: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Hero Container Box - Covers entire hero section */
.hero-container-box {
  width: 100%;
  min-height: 100vh;
  padding: 0px 40px 0px 40px;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: inset 0 0 100px rgba(0, 212, 255, 0.15), inset 0 0 200px rgba(0, 153, 255, 0.1);
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 0px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: calc(100vh - 70px);
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
}

.hero p {
  margin: 5px 0 0 0;
  font-size: 26px;
}

.hero p span {
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
}

.hero .social-links {
  margin-top: 25px;
}

.hero .social-links a {
  font-size: 20px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

.hero .social-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 24px;
}

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

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

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

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  margin-top: 10px;
  width: 100%;
  position: relative;
  text-align: center;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
}

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

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

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

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid var(--accent-color);
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

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

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

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--background-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

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

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .service-item .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .service-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .service-item .icon svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.services .service-item.item-cyan i {
  color: #0dcaf0;
}

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

.services .service-item.item-cyan:hover .icon path {
  fill: #0dcaf0;
}

.services .service-item.item-orange i {
  color: #fd7e14;
}

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

.services .service-item.item-orange:hover .icon path {
  fill: #fd7e14;
}

.services .service-item.item-teal i {
  color: #20c997;
}

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

.services .service-item.item-teal:hover .icon path {
  fill: #20c997;
}

.services .service-item.item-red i {
  color: #df1529;
}

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

.services .service-item.item-red:hover .icon path {
  fill: #df1529;
}

.services .service-item.item-indigo i {
  color: #6610f2;
}

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

.services .service-item.item-indigo:hover .icon path {
  fill: #6610f2;
}

.services .service-item.item-pink i {
  color: #f3268c;
}

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

.services .service-item.item-pink:hover .icon path {
  fill: #f3268c;
}

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

.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--accent-color);
  padding-left: 30px;
}

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

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  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;
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

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

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

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

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

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

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

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  padding: 60px 0;
}

/*--------------------------------------------------------------
# Futuristic Space Theme Styles
--------------------------------------------------------------*/

/* Particles Background */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
  pointer-events: none;
}

#particles-js canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

body {
  background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
  position: relative;
}

body > *:not(#particles-js):not(#animated-loader) {
  position: relative;
  z-index: 1;
}

main {
  margin: 0;
  padding: 0;
}

/* Animated Loader */
.animated-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.animated-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  position: relative;
}

.constellation-loader {
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  position: relative;
}

#loader-canvas {
  width: 100%;
  height: 100%;
}

.loader-text h2 {
  color: #00d4ff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
  animation: pulse-glow 2s ease-in-out infinite;
}

.loader-text p {
  color: #8b9dc3;
  font-size: 16px;
  margin: 0;
}

@keyframes pulse-glow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
  }
  50% {
    text-shadow: 0 0 30px rgba(0, 212, 255, 1), 0 0 40px rgba(0, 153, 255, 0.6);
  }
}

/* Hero Section - Futuristic Styling */
.hero {
  background: transparent !important;
  position: relative;
  padding: 10px 0 10px 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.hero img:not(.hero-bg-design):not(.profile-img) {
  display: none !important;
}

.hero:before {
  background: transparent !important;
}

/* Hero Left - Title with Background Image */
.hero-left {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 0 30px;
  min-height: auto;
  overflow: visible;
}

.hero-title-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: auto;
  overflow: visible;
}

.hero-title-bg-image {
  position: absolute;
  top: -477px;
  left: -100px;
  width: 800px;
  height: 800px;
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
  overflow: visible;
}

.hero-bg-design {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: left top;
  filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.6));
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}

@keyframes pulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
    opacity: 0.8;
  }
  50% {
    filter: drop-shadow(0 0 50px rgba(0, 212, 255, 0.8));
    opacity: 1;
  }
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin: 0;
  position: relative;
  z-index: 3;
  align-items: flex-start;
  width: 100%;
}

.title-line-1 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 25px rgba(0, 212, 255, 0.8), 0 0 50px rgba(0, 153, 255, 0.4);
  line-height: 1.1;
  display: block;
  margin: 0;
  letter-spacing: 2px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
  position: relative;
  z-index: 3;
  width: 100%;
  animation: bounceText 3s ease-in-out infinite;
}

@keyframes bounceText {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-5px) scale(1.02);
  }
  50% {
    transform: translateY(0) scale(1);
  }
  75% {
    transform: translateY(-3px) scale(1.01);
  }
}

.title-line-2 {
  font-size: 25px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.7), 0 0 40px rgba(0, 153, 255, 0.3);
  line-height: 1.2;
  display: block;
  margin: 10px auto 0 auto;
  letter-spacing: 1px;
  text-align: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
  position: relative;
  z-index: 3;
  align-self: center;
  animation: zigzagText 2.5s ease-in-out infinite;
}

@keyframes bounceText {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-5px) scale(1.02);
  }
  50% {
    transform: translateY(0) scale(1);
  }
  75% {
    transform: translateY(-3px) scale(1.01);
  }
}

@keyframes zigzagText {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(3px) translateY(-2px);
  }
  50% {
    transform: translateX(0) translateY(0);
  }
  75% {
    transform: translateX(-3px) translateY(-2px);
  }
}

@keyframes zigzagText {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(3px) translateY(-2px);
  }
  50% {
    transform: translateX(0) translateY(0);
  }
  75% {
    transform: translateX(-3px) translateY(-2px);
  }
}

/* Hero Right - Profile Picture & Intro */
.hero-right {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  min-height: auto;
  overflow: visible;
}

.hero-profile-section {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 600px;
  position: relative;
  z-index: 10;
}

.hero-profile-image {
  flex-shrink: 0;
  position: relative;
}

.hero-profile-image .profile-img {
  width: 200px !important;
  height: 200px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(0, 212, 255, 0.7);
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.6), inset 0 0 30px rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: rgba(26, 31, 58, 0.5);
  position: relative;
  z-index: 10;
}

.hero-profile-image:hover .profile-img {
  box-shadow: 0 0 70px rgba(0, 212, 255, 0.9), inset 0 0 40px rgba(0, 212, 255, 0.3);
  transform: scale(1.05);
  border-color: #00d4ff;
}

.hero-intro {
  text-align: left;
  flex: 1;
}

.hero-greeting {
  font-size: 32px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Inter', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
}

.hero-role {
  font-size: 24px;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: 'Inter', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
}

.hero-description {
  font-size: 16px;
  color: #e0e7ff;
  margin-bottom: 30px;
  line-height: 1.8;
  font-family: 'Inter', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
  min-height: 60px;
}

.hero-description .typed {
  color: #00d4ff;
  font-weight: 500;
}

.hero-description .typed::after {
  content: '|';
  animation: blink 1s infinite;
  color: #00d4ff;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-buttons {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 10px 20px;
  background: rgba(26, 31, 58, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.4);
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-family: 'Inter', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
}

.hero-btn:hover,
.hero-btn.active {
  background: rgba(0, 212, 255, 0.2);
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  color: #00d4ff;
}

.hero-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  right: -20px;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 153, 255, 0.2) 100%);
  filter: blur(30px);
  z-index: -1;
  border-radius: 20px;
}

/* Social links removed from hero - not in theme image */

/* Remove old navigation styles */
.header-toggle {
  display: none;
}

/* Cards - Glowing Borders */
.portfolio-item,
.service-item,
.stats-item {
  background: rgba(26, 31, 58, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.portfolio-item:hover,
.service-item:hover {
  border-color: #00d4ff;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
  transform: translateY(-5px) scale(1.02);
}

/* Section Titles - Glowing Effect */
.section-title h2 {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.section-title h2:before {
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.section-title h2::after {
  background: #00d4ff;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

/* Skills Progress Bars - Glowing */
.skills .progress-bar-wrap {
  background: rgba(26, 31, 58, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 5px;
}

.skills .progress-bar {
  background: linear-gradient(90deg, #00d4ff, #0099ff);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
  border-radius: 5px;
}

/* Buttons - Glowing Effect */
a[href*="Resume.pdf"],
button,
.btn {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid #00d4ff;
  color: #00d4ff;
  transition: all 0.3s ease;
  border-radius: 5px;
  padding: 10px 20px;
}

a[href*="Resume.pdf"]:hover,
button:hover,
.btn:hover {
  background: rgba(0, 212, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
  transform: translateY(-2px);
}

/* Scroll Top Button */
/* Footer */
.footer {
  background: rgba(10, 14, 39, 0.8);
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer .social-links a {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
  transform: translateY(-3px);
}

/* Resume Items - Glowing Timeline */
.resume .resume-item {
  border-left-color: #00d4ff;
}

.resume .resume-item::before {
  background: #0a0e27;
  border-color: #00d4ff;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

/* Services Items - Enhanced Glow */
.services .service-item {
  background: rgba(26, 31, 58, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.services .service-item:hover {
  border-color: #00d4ff;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
}

.services .service-item .icon {
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.services .service-item:hover .icon {
  background: rgba(0, 212, 255, 0.2);
  border-color: #00d4ff;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.services .service-item .icon i {
  color: #00d4ff;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
}

/* Stats Icons */
.stats i {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

/* Portfolio Cards - Enhanced Hover */
.portfolio-item {
  overflow: hidden;
  margin-bottom: 30px;
}

.portfolio-card-inner {
  background: rgba(26, 31, 58, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.portfolio-card-inner:hover {
  border-color: #00d4ff;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
  transform: translateY(-5px);
}

.portfolio-card-inner h4 {
  color: #ffffff;
}

.portfolio-card-inner p {
  color: #e0e7ff;
}

.portfolio-card-inner .details-link {
  color: #00d4ff;
  transition: all 0.3s ease;
}

.portfolio-card-inner .details-link:hover {
  color: #0099ff;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
  transform: scale(1.2);
}

.portfolio-logo-wrapper {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.portfolio-card-inner:hover .portfolio-logo-wrapper {
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
}

.portfolio-logo {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-logo {
  transform: scale(1.05);
}

.portfolio-item img {
  transition: transform 0.5s ease;
  filter: brightness(0.9);
}

.portfolio-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

/* Dashboard Panels */
.dashboard-section {
  padding: 60px 0;
  background: transparent;
}

.dashboard-panel {
  background: rgba(26, 31, 58, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.dashboard-panel:hover {
  border-color: #00d4ff;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
  transform: translateY(-5px);
}

.panel-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

/* About Panel */
.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 30px;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  background: rgba(0, 212, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
}

.about-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateX(5px);
}

.about-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  color: #00d4ff;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.about-text strong {
  color: #00d4ff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text span {
  color: #ffffff;
  font-size: 14px;
}

.about-description {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-description p {
  color: #e0e7ff;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 15px 0;
}

.about-description p:first-child {
  margin-top: 0;
}

.about-projects-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.about-projects-list li {
  color: #e0e7ff;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.about-projects-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-weight: bold;
}

.about-projects-list li strong {
  color: #00d4ff;
  font-weight: 600;
}

.btn-download-cv {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 255, 0.2));
  border: 2px solid #00d4ff;
  color: #00d4ff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  margin-top: 20px;
}

.btn-download-cv:hover {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 153, 255, 0.3));
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Skills Panel */
.skills-list {
  margin-bottom: 20px;
}

.skill-item {
  margin-bottom: 20px;
}

.skill-name {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.skill-progress {
  width: 100%;
  height: 8px;
  background: rgba(26, 31, 58, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.skill-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #00d4ff, #0099ff);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
  transition: width 1s ease-out;
  position: relative;
}

.skill-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Projects Panel */
.projects-list {
  margin-bottom: 20px;
}

.project-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  margin-bottom: 15px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.project-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  transform: translateX(5px);
}

.project-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  color: #00d4ff;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.project-info h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.project-info p {
  color: #8b9dc3;
  font-size: 13px;
  margin: 0;
}

.btn-view-resume {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  background: rgba(26, 31, 58, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.4);
  color: #00d4ff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.btn-view-resume:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
}

/* AI Bot Icon Below Form */
.ai-bot-below-form {
  text-align: center;
  margin-top: 30px;
  /* padding: 15px 0; */
}

.ai-bot-icon-small {
  width: 250px;
  height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
  animation: floatBot 3s ease-in-out infinite;
  opacity: 0.8;
}

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

/* Contact Section */
.contact {
  background: rgba(10, 14, 39, 0.5);
}

.contact .info-item {
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact .info-item:hover {
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  transform: translateX(5px);
}

.contact .info-item i {
  color: #00d4ff;
  font-size: 24px;
  margin-right: 15px;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
}

.contact .info-item h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 5px;
}

.contact .info-item p {
  color: #e0e7ff;
  margin: 0;
}

.contact .info-item a {
  color: #00d4ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact .info-item a:hover {
  color: #ffffff;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

/* About Section - Keep existing styles */
.about .content h2 {
  color: #ffffff;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.about .content ul i {
  color: #00d4ff;
  filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.6));
}

/* Form Elements */
.form-control {
  background: rgba(26, 31, 58, 0.8) !important;
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: #e0e7ff !important;
  border-radius: 5px;
}

.form-control::placeholder {
  color: rgba(224, 231, 255, 0.5) !important;
}

.form-control:focus {
  background: rgba(26, 31, 58, 0.9) !important;
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  color: #ffffff !important;
}

.form-control:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #ff4444;
  background: rgba(26, 31, 58, 0.9) !important;
}

.form-control:valid:not(:placeholder-shown) {
  border-color: rgba(0, 212, 255, 0.4);
}

.form-control:valid:not(:placeholder-shown) {
  border-color: rgba(0, 212, 255, 0.4);
}

/* Phone Input Wrapper */
.phone-input-wrapper {
  display: flex;
  gap: 10px;
}

.country-code-select {
  width: 140px;
  flex-shrink: 0;
}

.phone-input {
  flex: 1;
}

.error-text {
  display: none;
  color: #ff4444;
  font-size: 12px;
  margin-top: 5px;
}

.form-control:invalid:not(:placeholder-shown) {
  border-color: #ff4444;
}

#form-loading {
  display: none;
  color: #00d4ff;
  margin-bottom: 10px;
}

#form-error {
  display: none;
  color: #ff4444;
  margin-bottom: 10px;
}

#form-success {
  display: none;
  color: #00ff88;
  margin-bottom: 10px;
}

#form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Preloader Update - Hidden (using animated loader instead) */
#preloader {
  display: none !important;
}

#preloader:before {
  display: none;
}

/* Text Glow Utilities */
.text-glow {
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

/* Smooth Scroll Animations */
[data-aos] {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .loader-text h2 {
    font-size: 24px;
  }
  
  .constellation-loader {
    width: 150px;
    height: 150px;
  }

  .hero {
    padding: 20px 0 20px 0 !important;
  }

  .hero-left {
    padding: 0 20px;
    margin-bottom: 15px;
  }

  .hero-title-wrapper {
    padding: 15px 20px;
    min-height: auto;
  }

  .title-line-1 {
    font-size: 42px !important;
    letter-spacing: 2px !important;
    animation: bounceText 3s ease-in-out infinite;
  }

  .title-line-2 {
    font-size: 25px !important;
    letter-spacing: 2px !important;
    animation: zigzagText 2.5s ease-in-out infinite;
  }

  .hero-title-bg-image {
    top: -80px !important;
    left: -50px !important;
    width: 400px !important;
    height: 400px !important;
    overflow: hidden !important;
  }

  .hero-bg-design {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  .hero-title-wrapper {
    overflow: hidden;
  }

  .hero-right {
    padding: 0 20px;
  }

  .hero-profile-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .hero-profile-image {
    margin-bottom: 5px;
  }

  .hero-intro {
    margin-top: 5px;
  }

  .hero-profile-image .profile-img {
    width: 150px !important;
    height: 150px !important;
  }

  .hero-intro {
    text-align: center;
  }

  .hero-greeting {
    font-size: 24px;
  }

  .hero-role {
    font-size: 18px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .btn-contact-hire {
    padding: 10px 20px;
    font-size: 14px;
  }

  .contact-popup-content {
    padding: 30px 20px;
    max-width: 95%;
  }

  .dashboard-panel {
    margin-bottom: 30px;
  }

  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .scroll-top {
    right: 20px !important;
    bottom: 20px !important;
    width: 45px;
    height: 45px;
  }

  .hero-profile-image .profile-img {
    width: 150px;
    height: 150px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn {
    width: 100%;
  }

  .header-content {
    justify-content: center;
  }

  .top-navmenu ul {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-navmenu a {
    font-size: 14px;
    padding: 6px 0;
  }

  .hero-left {
    padding-left: 20px;
    min-height: 30vh;
    align-items: center;
  }

  .hero-right {
    padding-right: 20px;
    padding-left: 20px;
    min-height: 50vh;
  }

  .title-line-1 {
    font-size: 42px;
  }

  .title-line-2 {
    font-size: 32px;
  }

  .hero-profile-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .hero-profile-image {
    margin-bottom: 5px;
  }

  .hero-intro {
    margin-top: 5px;
  }

  .hero-profile-image .profile-img {
    width: 120px;
    height: 120px;
  }

  .hero-intro {
    text-align: center;
  }

  .hero-greeting {
    font-size: 24px;
  }

  .hero-role {
    font-size: 18px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* Additional Glow Effects */
.about img {
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}

.about img:hover {
  border-color: #00d4ff;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
}

/* Stats Section Enhancement */
.stats {
  background: rgba(26, 31, 58, 0.4);
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

/* Skills Section Enhancement */
.skills {
  background: rgba(10, 14, 39, 0.5);
}

/* Resume Section Enhancement */
.resume {
  background: rgba(26, 31, 58, 0.3);
}

/* Services Section Enhancement */
.services {
  background: rgba(10, 14, 39, 0.5);
}

/* Portfolio Section Enhancement */
.portfolio {
  background: rgba(26, 31, 58, 0.3);
}

/* Smooth transitions for all interactive elements */
a, button, .portfolio-item, .service-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ensure AOS animations work */
[data-aos] {
  pointer-events: auto;
  will-change: transform, opacity;
}

[data-aos].aos-animate {
  opacity: 1 !important;
}

/* Scroll animation classes */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* Only animate sections that have data-aos attribute */
section[data-aos],
section .container[data-aos] {
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.aos-animate,
section.animate-in,
section[data-aos].aos-animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Enhanced focus states for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

/*--------------------------------------------------------------
# Products & SaaS Solutions Section
--------------------------------------------------------------*/
.products {
  background: rgba(10, 14, 39, 0.5);
}

.product-card {
  background: rgba(26, 31, 58, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3), 0 0 60px rgba(0, 212, 255, 0.1);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.product-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-card:hover .product-icon {
  transform: scale(1.1) rotate(2deg);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.product-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.product-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid;
}

.badge-saas {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.4);
  color: #00d4ff;
}

.badge-enterprise {
  background: rgba(0, 153, 255, 0.15);
  border-color: rgba(0, 153, 255, 0.4);
  color: #0099ff;
}

.badge-whitelabel {
  background: rgba(0, 255, 136, 0.15);
  border-color: rgba(0, 255, 136, 0.4);
  color: #00ff88;
}

.badge-coming-soon {
  background: rgba(255, 165, 0, 0.15);
  border-color: rgba(255, 165, 0, 0.4);
  color: #ffa500;
  animation: pulseGlow 2s ease-in-out infinite;
}

.badge-erp {
  background: rgba(255, 200, 0, 0.15);
  border-color: rgba(255, 200, 0, 0.4);
  color: #ffc800;
}

.product-card-body {
  flex: 1;
  margin-bottom: 25px;
}

.product-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.product-subtitle {
  font-size: 16px;
  color: #00d4ff;
  font-weight: 500;
  margin-bottom: 15px;
}

.product-description {
  font-size: 14px;
  color: #e0e7ff;
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  font-size: 13px;
  color: #c0c7e8;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.product-features li i {
  color: #00d4ff;
  font-size: 16px;
  flex-shrink: 0;
}

.product-card:hover .product-features li {
  color: #e0e7ff;
  transform: translateX(3px);
}

.product-card-footer {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.product-custom-note {
  font-size: 13px;
  color: #00d4ff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.product-custom-note i {
  font-size: 16px;
  color: #00d4ff;
}

.btn-product {
  flex: 1;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn-demo {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 255, 0.2));
  border: 1px solid rgba(0, 212, 255, 0.4);
  color: #00d4ff;
}

.btn-demo:hover:not(:disabled) {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 153, 255, 0.3));
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  transform: translateY(-2px);
}

.btn-demo:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-learn {
  background: rgba(26, 31, 58, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: #ffffff;
}

.btn-learn:hover:not(:disabled) {
  background: rgba(0, 212, 255, 0.1);
  border-color: #00d4ff;
  color: #00d4ff;
}

.product-leadforge:hover {
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3), 0 0 60px rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.5);
}

.product-shopease:hover {
  box-shadow: 0 10px 40px rgba(20, 184, 166, 0.3), 0 0 60px rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.5);
}

.product-eduease:hover {
  box-shadow: 0 10px 40px rgba(251, 146, 60, 0.3), 0 0 60px rgba(251, 146, 60, 0.1);
  border-color: rgba(251, 146, 60, 0.5);
}

.demo-modal-content {
  max-width: 550px;
}

@media (max-width: 768px) {
  .product-card {
    padding: 25px;
  }

  .product-title {
    font-size: 24px;
  }

  .product-card-footer {
    flex-direction: column;
  }

  .btn-product {
    width: 100%;
  }
}