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

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --nav-dropdown-hover-color: #0563bb;

  --dark-background-color: #060606;
  --dark-default-color: #ffffff;
  --dark-heading-color: #ffffff;
  --dark-surface-color: #1a1a1a;
  --dark-contrast-color: #ffffff;
  --dark-nav-color: #ffffff;
  --dark-nav-hover-color: #0563bb;
  --dark-nav-mobile-background-color: #1a1a1a;
  --dark-nav-dropdown-background-color: #1a1a1a;
  --dark-nav-dropdown-color: #ffffff;

  --primary-color: #0563bb;
  --bg-color: #ffffff;
  --text-color: #444444;
  --heading-color: #1a1a1a;
  --surface-color: #ffffff;
}

*, *::before, *::after {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease !important;
}

body {
  transition: background-color 0.5s ease, color 0.5s ease;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  opacity: 0;
  pointer-events: none;
  z-index: 99999;
  transition: opacity 0.3s ease;
}

body.dark-mode::before {
  background: #1a1a1a;
}

body.theme-transition::before {
  opacity: 0.08;
}

body.dark-mode {
  --background-color: var(--dark-background-color);
  --default-color: var(--dark-default-color);
  --heading-color: var(--dark-heading-color);
  --surface-color: var(--dark-surface-color);
  --contrast-color: var(--dark-contrast-color);
  --nav-color: var(--dark-nav-color);
  --nav-hover-color: var(--dark-nav-hover-color);
  --nav-mobile-background-color: var(--dark-nav-mobile-background-color);
  --nav-dropdown-background-color: var(--dark-nav-dropdown-background-color);
  --nav-dropdown-color: var(--dark-nav-dropdown-color);
  --nav-dropdown-hover-color: var(--dark-nav-hover-color);
  
  --bg-color: #060606;
  --text-color: #b0b0b0;
  --heading-color: #ffffff;
  --surface-color: #1a1a1a;
  --card-bg: #1a1a1a;
  --bg-secondary: #252525;
  --border-color: #333333;
  --shadow: rgba(0, 0, 0, 0.3);
  --shadow-hover: rgba(5, 99, 187, 0.2);
}

/* Sticky Header

.logo-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0563bb, #034a8e);
  color: #ffffff;
  border-radius: 14px;
  font-family: 'Zain', sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.theme-toggle-btn,
.theme-toggle-sticky {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0563bb, #034a8e);
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(5, 99, 187, 0.3);
}

.theme-toggle-btn:hover,
.theme-toggle-sticky:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 25px rgba(5, 99, 187, 0.5);
}

/* Dark Mode Sticky Header */
body.dark-mode .sticky-header {
  background: rgba(26, 26, 26, 0.98);
  border-bottom: 2px solid #4dabf7;
  box-shadow: 0 4px 30px rgba(77, 171, 247, 0.2);
}

