/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

/* Hide cursor on all clickable elements */
a,
button,
input[type="submit"],
input[type="button"],
.btn,
.nav-link,
.dropdown-menu a,
.hamburger,
.contact-icon,
.tech-item,
.portfolio-link,
.member-social a,
.blog-read-more,
.pagination-btn,
.pagination-number,
.package-btn,
input,
textarea,
select,
.logo-item,
.certificate-item,
.team-member,
.feature-card,
.service-card,
.blog-card,
.project-card,
.story-card,
.reason-card,
.mvv-card,
.app-category,
.solution-card,
.category-stat,
.newsletter-form button {
  cursor: pointer;
}

/* Also hide cursor on hover states */
a:hover,
button:hover,
input:hover,
textarea:hover,
select:hover,
.btn:hover,
.nav-link:hover,
.dropdown-menu a:hover,
.hamburger:hover {
  cursor: pointer;
}

/* Custom cursor visibility: only show when JS adds .has-custom-cursor */
body .custom-cursor {
  display: none;
}
body.has-custom-cursor .custom-cursor {
  display: block;
}

/* Particles Background */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff4757, #ff3742);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ff4757;
  border: 2px solid #ff4757;
}

.btn-secondary:hover {
  background: #ff4757;
  color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 15px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #ff4757;
}

.nav-logo i {
  font-size: 28px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover {
  color: #ff4757;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-menu a:hover {
  background: rgba(255, 71, 87, 0.1);
  color: #ff4757;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 71, 87, 0.1) 0%,
    transparent 70%
  );
  overflow: hidden;
}

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

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.text-gradient {
  background: linear-gradient(135deg, #ff4757, #ff6b7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  color: #b8b8b8;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-cta {
  margin-top: 40px;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: -20%;
  width: 80%;
  height: 100%;
  z-index: 1;
}

.earth-animation {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(100, 149, 237, 0.3) 0%,
    rgba(65, 105, 225, 0.2) 30%,
    rgba(25, 25, 112, 0.1) 70%,
    transparent 100%
  );
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation: float 6s ease-in-out infinite;
}

