/**
* Template Name: Octopyder Services - Premium Styles
* Sections: Navigation, Hero, About, Clients, & Stats-Insights
* Version: 2.3
*/

/*--------------------------------------------------------------
# Octopyder Brand Variables
--------------------------------------------------------------*/
:root {
  /* Fonts */
  --default-font: "Roboto", system-ui, -apple-system, sans-serif;
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;

  /* Global Colors */
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #0d3035;
  --accent-color: #007bff;
  /* Octopyder Blue */
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  /* Nav Colors */
  --nav-color: #ffffff;
  --nav-hover-color: #007bff;
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 90px;
}

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

a {
  text-decoration: none;
  transition: 0.3s;
}

/*--------------------------------------------------------------
# Navigation Bar (Glassmorphism & Floating)
--------------------------------------------------------------*/
.header {
  background: #1A3263 !important;
  /* Aapka specific color */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 15px 0;
  transition: all 0.4s ease;
  z-index: 997;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
}

/* Global Dark Mode Header */
body.dark-mode .header {
  background-color: #000000e6 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95) !important;
  padding: 10px 0;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
}

.header .logo h1 {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0;
  letter-spacing: 1px;
}

.header .logo h1 span {
  color: var(--accent-color);
  font-style: normal;
}

.navmenu ul {
  display: flex;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.navmenu li {
  padding: 10px 15px;
}

.navmenu a {
  color: var(--nav-color) !important;
  font-family: var(--nav-font);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: 0.3s;
  text-transform: uppercase;
}

.navmenu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

.navmenu a:hover::after,
.navmenu a.active::after {
  width: 100%;
}

.navmenu a:hover,
.navmenu a.active {
  color: var(--accent-color) !important;
}

.btn-getstarted {
  background: var(--accent-color);
  color: #fff !important;
  padding: 10px 28px;
  border-radius: 50px;
  margin-left: 25px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.btn-getstarted:hover {
  background: #fff;
  color: var(--accent-color) !important;
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .navmenu ul {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: auto;
    right: 2px;
    width: 60%;
    margin: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    box-sizing: border-box;
  }

  body.dark-mode .navmenu ul {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  }

  .mobile-nav-active .navmenu ul {
    display: flex;
    animation: slideRight 0.3s ease-out forwards;
  }

  @keyframes slideRight {
    from {
      opacity: 0;
      transform: translateX(50px);
      filter: blur(10px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
      filter: blur(0);
    }
  }

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

  .navmenu li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  }

  body.dark-mode .navmenu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }

  .navmenu li:last-child {
    border-bottom: none;
  }

  .navmenu a {
    display: block;
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 16px 20px;
    text-align: left;
    color: var(--default-color) !important;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
    outline: none !important;
  }

  .navmenu a:hover,
  .navmenu a.active {
    background: rgba(0, 123, 255, 0.08);
    /* More subtle */
    padding-left: 28px;
    color: var(--accent-color) !important;
  }

  /* Vertical Bar for Active Link */
  .navmenu a.active::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 18px;
    background: var(--accent-color);
    border-radius: 10px;
  }

  body.dark-mode .navmenu a:hover,
  body.dark-mode .navmenu a.active {
    background: rgba(0, 212, 255, 0.1);
  }

  body.dark-mode .navmenu a {
    color: #fff !important;
  }

  .navmenu a::after {
    display: none;
  }

  /* Hamburger icon adjustments */
  .mobile-nav-toggle {
    display: block !important;
    font-size: 32px;
    padding: 10px 15px;
    margin-left: 20px;
    color: #ffffff;
    /* Changed from dark color to white for visibility on blue header */
    cursor: pointer;
    line-height: 0;
    flex-shrink: 0;
    z-index: 9999;
    transition: color 0.3s ease, transform 0.2s ease;
  }

  .mobile-nav-toggle:hover {
    color: #0061ff;
    /* Subtle hover color */
    transform: scale(1.05);
  }

  /* When dark mode is active, icon should be white */
  body.dark-mode .mobile-nav-toggle {
    color: #ffffff;
  }

  body.dark-mode .mobile-nav-toggle:hover {
    color: #60efff;
  }

  /* Reorder header elements */
  .header {
    padding: 10px 15px;
  }

  .header .logo {
    order: 1;
    margin-right: auto;
  }

  .btn-getstarted {
    order: 2;
    margin-left: 0;
    padding: 7px 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .theme-toggle {
    margin-left: auto;
    margin-right: 15px;
  }

  .navmenu {
    order: 4;
    margin-left: 10px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .header .logo h1 {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 10px 10px;
  }

  .header .logo h1 {
    font-size: 18px;
  }

  .btn-getstarted {
    padding: 5px 10px;
    font-size: 11px;
  }

  .theme-switch-wrapper {
    margin-left: 5px;
  }

  .navmenu {
    margin-left: 5px;
  }

  .mobile-nav-toggle {
    font-size: 28px;
    padding: 6px 8px;
    margin-left: 5px;
    display: block !important;
  }

  /* Scale down the theme switch slightly */
  .theme-switch {
    width: 36px;
    height: 20px;
  }

  .slider:before {
    height: 12px;
    width: 12px;
    bottom: 4px;
    left: 4px;
  }

  input:checked+.slider:before {
    transform: translateX(16px);
  }

  .mode-icon {
    font-size: 1rem;
    margin-left: 5px;
  }
}

/*--------------------------------------------------------------
# Home (Hero) Section & Slider
--------------------------------------------------------------*/
.hero {
  padding: 180px 0 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  position: relative;
}

.hero .hero-content h2 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #1a1a1a;
}

.hero .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #555;
}

