*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  height: 100%;
  overflow-x: hidden;
  width: 100%;
}

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.page-loader.hidden {
  pointer-events: none;
  opacity: 0;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(151, 166, 246, 0.2);
  border-top: 4px solid #97A6F6;
  border-right: 4px solid #ADB8E3;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-text {
  color: #97A6F6;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 0 0 20px rgba(151, 166, 246, 0.3);
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 70px);
  background: #000;
}

/* Portfolio Section - Main Feature */
.portfolio-section {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  position: relative;
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.why-webwrks {
  color: #fff;
  max-width: 500px;
}

.why-webwrks h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #97A6F6;
  font-weight: 700;
}

.why-webwrks h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}

.tagline {
  font-size: 1.5rem;
  color: #97A6F6;
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 600;
}

.why-webwrks ul {
  list-style: none;
  margin-bottom: 40px;
}

.why-webwrks li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #C4C9CF;
  line-height: 1.6;
}

.bullet {
  color: #97A6F6;
  font-weight: bold;
  margin-right: 10px;
}

.scroll-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-size: 1.3rem;
  color: #97A6F6;
  text-decoration: none;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: color 0.3s;
}

.scroll-arrow img {
  width: 80px;
  height: 80px;
  animation: bounce 2s infinite;
  align-self: center;
  margin-top: 10px;
}

.scroll-arrow:hover {
  color: #ADB8E3;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease-in;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
  padding: 50px;
  border: 2px solid #97A6F6;
  border-radius: 20px;
  max-width: 1200px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s ease-out;
  box-shadow: 0 20px 80px rgba(151, 166, 246, 0.4);
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #97A6F6;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #C4C9CF;
}

.modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 2px solid #97A6F6;
  padding-bottom: 20px;
  text-align: center;
}

.modal-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.modal-header h2 {
  color: #97A6F6;
  font-size: 2rem;
  margin: 0;
}

.modal-description {
  color: #C4C9CF;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.modal-body {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.modal-features {
  background: rgba(151, 166, 246, 0.1);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #97A6F6;
  flex: 0 0 350px;
}

.modal-features h3 {
  color: #97A6F6;
  margin: 0 0 15px 0;
  font-size: 1.2rem;
}

.modal-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-features li {
  color: #C4C9CF;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.modal-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #97A6F6;
  font-weight: bold;
}

.modal-features p {
  color: #C4C9CF;
  margin: 0;
  font-size: 1.1rem;
}

.modal-screenshot {
  width: 100%;
  margin: 30px 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(151, 166, 246, 0.3);
  border: 2px solid #97A6F6;
  flex: 1;
  margin: 0;
}

.modal-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

.modal-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #97A6F6;
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(151, 166, 246, 0.3);
}

.modal-btn:hover {
  background: #C4C9CF;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(151, 166, 246, 0.5);
}

/* Announcement Modal Styles */
.announcement-modal .modal-content {
  max-width: 700px;
  width: 90%;
}

.announcement-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
  border: 2px solid #97A6F6;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 80px rgba(151, 166, 246, 0.5);
  animation: slideIn 0.4s ease-out;
}

.announcement-header {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #97A6F6;
  padding-bottom: 20px;
}

.announcement-header h2 {
  color: #97A6F6;
  font-size: 2.2rem;
  margin: 0;
  text-shadow: 0 0 20px rgba(151, 166, 246, 0.3);
}

.announcement-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.announcement-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(151, 166, 246, 0.05);
  border-radius: 12px;
  border-left: 4px solid #ADB8E3;
  transition: all 0.3s ease;
}

.announcement-item.featured {
  background: rgba(151, 166, 246, 0.15);
  border-left: 4px solid #97A6F6;
  box-shadow: 0 0 20px rgba(151, 166, 246, 0.2);
}

.announcement-item:hover {
  transform: translateX(5px);
}

.announcement-icon {
  font-size: 2rem;
  flex-shrink: 0;
  min-width: 50px;
  text-align: center;
}

.announcement-text h3 {
  color: #97A6F6;
  margin: 0 0 8px 0;
  font-size: 1.2rem;
}

