/* Webniter V2 Modern Design CSS */

/* ========================================
   Hero Section Styles
   ======================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #9c27b0 0%, #e91e63 100%);
  padding: 100px 0 80px;
  overflow: hidden;
  width: 100%;
}

.hero-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-float-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero-float-shape:nth-child(1) {
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
}

.hero-float-shape:nth-child(2) {
  bottom: 10%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  animation-duration: 8s;
  animation-delay: 2s;
}

.hero-float-shape:nth-child(3) {
  top: 40%;
  right: 20%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.06);
  animation-duration: 7s;
  animation-delay: 1s;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 15px 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 15px 0;
  font-weight: 300;
  line-height: 1.6;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 40px 0;
  line-height: 1.8;
}

.hero-cta-btn {
  display: inline-block;
  padding: 16px 48px;
  background: #fff;
  color: #9c27b0;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
}

.scroll-wheel {
  width: 6px;
  height: 10px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 3px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

/* ========================================
   Section Styles
   ======================================== */
.section-modern {
  padding: 40px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-white {
  padding: 40px 0;
  background: #fff;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title-underline {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #9c27b0, #e91e63);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #718096;
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.8;
}

.section-description {
  font-size: 1.1rem;
  color: #718096;
  margin-top: 25px;
}

/* ========================================
   Card Styles
   ======================================== */
.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f0f0f0;
  margin-bottom: 30px;
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2rem;
  color: #fff;
}

.feature-icon-gradient-1 {
  background: linear-gradient(135deg, #9c27b0, #e91e63);
}

.feature-icon-gradient-2 {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.feature-icon-gradient-3 {
  background: linear-gradient(135deg, #9c27b0, #e91e63);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.feature-description {
  font-size: 1rem;
  color: #718096;
  line-height: 1.8;
}

/* ========================================
   Service Card Styles
   ======================================== */
.service-card {
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 25px;
  min-height: 260px;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.service-card-gradient-1 {
  background: linear-gradient(135deg, #9c27b0 0%, #e91e63 100%);
  box-shadow: 0 10px 30px rgba(156, 39, 176, 0.3);
}

.service-card-gradient-1:hover {
  box-shadow: 0 15px 40px rgba(156, 39, 176, 0.4);
}

.service-card-gradient-2 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
}

.service-card-gradient-2:hover {
  box-shadow: 0 15px 40px rgba(240, 147, 251, 0.4);
}

.service-card-gradient-3 {
  background: linear-gradient(135deg, #9c27b0 0%, #e91e63 100%);
  box-shadow: 0 10px 30px rgba(156, 39, 176, 0.3);
}

.service-card-gradient-3:hover {
  box-shadow: 0 15px 40px rgba(156, 39, 176, 0.4);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  backdrop-filter: blur(10px);
  font-size: 2.5rem;
  color: #fff;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.service-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1rem;
}

/* ========================================
   Service Badge Styles
   ======================================== */
.service-badge {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  border: 2px solid #e9ecef;
}

.service-badge:hover {
  border-color: #9c27b0;
  transform: translateY(-5px);
}

.service-badge-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.service-badge-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d3748;
}

/* ========================================
   Process Section Styles
   ======================================== */
.process-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.process-title-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #9c27b0, #e91e63);
  border-radius: 2px;
}

.process-step {
  background: #fff;
  border-left: 4px solid #9c27b0;
  border-radius: 10px;
  padding: 25px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 30px;
}

.process-step:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2);
}

.process-step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #9c27b0, #e91e63);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 15px;
}

.process-step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.process-step-description {
  color: #718096;
  line-height: 1.8;
  font-size: 1rem;
}

/* ========================================
   CTA Section Styles
   ======================================== */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, #9c27b0 0%, #e91e63 100%);
  padding: 80px 0;
  overflow: hidden;
}

.cta-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  mix-blend-mode: overlay;
}

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

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 16px 48px;
  background: #fff;
  color: #9c27b0;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* ========================================
   Portfolio/Client Section Styles
   ======================================== */
.portfolio-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.portfolio-logo {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-logo {
  filter: grayscale(0%);
  opacity: 1;
}

/* ========================================
   Testimonials Section Styles
   ======================================== */
.testimonial-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 45px 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 25px;
  left: 25px;
  font-size: 3rem;
  color: #9c27b0;
  opacity: 0.2;
}