.hero .btn-primary {
  background-color: var(--accent-color);
  padding: 15px 35px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
}

.hero .btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 15px 35px;
  font-weight: 700;
  border-radius: 8px;
  margin-left: 15px;
}

.hero .btn-outline:hover {
  background: var(--accent-color);
  color: #fff;
}

.hero-swiper {
  width: 100%;
  height: 420px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-stats .stat-number {
  color: var(--accent-color);
  font-size: 1.8rem;
  font-weight: 800;
}

.hero-stats .stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  white-space: nowrap;
}

.hero-stats .stat-divider {
  width: 1px;
  height: 30px;
  background-color: #eeeeee;
}

/* Dark Mode for Simplified Stats */
body.dark-mode .hero-stats .stat-label {
  color: #b0b0b0;
}

body.dark-mode .hero-stats .stat-divider {
  background-color: rgba(255, 255, 255, 0.1);
}

/*--------------------------------------------------------------
# Clients Slider (Moving Logos)
--------------------------------------------------------------*/
.clients-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.client-logo {
  padding: 20px;
  filter: grayscale(100);
  opacity: 0.6;
  transition: 0.3s;
  max-width: 140px;
}

.client-logo:hover {
  filter: none;
  opacity: 1;
}

/*--------------------------------------------------------------
# About Section Styling
--------------------------------------------------------------*/
.about {
  padding: 60px 0 100px 0;
}

.light-background {
  background-color: #f8fbfe;
}

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

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

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

.about .about-meta {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 14px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.about .about-title {
  font-weight: 800;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about .feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.about .feature-list i {
  font-size: 22px;
  margin-right: 12px;
}

.about .image-wrapper {
  position: relative;
  padding: 40px;
}

.about .main-image {
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about .small-image {
  border-radius: 15px;
  border: 10px solid #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.about .experience-badge {
  background-color: var(--accent-color);
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  min-width: 200px;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
  animation: floating-badge 3s ease-in-out infinite;
}

@keyframes floating-badge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* About Section Mobile Centering */
@media (max-width: 991px) {
  .about .container {
    text-align: center;
  }

  .about .about-meta {
    display: inline-block;
  }

  .about .feature-list li {
    justify-content: center;
  }

  .about .profile,
  .about .contact-info {
    justify-content: center;
    border-left: none !important;
    padding-left: 0 !important;
  }

  .about .info-wrapper .row {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Stats & Insights Section (New)
--------------------------------------------------------------*/
.stats-insights {
  padding: 80px 0;
}

.insight-title {
  color: #0d3035;
  font-weight: 700;
}

.rating-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f9faff 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 123, 255, 0.12);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.12);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: beige;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 500;
}

/* Dark Mode for Stat Cards */
body.dark-mode .stat-card {
  background: linear-gradient(135deg, #1e1e1e 0%, #151515 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

body.dark-mode .stat-card:hover {
  border-color: rgba(0, 212, 255, 0.4) !important;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2), 0 15px 35px rgba(0, 0, 0, 0.5) !important;
}

body.dark-mode .stat-card .stat-label {
  color: rgba(255, 255, 255, 0.7) !important;
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .hero {
    padding-top: 140px;
  }

  .hero .hero-content h2 {
    font-size: 2rem;
    text-align: center;
  }

  .hero-swiper {
    height: 350px;
    margin-top: 30px;
  }

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

  .about .small-image {
    position: static !important;
    width: 100% !important;
    margin-top: 20px;
    border: none !important;
  }

  .about .experience-badge {
    position: static !important;
    margin-top: 20px;
    text-align: center;
  }
}



/* # Features Section STARTED */
/*--------------------------------------------------------------*/
.features.section {
  padding: 60px 0 !important;
}

.features .features-intro {
  padding-right: 30px;
}

@media (max-width: 991px) {
  .features .features-intro {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
}

.features .features-intro h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .features .features-intro h2 {
    font-size: 32px;
  }
}

.features .features-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 40px;
}

.features .features-intro .highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
}

@media (max-width: 576px) {
  .features .features-intro .highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.features .features-intro .highlights-grid .highlight-item {
  text-align: center;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(0, 100, 255, 0.04);
  border: 1px solid rgba(0, 100, 255, 0.12);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.features .features-intro .highlights-grid .highlight-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 100, 255, 0.12);
}

.features .features-intro .highlights-grid .highlight-item .highlight-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 5px;
}

