/*------------------------------------------------------------------
Project:    Tapsi Personal Portfolio
Version:    1.0
Primary use:    pxdraft

[Table of contents]

1. Body
2. Header
3. Footer
4. Blog
5. Section
6. Home Banner
7. About
8. Services
9. Portfolio
10. Testimonial
11. Contact Us

-------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");
:root,
[data-bs-theme=light] {
  --px-theme:	#ffdad9;
  --px-theme-text:	#2d1516;
  --px-bg:	#fcfcfc;
  --px-text:	#534343;
  --px-gray-1:	#f5f0f0;
  --px-gray-2:	#f3eaeb;
  --px-gray-3:	#f0e5e5;
  --px-gray-4:	#efe3e4;
  --px-gray-5:	#eddfe0;
  --px-border:	#f4dedd;
  --bs-heading-color:	#211a1a;
}

[data-bs-theme=dark] {
  --px-theme:	#5c3f3f;
  --px-theme-text:	#ffdad9;
  --px-bg:	#211a1a;
  --px-text:	#d7c2c1;
  --px-gray-1:	#2f2525;
  --px-gray-2:	#362929;
  --px-gray-3:	#3c2e2e;
  --px-gray-4:	#3e2f2f;
  --px-gray-5:	#433232;
  --px-border:	#534343;
  --bs-heading-color:	#ede0df;
}

.logo-light {
  display: none;
}
[data-bs-theme=dark] .logo-light {
  display: block;
}

.logo-dark {
  display: block;
}
[data-bs-theme=dark] .logo-dark {
  display: none;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  border-bottom: 1px solid var(--px-border);
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: var(--px-gray-1);
}
.main-header .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.theme-btn .dropdown-toggle {
  background-color: var(--px-theme);
  color: var(--px-theme-text);
  border-radius: 10px;
  padding: 10px 18px;
  line-height: 1;
  border: none;
}
.theme-btn .dropdown-toggle:after {
  display: none;
}
.theme-btn .dropdown-menu {
  box-shadow: 0px 4px 8px -2px rgba(var(--bs-dark-rgb), 0.1), 0px 2px 4px -2px rgba(var(--bs-dark-rgb), 0.06);
  border: none;
  padding: 10px;
}
.theme-btn .dropdown-item {
  border-radius: 5px;
  font-size: 14px;
}
.theme-btn .dropdown-item:active, .theme-btn .dropdown-item.active {
  background-color: var(--px-theme);
  color: var(--px-theme-text);
}

.navbar-brand {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: var(--px-theme-text);
  line-height: 1;
  font-size: 18px;
}

.toggler-menu {
  padding: 0;
  width: 35px;
  height: 35px;
  position: relative;
  border: none;
  background-color: var(--px-theme);
  color: var(--px-theme-text);
  border-radius: 10px;
  margin-left: 10px;
  border: none;
}
.toggler-menu span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 17px;
  box-shadow: 0 0 0 1px currentColor, 0px -7px 0 1px currentColor, 0 7px 0 1px currentColor;
  height: 0;
}

.main-menu {
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 20px 0;
  list-style: none;
  -ms-flex-pack: center;
      justify-content: center;
}
.main-menu .m-icon {
  width: 65px;
  font-size: 18px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 30px;
  line-height: 1;
  padding: 7px 0;
  margin-bottom: 5px;
  transition: ease all 0.35s;
  background-color: transparent;
}
.main-menu a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  font-size: 13px;
  text-decoration: none;
  color: var(--px-text);
  padding: 10px 0;
  font-weight: 500;
}
@media (min-width: 1201px) {
  .main-menu a:hover .m-icon {
    background-color: var(--px-theme);
    color: var(--px-theme-text);
  }
}
.main-menu a.active .m-icon {
  background-color: var(--px-theme);
  color: var(--px-theme-text);
}

.header-left-fixed {
  position: fixed;
  bottom: 0;
  top: 0;
  width: 100px;
  left: -180px;
  z-index: 11;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  transition: ease all 0.35s;
  background-color: var(--px-gray-2);
  border-right: 1px solid var(--px-border);
}
.header-left-fixed.menu-open {
  left: 0;
}
@media (min-width: 1024px) {
  .header-left-fixed {
    left: 0 !important;
  }
}
.header-left-fixed .logo {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-bottom: 1px solid var(--px-border);
}
.header-left-fixed .logo img {
  max-width: 90%;
}
@media (min-width: 1024px) {
  .header-left-fixed + .wrapper {
    padding-left: 100px;
  }
}
.header-left-fixed .main-menu {
  -ms-flex-direction: column;
      flex-direction: column;
  overflow-y: auto;
}
.header-left-fixed .main-menu li {
  padding: 0 0 5px;
}
.header-left-fixed .theme-btn {
  margin-top: auto;
  text-align: center;
  padding: 20px 0;
}
.header-left-fixed .theme-btn .dropdown-menu {
  bottom: 100%;
  top: auto;
  left: 0;
  right: auto;
  min-width: inherit;
}

.header-top-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1080;
  transition: ease all 0.35s;
  padding: 15px 0;
  right: 0;
}
.fixed-header .header-top-fixed {
  background-color: var(--px-gray-2);
  border-bottom: 1px solid var(--px-border);
}
.header-top-fixed > .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.header-top-fixed .main-menu {
  padding: 0 20px;
}
.header-top-fixed .main-menu .m-icon {
  display: none;
}
.header-top-fixed .main-menu li {
  margin: 0 5px;
}
.header-top-fixed .main-menu a {
  padding: 6px 15px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
}
.header-top-fixed .main-menu a:hover, .header-top-fixed .main-menu a.active {
  background-color: var(--px-theme);
  color: var(--px-theme-text);
}
@media (max-width: 1200px) {
  .header-top-fixed .main-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--px-gray-2);
    border-top: 1px solid var(--px-border);
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 20px;
    display: none;
  }
  .header-top-fixed .main-menu li {
    margin: 5px 0;
  }
}
@media (min-width: 1201px) {
  .header-top-fixed + .wrapper .sticky-lg-top {
    top: 60px;
  }
}
@media (max-width: 1200px) {
  .header-top-fixed.menu-open .main-menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
        align-items: flex-start;
  }
}

.footer {
  position: relative;
  background-color: var(--px-bg);
  border-top: 2px solid var(--px-gray-2);
}
.footer .footer-info {
  text-align: center;
  margin-top: -50px;
}
.footer .footer-info .footer-avatar {
  width: 100px;
  height: 100px;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  border-radius: 50%;
  border: 8px solid var(--px-gray-1);
  padding: 5px;
  background-color: var(--px-gray-3);
}
.footer .footer-info .footer-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.footer .footer-info h6 {
  margin: 15px 0 0;
}
.footer .social-link {
  -ms-flex-pack: center;
      justify-content: center;
  padding: 20px 0;
}
.footer .social-link li {
  margin: 0 5px;
}
.footer .social-link a {
  width: 40px;
  height: 40px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background: var(--px-theme);
  color: var(--px-theme-text);
  border-radius: 10px;
  transition: ease all 0.35s;
  border: 2px solid var(--px-bg);
}
.footer .social-link a:hover {
  background: var(--px-theme-text);
  color: var(--px-theme);
}
.footer .copyright {
  font-size: 12px;
  margin: 0 0 40px;
  text-align: center;
}

.px-btn {
  padding: 15px 35px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background-color: var(--px-theme);
  color: var(--px-theme-text);
  text-decoration: none;
  border-radius: 10px;
  transition: ease all 0.35s;
  font-weight: 500;
  outline: none;
  box-shadow: none;
  border: 2px solid var(--px-theme);
}
.px-btn i {
  margin-left: 10px;
}
.px-btn:hover {
  background-color: var(--px-theme-text);
  color: var(--px-theme);
}

.gray-bg-1 {
  background-color: var(--px-gray-1);
}

.gray-bg-2 {
  background-color: var(--px-gray-2);
}

.gray-bg-3 {
  background-color: var(--px-gray-3);
}

.gray-bg-4 {
  background-color: var(--px-gray-4);
}

.gray-bg-5 {
  background-color: var(--px-gray-5);
}

.theme-bg {
  background-color: var(--px-theme);
}

.theme-light-bg {
  background-color: var(--px-theme-light);
}

.theme-dark-bg {
  background-color: var(--px-theme-dark);
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: inherit;
  }
}
img {
  max-width: 100%;
}

* {
  outline: none !important;
}

/* ----------------------
*   Loading
---------------------------*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
}


/* Professional Experience Section - Enhanced */
.professional-experience {
    margin-top: 2rem;
}