.testimonial-image {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 15px;
  border: 4px solid #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.testimonial-company {
  font-size: 1rem;
  color: #9c27b0;
  margin-bottom: 20px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.testimonial-text {
  color: #718096;
  line-height: 1.8;
  font-size: 1rem;
  font-style: italic;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
  text-align: center;
}

.mb-60 {
  margin-bottom: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-20 {
  margin-bottom: 20px;
}

.padding-20 {
  padding: 20px;
}

.img-responsive {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.ml-55 {
  margin-left: 55px;
}

.padding-top-100 {
  padding-top: 80px;
}

.padding-top-80 {
  padding-top: 80px;
}

.padding-bottom-100 {
  padding-bottom: 80px;
}

.mt-30 {
  margin-top: 30px;
}

.section-title-large {
  font-size: 2.5rem !important;
}

.padding-carousel {
  padding: 20px 0;
}

.testimonial-container {
  padding: 20px;
  text-align: center;
}

.portfolio-container {
  text-align: center;
  padding: 20px;
}

.portfolio-card-green {
  background: #197a47 !important;
}

/* ========================================
   Top Bar & Navigation Styles
   ======================================== */
#top-bar {
  background: linear-gradient(135deg, #9c27b0 0%, #e91e63 100%);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-row {
  margin-bottom: 0;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 5px 0;
}

.top-bar-contact-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  line-height: 1;
  height: 32px;
}

.top-bar-contact-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1rem;
}

.top-bar-contact-link:hover {
  color: #fff;
  transform: translateY(-2px);
}

.top-bar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  padding: 5px 0;
}

.top-bar-social-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  transition: all 0.3s;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.top-bar-social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: #fff;
}