.features .features-intro .highlights-grid .highlight-item .highlight-text {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.features .featured-image-container {
  position: relative;
}

.features .featured-image-container .floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.features .featured-image-container .floating-badge i {
  font-size: 18px;
}

.features .features-grid {
  margin-top: 40px;
  margin-bottom: 30px;
}

.features .features-grid .feature-box {
  background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
  padding: 40px 30px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 123, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.features .features-grid .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.1);
  border-color: rgba(0, 123, 255, 0.3);
}

.features .features-grid .feature-box .feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.features .features-grid .feature-box .feature-icon-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
  opacity: 0.2;
  transform: scale(1.3);
  z-index: -1;
}

.features .features-grid .feature-box .feature-icon-wrapper i {
  font-size: 32px;
  color: var(--contrast-color);
}

.features .features-grid .feature-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.features .features-grid .feature-box p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
}

/* **************FEATURE SECTION END///// */

/* # Portfolio Section */
@media (max-width: 768px) {
  .portfolio {
    padding: 64px 0;
  }
}

.portfolio .filters-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .portfolio .filters-wrapper {
    margin-bottom: 32px;
  }
}

.portfolio .portfolio-filters {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  margin: 0;
  list-style: none;
  background: var(--surface-color);
  border-radius: 50px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color) 8%, transparent);
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters {
    border-radius: 16px;
    padding: 8px;
    gap: 6px;
  }
}

.portfolio .portfolio-filters li {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: var(--default-color);
  background: transparent;
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters li {
    padding: 10px 16px;
    font-size: 13px;
  }
}

.portfolio .portfolio-filters li:hover {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.portfolio .portfolio-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color) 40%, transparent);
}

.portfolio .project-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color) 8%, transparent);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio .project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color) 12%, transparent);
}

.portfolio .project-card:hover .image-wrapper img {
  transform: scale(1.08);
}

.portfolio .project-card:hover .image-wrapper .hover-overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio .project-card.featured .image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 20%, transparent), transparent);
  z-index: 1;
  pointer-events: none;
}

.portfolio .project-card .image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

@media (max-width: 576px) {
  .portfolio .project-card .image-wrapper {
    height: 200px;
  }
}

.portfolio .project-card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio .project-card .image-wrapper .hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio .project-card .image-wrapper .hover-overlay .overlay-actions {
  display: flex;
  gap: 12px;
}

.portfolio .project-card .image-wrapper .hover-overlay .action-btn {
  width: 48px;
  height: 48px;
  background: var(--surface-color);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.portfolio .project-card .image-wrapper .hover-overlay .action-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.portfolio .project-card .image-wrapper .category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 16px;
  background: var(--surface-color);
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio .project-card .image-wrapper .featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 14px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 70%, #ff6b6b));
  color: var(--contrast-color);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color) 50%, transparent);
  z-index: 2;
}

.portfolio .project-card .image-wrapper .featured-badge i {
  font-size: 10px;
}

.portfolio .project-card .project-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

@media (max-width: 576px) {
  .portfolio .project-card .project-info {
    padding: 20px;
  }
}

.portfolio .project-card .project-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.portfolio .project-card .project-info p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.portfolio .project-card .project-info .project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.portfolio .project-card .project-info .project-meta .tech-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.portfolio .project-card .project-info .project-meta .tech-tags span {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  color: var(--accent-color);
}

.portfolio .project-card .project-info .project-meta .year {
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

.portfolio .cta-section {
  margin-top: 80px;
  padding: 64px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 70%, #6366f1));
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

@media (max-width: 992px) {
  .portfolio .cta-section {
    padding: 48px 32px;
    margin-top: 64px;
  }
}

@media (max-width: 576px) {
  .portfolio .cta-section {
    padding: 40px 24px;
    border-radius: 16px;
  }
}

.portfolio .cta-section .cta-content {
  position: relative;
  z-index: 2;
}

.portfolio .cta-section .cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.portfolio .cta-section .cta-label i {
  font-size: 16px;
}

.portfolio .cta-section h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--contrast-color);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .portfolio .cta-section h3 {
    font-size: 28px;
  }
}

.portfolio .cta-section p {
  font-size: 18px;
  color: color-mix(in srgb, var(--contrast-color) 85%, transparent);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .portfolio .cta-section p {
    font-size: 16px;
  }
}

.portfolio .cta-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .portfolio .cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.portfolio .cta-section .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--surface-color);
  color: var(--accent-color);
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
  .portfolio .cta-section .btn-cta-primary {
    width: 100%;
    justify-content: center;
  }
}

.portfolio .cta-section .btn-cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.portfolio .cta-section .btn-cta-primary:hover i {
  transform: translateX(4px);
}