.pro-exp-card {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eef2f6;
    z-index: 1;
}

/* Wave Shine Effect */
.pro-exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
    z-index: 0;
}

.pro-exp-card:hover::before {
    left: 100%;
}

/* Enhanced Hover Effects */
.pro-exp-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.15),
        0 6px 6px rgba(0,0,0,0.1),
        0 0 30px rgba(100, 149, 237, 0.1);
    border-color: rgba(100, 149, 237, 0.3);
}

/* Unique Hover Colors for Each Card */
.pro-exp-card:nth-child(1):hover {
    box-shadow: 
        0 10px 20px rgba(70, 130, 180, 0.15),
        0 6px 6px rgba(70, 130, 180, 0.1),
        0 0 30px rgba(70, 130, 180, 0.1);
    border-color: rgba(70, 130, 180, 0.3);
}

.pro-exp-card:nth-child(2):hover {
    box-shadow: 
        0 10px 20px rgba(147, 112, 219, 0.15),
        0 6px 6px rgba(147, 112, 219, 0.1),
        0 0 30px rgba(147, 112, 219, 0.1);
    border-color: rgba(147, 112, 219, 0.3);
}

.pro-exp-card:nth-child(3):hover {
    box-shadow: 
        0 10px 20px rgba(60, 179, 113, 0.15),
        0 6px 6px rgba(60, 179, 113, 0.1),
        0 0 30px rgba(60, 179, 113, 0.1);
    border-color: rgba(60, 179, 113, 0.3);
}

.pro-exp-card:nth-child(4):hover {
    box-shadow: 
        0 10px 20px rgba(255, 165, 0, 0.15),
        0 6px 6px rgba(255, 165, 0, 0.1),
        0 0 30px rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.3);
}

/* Pulsing Arrow Animation */
.pro-exp-card:hover .pro-exp-arrow {
    animation: pulse 1.5s infinite;
    background: #3b5bdb;
}

.pro-exp-card:hover .pro-exp-arrow i {
    color: white;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 91, 219, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(59, 91, 219, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 91, 219, 0);
    }
}

@media (max-width: 767.98px) {
  .pro-exp-header {
      padding: 1rem;
  }
  
  .pro-exp-badge {
      position: static;
      margin-top: 0.5rem;
      justify-content: flex-start;
  }
  
  .pro-exp-main {
      flex-wrap: wrap;
  }
  
  .pro-exp-title {
      order: 2;
      width: 100%;
      margin-top: 0.5rem;
  }
  
  .pro-exp-arrow {
      order: 3;
      margin-left: auto;
  }
  
  .pro-exp-body {
      padding-left: 1.5rem;
  }
  
  .pro-exp-date {
      margin-top: 0.5rem;
  }
}