.announcement-text p {
  color: #C4C9CF;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.announcement-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.announcement-btn {
  flex: 1;
  max-width: 250px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #97A6F6 0%, #ADB8E3 100%);
  color: #000;
  text-decoration: none;
  text-align: center;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(151, 166, 246, 0.3);
}

.announcement-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(151, 166, 246, 0.5);
}

.announcement-close-btn {
  flex: 1;
  max-width: 250px;
  padding: 14px 30px;
  background: transparent;
  color: #97A6F6;
  border: 2px solid #97A6F6;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.announcement-close-btn:hover {
  background: rgba(151, 166, 246, 0.1);
  transform: translateY(-3px);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.portfolio-container {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  position: relative;
}

.logo-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.large-logo {
  width: 600px;
  height: 600px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(151, 166, 246, 0.2), transparent);
  box-shadow: 0 0 100px rgba(151, 166, 246, 0.6), inset 0 0 100px rgba(151, 166, 246, 0.3);
  border: 3px solid #97A6F6;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 100px rgba(151, 166, 246, 0.6), inset 0 0 100px rgba(151, 166, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 130px rgba(151, 166, 246, 0.8), inset 0 0 130px rgba(151, 166, 246, 0.4);
  }
}

.large-logo:hover {
  transform: scale(1.08);
  box-shadow: 0 0 130px rgba(151, 166, 246, 0.8), inset 0 0 130px rgba(151, 166, 246, 0.4);
  border: 3px solid #97A6F6;
}

.large-logo:hover .logo-hover-text {
  opacity: 1;
  transform: translateY(0);
}

.center-logo-large {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.logo-hover-text {
  position: absolute;
  bottom: 30px;
  color: #97A6F6;
  font-size: 1.3rem;
  font-weight: 700;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 1.5px;
  background: rgba(0, 0, 0, 0.7);
  padding: 12px 30px;
  border-radius: 50px;
  border: 2px solid #97A6F6;
  white-space: nowrap;
  text-transform: uppercase;
}

/* Services Section */
.services-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
  position: relative;
  border-top: none;
  border-bottom: none;
}

.services-section::before,
.services-section::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40'%3E%3Cpath d='M0,20 Q150,0 300,20 T600,20 T900,20 T1200,20 L1200,40 L0,40 Z' fill='%23000' stroke='%23fff' stroke-width='3'/%3E%3C/svg%3E") repeat-x;
  background-size: 600px 40px;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

.services-section::before {
  top: 0;
  transform: scaleY(-1);
}

.services-section::after {
  bottom: 0;
}

.services-section h2 {
  font-size: 3rem;
  margin-bottom: 80px;
  color: #97A6F6;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(151, 166, 246, 0.3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

.service-card {
  background: linear-gradient(135deg, #ADB8E3 0%, #97A6F6 100%);
  padding: 40px;
  border-radius: 15px;
  color: #000;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(151, 166, 246, 0.3);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(151, 166, 246, 0.6);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #333;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Pricing Section */
.pricing-section {
  width: 100%;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.pricing-subsection {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 60px;
}

.pricing-subheading {
  font-size: 1.8rem;
  color: #ADB8E3;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
}

.pricing-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #97A6F6;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(151, 166, 246, 0.3);
}

.pricing-intro {
  font-size: 1.2rem;
  color: #C4C9CF;
  text-align: center;
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  margin-bottom: 40px;
}

.pricing-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
  border: 2px solid #ADB8E3;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 3px solid #97A6F6;
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(151, 166, 246, 0.4);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(151, 166, 246, 0.3);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #97A6F6;
  color: #000;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  margin-top: 10px;
  color: #97A6F6;
  font-weight: 700;
}

.price {
  font-size: 3rem;
  color: #ADB8E3;
  font-weight: 700;
  margin-bottom: 10px;
}

.price-desc {
  color: #999;
  margin-bottom: 30px;
  font-size: 1rem;
}

.features-list {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
}

.features-list li {
  color: #ccc;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  font-size: 1rem;
}

.features-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #97A6F6;
  font-weight: bold;
}

.cta-btn {
  display: block;
  background: #97A6F6;
  color: #000;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-decoration: none;
  text-align: center;
}

.pricing-card .cta-btn {
  margin-top: auto;
}

.cta-btn:hover {
  background: #C4C9CF;
  transform: scale(1.02);
}

.cta-btn.primary {
  background: #ADB8E3;
  box-shadow: 0 0 20px rgba(151, 166, 246, 0.5);
}

.cta-btn.primary:hover {
  background: #97A6F6;
}

.pricing-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-top: 40px;
}