.portfolio .cta-section .btn-cta-primary i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.portfolio .cta-section .btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--contrast-color);
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid color-mix(in srgb, var(--contrast-color) 40%, transparent);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 576px) {
  .portfolio .cta-section .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

.portfolio .cta-section .btn-cta-secondary:hover {
  background: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  border-color: var(--contrast-color);
}

.portfolio .cta-section .btn-cta-secondary i {
  font-size: 20px;
}

.portfolio .cta-section .cta-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.portfolio .cta-section .cta-decoration .floating-shape {
  position: absolute;
  border-radius: 50%;
  background: color-mix(in srgb, var(--contrast-color) 10%, transparent);
}

.portfolio .cta-section .cta-decoration .floating-shape.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
}

.portfolio .cta-section .cta-decoration .floating-shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -80px;
  left: -60px;
}

.portfolio .cta-section .cta-decoration .floating-shape.shape-3 {
  width: 120px;
  height: 120px;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.team .team-card:hover .member-img .social-overlay {
  opacity: 1;
}

.team .team-card:hover .member-img img {
  transform: scale(1.05);
}

.team .team-card.featured {
  transform: scale(1.03);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.team .team-card.featured .member-info {
  background: var(--accent-color);
}

.team .team-card.featured .member-info .member-badge {
  background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
  color: var(--contrast-color);
}

.team .team-card.featured .member-info h4 {
  color: var(--contrast-color);
}

.team .team-card.featured .member-info p {
  color: color-mix(in srgb, var(--contrast-color) 85%, transparent);
}

.team .team-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.team .team-card .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-card .member-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team .team-card .member-img .social-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, color-mix(in srgb, var(--accent-color) 90%, transparent) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team .team-card .member-img .social-overlay .social-links {
  display: flex;
  gap: 12px;
}

.team .team-card .member-img .social-overlay .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.team .team-card .member-img .social-overlay .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-4px);
}

.team .team-card .member-info {
  padding: 24px;
  text-align: center;
  transition: background 0.3s ease;
}

.team .team-card .member-info .member-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  margin-bottom: 12px;
}

.team .team-card .member-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--heading-color);
}

.team .team-card .member-info p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin: 0;
}

.team .team-stats {
  margin-top: 40px;
  margin-bottom: 50px;
}

.team .team-stats .stats-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 40px 48px;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

@media (max-width: 768px) {
  .team .team-stats .stats-wrapper {
    flex-direction: column;
    gap: 32px;
    padding: 32px 24px;
  }
}

.team .team-stats .stat-item {
  text-align: center;
}

.team .team-stats .stat-item .stat-number {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

.team .team-stats .stat-item .stat-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
}

.team .team-stats .stat-divider {
  width: 1px;
  height: 60px;
  background: color-mix(in srgb, var(--default-color) 15%, transparent);
}

@media (max-width: 768px) {
  .team .team-stats .stat-divider {
    width: 80px;
    height: 1px;
  }
}

@media (max-width: 992px) {
  .team {
    padding: 80px 0;
  }

  .team .team-card.featured {
    transform: none;
  }

  .team .team-card.featured:hover {
    transform: translateY(-8px);
  }

  .team .team-stats {
    margin-top: 60px;
  }
}

@media (max-width: 576px) {
  .team {
    padding: 60px 0;
  }

  .team .team-card .member-info {
    padding: 20px;
  }

  .team .team-card .member-info h4 {
    font-size: 18px;
  }

  .team .team-stats {
    margin-top: 48px;
  }

  .team .team-stats .stat-item .stat-number {
    font-size: 36px;
  }

  .team .team-stats .stat-item .stat-label {
    font-size: 12px;
  }
}





/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 8%, transparent) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 6%, transparent) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact .info-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 48px;
  background: var(--accent-color);
  border-radius: 24px;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
}

.contact .info-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, color-mix(in srgb, #000 15%, transparent) 100%);
  pointer-events: none;
}

.contact .info-panel>* {
  position: relative;
  z-index: 1;
}

.contact .info-panel .panel-header {
  margin-bottom: 40px;
}

.contact .info-panel .panel-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.contact .info-panel .panel-header .section-badge i {
  font-size: 14px;
}

.contact .info-panel .panel-header h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--contrast-color);
  letter-spacing: -0.5px;
}

.contact .info-panel .panel-header p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin: 0;
}

.contact .info-panel .contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact .info-panel .method-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: color-mix(in srgb, var(--contrast-color) 10%, transparent);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact .info-panel .method-item:hover {
  background: color-mix(in srgb, var(--contrast-color) 18%, transparent);
  transform: translateX(8px);
}

