/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: #fff;
  background: #0a0a0a;
  line-height: 1.6;
}

/* ================= HERO SECTION ================= */
.services-hero {
  height: 70vh;
  background:  url('../img/services/flutter.webp') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 0 10% 60px 10%;
}

.services-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, rgba(6, 78, 59, 0.4), rgba(2, 132, 199, 0.3)); */
  backdrop-filter: blur(2px);
}

.services-hero-content {
  position: relative;
  max-width: 800px;
  z-index: 1;
  color: white;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 1.2;
}

.services-hero-content h1 span {
  font-weight: 700;
  background: linear-gradient(135deg, #682818, #dce2e2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-hero-content p {
  font-size: 1.25rem;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

/* Request For Call Button */
.services-request-call {
  position: fixed;
  top: 40%;
  right: -52px;
  transform: rotate(-90deg);
  background: linear-gradient(135deg, #10b981, #059669);
  padding: 8px 12px;
  border-radius: 8px 8px 0 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  transition: right 0.3s ease;
}

.services-request-call:hover {
  right: -48px;
}

.services-request-call a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ================= WHY CHOOSE FLUTTER SECTION ================= */
.services-design {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 100px 15%;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.services-design::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1) translateX(0); }
  50% { transform: scale(1.1) translateX(10%); }
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-design h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
  position: relative;
  display: inline-block;
}

.services-design h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #06b6d4);
  border-radius: 2px;
}

.services-design p {
  font-size: 1.1rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  max-width: 900px;
  margin: 40px auto 0;
}

/* ================= SERVICES SECTION ================= */
.unic-services-section {
  padding: 100px 15%;
  width: 100%;
  margin: auto;
  position: relative;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.overlay-service {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.3), rgba(2, 132, 199, 0.2));
  pointer-events: none;
}

.unic-services-heading {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.unic-services-heading h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: white;
  font-weight: 700;
}

.unic-services-heading p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.unic-services-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

/* Left Menu */
.unic-services-menu {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.unic-services-menu button {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.unic-services-menu button.active {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
  transform: translateX(8px);
}

.unic-services-menu button:hover {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-color: #10b981;
  transform: translateX(4px);
}

/* Right Content */
.unic-services-details {
  flex: 2 1 550px;
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.unic-services-details p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 1.05rem;
}

.unic-services-details ul {
  list-style: none;
  display: grid;
  gap: 15px;
}

.unic-services-details ul li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.unic-services-details ul li:hover {
  color: #10b981;
  transform: translateX(5px);
}

.unic-services-details ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 12px;
}

/* ================= VALUE SECTION ================= */
.services-value-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0c4a6e 0%, #075985 50%, #0e7490 100%);
  background-size: 200% 200%;
  animation: services-gradient-animation 15s ease infinite;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-value-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes services-gradient-animation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.services-value-content {
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.services-value-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.services-value-subtitle {
  font-size: 1.3rem;
  margin-bottom: 60px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.services-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.services-value-grid > div {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.services-value-grid > div::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
  transition: left 0.5s ease;
}

.services-value-grid > div:hover::before {
  left: 100%;
}

.services-value-grid > div:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
  background: rgba(255, 255, 255, 1);
}

.services-value-grid img {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  filter: none;
  transition: transform 0.3s ease;
}

.services-value-grid > div:hover img {
  transform: scale(1.1) rotate(5deg);
}

.services-value-grid h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1e293b;
}

.services-value-grid p {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
}

/* ================= RESPONSIVE DESIGN ================= */

/* Tablets */
@media (max-width: 992px) {
  .services-hero {
    height: 60vh;
    padding: 0 8% 50px 8%;
  }

  .services-hero-content h1 {
    font-size: 2.8rem;
  }

  .services-hero-content p {
    font-size: 1.1rem;
  }

  .services-design {
    padding: 80px 10%;
  }

  .services-design h2 {
    font-size: 2.3rem;
  }

  .unic-services-section {
    padding: 80px 10%;
  }

  .services-value-section {
    padding: 80px 15px;
  }

  .services-value-title {
    font-size: 2.5rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .services-hero {
    height: 50vh;
    padding: 0 5% 30px 5%;
  }

  .services-hero-content h1 {
    font-size: 2rem;
  }

  .services-hero-content h1 span {
    display: block;
    margin-top: 10px;
  }

  .services-hero-content p {
    font-size: 1rem;
  }

  .services-design {
    padding: 60px 8%;
  }

  .services-design h2 {
    font-size: 1.8rem;
  }

  .services-design p {
    font-size: 0.95rem;
  }

  .unic-services-section {
    padding: 60px 8%;
  }

  .unic-services-heading h1 {
    font-size: 2rem;
  }

  .unic-services-heading p {
    font-size: 1rem;
  }

  .unic-services-content {
    flex-direction: column;
    gap: 30px;
  }

  .unic-services-menu button {
    font-size: 0.95rem;
    padding: 14px 20px;
  }

  .unic-services-details {
    padding: 30px 20px;
  }

  .services-value-title {
    font-size: 2rem;
  }

  .services-value-subtitle {
    font-size: 1rem;
  }

  .services-value-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-request-call {
    padding: 6px 10px;
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .services-hero-content h1 {
    font-size: 1.7rem;
  }

  .services-design h2 {
    font-size: 1.5rem;
  }

  .unic-services-heading h1 {
    font-size: 1.7rem;
  }

  .services-value-title {
    font-size: 1.7rem;
  }
}