#site-nav {
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.brand-logo {
  color: #9c27b0 !important;
  font-weight: 700 !important;
  font-size: 1.8rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.site-logo {
  height: 40px;
}

.sidenav-trigger {
  color: #9c27b0 !important;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-link {
  color: #2d3748;
  font-weight: 500;
  padding: 0 20px;
  transition: all 0.3s;
}

.nav-link:hover {
  color: #9c27b0;
}

.nav-link-services {
  color: #2d3748;
  font-weight: 500;
  padding: 0 20px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.nav-link-services:hover {
  color: #9c27b0;
}

.nav-link-services .material-icons {
  margin-left: 5px;
}

.nav-link-cta {
  background: linear-gradient(135deg, #9c27b0, #e91e63);
  color: #fff !important;
  padding: 0px 28px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.nav-link-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(156, 39, 176, 0.4);
}

/* ========================================
   Footer Styles
   ======================================== */
footer {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: #fff;
  padding: 60px 0 0;
}

.footer-cards-row {
  margin-bottom: 50px;
}

.footer-card-col {
  margin-bottom: 20px;
}

.footer-contact-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.footer-contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.footer-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #9c27b0, #e91e63);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
}

.footer-card-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer-card-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-card-link:hover {
  color: #e91e63;
}

.footer-card-icon-email {
  background: linear-gradient(135deg, #f093fb, #f5576c) !important;
}

.footer-card-icon-whatsapp {
  background: linear-gradient(135deg, #4facfe, #00f2fe) !important;
}

.footer-card-icon-location {
  background: linear-gradient(135deg, #fa709a, #fee140) !important;
}

.footer-card-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-card-text-breakall {
  margin: 0;
  word-break: break-all;
}

.footer-links-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 50px;
  margin-bottom: 40px;
}

.footer-brand-col {
  margin-bottom: 30px;
}

.footer-brand-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand-logo-img {
  height: 45px;
}

.footer-brand-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #9c27b0, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

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

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
  background: #9c27b0;
  color: #fff;
  transform: translateY(-3px);
}

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

.footer-section-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer-link:hover {
  color: #9c27b0;
  padding-left: 10px;
}

.footer-link-small {
  font-size: 0.9rem;
}

.footer-mobile-social {
  margin-bottom: 30px;
}

.footer-mobile-social-center {
  text-align: center;
}

.footer-mobile-social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-mobile-social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-mobile-social-link:hover {
  background: #9c27b0;
  color: #fff;
}

.footer-copyright {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright-text {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-copyright-link {
  color: #9c27b0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.footer-copyright-link:hover {
  color: #e91e63;
}

/* ========================================
   Animations
   ======================================== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

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

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 992px) {
  .hero-section {
    padding: 40px 0 70px !important;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0 50px !important;
  }

  .hero-title {
    font-size: 2.2rem !important;
  }

  .hero-subtitle {
    font-size: 1.1rem !important;
  }

  .hero-description {
    font-size: 0.95rem !important;
  }

  .hero-cta-btn {
    padding: 14px 36px !important;
    font-size: 1rem !important;
  }

  .section-title {
    font-size: 2rem !important;
  }

  .process-title {
    font-size: 1.8rem !important;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 50px 0 40px !important;
  }

  .hero-title {
    font-size: 1.8rem !important;
  }

  .hero-subtitle {
    font-size: 1rem !important;
  }

  .section-title {
    font-size: 1.8rem !important;
  }

  .cta-title {
    font-size: 1.6rem !important;
  }

  .portfolio-card {
    height: 80px;
    padding: 0;
  }
}

/* ========================================
   Portfolio Page Styles
   ======================================== */
.portfolio-hero-section {
  position: relative;
  background: linear-gradient(135deg, #9c27b0 0%, #e91e63 100%);
  padding: 80px 0 60px;
  overflow: hidden;
  width: 100%;
}

.portfolio-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.portfolio-breadcrumb {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.portfolio-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s;
}

.portfolio-breadcrumb a:hover {
  color: #fff;
}

.breadcrumb-separator {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
  color: #fff;
  font-weight: 600;
}

.portfolio-intro-text {
  font-size: 1.2rem;
  color: #718096;
  line-height: 1.8;
  margin-top: 20px;
}

/* Featured Portfolio Card */
.featured-portfolio-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.mobile-app-carousel-wrapper {
  position: relative;
}

.featured-app-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 25px;
  text-align: center;
}

.mobile-app-slider {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  margin: 0 auto;
}

.mobile-app-slider .carousel-item img {
  height: 500px;
  object-fit: cover;
}

.featured-app-info {
  padding: 20px;
}

.featured-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #9c27b0, #e91e63);
  color: #fff;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.featured-app-name {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.featured-app-desc {
  font-size: 1.1rem;
  color: #718096;
  line-height: 1.8;
  margin-bottom: 25px;
}

.featured-app-tech {
  margin-bottom: 30px;
}

.tech-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #fff;
  color: #9c27b0;
  border: 2px solid #9c27b0;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 10px;
  margin-bottom: 10px;
}

.featured-app-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #9c27b0, #e91e63);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(156, 39, 176, 0.3);
  transition: all 0.3s;
}

.featured-app-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(156, 39, 176, 0.4);
  color: #fff;
}

.portfolio-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #9c27b0;
  display: inline-block;
}

/* Modern Portfolio Cards */
.portfolio-item-link {
  text-decoration: none;
  display: block;
}

.modern-portfolio-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  border: 1px solid #f0f0f0;
}

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

.portfolio-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: #f8f9fa;
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.modern-portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.95), rgba(233, 30, 99, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.modern-portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay-content {
  color: #fff;
  text-align: center;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.modern-portfolio-card:hover .portfolio-overlay-content {
  transform: translateY(0);
}

.portfolio-overlay-content i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
}

.portfolio-overlay-content span {
  font-size: 1.1rem;
  font-weight: 600;
}

.portfolio-card-content {
  padding: 25px 20px;
}

.portfolio-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
  line-height: 1.4;
}

.portfolio-card-category {
  font-size: 0.95rem;
  color: #9c27b0;
  font-weight: 500;
  margin: 0;
}

/* Responsive Portfolio Styles */
@media (max-width: 992px) {
  .portfolio-hero-title {
    font-size: 2.5rem;
  }

  .featured-portfolio-card {
    padding: 30px;
  }

  .featured-app-name {
    font-size: 1.6rem;
  }

  .mobile-app-slider .carousel-item img {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .portfolio-hero-section {
    padding: 60px 0 40px;
  }

  .portfolio-hero-title {
    font-size: 2rem;
  }

  .featured-portfolio-card {
    padding: 20px;
  }

  .featured-app-name {
    font-size: 1.4rem;
  }

  .mobile-app-slider .carousel-item img {
    height: 350px;
  }

  .portfolio-card-image {
    height: 180px;
  }

  .featured-app-info {
    padding: 10px 0;
  }
}