.contact .info-panel .method-item .method-icon {
  width: 48px;
  height: 48px;
  background: var(--contrast-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .info-panel .method-item .method-icon i {
  font-size: 20px;
  color: var(--accent-color);
}

.contact .info-panel .method-item .method-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact .info-panel .method-item .method-details .method-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.contact .info-panel .method-item .method-details a,
.contact .info-panel .method-item .method-details span {
  font-size: 15px;
  font-weight: 500;
  color: var(--contrast-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact .info-panel .method-item .method-details a:hover,
.contact .info-panel .method-item .method-details span:hover {
  opacity: 0.8;
}

.contact .info-panel .stats-strip {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: color-mix(in srgb, var(--contrast-color) 10%, transparent);
  border-radius: 16px;
  margin-bottom: 32px;
}

.contact .info-panel .stats-strip .stat-item {
  flex: 1;
  text-align: center;
}

.contact .info-panel .stats-strip .stat-item .stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.contact .info-panel .stats-strip .stat-item .stat-text {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.contact .info-panel .social-connect {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact .info-panel .social-connect>span {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

.contact .info-panel .social-connect .social-icons {
  display: flex;
  gap: 12px;
}

.contact .info-panel .social-connect .social-icons a {
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.contact .info-panel .social-connect .social-icons a:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-4px);
}

.contact .info-panel .social-connect .social-icons a i {
  font-size: 16px;
}

.contact .form-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color) 10%, transparent);
  height: 100%;
}

.contact .form-card .form-card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.contact .form-card .form-card-header .header-icon {
  width: 64px;
  height: 64px;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .form-card .form-card-header .header-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.contact .form-card .form-card-header .header-text h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.contact .form-card .form-card-header .header-text p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin: 0;
}

.contact .form-card .php-email-form .input-group-custom label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.contact .form-card .php-email-form .input-group-custom .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.contact .form-card .php-email-form .input-group-custom .input-wrapper i {
  position: absolute;
  left: 18px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  transition: color 0.3s ease;
  z-index: 1;
}

.contact .form-card .php-email-form .input-group-custom .input-wrapper input,
.contact .form-card .php-email-form .input-group-custom .input-wrapper select,
.contact .form-card .php-email-form .input-group-custom .input-wrapper textarea {
  width: 100%;
  height: 56px;
  padding: 16px 16px 16px 52px;
  font-size: 15px;
  color: var(--default-color);
  background: color-mix(in srgb, var(--default-color) 4%, transparent);
  border: 2px solid transparent;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.contact .form-card .php-email-form .input-group-custom .input-wrapper select option {
  background-color: #ffffff;
  color: #212529;
}

.contact .form-card .php-email-form .input-group-custom .input-wrapper input::placeholder,
.contact .form-card .php-email-form .input-group-custom .input-wrapper textarea::placeholder {
  color: color-mix(in srgb, var(--default-color) 40%, transparent);
}

.contact .form-card .php-email-form .input-group-custom .input-wrapper input:focus,
.contact .form-card .php-email-form .input-group-custom .input-wrapper select:focus,
.contact .form-card .php-email-form .input-group-custom .input-wrapper textarea:focus {
  outline: none;
  background: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color) 12%, transparent);
}

.contact .form-card .php-email-form .input-group-custom .input-wrapper input:focus+i,
.contact .form-card .php-email-form .input-group-custom .input-wrapper input:focus~i,
.contact .form-card .php-email-form .input-group-custom .input-wrapper select:focus+i,
.contact .form-card .php-email-form .input-group-custom .input-wrapper select:focus~i,
.contact .form-card .php-email-form .input-group-custom .input-wrapper textarea:focus+i,
.contact .form-card .php-email-form .input-group-custom .input-wrapper textarea:focus~i {
  color: var(--accent-color);
}

.contact .form-card .php-email-form .input-group-custom .input-wrapper.textarea-wrapper {
  align-items: flex-start;
}

.contact .form-card .php-email-form .input-group-custom .input-wrapper.textarea-wrapper i {
  top: 18px;
}

.contact .form-card .php-email-form .input-group-custom .input-wrapper.textarea-wrapper textarea {
  height: auto;
  min-height: 140px;
  resize: vertical;
}

.contact .form-card .php-email-form .form-actions {
  margin-top: 32px;
}

.contact .form-card .php-email-form .form-actions .btn-submit {
  width: 100%;
  height: 56px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact .form-card .php-email-form .form-actions .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color) 85%, #000);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color) 40%, transparent);
}

.contact .form-card .php-email-form .form-actions .btn-submit:hover i {
  transform: translateX(4px);
}

.contact .form-card .php-email-form .form-actions .btn-submit i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.contact .form-card .php-email-form .form-actions .secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.contact .form-card .php-email-form .form-actions .secure-note i {
  font-size: 14px;
  color: color-mix(in srgb, var(--accent-color) 70%, transparent);
}

.contact .form-card .php-email-form .form-actions .secure-note span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

@media (max-width: 992px) {
  .contact .info-panel {
    padding: 40px;
  }

  .contact .info-panel .panel-header h3 {
    font-size: 28px;
  }

  .contact .info-panel .stats-strip {
    gap: 16px;
    padding: 20px;
  }

  .contact .info-panel .stats-strip .stat-item .stat-number {
    font-size: 24px;
  }

  .contact .form-card {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .contact .info-panel {
    padding: 32px;
  }

  .contact .info-panel .panel-header {
    margin-bottom: 32px;
  }

  .contact .info-panel .panel-header h3 {
    font-size: 24px;
  }

  .contact .info-panel .contact-methods {
    margin-bottom: 32px;
  }

  .contact .info-panel .stats-strip {
    flex-direction: column;
    gap: 16px;
  }

  .contact .info-panel .stats-strip .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .contact .info-panel .stats-strip .stat-item .stat-number {
    margin-bottom: 0;
    order: 2;
  }

  .contact .info-panel .stats-strip .stat-item .stat-text {
    order: 1;
  }

  .contact .info-panel .social-connect {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .contact .form-card {
    padding: 32px 24px;
  }

  .contact .form-card .form-card-header {
    flex-direction: column;
    gap: 16px;
  }

  .contact .form-card .form-card-header .header-icon {
    width: 56px;
    height: 56px;
  }

  .contact .form-card .form-card-header .header-icon i {
    font-size: 24px;
  }

  .contact .form-card .form-card-header .header-text h4 {
    font-size: 22px;
  }

  .contact .form-card .php-email-form .input-group-custom .input-wrapper input,
  .contact .form-card .php-email-form .input-group-custom .input-wrapper select,
  .contact .form-card .php-email-form .input-group-custom .input-wrapper textarea {
    height: 52px;
    padding: 14px 14px 14px 48px;
  }

  .contact .form-card .php-email-form .form-actions .btn-submit {
    height: 52px;
  }
}

@media (max-width: 576px) {
  .contact .info-panel {
    padding: 24px;
  }

  .contact .info-panel .method-item {
    padding: 14px;
  }

  .contact .info-panel .method-item .method-icon {
    width: 44px;
    height: 44px;
  }

  .contact .info-panel .method-item .method-icon i {
    font-size: 18px;
  }

  .contact .form-card {
    padding: 24px 20px;
  }

  .contact .form-card .form-card-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  .contact .form-card .php-email-form .input-group-custom .input-wrapper input,
  .contact .form-card .php-email-form .input-group-custom .input-wrapper select,
  .contact .form-card .php-email-form .input-group-custom .input-wrapper textarea {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #f4f4f4;
  background-color: #0b0b0b;
  font-size: 14px;
  position: relative;
  padding-bottom: 0;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #ffffff;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.admin-login-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.admin-login-btn:hover {
  color: #ffffff;
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

body.dark-mode .admin-login-btn {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .admin-login-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.5);
}

/* WhatsApp Floating Button Styling */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  /* WhatsApp Green */
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  color: #fff;
  background-color: #128c7e;
  /* Darker Green on hover */
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* Online Dot Indicator */
.badge-online {
  position: absolute;
  top: 2px;
  right: 5px;
  width: 12px;
  height: 12px;
  background-color: #00ff00;
  border: 2px solid #fff;
  border-radius: 50%;
}

/* Pulse Animation */
@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}

/* ****************Our Tech Ecosystem Starts********** */

/* Container Styling */
.tech-marquee-section {
  background: #ffffff;
  /* Light theme match */
  padding: 60px 0;
  overflow: hidden;
}

.tech-slider {
  position: relative;
  width: 100%;
  display: flex;
}

/* Track for movement */
.tech-track {
  display: flex;
  gap: 30px;
  animation: scroll-tech 25s linear infinite;
  width: max-content;
}

/* The Premium Card Design */
.tech-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 25px 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}

.tech-card i {
  font-size: 2.5rem;
}

.tech-card span {
  font-weight: 700;
  font-size: 1.1rem;
  color: #334155;
  white-space: nowrap;
}

/* Hover Effect: Scale & Bright Glow */
.tech-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 97, 255, 0.15);
}