/* Rest of your existing CSS remains the same */
.pro-exp-header {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    position: relative;
}

.pro-exp-badge {
    position: absolute;
    top: 12px;
    right: 15px;
    display: flex;
    gap: 8px;
}

.employment-type, .employment-mode {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.employment-type.full-time {
    background: #e3fafc;
    color: #1098ad;
    border: 1px solid #a5d8ff;
}

.employment-type.part-time {
    background: #fff0f6;
    color: #c2255c;
    border: 1px solid #fcc2d7;
}

.employment-type.freelance {
    background: #f3f0ff;
    color: #5f3dc4;
    border: 1px solid #d0bfff;
}

.employment-mode {
    background: #e6fcf5;
    color: #087f5b;
    border: 1px solid #96f2d7;
}

.employment-mode.hybrid {
    background: #fff9db;
    color: #e67700;
    border: 1px solid #ffd43b;
}

.employment-mode.remote {
    background: #edf2ff;
    color: #364fc7;
    border: 1px solid #91a7ff;
}

.pro-exp-main {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pro-exp-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b5bdb, #748ffc);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pro-exp-title {
    flex-grow: 1;
}

.pro-exp-date {
    display: block;
    font-size: 0.85rem;
    color: #868e96;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.pro-exp-title h5 {
    font-size: 1.1rem;
    margin: 0 0 0.25rem 0;
    color: #343a40;
    font-weight: 600;
}

.company-name {
    font-size: 0.95rem;
    color: #495057;
    font-weight: 500;
    display: inline-block;
    background: #f8f9fa;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 4px;
}

.pro-exp-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pro-exp-arrow i {
    transition: all 0.3s ease;
    font-size: 12px;
    color: #495057;
}

.pro-exp-header[aria-expanded="true"] .pro-exp-arrow i {
    transform: rotate(180deg);
}

.pro-exp-content {
    transition: all 0.3s ease;
}

.pro-exp-body {
    padding: 0 1.5rem 1.5rem 5.5rem;
}

.pro-exp-details {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 0 0;
}

.pro-exp-details li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.pro-exp-details li i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 0.8rem;
    color: #3b5bdb;
}

.skills-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1rem;
}

.skills-badges span {
    background: #f1f3f5;
    color: #495057;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Dark Mode Support */
[data-bs-theme="dark"] .pro-exp-card {
    background: #2a2a2a;
    border-color: #3a3a3a;
}

[data-bs-theme="dark"] .pro-exp-title h5 {
    color: #f8f9fa;
}

[data-bs-theme="dark"] .company-name {
    background: #3a3a3a;
    color: #e9ecef;
}

[data-bs-theme="dark"] .pro-exp-date {
    color: #adb5bd;
}

[data-bs-theme="dark"] .pro-exp-card:hover {
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.3),
        0 6px 6px rgba(0,0,0,0.2),
        0 0 30px rgba(100, 149, 237, 0.2);
}

[data-bs-theme="dark"] .pro-exp-arrow {
    background: #3a3a3a;
}

[data-bs-theme="dark"] .pro-exp-arrow i {
    color: #f8f9fa;
}

[data-bs-theme="dark"] .skills-badges span {
    background: #3a3a3a;
    color: #e9ecef;
}

[data-bs-theme="dark"] .pro-exp-card::before {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
}

[data-bs-theme="dark"] .pro-exp-card:hover .pro-exp-arrow {
    background: #5f3dc4;
}


/*                       skills */

/* Skills Pyramid Styles */
/* Skills Section - Professional Animation */
:root {
  --primary-color: #3b5bdb;
  --primary-light: #5c7cfa;
  --text-dark: #343a40;
  --text-light: #f8f9fa;
  --bg-light: #f1f3f5;
  --bg-dark: #3a3a3a;
  --highlight-color: #9775fa;
}

.skills-container {
  margin-top: 2rem;
}

