/* Import Satoshi font */
@import url('https://fonts.cdnfonts.com/css/satoshi');

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #F8FAFC;
  color: #1E293B;
  line-height: 1.6;
}

/* Smooth transitions for interactive elements */
button, a {
  transition: transform 0.2s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

button:hover, a:hover {
  transform: translateY(-2px);
}

button:active, a:active {
  transform: translateY(0);
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: sticky;
  top: 0;
  background-color: #1E293B;
  color: white;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo a{
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  display: flex;
  gap: 0.5rem;
  text-decoration: none;
}



.navbar-logo img {
    width: 2.5rem;
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  display: flex;
  gap: 0.5rem;
}

.navbar-logo img {
    width: 2.5rem;
}

.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0EA5E9;
}

.logo-placeholder span{
    color: #F97316;
    font-weight: 500;
}

.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
}

.desktop-nav {
  display: none;
}

.mobile-menu {
  background-color: #1E293B;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  display: none;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-link {
  display: block;
  color: white;
  text-decoration: none;
  padding: 0.75rem 0;
  font-size: 1rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
  color: #F97316;
}

/* Desktop Navigation */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    cursor: pointer;
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #F97316;
    transition: width 0.3s ease;
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .nav-cta-btn {
    background-color: #F97316;
    color: white;
    border: none;
    padding: 0.800rem 1.8rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
  }

  .nav-cta-btn:hover {
    background-color: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
  }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1E293B;
}

.hero-highlight {
  color: #F97316;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #64748B;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  background-color: #F97316;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 280px;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background-color: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #0EA5E9;
  border: 2px solid #0EA5E9;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  max-width: 280px;
}

.btn-secondary:hover {
  background-color: #0EA5E9;
  color: white;
  box-shadow: 0 8px 20px rgba(22, 181, 249, 0.4);
}

/* Decorative shapes */
.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.4;
  animation: float 6s ease-in-out infinite;
}

        .hero-bg-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            animation: float 6s ease-in-out infinite;
        }

.shape-1 {
            background-color: #FB923C;
            width: 250px;
            height: 250px;
            top: -100px;
            right: -100px;
            
        }

        .shape-2 {
            background-color: #FB923C;
            width: 200px;
            height: 200px;
            bottom: 50px;
            left: -40px;
        }

        .shape-3 {
            background-color: #0EA5E9;
            width: 250px;
            height: 250px;
            bottom: 90px;
            right: -200px;
        }

        .shape-4 {
            background-color: #0EA5E9;
            width: 300px;
            height: 300px;
            top: 50px;
            left: -100px;
        }

        .shape-5 {
             background-color: #FB923C;
            width: 200px;
            height: 200px;
            top: 50px;
            left: 400px;
            display: none;
        }
        .shape-6 {
             background-color: #0EA5E9;
            width: 300px;
            height: 300px;
            top: 150px;
            right: 300px;
            display: none;
        }
        .shape-7 {
             background-color: #0EA5E9;
            width: 200px;
            height: 200px;
            bottom: 60px;
            left: 400px;
            display: none;
        }

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Desktop Hero */
@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .btn-primary, .btn-secondary {
    width: auto;
  }
  .shape-1 {
            background-color: #0EA5E9;
            width: 500px;
            height: 500px;
            top: -150px;
            right: -100px;
            
        }

        .shape-2 {
            background-color: #FB923C;
            width: 400px;
            height: 400px;
            bottom: 50px;
            left: -80px;
        }

        .shape-3 {
            background-color: #FB923C;
            width: 500px;
            height: 500px;
            bottom: 90px;
            right: -200px;
        }

        .shape-4 {
            background-color: #0EA5E9;
            width: 600px;
            height: 600px;
            top: 50px;
            left: -300px;
            display: block;
        }

        .shape-5 {
             background-color: #FB923C;
            width: 500px;
            height: 500px;
            top: 50px;
            left: 400px;
            display: block;
        }
        .shape-6 {
             background-color: #0EA5E9;
            width: 400px;
            height: 400px;
            top: 150px;
            right: 300px;
            display: block;
        }
        .shape-7 {
             background-color: #0EA5E9;
            width: 400px;
            height: 400px;
            bottom: 60px;
            left: 400px;
            display: block;
        }
}

/* ==================== services SECTION ==================== */
.services-section {
  padding: 4rem 1.5rem;
  background-color: #F8FAFC;
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1E293B;
  margin-bottom: 1rem;
}

.services-subtitle {
  font-size: 1.125rem;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: white;
  border: 2px solid #E0F2FE;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.15);
  border-color: #0EA5E9;
}

.service-card.coming-soon {
  opacity: 0.7;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #E0F2FE 0%, #FED7AA 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F97316;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 0.75rem;
}

.service-description {
  font-size: 1rem;
  color: #64748B;
  line-height: 1.6;
}

