html {
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #111111;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --accent-blue: #3b82f6;
    --border-subtle: #222222;
    --border-radius: 8px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
}

body {
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

span {
  text-align: center;
  color: #37a7f7;
  text-shadow: 0px 0px 15px #0094FD;
  font-weight: 800;
}

.project-visual {
   grid-column-start: 1;
  grid-column-end:3;
}

.container-box-1 {
  text-align: center;
}

.section-1 {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  align-items: center;
}

.section-header {
  text-align: center;
}

.section-3{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 125px;
}

img {
  height: 170px; 
  margin-bottom: 20px; 
}

.sc3-container-1 {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sc3-container-2 {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 30px;
}

p {
  color: rgba(255, 255, 255, 0.721);
  font-size: 24px;
}

h4 {
  color: #ffffffb8;
  text-align: center;
}
h1 {
  font-size: 40px;
}

.h-span {
  font-size: 40px;
}

@media screen and (max-width: 900px) {
  .sc3-container-1, .sc3-container-2{
    flex-direction: column;
  }
  .section-2 {
    align-items: stretch;
  }

  #video {
    width: 450px;
  }

  .sc4-container-1 {
    width: 450px;
  }

  .form {
    width: 400px;
  }
  .sc2-container-box-1 span{
    font-size: 38px;
  }
}

@media screen and (max-width: 400px) {
  .sc2-container-box-1 {
    width: 350px;
  }
  .sc2-container-box-1 span{
    font-size: 38px;
  }
  span {
    font-size: 56px;
  }

  p {
    font-size: 27px;
  }

  .form {
    width: 350px;
    font-size: 24px;
  }
}


/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    position: relative;
    height: 100%;
    padding: 32px;
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(59, 130, 246, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    border-color: rgba(46, 51, 60, 0.3);
    transform: translateY(-8px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card[data-color="blue"]:hover::before {
    background: linear-gradient(135deg, transparent, rgba(59, 130, 246, 0.1));
}

.service-card[data-color="purple"]:hover::before {
    background: linear-gradient(135deg, transparent, rgba(139, 92, 246, 0.1));
}

.service-card[data-color="pink"]:hover::before {
    background: linear-gradient(135deg, transparent, rgba(236, 72, 153, 0.1));
}

.service-card[data-color="green"]:hover::before {
    background: linear-gradient(135deg, transparent, rgba(16, 185, 129, 0.1));
}

.service-card[data-color="yellow"]:hover::before {
    background: linear-gradient(135deg, transparent, rgba(251, 191, 36, 0.1));
}

.service-card[data-color="indigo"]:hover::before {
    background: linear-gradient(135deg, transparent, rgba(99, 102, 241, 0.1));
}

.service-icon {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card[data-color="blue"] .service-icon {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.service-card[data-color="purple"] .service-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.service-card[data-color="pink"] .service-icon {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.service-card[data-color="green"] .service-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-card[data-color="yellow"] .service-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.service-card[data-color="indigo"] .service-icon {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

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

.service-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card[data-color="blue"] .service-icon::after {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.service-card[data-color="purple"] .service-icon::after {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.service-card[data-color="pink"] .service-icon::after {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.service-card[data-color="green"] .service-icon::after {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-card[data-color="yellow"] .service-icon::after {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.service-card[data-color="indigo"] .service-icon::after {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.service-card:hover .service-icon::after {
    opacity: 0.5;
}

.service-content {
    position: relative;
    space-y: 24px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: #93c5fd;
}

.service-content p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    space-y: 8px;
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 12px;
    animation: pulse 2s ease-in-out infinite;
}

.service-card[data-color="blue"] .service-features li::before {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.service-card[data-color="purple"] .service-features li::before {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.service-card[data-color="pink"] .service-features li::before {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.service-card[data-color="green"] .service-features li::before {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-card[data-color="yellow"] .service-features li::before {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.service-card[data-color="indigo"] .service-features li::before {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.service-price {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-particle {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ping 2s ease-in-out infinite;
}

@keyframes ping {
    0% { transform: scale(1); opacity: 1; }
    75%, 100% { transform: scale(2); opacity: 0; }
}