.earth-animation::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(34, 197, 94, 0.3) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(59, 130, 246, 0.3) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 40% 70%,
      rgba(139, 69, 19, 0.2) 0%,
      transparent 30%
    );
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(-50%) translateX(0px);
  }
  50% {
    transform: translateY(-60%) translateX(-10px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Services Section */
.services {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.section-tag {
  color: #ff4757;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-description {
  font-size: 16px;
  color: #b8b8b8;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-section {
  margin-top: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.8),
    rgba(30, 30, 30, 0.4)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff4757, transparent);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: translateX(100%);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 71, 87, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff4757, #ff6b7a);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: white;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.service-description {
  font-size: 14px;
  color: #b8b8b8;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-link {
  color: #ff4757;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 12px;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(4px);
}

/* Tech Stack */
.tech-stack {
  padding: 80px 0;
  background: rgba(15, 15, 15, 0.5);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(30, 30, 30, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 71, 87, 0.3);
}

.tech-item i {
  font-size: 32px;
  color: #ff4757;
}

.tech-item span {
  font-size: 14px;
  color: #b8b8b8;
  font-weight: 500;
}

/* Contact CTA */
.contact-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.whatsapp-btn,
.call-btn {
  background: #25d366;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.call-btn {
  background: #ff4757;
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.whatsapp-btn a,
.call-btn a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.whatsapp-btn:hover,
.call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.call-btn:hover {
  box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}

.whatsapp-btn i,
.call-btn i {
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 0 50px;
    text-align: center;
  }

  .hero-bg {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .contact-cta {
    bottom: 10px;
    right: 10px;
    flex-direction: row;
  }

  .whatsapp-btn span,
  .call-btn span {
    display: none;
  }

  .whatsapp-btn a,
  .call-btn a {
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: 50px;
  }

  .services {
    padding: 60px 0;
  }

  .service-card {
    padding: 30px 20px;
  }

  .tech-stack {
    padding: 60px 0;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* AOS Animation Overrides */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Contact & Quote Pages */
.contact-page,
.quote-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

/* Map Section Styling */
.map-section {
  padding: 80px 0;
  background: rgba(15, 15, 15, 0.3);
}

.map-container-small {
  max-width: 600px;
  width: 100%;
  height: 400px;
  margin: 40px auto 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  background: rgba(20, 20, 20, 0.8);
}

.map-container-small iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.3) contrast(1.1) opacity(0.9);
  transition: filter 0.3s ease;
}

.map-container-small:hover iframe {
  filter: grayscale(0) contrast(1) opacity(1);
}

/* Responsive Map */
@media (max-width: 768px) {
  .map-container-small {
    max-width: 90%;
    height: 300px;
    margin: 30px auto 0;
  }
}

@media (max-width: 480px) {
  .map-container-small {
    height: 250px;
    margin: 20px auto 0;
  }
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}

.breadcrumb {
  text-align: center;
  margin-bottom: 60px;
}

.breadcrumb-tag {
  color: #ff4757;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

.contact-header,
.quote-header {
  text-align: center;
  margin-bottom: 80px;
}

/* Contact Icons */
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.contact-icon-item {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.contact-icon-item:hover {
  opacity: 1;
}

.contact-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(30, 30, 30, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #ff4757;
  transition: all 0.3s ease;
}

.contact-icon:hover {
  border-color: rgba(255, 71, 87, 0.5);
  transform: scale(1.1);
}

/* Contact Content */
.contact-info {
  text-align: center;
  margin-bottom: 60px;
}

.contact-description {
  font-size: 16px;
  color: #b8b8b8;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-project-info {
  font-size: 14px;
  color: #999;
}

.contact-link {
  color: #ff4757;
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

/* Forms */
.contact-form,
.quote-form {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.8),
    rgba(30, 30, 30, 0.4)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(10, 10, 10, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff4757;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Contact Details */
.contact-details {
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff4757, #ff6b7a);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail-content h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-detail-content p,
.contact-detail-content a {
  color: #b8b8b8;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.4;
}

.contact-detail-content a:hover {
  color: #ff4757;
}

/* Social Links */
.social-links h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8b8b8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #ff4757;
  color: white;
  transform: translateY(-2px);
}

/* Map Section */
.map-section {
  margin-top: 80px;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Quote Page Specific */
.quote-page {
  position: relative;
  background: radial-gradient(
    ellipse at center,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 70%
  );
}

.quote-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.wave-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      45deg,
      transparent 40%,
      rgba(59, 130, 246, 0.1) 50%,
      transparent 60%
    ),
    linear-gradient(
      -45deg,
      transparent 40%,
      rgba(139, 69, 19, 0.05) 50%,
      transparent 60%
    );
  animation: wave 10s ease-in-out infinite;
}

@keyframes wave {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(-10px) translateY(-5px);
  }
  50% {
    transform: translateX(5px) translateY(-10px);
  }
  75% {
    transform: translateX(-5px) translateY(5px);
  }
}

.quote-description {
  font-size: 16px;
  color: #b8b8b8;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.quote-form-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Services Selection */
.services-selection {
  margin: 40px 0;
}

.services-label {
  display: block;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.service-option {
  background: rgba(20, 20, 20, 0.6);
  border: 2px solid rgba(239, 68, 68, 0.5);
  border-radius: 8px;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-option.selected {
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.1);
}

.service-option input[type="checkbox"] {
  display: none;
}

.service-option label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #ffffff;
  font-weight: 500;
  margin: 0;
  width: 100%;
}

.service-option i {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  flex-shrink: 0;
}

.service-option.selected i {
  background: #22c55e;
}

.service-option:not(.selected) i {
  background: #ef4444;
}

.service-option:hover {
  transform: translateY(-2px);
}

/* Customer Reviews */
.customer-reviews {
  padding: 100px 0;
  background: rgba(15, 15, 15, 0.3);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.review-card {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.8),
    rgba(30, 30, 30, 0.4)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 71, 87, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.review-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.review-stars i {
  color: #ffc107;
  font-size: 16px;
}

.review-text {
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 71, 87, 0.3);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.author-info span {
  color: #b8b8b8;
  font-size: 12px;
}

/* Active Navigation Link */
.nav-link.active {
  color: #ff4757;
}

/* Form Submit */
.form-submit {
  text-align: center;
  margin-top: 30px;
}

/* Responsive Updates */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-icons {
    gap: 30px;
  }

  .contact-icon {
    width: 80px;
    height: 80px;
    font-size: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .quote-form-container {
    padding: 0 20px;
  }

  .contact-form,
  .quote-form {
    padding: 30px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .contact-page,
  .quote-page {
    padding: 100px 0 60px;
  }

  .contact-icons {
    gap: 20px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .review-card {
    padding: 20px;
  }
}

/* Service Pages Styles */
.service-hero {
  padding: 150px 0 100px;
  text-align: center;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 71, 87, 0.1) 0%,
    transparent 70%
  );
}

.service-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #ffffff;
}

.service-hero-title i {
  color: #ff4757;
}

.service-hero-description {
  font-size: 18px;
  color: #b8b8b8;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.service-hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.8),
    rgba(30, 30, 30, 0.4)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 71, 87, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff4757, #ff6b7a);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: white;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.feature-card p {
  color: #b8b8b8;
  line-height: 1.6;
}

/* Tech Section */
.tech-section {
  padding: 80px 0;
  background: rgba(15, 15, 15, 0.3);
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.tech-category {
  background: rgba(20, 20, 20, 0.5);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-category h3 {
  color: #ff4757;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tech-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

/* Portfolio Section */
.portfolio-section {
  padding: 100px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 71, 87, 0.9),
    rgba(255, 107, 122, 0.8)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  text-align: center;
  padding: 20px;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  margin-top: 15px;
  transition: background 0.3s ease;
}

.portfolio-link:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* App Types & Solutions */
.app-types,
.software-solutions {
  padding: 100px 0;
  background: rgba(15, 15, 15, 0.3);
}

.app-categories,
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.app-category,
.solution-card {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.8),
    rgba(30, 30, 30, 0.4)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.app-category:hover,
.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 71, 87, 0.3);
}

.app-icon,
.solution-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff4757, #ff6b7a);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: white;
}

.solution-card ul {
  list-style: none;
  margin-top: 15px;
  text-align: left;
}

.solution-card ul li {
  color: #b8b8b8;
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}

.solution-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff4757;
  font-weight: bold;
}

/* Process & Methodologies */
.process-section,
.methodologies {
  padding: 100px 0;
}

.process-steps,
.methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.process-step,
.methodology-step {
  text-align: center;
  padding: 30px 20px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff4757, #ff6b7a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 18px;
  font-weight: bold;
  color: white;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff4757, #ff6b7a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: white;
}

.step-content h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.step-content p {
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.6;
}

/* E-commerce Packages */
.ecommerce-packages {
  padding: 100px 0;
  background: rgba(15, 15, 15, 0.3);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.package-card {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.8),
    rgba(30, 30, 30, 0.4)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.package-card.featured {
  border-color: #ff4757;
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff4757;
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.package-header h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.package-price {
  margin-bottom: 30px;
}

.package-price .currency {
  font-size: 18px;
  color: #ff4757;
}

.package-price .amount {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
}

.package-price .period {
  font-size: 14px;
  color: #b8b8b8;
}

.package-features ul {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.package-features li {
  padding: 8px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-features li i.fa-check {
  color: #22c55e;
}

.package-features li i.fa-times {
  color: #ef4444;
}

.package-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #ff4757, #ff6b7a);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.package-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}

/* Success Stories */
.success-stories {
  padding: 100px 0;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.story-card {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.8),
    rgba(30, 30, 30, 0.4)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 71, 87, 0.3);
}

.story-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #ff4757;
}

.stat-label {
  font-size: 12px;
  color: #b8b8b8;
}

.story-content h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.story-content p {
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

.story-author {
  color: #ff4757;
  font-size: 12px;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 71, 87, 0.1) 0%,
    transparent 70%
  );
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 16px;
  color: #b8b8b8;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

/* About Page Styles */
.about-hero,
.team-hero,
.references-hero,
.blog-hero {
  padding: 150px 0 100px;
  text-align: center;
}

.about-intro,
.team-intro,
.references-intro,
.blog-intro {
  font-size: 18px;
  color: #b8b8b8;
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.6;
}

.company-story {
  padding: 100px 0;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}

.achievements {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.achievement {
  text-align: center;
  padding: 20px;
  background: rgba(20, 20, 20, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ff4757;
  margin-bottom: 5px;
}

.achievement-label {
  font-size: 14px;
  color: #b8b8b8;
}

/* Mission Vision Values */
.mission-vision {
  padding: 100px 0;
  background: rgba(15, 15, 15, 0.3);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.mvv-card {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.8),
    rgba(30, 30, 30, 0.4)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 71, 87, 0.3);
}

.mvv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff4757, #ff6b7a);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: white;
}

.mvv-card h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.mvv-card p {
  color: #b8b8b8;
  line-height: 1.6;
}

.mvv-card ul {
  list-style: none;
  text-align: left;
}

.mvv-card ul li {
  color: #b8b8b8;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.mvv-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff4757;
  font-weight: bold;
}

/* Why Choose Us */
.why-choose-us {
  padding: 100px 0;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.reason-card {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.8),
    rgba(30, 30, 30, 0.4)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 71, 87, 0.3);
}

.reason-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff4757, #ff6b7a);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: white;
}

.reason-card h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.reason-card p {
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.6;
}

/* Certificates */
.certificates {
  padding: 100px 0;
  background: rgba(15, 15, 15, 0.3);
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.certificate-item {
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.certificate-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 71, 87, 0.3);
}

.certificate-icon {
  font-size: 40px;
  color: #ff4757;
  margin-bottom: 15px;
}

.certificate-item h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.certificate-item p {
  color: #b8b8b8;
  font-size: 12px;
}

/* Team Page Styles */
.team-members {
  padding: 100px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.team-member {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.8),
    rgba(30, 30, 30, 0.4)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 71, 87, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.member-photo {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ff4757;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-avatar {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 71, 87, 0.2),
    rgba(255, 107, 122, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 71, 87, 0.3);
  transition: all 0.3s ease;
}

.member-photo:hover .member-avatar {
  background: linear-gradient(
    135deg,
    rgba(255, 71, 87, 0.3),
    rgba(255, 107, 122, 0.2)
  );
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 71, 87, 0.5);
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 71, 87, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.member-photo:hover .member-overlay {
  opacity: 1;
}

.member-social {
  display: flex;
  gap: 10px;
}

.member-social a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.member-social a:hover {
  background: rgba(255, 255, 255, 0.3);
}

.member-info h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.member-role {
  color: #ff4757;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}

.member-description {
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.member-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.member-skills span {
  background: rgba(255, 71, 87, 0.1);
  color: #ff4757;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  border: 1px solid rgba(255, 71, 87, 0.3);
}

/* Join Us */
.join-us {
  padding: 100px 0;
  background: rgba(15, 15, 15, 0.3);
}

.join-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.join-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* References Page Styles */
.client-logos {
  padding: 100px 0;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.logo-item {
  padding: 40px 20px;
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 71, 87, 0.3);
}

.logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.logo-placeholder i {
  font-size: 40px;
  color: #ff4757;
}

.logo-placeholder span {
  color: #ffffff;
  font-weight: 600;
}

/* Project Categories */
.project-categories {
  padding: 100px 0;
  background: rgba(15, 15, 15, 0.3);
}

.categories-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.category-stat {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.8),
    rgba(30, 30, 30, 0.4)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.category-stat:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 71, 87, 0.3);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff4757, #ff6b7a);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: white;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #ff4757;
}

.stat-label {
  font-size: 14px;
  color: #b8b8b8;
}

/* Featured Projects */
.featured-projects {
  padding: 100px 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.project-card {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.8),
    rgba(30, 30, 30, 0.4)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 71, 87, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 71, 87, 0.9),
    rgba(255, 107, 122, 0.8)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  text-align: center;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-info h3 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.project-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 15px;
}

.project-tech {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.project-tech span {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
}

.project-details {
  padding: 25px;
}

.project-details h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.project-details p {
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.project-results {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.project-results span {
  color: #ff4757;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Global Reach */
.global-reach {
  padding: 100px 0;
  background: rgba(15, 15, 15, 0.3);
}

.global-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.global-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.global-stat {
  text-align: center;
}

.global-stat .stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #ff4757;
  display: block;
}

.global-stat .stat-label {
  font-size: 14px;
  color: #b8b8b8;
}

.map-container {
  position: relative;
  text-align: center;
}

.map-container i {
  font-size: 300px;
  color: rgba(255, 71, 87, 0.2);
}

.map-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #ff4757;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
  }
}

/* Blog Page Styles */
.blog-articles {
  padding: 100px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.blog-featured {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.8),
    rgba(30, 30, 30, 0.4)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-featured:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 71, 87, 0.3);
}

.blog-regular {
  display: grid;
  gap: 25px;
}

.blog-card {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.8),
    rgba(30, 30, 30, 0.4)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 71, 87, 0.3);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-featured .blog-image {
  height: 300px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff4757;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 12px;
  color: #b8b8b8;
}

.blog-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-featured .blog-title {
  font-size: 24px;
}

.blog-excerpt {
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-read-more {
  color: #ff4757;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.blog-read-more:hover {
  gap: 12px;
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.pagination-btn {
  padding: 12px 20px;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-btn:hover:not(.disabled) {
  background: #ff4757;
  border-color: #ff4757;
}

.pagination-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pagination-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination-number:hover,
.pagination-number.active {
  background: #ff4757;
  border-color: #ff4757;
}

.pagination-dots {
  color: #b8b8b8;
}

/* Newsletter */
.newsletter {
  padding: 80px 0;
  background: rgba(15, 15, 15, 0.3);
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter-text h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.newsletter-text p {
  color: #b8b8b8;
  font-size: 16px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  min-width: 350px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(10, 10, 10, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #ff4757;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .story-content,
  .global-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .achievements,
  .global-stats {
    grid-template-columns: 1fr;
  }

  .team-grid,
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons,
  .join-cta {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    min-width: auto;
    width: 100%;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .features-grid,
  .tech-categories,
  .app-categories,
  .solutions-grid,
  .mvv-grid,
  .certificates-grid {
    grid-template-columns: 1fr;
  }

  .process-steps,
  .methodology-steps {
    grid-template-columns: 1fr;
  }

  .categories-stats,
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #ff4757;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff3742;
}