/* Individual Neon Colors for Icons */
.neon-blue i {
  color: #0061ff;
}

.neon-green i {
  color: #22c55e;
}

.neon-pink i {
  color: #ff007a;
}

.neon-cyan i {
  color: #00d4ff;
}

/* Seamless Animation */
@keyframes scroll-tech {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 15px));
  }

  /* Perfectly loops the cards */
}

/* Stop animation on hover so user can read */
.tech-slider:hover .tech-track {
  animation-play-state: paused;
}

/* Gradient Text for Heading */
.gradient-text {
  background: linear-gradient(135deg, #0f172a, #0061ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ****************Our Tech Ecosystem Ends********** */

/* Dark Mode Overrides for Tech Ecosystem */
body.dark-mode .tech-marquee-section {
  background: #050a15 !important;
}

body.dark-mode .tech-card {
  background: #111b2e !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4) !important;
}

body.dark-mode .tech-card span {
  color: #ffffff !important;
}

body.dark-mode .tech-marquee-section h2 {
  color: #ffffff !important;
}

/* Dark Mode Overrides for Team Section */
body.dark-mode .team-card {
  background: #111b2e !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .team-card .member-info h4 {
  color: #ffffff !important;
}

body.dark-mode .team-card .member-info p {
  color: #aaa !important;
}

body.dark-mode .team-card .member-info .member-badge {
  background: rgba(0, 97, 255, 0.2) !important;
  color: #60efff !important;
}

body.dark-mode .team .team-stats .stats-wrapper {
  background: rgba(17, 27, 46, 0.8) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
}

body.dark-mode .team .team-stats .stat-item .stat-number {
  color: #0061ff !important;
}

body.dark-mode .team .team-stats .stat-item .stat-label {
  color: #aaa !important;
}

body.dark-mode .team .team-stats .stat-divider {
  background: rgba(255, 255, 255, 0.1) !important;
}



/* Modern Theme Toggle - Icon Only */
.theme-switch-wrapper {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.theme-toggle {
  background: none !important;
  border: none;
  padding: 8px;
  cursor: pointer;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #ffffff;
  box-shadow: none !important;
}

.theme-toggle:hover {
  transform: scale(1.15);
  filter: brightness(1.2);
}

.theme-toggle i {
  font-size: 1.4rem;
  position: absolute;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light mode state: Show Moon, Hide Sun */
.theme-toggle .sun-icon {
  opacity: 0;
  transform: translateY(-20px) rotate(-45deg);
}

.theme-toggle .moon-icon {
  opacity: 1;
  transform: translateY(0) rotate(0);
  color: #ffffff !important;
}

/* Dark mode state: Show Sun, Hide Moon */
body.dark-mode .theme-toggle .sun-icon {
  opacity: 1;
  transform: translateY(0) rotate(0);
  color: #FFD700 !important;
}

body.dark-mode .theme-toggle .moon-icon {
  opacity: 0;
  transform: translateY(20px) rotate(45deg);
}

body.dark-mode .theme-toggle {
  color: #FFD700;
}

/* Dark Mode Global Variables */
body.dark-mode {
  background-color: #050a15 !important;
  color: white !important;
}

body.dark-mode .light-background {
  background-color: #0a1120 !important;
}

/* Section Title Dark Mode */
body.dark-mode .section-title h2 {
  color: #ffffff !important;
}

body.dark-mode .section-title p {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Contact Section Dark Mode */
body.dark-mode .contact {
  background-color: #050a15 !important;
}

body.dark-mode .contact .info-panel {
  background: #0061ff !important;
  /* Keep blue but ensure consistent with dark theme */
}

body.dark-mode .contact .form-card {
  background: #111b2e !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
}

body.dark-mode .contact .form-card .form-card-header {
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .contact .form-card .form-card-header .header-text h4 {
  color: #ffffff !important;
}

body.dark-mode .contact .php-email-form .input-group-custom label {
  color: #ffffff !important;
}

body.dark-mode .contact .php-email-form .input-group-custom .input-wrapper input,
body.dark-mode .contact .php-email-form .input-group-custom .input-wrapper select,
body.dark-mode .contact .php-email-form .input-group-custom .input-wrapper textarea {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .contact .php-email-form .input-group-custom .input-wrapper input::placeholder,
body.dark-mode .contact .php-email-form .input-group-custom .input-wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
  opacity: 1 !important;
}

body.dark-mode .contact .form-card .php-email-form .input-group-custom .input-wrapper select option {
  background-color: #111b2e !important;
  color: #ffffff !important;
}

body.dark-mode .contact .form-card .php-email-form .input-group-custom .input-wrapper i {
  color: rgba(255, 255, 255, 0.6) !important;
}



/* --- Services Section Styling --- */
.services {
  padding: 60px 0;
}

.service-item {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 97, 255, 0.15);
  border-color: #0061ff;
}

.service-item .icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 97, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: 0.3s;
}

.service-item .icon i {
  font-size: 28px;
  color: #0061ff;
}

.service-item:hover .icon {
  background: #0061ff;
}

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

.service-item h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
  color: #111;
}

.service-item h3 span {
  color: #0061ff;
}

.service-item p {
  line-height: 24px;
  font-size: 15px;
  margin-bottom: 25px;
  color: #666;
}

/* --- View Details Button --- */
.btn-details {
  background: transparent;
  border: 2px solid #0061ff;
  color: #0061ff;
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-details:hover {
  background: #0061ff;
  color: #fff;
}

/* --- Modal Customization --- */
.modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.modal-header {
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
  padding: 20px 30px;
}

.modal-title {
  font-weight: 800;
  color: #111;
}

.modal-body {
  padding: 30px;
}

/* --- Checklist Styling Inside Modal --- */
.modal-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-checklist li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  color: #444;
}

.modal-checklist li input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  accent-color: #0061ff;
  /* Checkbox color */
  cursor: default;
}

/* --- Dark Mode Support --- */
body.dark-mode .service-item {
  background: #0a1120;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .service-item h3 {
  color: #fff;
}

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

body.dark-mode .modal-content {
  background: #0a1120;
  color: #fff;
}

body.dark-mode .modal-header {
  background: #111b2e;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .modal-title {
  color: #fff;
}

body.dark-mode .modal-checklist li {
  color: #eee;
}



/* --- Product Modal Checklist Styling --- */
.modal-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-checklist li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--default-color);
  line-height: 1.6;
}