body.dark-mode .theme-toggle-sticky {
  background: linear-gradient(135deg, #4dabf7, #0563bb);
  box-shadow: 0 4px 15px rgba(77, 171, 247, 0.3);
}

body.dark-mode .theme-toggle-sticky:hover {
  box-shadow: 0 8px 25px rgba(77, 171, 247, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .sticky-header {
    padding: 0 15px;
  }
  
  .logo-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  
  .theme-toggle-sticky {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .sticky-header-content {
    padding: 10px 20px;
  }
  padding: 15px 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.sticky-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
}

.logo-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0563bb, #034a8e);
  color: #ffffff;
  border-radius: 12px;
  font-family: 'Zain', sans-serif;
}

.logo-text {
  color: #1a1a1a;
  font-family: 'Zain', sans-serif;
  letter-spacing: 1px;
}

.sticky-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle-sticky {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(5, 99, 187, 0.1);
  color: #0563bb;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-toggle-sticky:hover {
  background: #0563bb;
  color: #ffffff;
  transform: rotate(15deg);
}

/* Dark Mode Sticky Header */
body.dark-mode .sticky-header {
  background: rgba(26, 26, 26, 0.98) !important;
  border-bottom: 2px solid #4dabf7;
  box-shadow: 0 4px 30px rgba(77, 171, 247, 0.2);
}

body.dark-mode .logo-text {
  color: #ffffff;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.9);
  color: #ffd43b;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-toggle-btn:hover {
  background: rgba(26, 26, 26, 1);
  color: #ffd43b;
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.theme-toggle-btn i {
  transition: transform 0.3s ease;
}

.theme-toggle-btn:hover i {
  transform: rotate(15deg);
}

/* Dark Mode Theme Toggle */
body.dark-mode .theme-toggle-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #0563bb;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

body.dark-mode .theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 1);
  color: #0563bb;
  transform: scale(1.1) rotate(-15deg);
  box-shadow: 0 4px 15px rgba(5, 99, 187, 0.3);
}

.theme-toggle-nav {
  display: none;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #45505b;  /* The default color of the main navmenu links */
  --nav-hover-color: #0563bb; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0563bb; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* 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: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Dark Mode Body Styles */
body.dark-mode {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1a1a1a;
  --contrast-color: #ffffff;
  --nav-color: #ffffff;
  --nav-hover-color: #0563bb;
  --nav-mobile-background-color: #1a1a1a;
  --nav-dropdown-background-color: #1a1a1a;
  --nav-dropdown-color: #ffffff;
  --nav-dropdown-hover-color: #0563bb;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  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: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.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
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  position: fixed;
  top: 70px;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 100;
  min-width: 200px;
  background-color: #ffffff;
  border-right: 1px solid #e0e0e0;
}

.header h3,
.header .sitename {
  color: #0563bb;
}

@media (max-width: 1199px) {
  .header {
    background-color: #ffffff;
    border-right: 1px solid #e0e0e0;
    border-left: none;
    width: 450px;
    right: -100%;
    left: auto;
    padding-top: 90px;
  }

  .mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  body.header-show .mobile-nav-overlay {
    display: block;
    opacity: 1;
  }

  body.header-show .header-top-center,
  body.header-show .header-top-left,
  body.header-show .header-controls {
    display: none;
  }
}

.header.header-show {
  right: 0;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.header-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(5, 99, 187, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 15px rgba(5, 99, 187, 0.2);
  border: 1px solid rgba(5, 99, 187, 0.4);
  color: #ffd43b;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.header-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1200px) {
  .header-toggle {
    display: none;
  }
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 12px;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
}

.header-top-center {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

.site-name {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 44px;
  width: 920px;
  border-radius: 20px;
  background: rgba(5, 99, 187, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  box-shadow: 0 2px 15px rgba(5, 99, 187, 0.2);
  border: 1px solid rgba(5, 99, 187, 0.4);
  text-decoration: none;
}

.site-name:hover {
  color: #ffffff;
}

body.dark-mode .site-name {
  background: rgba(5, 99, 187, 0.3);
  color: #ffffff;
  border: 1px solid rgba(5, 99, 187, 0.4);
  box-shadow: 0 2px 15px rgba(5, 99, 187, 0.2);
}

@media (max-width: 768px) {
  .header-top-center {
    top: 16px;
    left: 76px;
    transform: none;
    width: calc(100% - 160px);
  }
  
  .site-name {
    width: 100%;
    height: 44px;
    font-size: 1.4rem;
    padding: 0 15px;
  }
  
  .header-top-left {
    top: 16px;
    left: 16px;
    z-index: 10000;
  }
  
  .header-theme-toggle-top {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  
  .header-controls {
    top: 16px;
    right: 16px;
    z-index: 10000;
  }
  
  .header-top-left,
  .header-top-center,
  .header-controls {
    position: fixed;
    display: flex;
    align-items: center;
  }
  
  .header-top-center {
    left: 70px;
    transform: none;
    width: calc(100% - 150px);
  }
}

.header-theme-toggle-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(5, 99, 187, 0.3);
  color: #ffd43b;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 15px rgba(5, 99, 187, 0.2);
  border: 1px solid rgba(5, 99, 187, 0.4);
}

.header-theme-toggle-top:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ffd43b;
}

body.dark-mode .header-theme-toggle-top {
  background: rgba(5, 99, 187, 0.3);
  color: #ffd43b;
  box-shadow: 0 2px 15px rgba(5, 99, 187, 0.2);
  border: 1px solid rgba(5, 99, 187, 0.4);
}

.header-theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0563bb, #034a8e);
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(5, 99, 187, 0.3);
}

.header-theme-toggle:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 20px rgba(5, 99, 187, 0.4);
}

@media (min-width: 1200px) {
}

.header .header-toggle:hover {
  background: rgba(5, 99, 187, 0.5);
  color: #ffd43b;
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(5, 99, 187, 0.3);
}

/* Dark Mode Header Toggle */
body.dark-mode .header-toggle {
  background: rgba(5, 99, 187, 0.3);
  color: #ffd43b;
  box-shadow: 0 2px 15px rgba(5, 99, 187, 0.2);
  border: 1px solid rgba(5, 99, 187, 0.4);
}

body.dark-mode .header-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

body.dark-mode .header-toggle:hover {
  background: rgba(5, 99, 187, 0.9);
  color: #ffffff;
  transform: scale(1.1);
}

body.dark-mode .header-theme-toggle {
  background: linear-gradient(135deg, #4dabf7, #0563bb);
  box-shadow: 0 4px 15px rgba(77, 171, 247, 0.3);
}

body.dark-mode .header-theme-toggle:hover {
  box-shadow: 0 6px 20px rgba(77, 171, 247, 0.4);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navmenu {
  padding: 0;
  z-index: 9997;
}

.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
  width: 140px;
}

.navmenu a,
.navmenu a:focus {
  color: #45505b;
  font-family: var(--nav-font);
  display: flex;
  align-items: center;
  padding: 10px 18px;
  margin-bottom: 8px;
  font-size: 15px;
  border-radius: 50px;
  background: #f0f0f0;
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.navmenu a i {
  color: #45505b;
}

.navmenu a span {
  color: #45505b;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus,
.navmenu li:hover>a {
  color: #ffffff;
  background: #0563bb;
}

.navmenu a:hover i,
.navmenu .active i,
.navmenu li:hover>a i {
  color: #ffffff;
}

.navmenu a:hover span,
.navmenu .active span,
.navmenu li:hover>a span {
  color: #ffffff;
}

/* Dark Mode Sidebar */
body.dark-mode .header {
  background-color: #1a1a1a;
  border-right-color: #333333;
}

body.dark-mode .navmenu a,
body.dark-mode .navmenu a:focus {
  color: #e0e0e0;
  background: #252525;
}

body.dark-mode .navmenu a i,
body.dark-mode .navmenu a span {
  color: #e0e0e0;
}

body.dark-mode .navmenu a:hover,
body.dark-mode .navmenu .active,
body.dark-mode .navmenu .active:focus,
body.dark-mode .navmenu li:hover>a {
  color: #000000;
  background: #0563bb;
}

body.dark-mode .navmenu a:hover i,
body.dark-mode .navmenu .active i,
body.dark-mode .navmenu li:hover>a i {
  color: #000000;
}

body.dark-mode .navmenu a:hover span,
body.dark-mode .navmenu .active span,
body.dark-mode .navmenu li:hover>a span {
  color: #000000;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus,
.navmenu li:hover>a {
  color: #ffffff;
  background: #0563bb;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 20px;
}

.navmenu a span,
.navmenu a:focus span {
  padding: 0 5px 0 7px;
}

@media (min-width: 992px) {

  .navmenu a,
  .navmenu a:focus {
    max-width: 56px;
  }

  .navmenu a span,
  .navmenu a:focus span {
    display: none;
  }
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus,
.navmenu li:hover>a {
  color: var(--contrast-color);
  background: var(--nav-hover-color);
}

.navmenu a:hover,
.navmenu li:hover>a {
  max-width: 100%;
  color: var(--contrast-color);
}

.navmenu a:hover span,
.navmenu li:hover>a span {
  display: block;
}

/*--------------------------------------------------------------
# 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;
}

/* Modern Footer Styles */
.footer {
  padding: 50px 0 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.footer .container {
  max-width: 1140px;
}

.footer-content {
  text-align: center;
  margin-bottom: 30px;
}

.footer-content h3 {
  font-size: 30px;
  font-weight: 700;
  color: #034a8e;
  margin-bottom: 10px;
}

.footer-content h3 a {
  color: #034a8e;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-content h3 a:hover {
  color: #0563bb;
}

.footer-content p {
  color: #6c757d;
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #ffffff !important;
  font-size: 20px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-5px);
}

.footer-social a.fb {
  background: #1877F2 !important;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.footer-social a.fb:hover {
  background: #166FE5 !important;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
}

.footer-social a.tg {
  background: #0088cc !important;
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.footer-social a.tg:hover {
  background: #0077B5 !important;
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.5);
}

.footer-social a.gh {
  background: #333333 !important;
  box-shadow: 0 4px 15px rgba(51, 51, 51, 0.4);
}

.footer-social a.gh:hover {
  background: #24292e !important;
  box-shadow: 0 8px 25px rgba(51, 51, 51, 0.5);
}

.footer-social a.sc {
  background: #FFFC00 !important;
  color: #000000 !important;
  box-shadow: 0 4px 15px rgba(255, 252, 0, 0.4);
}

.footer-social a.sc:hover {
  background: #E6E600 !important;
  box-shadow: 0 8px 25px rgba(255, 252, 0, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
  color: #0563bb;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  transition: color 0.3s ease;
}

.footer-bottom p a {
  color: #0563bb;
  text-decoration: none;
}

.footer-bottom p:hover,
.footer-bottom p a:hover {
  color: #dc3545;
}

.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;
}

/* Dark Mode Footer */
body.dark-mode .footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

body.dark-mode .footer-content h3 {
  color: #4dabf7;
  font-size: 30px;
}

body.dark-mode .footer-content h3 a {
  color: #4dabf7;
  text-decoration: none;
  transition: all 0.3s ease;
}

body.dark-mode .footer-content h3 a:hover {
  color: #4dabf7;
}

body.dark-mode .footer-bottom p {
  color: #4dabf7;
  font-size: 18px;
  font-weight: 700;
  transition: color 0.3s ease;
}

body.dark-mode .footer-bottom p a {
  color: #4dabf7;
  text-decoration: none;
}

body.dark-mode .footer-bottom p:hover,
body.dark-mode .footer-bottom p a:hover {
  color: #dc3545;
}

body.dark-mode .footer-social a {
  background: #0563bb;
  color: #ffffff !important;
}

body.dark-mode .footer-social a:hover {
  background: #0d9488;
  color: #000000;
}

body.dark-mode .footer-social a.sc {
  background: #FFFC00 !important;
  color: #000000 !important;
  box-shadow: 0 4px 15px rgba(255, 252, 0, 0.4);
}

body.dark-mode .footer-social a.sc:hover {
  background: #E6E600 !important;
  box-shadow: 0 8px 25px rgba(255, 252, 0, 0.5);
}

body.dark-mode .footer .copyright {
  border-top-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .footer-bottom p {
  color: #dc3545;
  font-size: 18px;
  font-weight: 700;
}

/*--------------------------------------------------------------
# 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;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(5, 99, 187, 0.3);
  color: #ffd43b;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 15px rgba(5, 99, 187, 0.2);
  border: 1px solid rgba(5, 99, 187, 0.4);
}

.scroll-top i {
  font-size: 24px;
  color: #ffd43b;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(26, 26, 26, 1);
  color: #ffd43b;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

/* Dark Mode Scroll Top */
body.dark-mode .scroll-top {
  background: rgba(5, 99, 187, 0.3);
  color: #ffd43b;
  box-shadow: 0 2px 15px rgba(5, 99, 187, 0.2);
  border: 1px solid rgba(5, 99, 187, 0.4);
}

body.dark-mode .scroll-top i {
  color: #ffd43b;
}

body.dark-mode .scroll-top:hover {
  background: rgba(5, 99, 187, 0.5);
  color: #ffd43b;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(5, 99, 187, 0.3);
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.about .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.about .section-title p {
  font-size: 18px;
  color: #555;
}

/*--------------------------------------------------------------
# Education Section
--------------------------------------------------------------*/
.resume .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.resume .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.resume .section-title p {
  font-size: 18px;
  color: #555;
}

/*--------------------------------------------------------------
# Journey List Styles
--------------------------------------------------------------*/
.journey-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.journey-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.journey-year {
  min-width: 140px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #0563bb, #034a8e);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(5, 99, 187, 0.3);
}

.journey-details {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.journey-details:hover {
  border-color: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.journey-details h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.journey-details h4 {
  font-size: 15px;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 10px;
}

.journey-details p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Dark Mode */
body.dark-mode .journey-year {
  background: linear-gradient(135deg, #0563bb, #034a8e);
}

body.dark-mode .journey-details {
  background: #1a1a1a;
  border-color: #333;
}

body.dark-mode .journey-details:hover {
  border-color: #2563eb;
}

body.dark-mode .journey-details h3 {
  color: #fff;
}

body.dark-mode .journey-details h4 {
  color: #2563eb;
}

body.dark-mode .journey-details p {
  color: #b0b0b0;
}

/* Responsive */
@media (max-width: 768px) {
  .journey-item {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .journey-year {
    min-width: auto;
    width: fit-content;
  }
  
  .journey-details {
    padding: 20px;
  }
  
  .journey-details h3 {
    font-size: 18px;
  }
  
  .journey-details h4 {
    font-size: 14px;
  }
  
  .journey-details p {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Timeline Styles
--------------------------------------------------------------*/
.timeline {
  position: relative;
  padding: 20px 0;
  max-width: 900px;
  margin: 0 auto;
}

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

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

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: #ccc;
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #0563bb;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/* Dark Mode Section Titles */
body.dark-mode .section-title h2 {
  color: #0563bb;
}

body.dark-mode .section-title h2:before {
  background: rgba(255, 255, 255, 0.3);
}

body.dark-mode .section-title h2::after {
  background: #0563bb;
}

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

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5, 99, 187, 0.85), rgba(0, 0, 0, 0.75));
  z-index: 2;
}

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

.hero h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  margin: 15px 0 0 0;
  font-size: 28px;
  color: #ffffff;
}

.hero p span {
  letter-spacing: 1px;
  border-bottom: 3px solid #0563bb;
}

.hero-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.hero-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 22px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-social a:hover {
  transform: translateY(-5px);
}

.hero-social .hero-fb {
  background: #1877F2 !important;
  border-color: #1877F2 !important;
}

.hero-social .hero-tg {
  background: #0088cc !important;
  border-color: #0088cc !important;
}

.hero-social .hero-gh {
  background: #333333 !important;
  border-color: #333333 !important;
}

.hero-social .hero-sc {
  background: #FFFC00 !important;
  border-color: #FFFC00 !important;
}

.hero-social .hero-sc i {
  color: #000000 !important;
}

.hero-social .hero-fb:hover,
.hero-social .hero-tg:hover,
.hero-social .hero-gh:hover {
  opacity: 0.9;
}

.hero-social .hero-sc:hover {
  opacity: 0.9;
}

.hero-social .hero-fb i,
.hero-social .hero-tg i,
.hero-social .hero-gh i {
  color: #ffffff !important;
}

.hero-social .hero-sc i {
  color: #000000 !important;
}

.hero-social .hero-fb:hover,
.hero-social .hero-tg:hover,
.hero-social .hero-gh:hover,
.hero-social .hero-sc:hover {
  opacity: 0.9;
  transform: translateY(-5px);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 15px 35px;
  background: #0563bb;
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background: #0d9488;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(32, 201, 151, 0.4);
}

.btn-hero i {
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

/* Dark Mode Hero */
body.dark-mode .hero-overlay {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(20, 20, 20, 0.85));
}

/* Hero Responsive */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 40px;
  }
  
  .hero p {
    font-size: 20px;
  }
  
  .hero-social a {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

.hero-desc {
  font-size: 16px !important;
  margin-top: 15px !important;
  max-width: 600px;
  line-height: 1.6;
  opacity: 0.9;
}

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

.hero .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: all 0.3s ease;
}

.hero .social-links a:hover {
  transform: translateY(-3px);
}

.hero .social-links a.bi-facebook:hover {
  background: #1877F2;
}

.hero .social-links a.bi-telegram:hover {
  background: #0088cc;
}

.hero .social-links a.bi-github:hover {
  background: #333333;
}

.hero .social-links a.bi-snapchat:hover {
  background: #FFFC00;
  color: #000000;
}

/* Dark Mode Hero Section */
body.dark-mode .hero h2 {
  color: #ffffff;
}

body.dark-mode .hero p {
  color: #ffffff;
}

body.dark-mode .hero:before {
  background: rgba(0, 0, 0, 0.6);
}

body.dark-mode .hero .social-links a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

body.dark-mode .hero .social-links a:hover {
  background: var(--accent-color);
  color: #ffffff;
}

.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 {
  background-color: rgba(5, 99, 187, 0.1);
}

.about .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.about .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.about .section-title p {
  font-size: 18px;
  color: #555;
}

/*--------------------------------------------------------------
# Education Section
--------------------------------------------------------------*/
.resume {
  background-color: #ffffff;
}

.resume .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.resume .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.resume .section-title p {
  font-size: 18px;
  color: #555;
}

/*--------------------------------------------------------------
# Timeline Styles
--------------------------------------------------------------*/
.timeline {
  position: relative;
  padding: 30px 0;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #0563bb, #764ba2);
  border-radius: 4px;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 30px;
}

.timeline-dot {
  position: absolute;
  left: -4px;
  width: 24px;
  height: 24px;
  background: #0563bb;
  border-radius: 50%;
  border: 4px solid #fff;
  z-index: 2;
  box-shadow: 0 3px 15px rgba(5, 99, 187, 0.4);
}

.timeline-date {
  display: inline-block;
  background: linear-gradient(135deg, #0563bb, #764ba2);
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(5, 99, 187, 0.3);
  margin-bottom: 12px;
}

.timeline-content {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.timeline-content:hover {
  border-color: #0563bb;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(5, 99, 187, 0.15);
}

.timeline-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline-content h3 i {
  color: #0563bb;
  font-size: 22px;
}

.timeline-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: #0563bb;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.timeline-content {
  background: #fff;
  padding: 35px;
  border-radius: 24px;
  width: 88%;
  border: 2px solid #e0e0e0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-color: #0563bb;
  box-shadow: 0 15px 40px rgba(5, 99, 187, 0.15);
}

.timeline-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline-content h3 i {
  color: #0563bb;
  font-size: 24px;
}

.timeline-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0563bb;
  margin-bottom: 12px;
}

.timeline-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* Dark Mode */
body.dark-mode .resume {
  background: #0f0f0f;
}

body.dark-mode .resume .section-title h2 {
  color: #fff;
}

body.dark-mode .resume .section-title p {
  color: #aaa;
}

body.dark-mode .timeline::before {
  background: linear-gradient(to bottom, #0563bb, #764ba2);
}

body.dark-mode .timeline-dot {
  background: #0563bb;
  border-color: #1a1a1a;
}

body.dark-mode .timeline-content {
  background: #1a1a1a;
  border-color: #333;
}

body.dark-mode .timeline-content:hover {
  border-color: #0563bb;
}

body.dark-mode .timeline-content h3 {
  color: #fff;
}

body.dark-mode .timeline-content h4 {
  color: #0563bb;
}

body.dark-mode .timeline-content p {
  color: #b0b0b0;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline {
    padding-left: 25px;
  }
  
  .timeline::before {
    left: 8px;
  }
  
  .timeline-item {
    padding-left: 20px;
    margin-bottom: 25px;
  }
  
  .timeline-dot {
    left: -4px;
  }
  
  .timeline-content {
    padding: 20px;
  }
  
  .timeline-content h3 {
    font-size: 18px;
  }
  
  .timeline-content h4 {
    font-size: 14px;
  }
  
  .timeline-content p {
    font-size: 13px;
  }
}

.about-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: stretch;
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 80px;
  width: 100%;
  box-sizing: border-box;
}

.about-profile {
  flex: 1;
  max-width: 550px;
  min-width: 350px;
  position: sticky;
  top: 120px;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(5, 99, 187, 0.2);
  border-radius: 24px;
  padding: 50px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: flex-start;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-info {
  flex: 1;
  max-width: 550px;
  min-width: 350px;
  position: relative;
  z-index: 5;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(5, 99, 187, 0.2);
  border-radius: 24px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.profile-description {
  position: relative;
  padding: 25px 30px;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: 18px;
  margin-bottom: 30px;
}

.profile-image {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  margin: 0 auto 30px;
}

.profile-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  color: #333;
  font-size: 24px;
  transition: all 0.3s ease;
}

.about-info {
  position: relative;
  z-index: 5;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  padding: 30px;
}

.profile-image {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 20px;
}

.profile-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 5px solid var(--primary-color);
  position: relative;
  z-index: 2;
}

.profile-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  background: linear-gradient(135deg, var(--primary-color), #764ba2);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 1;
}

.profile-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.social-btn {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 18px;
  color: #333;
  font-size: 28px;
  transition: all 0.3s ease;
}

.profile-badge {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #10b981;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
  z-index: 3;
}

.profile-badge i {
  font-size: 16px;
}

.profile-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-color);
  border: 2px solid #e0e0e0;
  border-radius: 14px;
  color: #333;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-btn.gh {
  background: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}

.social-btn.fb {
  background: #1877F2 !important;
  border-color: #1877F2 !important;
  color: #ffffff !important;
}

.social-btn.sc {
  background: #FFFC00 !important;
  border-color: #FFFC00 !important;
  color: #000000 !important;
}

.social-btn:hover {
  transform: translateY(-5px);
}

.social-btn.gh:hover,
.social-btn.fb:hover,
.social-btn.sc:hover {
  opacity: 0.9;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-info h3 {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.about-info h3 span {
  color: var(--primary-color);
}

.profile-role {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.profile-description {
  position: relative;
  padding: 25px 30px;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(5, 99, 187, 0.2);
  border-radius: 18px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.profile-description::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: var(--primary-color);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.profile-description p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  font-style: italic;
  margin: 0;
  padding-left: 30px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(5, 99, 187, 0.1);
  border: 2px solid rgba(5, 99, 187, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.info-box:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 99, 187, 0.15);
}

.info-box i {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(5, 99, 187, 0.2), rgba(118, 75, 162, 0.2));
  border-radius: 10px;
  color: var(--primary-color);
  font-size: 16px;
  flex-shrink: 0;
}

.info-box div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.info-box span {
  font-size: 11px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.info-box strong {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(5, 99, 187, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
  padding: 15px 10px;
  border-right: 2px solid rgba(5, 99, 187, 0.2);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 11px;
  color: #666;
  font-weight: 600;
  margin-top: 5px;
}

.skills-section {
  padding: 30px;
  margin-top: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(5, 99, 187, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.skills-section h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.skills-section h4 i {
  color: #0563bb;
  font-size: 26px;
}

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skills-tags span {
  padding: 10px 22px;
  background: rgba(5, 99, 187, 0.1);
  border: 2px solid rgba(5, 99, 187, 0.2);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  transition: all 0.3s ease;
  cursor: default;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.skills-tags span:hover {
  background: #0563bb;
  border-color: #0563bb;
  color: #fff;
  transform: translateY(-2px);
}

.about-info {
  position: relative;
  z-index: 5;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  padding: 30px;
  margin-top: 20px;
}

/* Dark Mode */
body.dark-mode .about {
  background: rgba(5, 99, 187, 0.1);
}

body.dark-mode .about .section-title h2 {
  color: #fff;
}

body.dark-mode .about .section-title p {
  color: #aaa;
}

body.dark-mode .about-profile {
  background: rgba(5, 99, 187, 0.1);
  border-color: rgba(5, 99, 187, 0.3);
}

body.dark-mode .about-info {
  background: rgba(5, 99, 187, 0.1);
  border-color: rgba(5, 99, 187, 0.3);
}

body.dark-mode .profile-image img {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

body.dark-mode .about-info h3 {
  color: #fff;
}

body.dark-mode .profile-description {
  background: rgba(5, 99, 187, 0.1);
  border-color: rgba(5, 99, 187, 0.3);
}

body.dark-mode .profile-description p {
  color: #b0b0b0;
}

body.dark-mode .info-box {
  background: rgba(5, 99, 187, 0.15);
  border-color: rgba(5, 99, 187, 0.3);
}

body.dark-mode .info-box span {
  color: #888;
}

body.dark-mode .info-box strong {
  color: #fff;
}

body.dark-mode .stats-row {
  background: rgba(5, 99, 187, 0.1);
  border-color: rgba(5, 99, 187, 0.3);
}

body.dark-mode .stat-item {
  border-color: rgba(5, 99, 187, 0.2);
  background: rgba(5, 99, 187, 0.1);
}

body.dark-mode .stat-label {
  color: #888;
}

body.dark-mode .social-btn {
  background: #1a1a1a;
  border-color: #333;
  color: #fff;
}

body.dark-mode .social-btn.gh {
  background: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}

body.dark-mode .social-btn.fb {
  background: #1877F2 !important;
  border-color: #1877F2 !important;
  color: #ffffff !important;
}

body.dark-mode .social-btn.sc {
  background: #FFFC00 !important;
  border-color: #FFFC00 !important;
  color: #000000 !important;
}

body.dark-mode .social-btn:hover {
  transform: translateY(-5px);
  opacity: 0.9;
}

body.dark-mode .social-btn.sc:hover {
  background: #FFFC00 !important;
  border-color: #FFFC00 !important;
  color: #000000 !important;
  box-shadow: 0 10px 25px rgba(255, 252, 0, 0.4);
}

body.dark-mode .skills-tags span {
  background: rgba(5, 99, 187, 0.15);
  border-color: rgba(5, 99, 187, 0.3);
  color: #e0e0e0;
}

body.dark-mode .skill-tag {
  background: rgba(5, 99, 187, 0.15);
  border-color: rgba(5, 99, 187, 0.3);
  color: #e0e0e0;
}

body.dark-mode .skill-tag:hover {
  background: #4dabf7;
  border-color: #4dabf7;
  color: #fff;
}

body.dark-mode .skills-section h4 {
  color: #ffffff;
}

body.dark-mode .skills-section h4 i {
  color: #4dabf7;
}

body.dark-mode .skills-section {
  background: rgba(5, 99, 187, 0.1);
  border-color: rgba(5, 99, 187, 0.3);
}

.about .section-title {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 0;
}

.about .section-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--heading-color) !important;
  margin-bottom: 15px;
}

.about .section-title p {
  font-size: 18px;
  color: var(--text-color) !important;
}

.about-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  background: var(--surface-color) !important;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 10px 40px var(--shadow);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px var(--shadow-hover);
}

.about-card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 25px;
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary-color);
  box-shadow: 0 10px 30px rgba(5, 99, 187, 0.3);
}

.about-img-status {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #10b981;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.about-social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

.about-card-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}

.about-card-right h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.about-card-right h3 span {
  color: var(--primary-color);
}

.about-role {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about-bio {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-color);
  margin-bottom: 30px;
}

.about-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  background: var(--bg-color);
  border-radius: 14px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.info-item:hover {
  border-color: var(--primary-color);
  transform: translateX(5px);
}

.info-item i {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(5, 99, 187, 0.15), rgba(118, 75, 162, 0.15));
  border-radius: 12px;
  color: var(--primary-color);
  font-size: 20px;
}

.info-item div {
  display: flex;
  flex-direction: column;
}

.info-item span {
  font-size: 12px;
  color: var(--text-color);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-item strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 35px 25px;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.stat-box i {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.stat-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-color);
  margin-top: 8px;
}

.about-skills {
  margin-top: 30px;
  padding: 40px;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
}

.about-skills h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
}

.about-skills h4 i {
  color: #0563bb;
  font-size: 26px;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.skill-tag {
  padding: 14px 28px;
  background: rgba(5, 99, 187, 0.1);
  border: 2px solid rgba(5, 99, 187, 0.2);
  border-radius: 25px;
  font-size: 18px;
  font-weight: 600;
  color: #444;
  transition: all 0.3s ease;
  cursor: default;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.skill-tag:hover {
  background: #0563bb;
  border-color: #0563bb;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px;
  }
  
  .about-profile,
  .about-info {
    max-width: 100%;
    width: 100%;
  }
  
  .about-profile {
    position: static;
    padding: 40px;
  }
  
  .profile-image {
    max-width: 350px;
  }
  
  .profile-glow {
    max-width: 320px;
  }
  
  .about-info {
    padding: 40px;
  }
  
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .stats-row {
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  .stat-item:not(:last-child) {
    border-right: 2px solid #e0e0e0;
    border-bottom: none;
  }
  
  .about-info h3 {
    font-size: 30px;
    text-align: center;
  }
  
  .profile-role,
  .profile-description p {
    text-align: center;
  }
  
  .profile-description::before {
    display: none;
  }
  
  .profile-description p {
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .about-container {
    padding: 20px;
    gap: 20px;
  }
  
  .about .section-title h2 {
    font-size: 28px;
  }
  
  .about-profile {
    padding: 25px;
    max-width: 100%;
  }
  
  .profile-image {
    max-width: 280px;
  }
  
  .profile-glow {
    max-width: 250px;
  }
  
  .profile-social {
    gap: 12px;
  }
  
  .social-btn {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
  
  .profile-description {
    padding: 18px 20px;
  }
  
  .profile-description p {
    font-size: 14px;
  }
  
  .about-info {
    padding: 25px;
  }
  
  .about-info h3 {
    font-size: 26px;
  }
  
  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .info-box {
    padding: 12px 14px;
    gap: 10px;
  }
  
  .info-box i {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
  
  .info-box span {
    font-size: 10px;
  }
  
  .info-box strong {
    font-size: 12px;
  }
  
  .stats-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    padding: 15px;
  }
  
  .stat-item {
    padding: 12px 8px;
  }
  
  .stat-num {
    font-size: 20px;
  }
  
  .stat-label {
    font-size: 10px;
  }
  
  .skills-section h4 {
    font-size: 18px;
  }
  
  .skills-tags {
    justify-content: center;
    gap: 8px;
  }
  
  .skills-tags span {
    padding: 9px 16px;
    font-size: 13px;
  }
}
  
  .about-card-left {
    margin-bottom: 10px;
  }
  
  .about-social-links {
    justify-content: center;
  }
  
  .about-info-grid {
    grid-template-columns: 1fr;
  }
  
  .info-item {
    justify-content: flex-start;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .about-card-right h3 {
    font-size: 30px;
  }
  
  .about-card-right {
    padding: 0;
  }
  
  .about-bio {
    text-align: center;
  }
  
  .about-skills {
    padding: 30px;
  }
  
  .skills-list {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-card {
    padding: 30px 20px;
  }
  
  .about-img-wrapper {
    width: 160px;
    height: 160px;
  }
  
  .about-card-right h3 {
    font-size: 26px;
  }
  
  .stat-box {
    padding: 25px 20px;
  }
  
  .stat-num {
    font-size: 32px;
  }
  
  .about-skills {
    padding: 25px 20px;
  }
  
  .skill-tag {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* Modern About Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}

/* New Modern About Card */
.about-modern {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.about-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 0;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.about-card-header {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.about-img-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #ffffff;
  margin-bottom: -60px;
  position: relative;
  z-index: 2;
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-badge i {
  font-size: 22px;
  color: #0563bb;
}

.about-card-body {
  padding: 80px 30px 30px;
  text-align: center;
}

.about-card-body h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.about-quote {
  font-size: 14px;
  color: #6c757d;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.6;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
  padding: 15px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #0563bb;
}

.stat-label {
  font-size: 12px;
  color: #6c757d;
}

.about-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.about-info-grid .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 12px;
  text-align: left;
}

.about-info-grid .info-item i {
  font-size: 20px;
  color: #0563bb;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 99, 187, 0.1);
  border-radius: 8px;
}

.about-info-grid .info-item small {
  display: block;
  font-size: 11px;
  color: #6c757d;
}

.about-info-grid .info-item strong {
  display: block;
  font-size: 14px;
  color: #1a1a1a;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #0563bb;
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-about:hover {
  background: #034a8e;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(5, 99, 187, 0.3);
}

.btn-about i {
  font-size: 18px;
}

/* Dark Mode New About */
body.dark-mode .about-card {
  background: #1a1a1a;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

body.dark-mode .about-card-body h3 {
  color: #ffffff;
}

body.dark-mode .about-quote {
  color: #aaaaaa;
}

body.dark-mode .about-stats {
  border-color: #333333;
}

body.dark-mode .stat-number {
  color: #0563bb;
}

body.dark-mode .stat-label {
  color: #888888;
}

body.dark-mode .about-info-grid .info-item {
  background: #252525;
}

body.dark-mode .about-info-grid .info-item strong {
  color: #ffffff;
}

body.dark-mode .btn-about {
  background: #0563bb;
}

body.dark-mode .btn-about:hover {
  background: #4dabf7;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 99, 187, 0.3), rgba(32, 201, 151, 0.3));
}

.about-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #0563bb;
  margin-bottom: 15px;
}

.about-intro {
  font-size: 18px;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic;
}

.about-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.detail-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  flex-shrink: 0;
}

.detail-icon i {
  font-size: 20px;
  color: #ffffff;
}

.detail-text {
  display: flex;
  flex-direction: column;
}

.detail-text strong {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 3px;
}

.detail-text span {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

.about-desc {
  font-size: 16px;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 25px;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #0563bb;
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-about:hover {
  background: #034a8e;
  transform: translateX(5px);
}

.btn-about i {
  font-size: 18px;
}

/* Dark Mode About */
body.dark-mode .about-content h3 {
  color: #0563bb;
}

body.dark-mode .about-intro,
body.dark-mode .about-desc {
  color: #cccccc;
}

body.dark-mode .detail-item {
  background: #1a1a1a;
}

body.dark-mode .detail-item:hover {
  background: #252525;
}

body.dark-mode .detail-text strong {
  color: #888888;
}

body.dark-mode .detail-text span {
  color: #ffffff;
}

body.dark-mode .btn-about {
  background: #0563bb;
  color: #000000;
}

body.dark-mode .btn-about:hover {
  background: #0d9488;
}

/* About Responsive */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .about-details {
    grid-template-columns: 1fr;
  }
}

.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;
}

/* Modern About Info Styles */
.about .info-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.about .info-list li {
  width: 100%;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.about .info-list li i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 18px;
}

.about .info-list li strong {
  min-width: 80px;
}

.about .info-list li span {
  color: var(--default-color);
  font-weight: 500;
}

/* First column - blue theme */
.about .col-lg-6:first-child .info-list li:nth-child(1) i { background: #e3f2fd; color: #0d6efd; }
.about .col-lg-6:first-child .info-list li:nth-child(2) i { background: #f3e5f5; color: #6f42c1; }
.about .col-lg-6:first-child .info-list li:nth-child(3) i { background: #e8f5e9; color: #198754; }
.about .col-lg-6:first-child .info-list li:nth-child(4) i { background: #fff3e0; color: #fd7e14; }

/* Second column - green/teal theme */
.about .col-lg-6:last-child .info-list li:nth-child(1) i { background: #fce4ec; color: #d63384; }
.about .col-lg-6:last-child .info-list li:nth-child(2) i { background: #e0f7fa; color: #0dcaf0; }
.about .col-lg-6:last-child .info-list li:nth-child(3) i { background: #fff8e1; color: #ffc107; }
.about .col-lg-6:last-child .info-list li:nth-child(4) i { background: #e8eaf6; color: #6610f2; }

/* Dark Mode About */
body.dark-mode .about .info-list li {
  background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .about .info-list li span {
  color: #cccccc;
}

body.dark-mode .about .col-lg-6:first-child .info-list li:nth-child(1) i { background: rgba(13, 110, 253, 0.2); color: #6ea8fe; }
body.dark-mode .about .col-lg-6:first-child .info-list li:nth-child(2) i { background: rgba(111, 66, 193, 0.2); color: #a98eda; }
body.dark-mode .about .col-lg-6:first-child .info-list li:nth-child(3) i { background: rgba(25, 135, 84, 0.2); color: #75b798; }
body.dark-mode .about .col-lg-6:first-child .info-list li:nth-child(4) i { background: rgba(253, 126, 20, 0.2); color: #feb272; }

body.dark-mode .about .col-lg-6:last-child .info-list li:nth-child(1) i { background: rgba(214, 51, 132, 0.2); color: #ea86ab; }
body.dark-mode .about .col-lg-6:last-child .info-list li:nth-child(2) i { background: rgba(13, 202, 240, 0.2); color: #6edff6; }
body.dark-mode .about .col-lg-6:last-child .info-list li:nth-child(3) i { background: rgba(255, 193, 7, 0.2); color: #ffd43b; }
body.dark-mode .about .col-lg-6:last-child .info-list li:nth-child(4) i { background: rgba(102, 16, 242, 0.2); color: #a98eda; }

/*--------------------------------------------------------------
/* Stats Section
--------------------------------------------------------------*/
/* Old stats styles - replaced by colorful boxes */
.stats i {
  display: none;
}

.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;
}

/* Stats Colorful Boxes */
.stats-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  border-radius: 15px;
  width: 100%;
  transition: all 0.3s ease;
}

.stats-box i {
  width: 60px;
  height: 60px;
  font-size: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.stats-box .stats-item {
  margin-top: 0;
}

.stats-box .stats-item span {
  font-size: 32px;
  font-weight: 700;
}

.stats-box .stats-item p {
  font-size: 14px;
  font-weight: 500;
}

/* Cyan - Happy Clients */
.stats-cyan {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}
.stats-cyan i {
  background: #0dcaf0;
  color: #fff;
}
.stats-cyan .stats-item span {
  color: #0dcaf0;
}
.stats-cyan .stats-item p {
  color: #0dcaf0;
}

/* Blue - Projects */
.stats-blue {
  background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
}
.stats-blue i {
  background: #0d6efd;
  color: #fff;
}
.stats-blue .stats-item span {
  color: #0d6efd;
}
.stats-blue .stats-item p {
  color: #0d6efd;
}

/* Green - Hours */
.stats-green {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}
.stats-green i {
  background: #198754;
  color: #fff;
}
.stats-green .stats-item span {
  color: #198754;
}
.stats-green .stats-item p {
  color: #198754;
}

/* Orange - Hard Workers */
.stats-orange {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}
.stats-orange i {
  background: #fd7e14;
  color: #fff;
}
.stats-orange .stats-item span {
  color: #fd7e14;
}
.stats-orange .stats-item p {
  color: #fd7e14;
}

/* Dark Mode Stats */
body.dark-mode .stats-cyan {
  background: linear-gradient(135deg, #0d3837 0%, #0a5c58 100%);
}
body.dark-mode .stats-cyan i {
  background: #0563bb;
  color: #000;
}
body.dark-mode .stats-cyan .stats-item span,
body.dark-mode .stats-cyan .stats-item p {
  color: #0563bb;
}

body.dark-mode .stats-blue {
  background: linear-gradient(135deg, #1a1a4e 0%, #2d2d7a 100%);
}
body.dark-mode .stats-blue i {
  background: #6f42c1;
  color: #fff;
}
body.dark-mode .stats-blue .stats-item span,
body.dark-mode .stats-blue .stats-item p {
  color: #6f42c1;
}

body.dark-mode .stats-green {
  background: linear-gradient(135deg, #0d3329 0%, #145240 100%);
}
body.dark-mode .stats-green i {
  background: #0563bb;
  color: #000;
}
body.dark-mode .stats-green .stats-item span,
body.dark-mode .stats-green .stats-item p {
  color: #0563bb;
}

body.dark-mode .stats-orange {
  background: linear-gradient(135deg, #3d2607 0%, #5c3a0a 100%);
}
body.dark-mode .stats-orange i {
  background: #fd7e14;
  color: #fff;
}
body.dark-mode .stats-orange .stats-item span,
body.dark-mode .stats-orange .stats-item p {
  color: #fd7e14;
}

/* Project Cards */
.project-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.project-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  font-size: 30px;
  color: #0d6efd;
}

.project-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.project-card p {
  color: var(--default-color);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.btn-project {
  display: inline-block;
  padding: 10px 25px;
  background: #0563bb;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-project:hover {
  background: #0a58ca;
  transform: scale(1.05);
}

/* Dark Mode Projects */
body.dark-mode .project-card {
  background: #1a1a1a;
}

body.dark-mode .project-icon {
  background: linear-gradient(135deg, #1a3a4a 0%, #0d3837 100%);
  color: #0563bb;
}

body.dark-mode .btn-project {
  background: #0563bb;
  color: #000;
}

body.dark-mode .btn-project:hover {
  background: #0d9488;
}

/* Modern Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.projects-grid .project-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.projects-grid .project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(5, 99, 187, 0.15);
  border-color: rgba(5, 99, 187, 0.3);
}

.project-card-image {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.project-card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0.95;
}

.projects-grid .project-card:nth-child(1) .project-card-image::before {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.projects-grid .project-card:nth-child(2) .project-card-image::before {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.projects-grid .project-card:nth-child(3) .project-card-image::before {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.project-card-image i {
  position: relative;
  z-index: 2;
  font-size: 70px;
  color: #ffffff;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.project-card-image::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.4s ease;
}

.projects-grid .project-card:hover .project-card-image::after {
  opacity: 1;
  bottom: -30%;
  left: -30%;
}

.project-card-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(5, 99, 187, 0.1), rgba(5, 99, 187, 0.05));
  color: #0563bb;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  width: fit-content;
  border: 1px solid rgba(5, 99, 187, 0.2);
}

.projects-grid .project-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.projects-grid .project-card p {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.projects-grid .btn-project {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #0563bb, #034a8e);
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(5, 99, 187, 0.3);
}

.projects-grid .btn-project:hover {
  background: linear-gradient(135deg, #034a8e, #023d6f);
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(5, 99, 187, 0.4);
}

.projects-grid .btn-project i {
  font-size: 16px;
  transition: all 0.3s ease;
}

.projects-grid .btn-project:hover i {
  transform: translateX(-3px);
}

/* Dark Mode Modern Projects */
body.dark-mode .projects-grid .project-card {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .projects-grid .project-card:hover {
  border-color: rgba(5, 99, 187, 0.4);
  box-shadow: 0 20px 40px rgba(5, 99, 187, 0.2);
}

body.dark-mode .project-tag {
  background: linear-gradient(135deg, rgba(5, 99, 187, 0.2), rgba(5, 99, 187, 0.1));
  color: #4dabf7;
  border-color: rgba(5, 99, 187, 0.3);
}

body.dark-mode .project-card-content h3 {
  color: #ffffff;
}

body.dark-mode .project-card-content p {
  color: #aaaaaa;
}

body.dark-mode .projects-grid .btn-project {
  background: linear-gradient(135deg, #0563bb, #034a8e);
  box-shadow: 0 4px 15px rgba(5, 99, 187, 0.3);
}

body.dark-mode .projects-grid .btn-project:hover {
  background: linear-gradient(135deg, #4dabf7, #0563bb);
  box-shadow: 0 8px 25px rgba(5, 99, 187, 0.4);
}

body.dark-mode .project-card-content h3 {
  color: #ffffff;
}

body.dark-mode .project-card-content p {
  color: #aaaaaa;
}

body.dark-mode .projects-grid .btn-project {
  background: linear-gradient(135deg, #0563bb, #034a8e);
  box-shadow: 0 4px 15px rgba(5, 99, 187, 0.3);
}

body.dark-mode .projects-grid .btn-project:hover {
  background: linear-gradient(135deg, #4dabf7, #0563bb);
}

/*--------------------------------------------------------------
# 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);
}

/* Dark Mode Skills */
body.dark-mode .skills .progress .skill {
  color: #ffffff;
}

body.dark-mode .skills .progress .skill .val {
  color: #cccccc;
}

body.dark-mode .skills .progress-bar-wrap {
  background: rgba(255, 255, 255, 0.1);
}

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

/* Timeline Styles */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #0563bb, #0563bb);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  margin-bottom: 30px;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: #0563bb;
  border-radius: 50%;
  border: 4px solid #fff;
  z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: 50%;
}

.timeline-date {
  position: absolute;
  left: 50%;
  transform: translateX(50%);
  background: #0563bb;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.timeline-item:nth-child(even) .timeline-date {
  left: 50%;
  transform: translateX(-50%);
}

.timeline-content {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  width: 90%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0563bb;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline-content h3 i {
  font-size: 20px;
}

.timeline-content h4 {
  font-size: 14px;
  color: #6c757d;
  font-weight: 500;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #495057;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Timeline Responsive */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-right: 0;
    padding-left: 50px;
    justify-content: flex-start;
  }
  
  .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 20px;
  }
  
  .timeline-date,
  .timeline-item:nth-child(even) .timeline-date {
    position: static;
    transform: none;
    display: inline-block;
    margin-bottom: 10px;
  }
  
  .timeline-content {
    width: 100%;
  }
}

.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: #0563bb;
}

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

.services .service-item.item-teal:hover .icon path {
  fill: #0563bb;
}

.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;
}

/* Dark Mode Services */
body.dark-mode .services .service-item {
  background: #1a1a1a;
}

body.dark-mode .services .service-item h3 {
  color: #0563bb;
}

body.dark-mode .services .service-item p {
  color: #cccccc;
}

body.dark-mode .services .service-item .icon svg path {
  fill: #2a2a2a;
}

body.dark-mode .services .service-item.item-cyan i { color: #0dcaf0; }
body.dark-mode .services .service-item.item-orange i { color: #fd7e14; }
body.dark-mode .services .service-item.item-teal i { color: #0563bb; }
body.dark-mode .services .service-item.item-red i { color: #dc3545; }
body.dark-mode .services .service-item.item-indigo i { color: #6610f2; }
body.dark-mode .services .service-item.item-pink i { color: #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%;
}

/* Modern Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-icon i {
  font-size: 35px;
  color: #ffffff;
}

.contact-card:nth-child(2) .contact-icon {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.contact-card:nth-child(3) .contact-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.contact-info p {
  color: #6c757d;
  font-size: 18px;
  margin: 0;
}

.contact-info .social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.contact-info .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(5, 99, 187, 0.1);
  color: #0563bb;
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-info .social-links a:hover {
  background: #0563bb;
  color: #ffffff;
  transform: scale(1.1);
}

/* Dark Mode Contact */
body.dark-mode .contact-card {
  background: #1a1a1a;
}

body.dark-mode .contact-info h3 {
  color: #ffffff;
  font-size: 24px;
}

body.dark-mode .contact-info p {
  color: #cccccc;
  font-size: 18px;
}

body.dark-mode .contact-info .social-links a {
  background: rgba(32, 201, 151, 0.15);
  color: #0563bb;
}

body.dark-mode .contact-info .social-links a:hover {
  background: #0563bb;
  color: #000000;
}

.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 {
  /* Add your styles here */
}

/* Sticky Header Responsive */
@media (max-width: 768px) {
  .sticky-header-content {
    padding: 10px 20px;
  }
  
  .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  
  .logo-text {
    font-size: 18px;
  }
  
  .theme-toggle-sticky {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    display: none;
  }
}