.skill-item {
  margin-bottom: 1.8rem;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.skill-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.skill-percent {
  font-weight: 700;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.skill-bar-bg {
  width: 100%;
  height: 8px;
  background: var(--bg-light);
  border-radius: 4px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  position: relative;
  transition: width 0.5s ease-out;
}

/* Hover Effects */
.skill-item:hover .skill-name {
  color: var(--primary-color);
  transform: translateX(5px);
}

.skill-item:hover .skill-percent {
  transform: scale(1.1);
}

.skill-item:hover .skill-bar-fill {
  box-shadow: 0 0 10px rgba(59, 91, 219, 0.3);
}

/* Glow Effect */
.skill-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
      rgba(255,255,255,0.3) 0%, 
      rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.skill-item:hover .skill-bar-fill::after {
  opacity: 1;
}

/* Dark Mode */
[data-bs-theme="dark"] .skill-name {
  color: var(--text-light);
}

[data-bs-theme="dark"] .skill-percent {
  color: var(--highlight-color);
}

[data-bs-theme="dark"] .skill-bar-bg {
  background: var(--bg-dark);
}

[data-bs-theme="dark"] .skill-bar-fill {
  background: linear-gradient(90deg, var(--highlight-color), #b197fc);
}

[data-bs-theme="dark"] .skill-item:hover .skill-name {
  color: var(--highlight-color);
}


/* Expertise Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.expertise-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #3b5bdb;
}

.mobile-dev {
  border-top-color: #3b5bdb; /* Blue */
}

.backend {
  border-top-color: #5f3dc4; /* Purple */
}

.tools {
  border-top-color: #087f5b; /* Green */
}

.patent {
  border-top-color: #c92a2a; /* Red */
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.expertise-header {
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(59, 91, 219, 0.05);
}

.mobile-dev .expertise-header {
  background: rgba(59, 91, 219, 0.05);
}

.backend .expertise-header {
  background: rgba(95, 61, 196, 0.05);
}

.tools .expertise-header {
  background: rgba(8, 127, 91, 0.05);
}

.patent .expertise-header {
  background: rgba(201, 42, 42, 0.05);
}

.expertise-header i {
  font-size: 1.5rem;
  color: #3b5bdb;
}

.backend .expertise-header i {
  color: #5f3dc4;
}

.tools .expertise-header i {
  color: #087f5b;
}

.patent .expertise-header i {
  color: #c92a2a;
}

.expertise-header h5 {
  margin: 0;
  font-size: 1.1rem;
  color: #343a40;
}

.expertise-body {
  padding: 1.2rem;
}

.expertise-body ul {
  list-style: none;
  padding-left: 0;
}

.expertise-body li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

.expertise-body li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: #3b5bdb;
  font-size: 0.9rem;
}

.backend .expertise-body li i {
  color: #5f3dc4;
}

.tools .expertise-body li i {
  color: #087f5b;
}

.patent .expertise-body li i {
  color: #c92a2a;
}

/* Dark Mode */
[data-bs-theme="dark"] .expertise-card {
  background: #2a2a2a;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

[data-bs-theme="dark"] .expertise-header {
  background: rgba(59, 91, 219, 0.1);
}

[data-bs-theme="dark"] .mobile-dev .expertise-header {
  background: rgba(59, 91, 219, 0.1);
}

[data-bs-theme="dark"] .backend .expertise-header {
  background: rgba(95, 61, 196, 0.1);
}

[data-bs-theme="dark"] .tools .expertise-header {
  background: rgba(8, 127, 91, 0.1);
}

[data-bs-theme="dark"] .patent .expertise-header {
  background: rgba(201, 42, 42, 0.1);
}

[data-bs-theme="dark"] .expertise-header h5 {
  color: #f8f9fa;
}
/*  end skills   */
.load-circle {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
}
.load-circle span {
  display: inline-block;
  width: 64px;
  height: 64px;
}
.load-circle span:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  -webkit-animation: lds-dual-ring 1.2s linear infinite;
          animation: lds-dual-ring 1.2s linear infinite;
}

@-webkit-keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.dropdown-menu {
  --bs-dropdown-bg: var(--px-gray-3);
  --bs-tertiary-bg: var(--px-gray-2);
  --bs-dropdown-link-active-bg: var(--px-theme);
  --bs-dropdown-link-active-color: var(--px-theme-text);
}

/* Section
---------------------*/
.section {
  padding: 100px 0;
  position: relative;
}

@media (max-width: 1200px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.section-heading {
  padding-bottom: 45px;
}
.section-heading h3 {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-right: 45px;
  font-size: 40px;
  font-weight: 600;
  margin: 0;
  padding-bottom: 10px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .section-heading h3 {
    font-size: 32px;
  }
}
.section-heading h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--px-theme);
}
.section-heading i {
  position: absolute;
  top: -14px;
  right: 0;
}
.section-heading i svg {
  width: 34px;
  height: auto;
}

.title-01 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-left: 20px;
  color: var(--bs-heading-color);
  margin-bottom: 30px;
}
.title-01:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--px-theme);
}

/* Background
-------------------------------*/
body {
  background-color: var(--px-bg);
  color: var(--px-text);
  font-family: "Rubik", sans-serif;
  --bs-body-font-weight: 400;
  --bs-body-font-size: 1rem;
  --bs-body-line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* ----------------------
*   owl 
---------------------------*/
.owl-dots {
  text-align: center;
  font-size: 0px;
  padding-top: 35px;
}
.owl-dots .owl-dot {
  display: inline-block;
  vertical-align: top;
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid var(--px-text);
  transition: ease all 0.55s;
  border-radius: 8px;
  margin: 0 4px;
}
.owl-dots .owl-dot.active {
  background: var(--px-theme);
  width: 20px;
}

.owl-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
.owl-nav .owl-next,
.owl-nav .owl-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 35px;
  height: 35px;
  background: var(--px-theme);
  color: var(--px-theme-text);
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 50%;
  pointer-events: auto;
  transition: ease all 0.35s;
}
.owl-nav .owl-next:hover,
.owl-nav .owl-prev:hover {
  background: var(--px-theme-text);
  color: var(--px-theme);
}
.owl-nav .owl-next {
  right: 0px;
}
@media (min-width: 1201px) {
  .owl-nav .owl-next {
    right: -50px;
  }
}
.owl-nav .owl-prev {
  left: 0px;
}
@media (min-width: 1201px) {
  .owl-nav .owl-prev {
    left: -50px;
  }
}

