/* Premium Portfolio Styling */
:root {
  --primary: #6366f1;
  --secondary: #8b5cf6;
  --dark: #1e293b;
  --light: #f8fafc;
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --shadow: 0 10px 40px rgba(0,0,0,0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #7a8087;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Navbar Styling - Glass Effect with Rounded Corners */
.navbar-glass {
  background: rgba(254, 251, 246, 0.297);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  margin: 0px auto;
  width: 80%;
  padding: 0.2rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.navbar-glass.shadow-lg {
  background: rgba(253, 254, 255, 0.95);
  box-shadow: 0 12px 40px rgba(255, 221, 221, 0.12);
}

.navbar-container {
  max-width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-brand i {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  color: #334155;
  display: inline-flex;
  align-items: center;
}

.nav-link i {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  background: rgba(102, 126, 234, 0.1);
  color: var(--primary) !important;
  transform: translateY(-2px);
}

.nav-link:hover i {
  opacity: 1;
}

.btn-gradient {
  background: var(--gradient);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-download:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.navbar-toggler {
  padding: 0.5rem;
}

.navbar-toggler i {
  font-size: 1.3rem;
}

/* Responsive navbar adjustments */
@media (max-width: 1200px) {
  .navbar-glass {
    width: 70%;
  }
}

@media (max-width: 992px) {
  .navbar-glass {
    width: 85%;
    margin: 15px auto;
  }
  
  .navbar-container {
    padding: 0 1.5rem;
  }
  
  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  
  .nav-link {
    margin: 0.3rem 0;
    padding: 0.7rem 1rem;
  }
  
  .btn-download {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .navbar-glass {
    width: 90%;
    margin: 10px auto;
    border-radius: 15px;
  }
}

@media (max-width: 576px) {
  .navbar-glass {
    width: 95%;
    margin: 8px auto;
  }
  
  .navbar-brand {
    font-size: 1.3rem;
  }
}

.brand-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  padding: 40px 0;
  margin-top: -20px;
}

.min-vh-75 {
  min-height: 60vh;
}

/* Typewriter Animation */
.typewriter {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 3.5s steps(25, end) forwards;
}

.typewriter::after {
  /* caret removed per user request */
  content: '';
  display: none;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { opacity: 0; }
  50% { opacity: 1; }
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-image {
  border-radius: 20px;
  width: clamp(280px, 45vw, 500px);
  height: auto;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  will-change: transform;
}

.hero-image:hover {
  transform: translateY(-6px) scale(1.02);
}

.floating-icon {
  position: absolute;
  background: white;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  animation: float 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.floating-icon:hover {
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.floating-icon img {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Subtle entrance helpers */
.fade-in-up {
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.6s cubic-bezier(.2,.8,.2,1);
}
.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Modal improvements */
.modal-content {
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
}
.modal-backdrop.show {
  opacity: 0.65;
}

/* View button ripple-like focus */
.view-btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.view-btn:active {
  transform: translateY(2px) scale(0.995);
}

/* Counter/number polish */
.stat-card h2 {
  transition: all 0.6s cubic-bezier(.2,.8,.2,1);
}

/* Small responsive tweaks */
@media (max-width: 992px) {
  .hero-image { width: 320px; height: 320px; }
}

@media (max-width: 576px) {
  .hero-image { width: 220px; height: 220px; }
  .floating-icon { width:56px; height:56px; border-radius:12px }
}

.icon-ai {
  top: 5%;
  right: 10%;
}

.icon-ps {
  bottom: 25%;
  right: -3%;
}

.icon-figma {
  top: 35%;
  left: -3%;
}

.icon-canva {
  bottom: 5%;
  left: 10%;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-icon:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-3px);
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

/* About Section */
.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

.about-feature {
  padding: 15px;
  border-radius: 15px;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.about-feature:hover {
  background: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.feature-icon-small {
  display: inline-block;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Portfolio Cards */
.portfolio-card {
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: brightness(1.02) contrast(1.05);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(102, 126, 234, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  color: white;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Skills Section */
.skill-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.skill-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-color: var(--primary);
}

.skill-icon {
  width: 55px;
  height: 55px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.skill-card:hover .skill-icon {
  transform: scale(1.15) rotateY(360deg);
}

/* Testimonials Section */
.testimonial-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  border: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 120px;
  font-weight: bold;
  color: rgba(102, 126, 234, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.testimonial-rating {
  font-size: 1rem;
}

.testimonial-text {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 50px;
  height: 50px;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Clients Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  max-width: 900px;
  margin: 0 auto;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: all 0.3s ease;
  opacity: 0.6;
  filter: grayscale(100%);
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.client-logo img {
  max-width: 80px;
  max-height: 50px;
  width: auto;
  height: auto;
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .client-logo img {
    max-width: 60px;
    max-height: 40px;
  }
}

/* Blog Cards */
.blog-card {
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: brightness(1.02) contrast(1.05) saturate(1.1);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Contact Section */
.contact-info-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-3px);
}

.contact-form-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.15);
}

/* CTA Section */
.cta-section {
  background: var(--gradient);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

/* Footer */
.footer-section {
  background: #0f172a;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Filter Buttons */
.filter-btn {
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn.active {
  background: var(--dark) !important;
  color: white !important;
}

.filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Modal */
#modalImage {
  max-height: 70vh;
  border-radius: 15px;
}

/* Global Image Quality Enhancement */
img {
  -webkit-backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Better image rendering */
.portfolio-image img,
.blog-image img,
.hero-image,
.about-image-wrapper img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-image {
    width: 320px;
    height: 320px;
  }
  
  .floating-icon {
    width: 60px;
    height: 60px;
  }
  
  .floating-icon img {
    width: 35px !important;
    height: 35px !important;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-image {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    display: block;
  }
  
  .floating-icon {
    display: none;
  }
  
  .display-3 {
    font-size: 2.5rem;
  }
}

/* ====================
   ANIMATED PROFILE SECTION
   ==================== */

.profile-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #faf5ff 100%);
  position: relative;
}

/* Animated Background Shapes */
.profile-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.profile-bg-shapes .shape-1,
.profile-bg-shapes .shape-2,
.profile-bg-shapes .shape-3 {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  animation: float 20s infinite ease-in-out;
}

.profile-bg-shapes .shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -50px;
  animation-delay: 0s;
}

.profile-bg-shapes .shape-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
  animation-delay: 5s;
}

.profile-bg-shapes .shape-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  right: 10%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(5deg);
  }
  66% {
    transform: translateY(20px) rotate(-5deg);
  }
}

/* Floating Design Tools */
.design-tools-float {
  position: absolute;
  width: 100%;
  height: 200px;
  top: -20px;
  left: 0;
  pointer-events: none;
}

.tool-badge {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  animation: bounce 3s infinite ease-in-out;
  transition: all 0.3s ease;
}

.tool-badge:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.tool-icon-small {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.tool-1 {
  top: 20px;
  left: 10%;
  animation-delay: 0s;
}

.tool-2 {
  top: 60px;
  left: 30%;
  animation-delay: 0.5s;
}

.tool-3 {
  top: 20px;
  right: 28%;
  animation-delay: 1s;
}

.tool-4 {
  top: 60px;
  right: 10%;
  animation-delay: 1.5s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Profile Info Card */
.profile-info-card {
  background: white;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.profile-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}



.profile-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(.2,.8,.2,1);
}

.profile-photo:hover {
  transform: scale(1.02);
}

.photo-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Profile Details */
.detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 12px;
  background: #f8f9fa;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: #e8eaed;
  transform: translateX(5px);
}

.detail-item i {
  font-size: 1.3rem;
  width: 35px;
  text-align: center;
}

/* SVG Decoration */
.svg-decoration {
  text-align: center;
  opacity: 0.7;
}

.animated-svg {
  width: 100%;
  height: auto;
}

.svg-path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawPath 3s ease-in-out forwards;
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

/* Profile Content */
.profile-content {
  position: relative;
  z-index: 1;
}

.content-block {
  margin-bottom: 30px;
}

.content-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.title-icon {
  font-size: 1.5rem;
}

.content-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.subtitle-icon {
  font-size: 1.2rem;
}

.content-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* Services Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.service-tag {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: default;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.service-tag:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Experience List */
.experience-list {
  display: grid;
  gap: 12px;
  margin-top: 15px;
}

.exp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #64748b;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 8px;
}

.exp-item:hover {
  background: #f8f9fa;
  transform: translateX(5px);
}

.exp-item i {
  color: #10b981;
  font-size: 1.1rem;
}

/* Why Work With Me Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.why-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.why-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 500;
}

/* Profile CTA */
.profile-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.profile-cta .btn {
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
}

.profile-cta .btn:hover {
  transform: translateY(-3px);
}

/* Responsive for Profile Section */
@media (max-width: 992px) {
  .design-tools-float {
    display: none;
  }
  
  .profile-photo-frame {
    width: 150px;
    height: 150px;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .profile-section {
    padding: 40px 0 !important;
  }
  
  .content-title {
    font-size: 1.5rem;
  }
  
  .content-subtitle {
    font-size: 1.1rem;
  }
  
  .services-grid {
    justify-content: center;
  }
  
  .profile-cta {
    flex-direction: column;
  }
  
  .profile-cta .btn {
    width: 100%;
  }
}