.modal-checklist li input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 14px;
  margin-top: 2px;
  accent-color: var(--accent-color);
  flex-shrink: 0;
  cursor: default;
}

body.dark-mode .modal-checklist li {
  color: rgba(255, 255, 255, 0.8);
}

.why-us .card-item {
  padding: 2.2rem 1.8rem;
  border-radius: 1.25rem;
  background-color: var(--surface-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.why-us .card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0061ff 0%, #60efff 100%);
  z-index: -1;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.why-us .card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 97, 255, 0.25);
  border-color: transparent;
}

.why-us .card-item:hover::before {
  opacity: 1;
}

.why-us .card-bg-number {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 97, 255, 0.05);
  z-index: -1;
  transition: all 0.5s ease;
  pointer-events: none;
}

.why-us .card-item:hover .card-bg-number {
  transform: scale(1.05) translate(-8px, 8px);
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
}

.why-us .card-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 97, 255, 0.05) 0%, rgba(96, 239, 255, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
  box-shadow: inset 0 0 0 1px rgba(0, 97, 255, 0.1);
  position: relative;
}

.why-us .card-item:hover .card-icon {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(10deg);
}

.why-us .card-icon i {
  font-size: 24px;
  color: #0061ff;
  transition: all 0.5s ease;
  z-index: 2;
}