/* Home Banner
-------------------------------*/
.home-section {
  overflow: hidden;
}
.home-section .min-vh-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.home-section .home-image {
  position: relative;
}
.home-section .home-image svg {
  width: 100%;
}
.home-section .home-image .hi-icon-top {
  position: absolute;
  top: -60px;
  right: -50px;
  width: 90px;
  display: inline-block;
}
.home-section .home-image .hi-icon-bottom {
  position: absolute;
  bottom: -40px;
  left: -50px;
  width: 90px;
  display: inline-block;
}
.home-section .home-image img {
  border-radius: 40px;
}
@media (max-width: 991px) {
  .home-section .home-intro {
    text-align: center;
    max-width: 470px;
    margin: 0 auto;
    padding-top: 20px;
  }
}
.home-section .home-intro h6 {
  font-size: 20px;
  margin-bottom: 15px;
}
@media (max-width: 1200px) {
  .home-section .home-intro h6 {
    font-size: 18px;
  }
}
.home-section .home-intro h1 {
  font-size: 62px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  font-weight: 600;
  margin-bottom: 15px;
}
@media (max-width: 1200px) {
  .home-section .home-intro h1 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .home-section .home-intro h1 {
    -ms-flex-pack: center;
        justify-content: center;
  }
}
@media (max-width: 767px) {
  .home-section .home-intro h1 {
    font-size: 35px;
  }
}
.home-section .home-intro h1 span {
  width: 70px;
  height: 70px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 50%;
  margin: 0 8px;
}
@media (max-width: 1200px) {
  .home-section .home-intro h1 span {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 767px) {
  .home-section .home-intro h1 span {
    width: 45px;
    height: 45px;
  }
}
.home-section .home-intro h1 span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.home-section .home-intro h2 {
  font-weight: 500;
  margin-bottom: 25px;
  font-size: 25px;
}
@media (max-width: 1200px) {
  .home-section .home-intro h2 {
    margin-bottom: 20px;
    font-size: 22px;
  }
}
.home-section .home-intro p {
  font-size: 17px;
}
@media (max-width: 1200px) {
  .home-section .home-intro p {
    font-size: 15px;
  }
}
.home-section .home-intro .btn-bar {
  padding-top: 15px;
}

/* Home Banner 02
-------------------------------*/
.home-section-02 {
  padding-top: 200px;
  padding-bottom: 100px;
  overflow: hidden;
  position: relative;
}
.home-section-02 .home-image {
  position: relative;
}
.home-section-02 .home-image:after {
  content: "";
  padding-bottom: 155%;
  display: inline-block;
  vertical-align: top;
}
.home-section-02 .home-image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 150px 150px 150px 10px;
}
.home-section-02 .home-image-02 img {
  border-radius: 150px 10px 150px 150px;
}
.home-section-02 .home-intro {
  max-width: 470px;
}
@media (max-width: 991px) {
  .home-section-02 .home-intro {
    text-align: center;
    margin: 0 auto;
    padding-top: 20px;
  }
}
.home-section-02 .home-intro h6 {
  font-size: 20px;
  margin-bottom: 15px;
}
@media (max-width: 1200px) {
  .home-section-02 .home-intro h6 {
    font-size: 18px;
  }
}
.home-section-02 .home-intro h1 {
  font-size: 62px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  font-weight: 600;
  margin-bottom: 15px;
}
@media (max-width: 1200px) {
  .home-section-02 .home-intro h1 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .home-section-02 .home-intro h1 {
    -ms-flex-pack: center;
        justify-content: center;
  }
}
@media (max-width: 767px) {
  .home-section-02 .home-intro h1 {
    font-size: 35px;
  }
}
.home-section-02 .home-intro h2 {
  font-weight: 500;
  margin-bottom: 25px;
  font-size: 25px;
}
@media (max-width: 1200px) {
  .home-section-02 .home-intro h2 {
    margin-bottom: 20px;
    font-size: 22px;
  }
}
.home-section-02 .home-intro p {
  font-size: 17px;
}
@media (max-width: 1200px) {
  .home-section-02 .home-intro p {
    font-size: 15px;
  }
}
.home-section-02 .social-link {
  padding: 10px 0 0;
}
@media (max-width: 991px) {
  .home-section-02 .social-link {
    -ms-flex-pack: center;
        justify-content: center;
  }
}
.home-section-02 .social-link li {
  margin: 0 8px 0 0;
}
.home-section-02 .social-link a {
  width: 40px;
  height: 40px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background: var(--px-theme);
  border: 2px solid var(--px-theme);
  color: var(--px-theme-text);
  border-radius: 10px;
  transition: ease all 0.35s;
}
.home-section-02 .social-link a:hover {
  background: var(--px-theme-text);
  color: var(--px-theme);
}
.home-section-02 .ef-1 {
  position: absolute;
  top: 50px;
  right: 0;
  bottom: auto;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: #f64f59;
  -webkit-filter: blur(100px);
          filter: blur(100px);
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}
.home-section-02 .ef-2 {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: #c471ed;
  -webkit-filter: blur(100px);
          filter: blur(100px);
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

/* Home Banner 03
-------------------------------*/
.home-section-03 {
  overflow: hidden;
  position: relative;
}
.home-section-03 .home-image .home-image-in {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 12px solid var(--px-gray-3);
  box-shadow: 0 0 0 12px var(--px-gray-1);
}
.home-section-03 .home-image .home-image-in img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-section-03 .home-intro {
  text-align: center;
  padding-top: 20px;
}
.home-section-03 .home-intro h1 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}
.home-section-03 .home-intro h2 {
  font-weight: 500;
  margin: 0px;
  font-size: 22px;
}
.home-section-03 .social-link {
  padding: 20px 0 0;
  -ms-flex-pack: center;
      justify-content: center;
}
.home-section-03 .social-link li {
  margin: 0 4px;
}
.home-section-03 .social-link a {
  width: 40px;
  height: 40px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background: var(--px-theme);
  border: 2px solid var(--px-theme);
  color: var(--px-theme-text);
  border-radius: 10px;
  transition: ease all 0.35s;
}
.home-section-03 .social-link a:hover {
  background: var(--px-theme-text);
  color: var(--px-theme);
}