.pricing-cta-buttons .cta-btn {
  width: 100%;
  max-width: 400px;
}

/* Info Sections */
.info-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
  border-top: 2px solid #97A6F6;
}

.info-section h2 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: #97A6F6;
  text-align: center;
  letter-spacing: 1px;
}

.info-section p {
  font-size: 1.3rem;
  max-width: 800px;
  text-align: center;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 30px;
}

footer {
  text-align: left;
  padding: 60px 40px;
  color: #C4C9CF;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  border-top: 2px solid #97A6F6;
  width: 100%;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-section h4 {
  color: #97A6F6;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-section p {
  color: #C4C9CF;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-section ul li {
  margin: 0;
}

.footer-section a {
  color: #97A6F6;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
}

.footer-section a:hover {
  color: #ADB8E3;
  text-shadow: 0 0 10px rgba(151, 166, 246, 0.5);
}

.footer-section a::before {
  content: '→ ';
  opacity: 0;
  transition: opacity 0.3s;
  margin-right: 5px;
}

.footer-section a:hover::before {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .portfolio-section {
    flex-direction: column;
    padding: 40px 30px;
    gap: 40px;
  }

  .hero-content {
    width: 100%;
    justify-content: center;
  }

  .why-webwrks {
    max-width: 100%;
  }

  .portfolio-container {
    width: 100%;
  }

  .logo-showcase {
    gap: 40px;
  }

  .large-logo {
    width: 450px;
    height: 450px;
  }

  .pricing-card.featured {
    transform: scale(1.02);
  }

  .pricing-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
  }
}