.coming-soon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #FB923C;
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Tablet Services */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop Services */
@media (min-width: 1024px) {
  .services-title {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio-section {
  padding: 4rem 1.5rem;
  background-color: #f8faff;
}

.portfolio-container {
  max-width: 1280px;
  margin: 0 auto;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 3rem;
}

.portfolio-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1E293B;
  margin-bottom: 1rem;
}

.portfolio-subtitle {
  font-size: 1.125rem;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.portfolio-item {
  border-radius: 16px;
  overflow: hidden;
  background: white;
  border: 2px solid #E2E8F0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.portfolio-placeholder {
  aspect-ratio: 16 / 10;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  gap: 0.75rem;
}

.placeholder-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #64748B;
}

.placeholder-hint {
  font-size: 0.875rem;
  color: #94A3B8;
}

/* Tablet Portfolio */
@media (min-width: 640px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop Portfolio */
@media (min-width: 1024px) {
  .portfolio-title {
    font-size: 2.5rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* ==================== WhyUs SECTION ==================== */
.whyus-section {
  padding: 4rem 1.5rem;
  background-color: #F8FAFf;
}

.whyus-container {
  max-width: 1280px;
  margin: 0 auto;
}

.whyus-header {
  text-align: center;
  margin-bottom: 3rem;
}

.whyus-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1E293B;
  margin-bottom: 1rem;
}

.whyus-subtitle {
  font-size: 1.125rem;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto;
}

.whyus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.whyus-card {
  background: white;
  border: 2px solid #feebe0;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.whyus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(233, 113, 14, 0.15);
  border-color: #F97316;
}

.whyus-card.coming-soon {
  opacity: 0.7;
}

.whyus-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #F97316 60%, #FED7AA 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.5rem;
}

.whyus-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 0.75rem;
}

.whyus-description {
  font-size: 1rem;
  color: #64748B;
  line-height: 1.6;
}

.coming-soon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #FB923C;
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Tablet whyus */
@media (min-width: 640px) {
  .whyus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop whyus */
@media (min-width: 1024px) {
  .whyus-title {
    font-size: 2.5rem;
  }

  .whyus-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
  padding: 4rem 1.5rem;
  background: #F8FAFf;
}

.pricing-container {
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1E293B;
  margin-bottom: 1rem;
}

.pricing-subtitle {
  font-size: 1.125rem;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

.pricing-card {
  background: white;
  border: 2px solid #0EA5E9;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #F97316;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header-content {
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 1rem;
}

.pricing-plan-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 1rem;
}

.pricing-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.price-range {
  font-size: 3rem;
  font-weight: 800;
  color: #1E293B;
  line-height: 1;
}

.price-note {
  font-size: 0.875rem;
  color: #64748B;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-icon {
  color: #0EA5E9;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-feature span {
  color: #475569;
  font-size: 1rem;
  line-height: 1.5;
}

.pricing-hosting {
  background: #F1F5F9;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.hosting-note {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.hosting-note strong {
  color: #1E293B;
}

.pricing-cta-btn {
  width: 100%;
  background-color: #F97316;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.pricing-cta-btn:hover {
    background-color: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
  
}

/* Desktop Pricing */
@media (min-width: 768px) {
  .pricing-title {
    font-size: 2.5rem;
  }

  .pricing-card {
    padding: 3rem 2.5rem;
  }
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  padding: 4rem 1.5rem;
  background-color: #F8FAFf;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1E293B;
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.125rem;
  color: #64748B;
}

.contact-form {
  background: white;
  border: 2px solid #E2E8F0;
  border-radius: 20px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-weight: 600;
  color: #1E293B;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-label svg {
  color: #0EA5E9;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Satoshi', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #F8FAFC;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #0EA5E9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
  background-color: white;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  background-color: #F97316;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
  margin-top: 0.5rem;
  
}

.submit-btn:hover {
    background-color: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

/* Desktop Contact */
@media (min-width: 768px) {
  .contact-title {
    font-size: 2.5rem;
  }

  .contact-form {
    grid-template-columns: repeat(2, 1fr);
    padding: 3rem;

    
  }
  .submit-btn {
    margin-left: 10rem;
  }
}

/* ==================== FOOTER ==================== */
.footer {
  background-color: #1E293B;
  color: white;
  padding: 3rem 1.5rem 1.5rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-direction: column;
    gap: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1em;
  flex-wrap: wrap;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: #94A3B8;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 360px;
}

.footer-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links li a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #F97316;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #94A3B8;
  font-size: 1.1rem;
}

.footer-contact li svg {
  color: #0EA5E9;
  flex-shrink: 0;
}

.footer-contact li a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: #F97316;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  display: flex;
  justify-content: center;
}

        .footer-logo {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: #0EA5E9 ;
        }

        .footer-logo img {
            width: 3rem;
            margin-right: 5px;
            
        }

                .footer-logo span {
            color: #F97316;
            padding-left: 0.4rem;
            font-weight: 400;
            align-self: center;
        }

.footer-copyright {
  color: #94A3B8;
  font-size: 0.875rem;
}

/* Tablet Footer */
@media (min-width: 640px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop Footer */
@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }

  .footer-bottom {
    text-align: left;
  }
          .footer-content {
        display: flex;
        justify-content: space-between;
        margin-bottom: 2rem;
        flex-direction: row;
}

}

.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    font-family: 'Satoshi', sans-serif;
    position: relative; /* Needed for quote icon */
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    border: 2px solid #E2E8F0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Stars */
.stars {
    color: #F97316;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

/* Testimonial text */
.testimonial-text {
    color: #64748B;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Footer */
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

/* Gradient avatar */
.avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0EA5E9, #F97316);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

/* User info */
.user-info {
    display: flex;
    flex-direction: column;
    line-height: 1rem;
}

.user-info strong {
    color: #1E293B;
    font-size: 1rem;
    font-weight: 700;
    padding-bottom: 0.3rem;
}

.role {
    color: #475569;
    font-size: 0.875rem;
}

.location {
    color: #0EA5E9;
    font-size: 0.875rem;
    text-decoration: none;
}

/* Quote icon */
.quote-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #FCD9C2;
    font-size: 60px;
    opacity: 0.35;
    pointer-events: none;
}

/* Desktop spacing */
@media (min-width: 768px) {
    .testimonial-card {
        padding: 2.5rem 2.25rem;
    }
}

.social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .social-icons a:hover {
            background-color: #ea580c;
            transform: translateY(-3px);
        }