.bg-effect-img {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  pointer-events: none;
  -webkit-animation: background_effect 0.2s infinite;
          animation: background_effect 0.2s infinite;
  opacity: 0.2;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.bg-effect-img .marquee {
  -webkit-animation: marquee 8s linear infinite;
          animation: marquee 8s linear infinite;
  position: absolute;
  white-space: nowrap;
  display: -ms-flexbox;
  display: flex;
}
.bg-effect-img h2 {
  font-size: 12vw;
  text-transform: uppercase;
  opacity: 0.1;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}
[data-bs-theme=light] .bg-effect-img h2 {
  opacity: 0.05;
}
[data-bs-theme=light] .bg-effect-img {
  opacity: 0.5;
}

@-webkit-keyframes background_effect {
  0% {
    background-position: 0 0;
  }
  10% {
    background-position: -5% -5%;
  }
  20% {
    background-position: -10% 5%;
  }
  30% {
    background-position: 5% -10%;
  }
  40% {
    background-position: -5% 15%;
  }
  50% {
    background-position: -10% 5%;
  }
  60% {
    background-position: 15% 0;
  }
  70% {
    background-position: 0 10%;
  }
  80% {
    background-position: -15% 0;
  }
  90% {
    background-position: 10% 5%;
  }
  to {
    background-position: 5% 0;
  }
}

@keyframes background_effect {
  0% {
    background-position: 0 0;
  }
  10% {
    background-position: -5% -5%;
  }
  20% {
    background-position: -10% 5%;
  }
  30% {
    background-position: 5% -10%;
  }
  40% {
    background-position: -5% 15%;
  }
  50% {
    background-position: -10% 5%;
  }
  60% {
    background-position: 15% 0;
  }
  70% {
    background-position: 0 10%;
  }
  80% {
    background-position: -15% 0;
  }
  90% {
    background-position: 10% 5%;
  }
  to {
    background-position: 5% 0;
  }
}
@-webkit-keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
/* About
-------------------------------*/
.about-me-text {
  padding: 0 10% 0 0;
}
.about-me-text h3 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.about-me-text h5 {
  font-weight: 600;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 26px;
}
@media (max-width: 767px) {
  .about-me-text h5 {
    font-size: 26px;
    margin-bottom: 22px;
  }
}
.about-me-text .a-count {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.about-me-text .a-count .count {
  font-size: 52px;
  line-height: 1;
  font-weight: 600;
  color: var(--bs-heading-color);
}
@media (max-width: 767px) {
  .about-me-text .a-count .count {
    font-size: 42px;
  }
}
.about-me-text .a-count .a-count-text {
  -ms-flex: 1;
      flex: 1;
  padding-left: 12px;
  line-height: 1.4;
}
.about-me-text .btn-bar {
  padding-top: 30px;
}

.about-me-img {
  border-radius: 16px;
  overflow: hidden;
}

.about-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-content li {
  display: -ms-flexbox;
  display: flex;
  border: 2px solid var(--px-border);
  background-color: var(--px-bg);
  padding: 12px 15px;
  border-radius: 12px;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  transition: ease all 0.35s;
}
.about-content li .a-icon {
  width: 40px;
  height: 40px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 50%;
  background-color: var(--px-gray-2);
  color: var(--px-text);
  font-size: 20px;
}
.about-content li .a-text {
  -ms-flex: 1;
      flex: 1;
  padding-left: 20px;
  color: var(--px-text);
  font-weight: 500;
}
.about-content li:hover {
  background-color: var(--px-theme);
  border: 2px solid var(--px-theme);
}
.about-content li:hover .a-text {
  color: var(--px-theme-text);
}
.about-content li + li {
  margin-top: 18px;
}

/* Resume
-------------------------------*/
.resume-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.resume-box li {
  background-color: var(--px-bg);
  border: 2px solid var(--px-border);
  padding: 15px 15px 20px 70px;
  border-radius: 12px;
  position: relative;
  transition: ease all 0.35s;
}
.resume-box li .icon {
  width: 40px;
  height: 40px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 50%;
  background-color: var(--px-theme-text);
  color: var(--px-theme);
  font-size: 20px;
  position: absolute;
  top: 15px;
  left: 15px;
}
.resume-box li .time {
  font-size: 12px;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-bottom: 4px;
}
.resume-box li h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}
.resume-box li p {
  margin: 0;
}
.resume-box li + li {
  margin-top: 20px;
}

.skill-lt + .skill-lt {
  padding-top: 30px;
}
.skill-lt .skill-bar {
  background-color: var(--px-gray-4);
}
.skill-lt h6 {
  font-size: 16px;
  margin: 0 0 10px;
}
.skill-lt .skill-bar-in {
  transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) all 0.9s;
  height: 5px;
  position: relative;
  width: 0px;
  min-width: 100px;
  background-color: var(--bs-heading-color);
}
.skill-lt .skill-bar-in [data-bs-theme=dark] {
  background-color: var(--px-theme);
}
.skill-lt .skill-bar-in span {
  position: absolute;
  right: 0;
  top: -30px;
  font-size: 14px;
}