@media (max-width: 768px) {
  .portfolio-section {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }

  .why-webwrks h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .why-webwrks h1 {
    font-size: 2rem;
  }

  .why-webwrks li {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .scroll-arrow {
    font-size: 1rem;
    flex-direction: column;
    gap: 10px;
  }

  .scroll-arrow img {
    width: 60px;
    height: 60px;
  }

  .logo-showcase {
    gap: 30px;
  }

  .large-logo {
    width: 300px;
    height: 300px;
  }

  .services-section {
    padding: 60px 20px;
  }

  .services-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .pricing-section {
    padding: 60px 20px;
  }

  .pricing-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

}

@media (max-width: 480px) {
  /* Portfolio Section */
  .portfolio-section {
    padding: 20px 15px;
    min-height: auto;
    flex-direction: column;
    gap: 30px;
  }

  .hero-content {
    width: 100%;
    justify-content: center;
  }

  .why-webwrks {
    max-width: 100%;
    text-align: center;
  }

  .why-webwrks h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .why-webwrks h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .why-webwrks ul {
    margin-bottom: 25px;
    text-align: left;
  }

  .why-webwrks li {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .scroll-arrow {
    font-size: 1rem;
    gap: 10px;
    justify-content: center;
  }

  .scroll-arrow img {
    width: 60px;
    height: 60px;
  }

  .portfolio-container {
    width: 100%;
  }

  .logo-showcase {
    gap: 20px;
    justify-content: center;
  }

  .large-logo {
    width: 220px;
    height: 220px;
  }

  .center-logo-large {
    width: 100%;
    height: 100%;
  }

  .logo-hover-text {
    font-size: 0.95rem;
    bottom: 30px;
  }

  /* Services Section */
  .services-section {
    padding: 40px 15px;
  }

  .services-section h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 25px 20px;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  /* Pricing Section */
  .pricing-section {
    padding: 40px 15px;
  }

  .pricing-section h2 {
    font-size: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-card h3 {
    font-size: 1.4rem;
  }

  .price {
    font-size: 1.8rem;
  }

  .features-list li {
    font-size: 0.95rem;
  }

  .cta-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  /* Modal */
  .modal-content {
    padding: 30px 20px;
    width: 95%;
    max-height: 95vh;
  }

  .modal-body {
    flex-direction: column;
    gap: 30px;
  }

  .modal-features {
    width: 100%;
  }

  .modal-screenshot {
    width: 100%;
    height: 250px;
  }

  .modal-header h2 {
    font-size: 1.6rem;
  }

  .modal-description {
    font-size: 0.95rem;
  }

  .modal-logo {
    width: 80px;
    height: 80px;
  }

  /* Footer */
  footer {
    padding: 40px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section h4 {
    font-size: 1rem;
  }

  .footer-section p {
    font-size: 0.9rem;
  }
}

/* ==================== PORTFOLIO GRID PAGE ==================== */
.portfolio-header {
  width: 100%;
  padding: 60px 40px;
  text-align: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  border-bottom: 2px solid #97A6F6;
}

.portfolio-header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  text-align: center;
}

.portfolio-header-content > div {
  flex: 1;
}

.back-btn {
  display: inline-flex;
  padding: 12px 25px;
  background: rgba(151, 166, 246, 0.2);
  border: 2px solid #97A6F6;
  color: #97A6F6;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.back-btn:hover {
  background: #97A6F6;
  color: #000;
  transform: translateY(-3px);
}

.portfolio-header h1 {
  font-size: 3.5rem;
  color: #97A6F6;
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(151, 166, 246, 0.3);
}

.portfolio-header p {
  font-size: 1.3rem;
  color: #C4C9CF;
}

.portfolio-grid-section {
  width: 100%;
  min-height: calc(100vh - 200px);
  padding: 80px 40px;
  background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio-grid-item {
  perspective: 1000px;
}

.portfolio-grid-item:nth-child(7),
.portfolio-grid-item:nth-child(8),
.portfolio-grid-item:nth-child(9) {
  display: none;
}

.portfolio-grid-card {
  background: linear-gradient(135deg, #ADB8E3 0%, #97A6F6 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(151, 166, 246, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 400px;
  color: #000;
  position: relative;
  overflow: hidden;
}

.portfolio-grid-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: 1;
}

.portfolio-grid-card:hover::before {
  left: 100%;
}

.portfolio-grid-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 15px 50px rgba(151, 166, 246, 0.6);
  background: linear-gradient(135deg, #97A6F6 0%, #C4C9CF 100%);
}

.grid-logo {
  width: 320px;
  height: 320px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* FamilyFirst.png positioning */
.portfolio-grid-item:nth-child(1) .grid-logo {
  margin-bottom: -50px;
}

/* AuntyAs.png positioning */
.portfolio-grid-item:nth-child(2) .grid-logo {
  margin-top: -10px;
}

/* Stellar.png - overlapping text */
.portfolio-grid-item:nth-child(3) .grid-logo {
  margin-bottom: -60px;
}

/* FinHub.png - overlapping text */
.portfolio-grid-item:nth-child(4) .grid-logo {
  margin-bottom: -60px;
}

.portfolio-grid-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #000;
  position: relative;
  z-index: 2;
}

.portfolio-grid-card p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.view-more {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.portfolio-grid-card:hover .view-more {
  background: rgba(0, 0, 0, 0.4);
  transform: scale(1.1);
}

/* Responsive Portfolio Grid */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  .portfolio-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .portfolio-grid-section {
    padding: 40px 20px;
  }

  .portfolio-header {
    padding: 40px 20px;
  }

  .portfolio-header h1 {
    font-size: 2rem;
  }

  .portfolio-header p {
    font-size: 1.1rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .portfolio-grid-card {
    height: 350px;
    padding: 30px 20px;
  }

  .grid-logo {
    width: 240px;
    height: 240px;
    margin-bottom: 20px;
  }

  .portfolio-grid-card h3 {
    font-size: 1.2rem;
  }

  .portfolio-grid-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .portfolio-grid-section {
    padding: 30px 15px;
  }

  .portfolio-header {
    padding: 30px 15px;
  }

  .portfolio-header h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .portfolio-header p {
    font-size: 1rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-grid-card {
    height: 300px;
    padding: 25px 20px;
  }

  .grid-logo {
    width: 260px;
    height: 260px;
    margin-bottom: 10px;
  }

  .portfolio-grid-card h3 {
    font-size: 1.1rem;
  }
}

/* ==================== CONTACT PAGE ==================== */
.contact-header {
  width: 100%;
  padding: 60px 40px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  border-bottom: 2px solid #97A6F6;
}

.contact-header-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-header h1 {
  font-size: 3.5rem;
  color: #97A6F6;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-header p {
  font-size: 1.2rem;
  color: #ADB8E3;
  margin-bottom: 30px;
}

.header-text-section .back-btn {
  position: static;
  left: auto;
  top: auto;
  display: inline-block;
  margin: 0 auto;
}

.contact-main {
  background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
  padding: 80px 40px;
  min-height: calc(100vh - 300px);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info-section h2,
.contact-form-section h2 {
  font-size: 2.2rem;
  color: #97A6F6;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-intro {
  font-size: 1.1rem;
  color: #ADB8E3;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-methods {
  margin-bottom: 50px;
}

.contact-method {
  background: rgba(151, 166, 246, 0.05);
  border-left: 4px solid #97A6F6;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(151, 166, 246, 0.1);
  transform: translateX(5px);
}

.contact-method h3 {
  color: #97A6F6;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.contact-method a {
  color: #97A6F6;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
}

.contact-method a:hover {
  text-decoration: underline;
}

.contact-method p {
  color: #C4C9CF;
  font-size: 0.95rem;
}

.expectation-list,
.benefits-list {
  list-style: none;
  margin-top: 12px;
}

.expectation-list li,
.benefits-list li {
  color: #C4C9CF;
  padding: 8px 0;
  font-size: 0.95rem;
}

.why-contact {
  background: linear-gradient(135deg, rgba(151, 166, 246, 0.1), rgba(173, 184, 227, 0.05));
  border: 2px solid #97A6F6;
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
}

.why-contact h3 {
  color: #97A6F6;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

/* CONTACT FORM STYLES */
.contact-form {
  background: rgba(151, 166, 246, 0.05);
  padding: 40px;
  border-radius: 12px;
  border: 2px solid #97A6F6;
}

.form-group {
  margin-bottom: 25px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  color: #97A6F6;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #97A6F6;
  color: #fff;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-group select {
  background: rgba(151, 166, 246, 0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2397A6F6' d='M6 9L1 4h10z'/%3E%3C/svg%3E") no-repeat right 12px center;
  padding-right: 40px;
  color: #fff;
}

.form-group select option {
  color: #000;
  background: #fff;
  padding: 8px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  background: rgba(151, 166, 246, 0.2);
  box-shadow: 0 0 15px rgba(151, 166, 246, 0.3);
  border-color: #97A6F6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2397A6F6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.submit-btn {
  width: 100%;
  padding: 14px 30px;
  background: linear-gradient(135deg, #97A6F6 0%, #ADB8E3 100%);
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(151, 166, 246, 0.4);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-note {
  text-align: center;
  color: #C4C9CF;
  font-size: 0.9rem;
  margin-top: 15px;
}

/* Success Message Styling */
.success-message {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(39, 174, 96, 0.1));
  border-radius: 12px;
  border: 2px solid #2ecc71;
}

.success-content h3 {
  color: #2ecc71;
  font-size: 2rem;
  margin-bottom: 15px;
}

.success-content p {
  color: #ADB8E3;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.success-content .cta-button {
  background-color: #2ecc71;
  display: inline-block;
}

.success-content .cta-button:hover {
  background-color: #27ae60;
}

/* RESPONSIVE CONTACT PAGE */
@media (max-width: 1024px) {
  .contact-header-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .header-text-section {
    text-align: center;
  }

  .contact-header h1 {
    font-size: 2.5rem;
  }

  .contact-header p {
    font-size: 1rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .contact-main {
    padding: 50px 20px;
  }

  .contact-header h1 {
    font-size: 2rem;
  }

  .contact-header p {
    font-size: 1rem;
  }

  .contact-form {
    padding: 25px;
  }

  .contact-info-section h2,
  .contact-form-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .contact-header {
    padding: 30px 20px;
  }

  .contact-header-content {
    gap: 15px;
  }

  .contact-header h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .contact-header p {
    font-size: 1rem;
  }

  .contact-main {
    padding: 40px 20px;
    min-height: auto;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 25px 15px;
    border: 1px solid #97A6F6;
  }

  .contact-info-section h2,
  .contact-form-section h2 {
    font-size: 1.6rem;
  }

  .contact-method {
    padding: 18px;
    margin-bottom: 18px;
  }

  .contact-method h3 {
    font-size: 1.1rem;
  }

  .form-group label {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 12px;
    font-size: 16px;
  }

  .submit-btn {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .expectation-list,
  .benefits-list {
    margin-left: 20px;
  }

  .expectation-list li,
  .benefits-list li {
    font-size: 0.95rem;
  }
}

/* ==================== IMAGE LIGHTBOX ==================== */
.image-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.image-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-content {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  animation: zoomIn 0.3s ease;
}

.image-modal-close {
  position: absolute;
  top: 30px;
  right: 45px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.3s ease, transform 0.3s ease;
}

.image-modal-close:hover {
  color: #97A6F6;
  transform: scale(1.2);
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hover effect for clickable screenshots */
.clickable-screenshot:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(151, 166, 246, 0.5);
}


/* ==================== PORTFOLIO PAGE STYLES ==================== */

/* Capabilities Section */
.capabilities-section {
  width: 100%;
  padding: 80px 40px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.capabilities-section h2 {
  font-size: 2.8rem;
  color: #97A6F6;
  text-align: center;
  margin-bottom: 60px;
  text-shadow: 0 0 20px rgba(151, 166, 246, 0.3);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.capability-card {
  background: rgba(151, 166, 246, 0.05);
  border: 2px solid #ADB8E3;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.capability-card:hover {
  border-color: #97A6F6;
  background: rgba(151, 166, 246, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(151, 166, 246, 0.2);
}

.capability-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.capability-card h3 {
  color: #97A6F6;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.capability-card p {
  color: #C4C9CF;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* App Development Section */
.app-dev-section {
  width: 100%;
  padding: 80px 40px;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-dev-section h2 {
  font-size: 2.8rem;
  color: #97A6F6;
  text-align: center;
  margin-bottom: 60px;
  text-shadow: 0 0 20px rgba(151, 166, 246, 0.3);
}

.app-dev-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}

.app-dev-text .section-intro {
  color: #C4C9CF;
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.8;
}

.app-dev-features {
  list-style: none;
  margin-bottom: 30px;
}

.app-dev-features li {
  color: #C4C9CF;
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 1rem;
}

.app-dev-features li::before {
  content: '?';
  position: absolute;
  left: 0;
  color: #97A6F6;
  font-weight: bold;
  font-size: 1.2rem;
}

.coming-soon-note {
  color: #97A6F6;
  background: rgba(151, 166, 246, 0.1);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #97A6F6;
  font-size: 1rem;
  font-weight: 600;
}

.app-mockup {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 560px;
  background: #1a1a2e;
  border: 8px solid #97A6F6;
  border-radius: 45px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(151, 166, 246, 0.3);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 25px;
  background: #000;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(151, 166, 246, 0.1), rgba(173, 184, 227, 0.1));
  border-radius: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.phone-screen p {
  color: #97A6F6;
  font-weight: 600;
}

.phone-home {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 3px;
  background: #97A6F6;
  border-radius: 3px;
}

/* Tech Stack Section */
.tech-stack-section {
  width: 100%;
  padding: 80px 40px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tech-stack-section h2 {
  font-size: 2.8rem;
  color: #97A6F6;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(151, 166, 246, 0.3);
}

.tech-stack-section .section-intro {
  color: #C4C9CF;
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

.tech-category h3 {
  color: #97A6F6;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tech-badge {
  display: inline-block;
  background: rgba(151, 166, 246, 0.2);
  color: #97A6F6;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid #97A6F6;
  transition: all 0.3s ease;
}

.tech-badge:hover {
  background: #97A6F6;
  color: #000;
  transform: scale(1.05);
}

/* Industries Section */
.industries-section {
  width: 100%;
  padding: 80px 40px;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.industries-section h2 {
  font-size: 2.8rem;
  color: #97A6F6;
  text-align: center;
  margin-bottom: 60px;
  text-shadow: 0 0 20px rgba(151, 166, 246, 0.3);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.industry-card {
  background: rgba(151, 166, 246, 0.05);
  border: 2px solid #ADB8E3;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.industry-card:hover {
  border-color: #97A6F6;
  background: rgba(151, 166, 246, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(151, 166, 246, 0.2);
}

.industry-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.industry-card h4 {
  color: #97A6F6;
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.industry-card p {
  color: #C4C9CF;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Portfolio CTA Section */
.portfolio-cta-section {
  width: 100%;
  padding: 80px 40px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.portfolio-cta-content {
  text-align: center;
  max-width: 800px;
}

.portfolio-cta-content h2 {
  font-size: 2.5rem;
  color: #97A6F6;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(151, 166, 246, 0.3);
}

.portfolio-cta-content p {
  color: #C4C9CF;
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.portfolio-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.portfolio-cta-buttons .cta-btn {
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.portfolio-cta-buttons .cta-btn {
  background: #97A6F6;
  color: #000;
  box-shadow: 0 4px 15px rgba(151, 166, 246, 0.3);
}

.portfolio-cta-buttons .cta-btn:hover {
  background: #C4C9CF;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(151, 166, 246, 0.5);
}

.portfolio-cta-buttons .cta-btn.secondary {
  background: transparent;
  color: #97A6F6;
  border: 2px solid #97A6F6;
}

.portfolio-cta-buttons .cta-btn.secondary:hover {
  background: rgba(151, 166, 246, 0.1);
  border-color: #C4C9CF;
  color: #C4C9CF;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .app-dev-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .phone-frame {
    width: 220px;
    height: 440px;
  }

  .portfolio-cta-buttons {
    flex-direction: column;
  }

  .portfolio-cta-buttons .cta-btn {
    width: 100%;
  }
}

/* ==================== ABOUT PAGE STYLES ==================== */

/* About Header */
.about-header {
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  position: relative;
}

.about-header-content {
  text-align: center;
  max-width: 800px;
}

.about-header h1 {
  font-size: 4rem;
  color: #97A6F6;
  margin: 20px 0;
  text-shadow: 0 0 30px rgba(151, 166, 246, 0.3);
}

.about-header p {
  font-size: 1.3rem;
  color: #C4C9CF;
}

/* Mission Section */
.mission-section {
  width: 100%;
  padding: 80px 40px;
  background: #000;
  display: flex;
  justify-content: center;
}

.mission-content {
  max-width: 900px;
  text-align: center;
}

.mission-content h2 {
  font-size: 2.8rem;
  color: #97A6F6;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(151, 166, 246, 0.3);
}

.mission-content p {
  color: #C4C9CF;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.mission-content p:last-child {
  margin-bottom: 0;
}

/* Why WebWrks Section */
.why-section {
  width: 100%;
  padding: 80px 40px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-section h2 {
  font-size: 2.8rem;
  color: #97A6F6;
  text-align: center;
  margin-bottom: 60px;
  text-shadow: 0 0 20px rgba(151, 166, 246, 0.3);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.why-card {
  background: rgba(151, 166, 246, 0.05);
  border: 2px solid #ADB8E3;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: #97A6F6;
  background: rgba(151, 166, 246, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(151, 166, 246, 0.2);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.why-card h3 {
  color: #97A6F6;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.why-card p {
  color: #C4C9CF;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Values Section */
.values-section {
  width: 100%;
  padding: 80px 40px;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.values-section h2 {
  font-size: 2.8rem;
  color: #97A6F6;
  text-align: center;
  margin-bottom: 60px;
  text-shadow: 0 0 20px rgba(151, 166, 246, 0.3);
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

.value-item {
  background: rgba(151, 166, 246, 0.05);
  border-left: 4px solid #97A6F6;
  padding: 30px;
  border-radius: 8px;
}

.value-item h3 {
  color: #97A6F6;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.value-item p {
  color: #C4C9CF;
  font-size: 1rem;
  line-height: 1.7;
}

/* Process Section */
.process-section {
  width: 100%;
  padding: 80px 40px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-section h2 {
  font-size: 2.8rem;
  color: #97A6F6;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(151, 166, 246, 0.3);
}

.process-section .section-intro {
  color: #C4C9CF;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  position: relative;
}

.process-step {
  background: rgba(151, 166, 246, 0.05);
  border: 2px solid #ADB8E3;
  padding: 40px 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: #97A6F6;
  background: rgba(151, 166, 246, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(151, 166, 246, 0.2);
}

.step-number {
  font-size: 2.5rem;
  color: #97A6F6;
  font-weight: 700;
  margin-bottom: 15px;
  opacity: 0.5;
}

.process-step h3 {
  color: #97A6F6;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.process-step p {
  color: #C4C9CF;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* About CTA Section */
.about-cta-section {
  width: 100%;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(151, 166, 246, 0.1), rgba(173, 184, 227, 0.05));
  border-top: 2px solid #97A6F6;
  border-bottom: 2px solid #97A6F6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-cta-content {
  text-align: center;
  max-width: 800px;
}

.about-cta-content h2 {
  font-size: 2.5rem;
  color: #97A6F6;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(151, 166, 246, 0.3);
}

.about-cta-content p {
  color: #C4C9CF;
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.about-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta-buttons .cta-btn {
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.about-cta-buttons .cta-btn {
  background: #97A6F6;
  color: #000;
  box-shadow: 0 4px 15px rgba(151, 166, 246, 0.3);
}

.about-cta-buttons .cta-btn:hover {
  background: #C4C9CF;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(151, 166, 246, 0.5);
}

.about-cta-buttons .cta-btn.secondary {
  background: transparent;
  color: #97A6F6;
  border: 2px solid #97A6F6;
}

.about-cta-buttons .cta-btn.secondary:hover {
  background: rgba(151, 166, 246, 0.1);
  border-color: #C4C9CF;
  color: #C4C9CF;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-header h1 {
    font-size: 2.5rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .about-cta-buttons {
    flex-direction: column;
  }

  .about-cta-buttons .cta-btn {
    width: 100%;
  }
}

/* ==================== FAQ PAGE STYLES ==================== */

/* FAQ Header */
.faq-header {
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.faq-header-content {
  text-align: center;
  max-width: 800px;
}

.faq-header h1 {
  font-size: 4rem;
  color: #97A6F6;
  margin: 20px 0;
  text-shadow: 0 0 30px rgba(151, 166, 246, 0.3);
}

.faq-header p {
  font-size: 1.3rem;
  color: #C4C9CF;
}

/* FAQ Section */
.faq-section {
  width: 100%;
  padding: 80px 40px;
  background: #000;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 60px;
}

.faq-category h2 {
  font-size: 2rem;
  color: #97A6F6;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #97A6F6;
  text-shadow: 0 0 20px rgba(151, 166, 246, 0.3);
}

/* FAQ Item */
.faq-item {
  margin-bottom: 20px;
  border: 2px solid #ADB8E3;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(151, 166, 246, 0.02);
}

.faq-item:hover {
  border-color: #97A6F6;
  background: rgba(151, 166, 246, 0.05);
}

.faq-item.active {
  border-color: #97A6F6;
  background: rgba(151, 166, 246, 0.1);
}

/* FAQ Question */
.faq-question {
  width: 100%;
  padding: 25px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.faq-question:hover {
  color: #97A6F6;
}

.faq-question span:first-child {
  flex: 1;
  text-align: left;
}

.faq-toggle {
  color: #97A6F6;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.active .faq-toggle {
  color: #ADB8E3;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 2000px;
  padding: 0 25px 25px 25px;
}

.faq-answer p {
  color: #C4C9CF;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
  color: #C4C9CF;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
  margin-left: 20px;
}

.faq-answer li {
  margin-bottom: 8px;
}

.faq-answer a {
  color: #97A6F6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-answer a:hover {
  color: #ADB8E3;
  text-decoration: underline;
}

/* FAQ CTA Section */
.faq-cta-section {
  width: 100%;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(151, 166, 246, 0.1), rgba(173, 184, 227, 0.05));
  border-top: 2px solid #97A6F6;
  border-bottom: 2px solid #97A6F6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.faq-cta-content {
  text-align: center;
  max-width: 700px;
}

.faq-cta-content h2 {
  font-size: 2.5rem;
  color: #97A6F6;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(151, 166, 246, 0.3);
}

.faq-cta-content p {
  color: #C4C9CF;
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.faq-cta-content .cta-btn {
  padding: 16px 50px;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  background: #97A6F6;
  color: #000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(151, 166, 246, 0.3);
}

.faq-cta-content .cta-btn:hover {
  background: #C4C9CF;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(151, 166, 246, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-header h1 {
    font-size: 2.5rem;
  }

  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