.why-us .card-item:hover .card-icon i {
  color: #ffffff;
}

.why-us .card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--heading-color);
  letter-spacing: -0.3px;
  transition: color 0.5s ease;
}

.why-us .card-content p {
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
  transition: color 0.5s ease;
}

.why-us .card-item:hover .card-content h3,
.why-us .card-item:hover .card-content p {
  color: #ffffff;
}

@media (max-width: 991px) {
  .why-us .card-item {
    padding: 1.8rem 1.5rem;
  }

  .why-us .card-bg-number {
    font-size: 60px;
  }

  .why-us .card-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 1.2rem;
  }

  .why-us .card-icon i {
    font-size: 20px;
  }

  .why-us .card-content h3 {
    font-size: 1.15rem;
  }

  .why-us .card-content p {
    font-size: 0.9rem;
  }
}

/* Dark Mode Adjustments */
body.dark-mode .why-us .card-item {
  background-color: #0d1627;
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

body.dark-mode .why-us .card-item:hover {
  box-shadow: 0 20px 40px rgba(0, 97, 255, 0.2);
  border-color: transparent;
}

body.dark-mode .why-us .card-bg-number {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.05);
}

body.dark-mode .why-us .card-item:hover .card-bg-number {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
}

body.dark-mode .why-us .card-icon {
  background: linear-gradient(135deg, rgba(0, 97, 255, 0.1) 0%, rgba(96, 239, 255, 0.1) 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 97, 255, 0.2);
}

body.dark-mode .why-us .card-item:hover .card-icon {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

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

body.dark-mode .why-us .card-content p {
  color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .why-us .card-item:hover .card-content p {
  color: #ffffff;
}

.why-us .image-wrapper img {
  border-radius: 1rem;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Bullet Points for Why Us */
.why-list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.why-list li {
  margin-bottom: 8px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.why-list li::before {
  content: "✔";
  color: #3b82f6;
  font-weight: bold;
}

/* Ensure the text has the correct color in dark mode */
body.dark-mode .why-us .card-content .why-list li {
  color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .why-us .card-item:hover .card-content .why-list li {
  color: #ffffff;
}

/* --- PORTFOLIO VIEW MORE BUTTON --- */
.view-more-btn {
  display: block;
  width: 100%;
  padding: 8px;
  margin-top: 20px;
  background-color: transparent;
  color: #0061ff;
  border: 1px solid #0061ff;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 14px;
  text-decoration: none;
}

.view-more-btn:hover {
  background-color: #0061ff;
  color: #fff;
}

body.dark-mode .view-more-btn {
  color: #60efff;
  border-color: #60efff;
}

body.dark-mode .view-more-btn:hover {
  background-color: #60efff;
  color: #121212;
}

/* --- PORTFOLIO MODAL STYLES --- */
.portfolio-modal .modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.portfolio-modal .modal-header {
  background: linear-gradient(135deg, #0061ff, #60efff);
  color: #fff;
  border-bottom: none;
  padding: 20px 25px;
}

.portfolio-modal .modal-title {
  color: #fff;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
}

.portfolio-modal .btn-close {
  filter: brightness(0) invert(1);
}

.portfolio-modal .modal-body {
  padding: 30px;
}

.modal-info-list {
  list-style: none;
  padding: 0;
}

.modal-info-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.modal-info-list li::before {
  content: "✔";
  color: var(--accent-color);
  margin-right: 10px;
  font-weight: bold;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-list span {
  background: #f0f7ff;
  color: #0061ff;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.btn-demo {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 20px;
}

/* Dark mode for modals */
body.dark-mode .portfolio-modal .modal-content {
  background-color: #1a1a1a;
  color: #f1f1f1;
}

body.dark-mode .modal-info-list li {
  border-bottom-color: #333;
}

body.dark-mode .tech-list span {
  background: #2a2a2a;
  color: #60efff;
}