/* Services
-------------------------------*/
/* .feature-box-01 {
  background-color: var(--px-gray-1);
  border: 2px solid var(--px-border);
  padding: 40px;
  border-radius: 10px;
  position: relative;

    display: flex;
    flex-direction: column;
    height: 100%;


}
.feature-content {
  flex: 1;
}
@media (max-width: 767px) {
  .feature-box-01 {
    padding: 30px;
  }
}
.feature-box-01:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--px-gray-4);
  z-index: -1;
  border-radius: 10px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  transition: ease all 0.35s;
}
.feature-box-01 .icon {
  width: 70px;
  height: 70px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.feature-box-01 .icon i {
  background: var(--px-theme);
  border-radius: 10px;
  color: var(--px-theme-text);
  font-size: 35px;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: ease all 0.35s;
}
.feature-box-01 .icon:after {
  content: "";
  position: absolute;
  top: -8px;
  left: 4px;
  right: -10px;
  bottom: 5px;
  background-color: var(--px-gray-4);
  z-index: -1;
  border-radius: 10px;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  transition: ease all 0.35s;
}
.feature-box-01 p {
  margin: 0;
}
.feature-box-01:hover:after {
  top: -6px;
  left: 6px;
  right: -6px;
  bottom: 6px;
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
}
.feature-box-01:hover .icon:after {
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: var(--px-theme);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
} */


/* Modern Service Cards - Dark Mode Card Focus */
:root {
  /* Light Theme (default) */
  --card-bg: rgba(255, 255, 255, 0.95);
  --text-color: #2d3436;
  --heading-color: #0f0e17;
  --border-color: rgba(0, 0, 0, 0.1);
  --secondary-color: #6c5ce7;
  --accent-color: #e53170;
  --icon-color: #ffffff;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --hover-shadow: rgba(229, 49, 112, 0.2);
}

@media (prefers-color-scheme: dark) {
  :root {
    /* Dark Theme - Only changing card and text */
    --card-bg: rgba(30, 30, 45, 0.95);
    --text-color: #ffffff;
    --heading-color: #ffffff;
    --border-color: rgba(255, 255, 255, 0.15);
    --secondary-color: #ff8906;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --hover-shadow: rgba(229, 49, 112, 0.3);
    /* Keep these the same */
    --accent-color: #e53170;
    --icon-color: #ffffff;
  }
}

.luxury-services {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.luxury-heading {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
}

.luxury-heading span {
  /* position: relative; */
  display: inline-block;
  padding-bottom: 5px;
}

.luxury-heading span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.luxury-heading:hover span::after {
  transform: scaleX(1);
  transform-origin: left;
}

.luxury-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  margin: 1.5rem auto;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.luxury-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: shine 3s infinite;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.luxury-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transform: translateY(50px);
  opacity: 0;
  box-shadow: 0 4px 6px var(--shadow-color);
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(229, 49, 112, 0.1) 0%, transparent 100%);
  z-index: -1;
  transition: all 0.6s ease;
}

.luxury-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--hover-shadow);
  border-color: rgba(229, 49, 112, 0.3);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 50%;
  font-size: 2rem;
  color: var(--icon-color);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  overflow: hidden;
}

.card-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.luxury-card:hover .card-icon {
  transform: rotateY(180deg);
  box-shadow: 0 10px 30px rgba(229, 49, 112, 0.5);
}

.luxury-card h3 {
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.luxury-card p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.luxury-border {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  margin: 0 auto;
  transition: all 0.6s ease;
}

.luxury-card:hover .luxury-border {
  width: 100px;
  height: 3px;
}

@keyframes shine {
  100% {
    left: 100%;
  }
}

@media (max-width: 768px) {
  .luxury-heading {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .luxury-card {
    padding: 2rem;
  }
}

.animate-in {
  animation: fadeUp 0.8s forwards;
}

@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
/* portfolio
-------------------------------*/


/* Form Styles */
/* Contact Form Styles */
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.contact-head h4 {
  font-size: 1.5rem;
  color: #4b6294;
  margin-bottom: 0.5rem;
}

.contact-head p {
  color: #7f8c8d;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #2c3e50;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.px-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #3498db;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.px-btn:hover {
  background: #2980b9;
  transform: translateY(-1px);
}

.px-btn:disabled {
  background: #95a5a6;
  cursor: not-allowed;
  transform: none;
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  color: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 22rem;
  transform: translateX(150%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s ease;
  opacity: 0;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.success {
  background: #27ae60;
}

.toast.error {
  background: #e74c3c;
}

.toast-icon {
  font-size: 1.25rem;
  font-weight: bold;
}

/* Spinner */
.spinner-border {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: text-bottom;
  border: 0.2em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
  to { transform: rotate(360deg); }
}

.d-none {
  display: none !important;
}


/* Toast Styles */

/* Toast Styles */
.toast {
  background: #28a745;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.toast-error {
  background: #dc3545;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-icon {
  font-weight: bold;
  font-size: 18px;
}

.toast-message {
  font-size: 14px;
}


/* Toast Styles again*/

.toast-success {
  background: #4CAF50 !important;
  color: white !important;
}

.toast-error {
  background: #F44336 !important;
  color: white !important;
}

.toast-warning {
  background: #FF9800 !important;
  color: white !important;
}

.toast-info {
  background: #2196F3 !important;
  color: white !important;
}

/* Spinner Styles */
.spinner-border {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: text-bottom;
  border: 0.2em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
  to { transform: rotate(360deg); }
}
/* end form style */

.portfolio-box {
  border: 2px solid var(--px-border);
  padding: 10px;
  border-radius: 10px;
  position: relative;
  background-color: var(--px-bg);
}
.portfolio-box .portfolio-img {
  overflow: hidden;
  border-radius: 10px;
}
.portfolio-box .portfolio-text {
  position: absolute;
  bottom: 0px;
  left: 20px;
  right: 20px;
  background-color: var(--px-gray-2);
  border: 2px solid var(--px-border);
  padding: 20px;
  border-radius: 10px;
  transition: ease all 0.35s;
  opacity: 0;
}
.portfolio-box .portfolio-text h6 {
  font-size: 17px;
  margin: 0 0 5px;
}
.portfolio-box .portfolio-text p {
  margin: 0;
  font-size: 13px;
}
.portfolio-box .portfolio-text .gallery-link {
  position: absolute;
  top: 20px;
  right: 12px;
  width: 30px;
  height: 30px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background: var(--px-theme);
  color: var(--px-theme-text);
  border-radius: 50%;
  line-height: 1;
}
.portfolio-box .portfolio-modal-link {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background: var(--px-theme);
  color: var(--px-theme-text);
  border-radius: 50%;
  border: 2px solid var(--px-theme);
}
.portfolio-box .portfolio-modal-link:hover {
  background: var(--px-bg);
  color: var(--px-text);
}
.portfolio-box:hover .portfolio-text {
  bottom: 20px;
  opacity: 1;
}

/* Testimonials
-------------------------------*/
.testimonials-box {
  border: 2px solid var(--px-border);
  padding: 25px;
  border-radius: 10px;
  position: relative;
  background-color: var(--px-bg);
  text-align: center;
}
.testimonials-box .t-lead {
  width: 100px;
  height: 100px;
  border: 2px solid var(--px-border);
  border-radius: 50%;
  padding: 3px;
  margin: 0 auto;
}
.testimonials-box .t-lead img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.testimonials-box .t-text {
  padding-top: 20px;
}
.testimonials-box .t-text h5 {
  font-size: 26px;
}
@media (max-width: 767px) {
  .testimonials-box .t-text h5 {
    font-size: 22px;
  }
}
.testimonials-box .t-avatar {
  padding-top: 10px;
}
.testimonials-box .t-avatar h6 {
  font-size: 15px;
  margin: 0;
}
.testimonials-box .t-avatar span {
  font-size: 14px;
  opacity: 0.8;
}

/* Contact
-------------------------------*/
.contact-form {
  padding: 40px;
  border: 2px solid var(--px-border);
  border-radius: 16px;
  background-color: var(--px-bg);
}
@media (max-width: 991px) {
  .contact-form {
    padding: 30px;
  }
}
.contact-form .contact-head {
  padding-bottom: 20px;
}
.contact-form .contact-head h4 {
  font-size: 32px;
  max-width: 500px;
}
@media (max-width: 991px) {
  .contact-form .contact-head h4 {
    font-size: 25px;
  }
}
.contact-form .contact-head p {
  font-size: 17px;
}
@media (max-width: 991px) {
  .contact-form .contact-head p {
    font-size: 15px;
  }
}
.contact-form .form-label {
  font-size: 12px;
}
.contact-form .form-control {
  background-color: var(--px-bg);
  border: 1px solid var(--px-border);
  box-shadow: none;
  padding: 0.675rem 0.75rem;
}

.contact-info h3 {
  margin-bottom: 30px;
}
.contact-info .google-map {
  background-color: var(--px-bg);
  border: 2px solid var(--px-border);
  padding: 10px;
  border-radius: 10px;
}
.contact-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-info li {
  display: -ms-flexbox;
  display: flex;
}
.contact-info li + li {
  margin-top: 40px;
}
.contact-info .text {
  -ms-flex: 1;
      flex: 1;
  padding-left: 20px;
}
.contact-info .text label {
  font-weight: 600;
  font-size: 17px;
  color: var(--bs-heading-color);
}
.contact-info .text p {
  margin: 0;
}
.contact-info .text p span {
  display: block;
  width: 100%;
  font-weight: 600;
}
.contact-info .icon {
  width: 60px;
  height: 60px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 50%;
  background-color: var(--px-theme-text);
  color: var(--px-theme);
  font-size: 20px;
}

/* Modal
-------------------------------*/
.px-modal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  background-color: var(--px-bg);
  position: relative;
}
@media (max-width: 1200px) {
  .px-modal {
    padding: 18px;
  }
}
.px-modal .mfp-close {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--px-gray-2);
  color: var(--px-text);
  z-index: 1;
  opacity: 1;
}

.single-project-box h4 {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--px-border);
}
/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInN0eWxlLnNjc3MiLCJzY3NzL192YXJpYWJsZS5zY3NzIiwic2Nzcy9fcm9vdC5zY3NzIiwic2Nzcy9faGVhZGVyLnNjc3MiLCJzY3NzL19taXhpbi5zY3NzIiwic2Nzcy9fZm9vdGVyLnNjc3MiLCJzY3NzL19idXR0b24uc2NzcyIsInNjc3MvX2NvbG9yLnNjc3MiLCJzY3NzL19iYXNlLnNjc3MiLCJzY3NzL19zdHlsZS5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0FBQUE7QUFBQTtBQUFBOztBQUFBOztBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7O0FBQUE7QUFvQlE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQ3hCQTtBQ0FSO0FBQUE7RUFFQztFQUNBO0VBSUE7RUFDQTtFQUdBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUVBOzs7QUFHRDtFQUNDO0VBQ0E7RUFHQTtFQUNBO0VBR0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBRUE7OztBQ3ZDRDtFQUNDOztBQUNBO0VBQ0M7OztBQUlGO0VBQ0M7O0FBQ0E7RUFDQzs7O0FBSUY7RUFDQztFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDQztFQUNBOzs7QUFPRDtFQUNDO0VBQ0c7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFDQTtFQUNDOztBQUdMO0VBQ0k7RUFDQTtFQUNBOztBQUVKO0VBQ0M7RUFDQTs7QUFDQTtFQUVDO0VBQ0c7OztBQU1OO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFPUjtFQUNDO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBRUE7RUFDSTtFQUNBO0VBQ0E7RUFD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 */

/*# sourceMappingURL=style.css.map */
