* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #2563EB;
  --light-blue: #4A9EFF;
  --dark-blue: #1E40AF;
  --black: #000000;
  --dark-gray: #0F172A;
  --gray: #1E293B;
  --light-gray: #334155;
  --text-light: #E2E8F0;
  --text-gray: #94A3B8;
  --white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--black);
  color: var(--text-light);
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

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

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--light-blue);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  width: 100%;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 3rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@media (max-width: 1200px) {
  .nav-container {
    padding: 0 3rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links button {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  font-family: inherit;
}

.nav-links button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--light-blue), var(--primary-blue));
  transition: width 0.3s ease;
}

.nav-links button:hover {
  color: var(--light-blue);
}

.nav-links button:hover::after {
  width: 80%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--light-blue);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1.5rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links button {
    width: 100%;
    text-align: left;
    padding: 1rem 0;
    font-size: 1.125rem;
    border-bottom: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 0;
  }
  
  .nav-links button::after {
    display: none;
  }
  
  .nav-links button:hover {
    color: var(--light-blue);
    padding-left: 1rem;
    background: rgba(74, 158, 255, 0.05);
  }
  
  .logo-text {
    font-size: 1.25rem;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.circuit-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(74, 158, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 158, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: circuitMove 20s linear infinite;
  opacity: 0.3;
}

@keyframes circuitMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (max-width: 1200px) {
  .hero-content {
    padding: 0 3rem;
  }
}

@media (max-width: 968px) {
  .hero-content {
    padding: 0 2rem;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

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

.hero-title {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-light);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--light-blue);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-gray);
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.cta-button {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
  color: var(--white);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(74, 158, 255, 0.3);
  width: fit-content;
  font-family: inherit;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.cta-button:hover {
  box-shadow: 0 6px 30px rgba(74, 158, 255, 0.5);
  transform: translateY(-2px);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInScale 1s ease 0.3s both;
}

.floating-cards-container {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.floating-card {
  background: rgba(30, 41, 59, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  min-width: 200px;
  max-width: 220px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  animation: fadeInUp 0.8s ease forwards;
}

.floating-card:nth-child(1) {
  animation-delay: 0.2s;
  opacity: 0;
}

.floating-card:nth-child(2) {
  animation-delay: 0.4s;
  opacity: 0;
}

.floating-card:nth-child(3) {
  animation-delay: 0.6s;
  opacity: 0;
}

.floating-card:hover {
  transform: translateY(-10px);
  border-color: rgba(74, 158, 255, 0.6);
  box-shadow: 0 12px 40px rgba(74, 158, 255, 0.3);
}

.floating-card .card-icon {
  width: 56px;
  height: 56px;
  color: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 158, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  transition: all 0.3s ease;
}

.floating-card:hover .card-icon {
  background: rgba(74, 158, 255, 0.2);
  transform: scale(1.1);
}

.floating-card .card-icon svg {
  width: 100%;
  height: 100%;
}

.floating-card span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  line-height: 1.4;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--light-blue);
  cursor: pointer;
  animation: bounce 2s infinite;
  z-index: 2;
}

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

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .hero-visual {
    margin-top: 3rem;
  }
  
  .floating-cards-container {
    gap: 1.5rem;
  }
  
  .floating-card {
    min-width: 160px;
    max-width: 180px;
    padding: 2rem 1.5rem;
  }
  
  .floating-card .card-icon {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 158, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.4s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--light-blue), var(--primary-blue));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: rgba(74, 158, 255, 0.5);
  box-shadow: 0 8px 32px rgba(74, 158, 255, 0.2);
  transform: translateY(-10px);
}

.service-icon {
  width: 64px;
  height: 64px;
  color: var(--light-blue);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.service-description {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features li {
  color: var(--text-light);
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--light-blue);
  font-weight: bold;
}

.services-footer {
  text-align: center;
  margin-top: 4rem;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.6s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.services-tagline {
  font-size: 1.25rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.services-tagline strong {
  color: var(--light-blue);
  font-weight: 600;
}

@media (max-width: 768px) {
  .services {
    padding: 4rem 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .services-tagline {
    font-size: 1.125rem;
  }
}

/* Projects Section */
.projects {
  padding: 6rem 0;
  background: var(--dark-gray);
  position: relative;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

.project-card {
  background: rgba(30, 41, 59, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.9);
  animation: fadeInScale 0.5s ease forwards;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card:nth-child(1) {
  animation-delay: 0s;
}

.project-card:nth-child(2) {
  animation-delay: 0.15s;
}

.project-card:nth-child(3) {
  animation-delay: 0.3s;
}

.project-card:hover {
  border-color: rgba(74, 158, 255, 0.6);
  box-shadow: 0 12px 40px rgba(74, 158, 255, 0.25);
  transform: translateY(-8px);
}

.project-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.15), rgba(37, 99, 235, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(74, 158, 255, 0.2);
}

.project-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(74, 158, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-image::before {
  opacity: 1;
}

.project-icon {
  width: 80px;
  height: 80px;
  color: var(--light-blue);
  z-index: 1;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-icon svg {
  width: 100%;
  height: 100%;
}

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

.project-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-type {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--light-blue);
  background: rgba(74, 158, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.project-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.project-description {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-tag {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(74, 158, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: rgba(74, 158, 255, 0.1);
  border-color: rgba(74, 158, 255, 0.5);
}

@media (max-width: 768px) {
  .projects {
    padding: 4rem 0;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .project-content {
    padding: 2rem;
  }
  
  .project-image {
    height: 180px;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

.testimonial-card {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 158, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0s;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.4s;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: rgba(74, 158, 255, 0.2);
  font-family: serif;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: rgba(74, 158, 255, 0.5);
  box-shadow: 0 8px 32px rgba(74, 158, 255, 0.2);
  transform: translateY(-5px);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-rating .star {
  color: var(--light-blue);
  font-size: 1.25rem;
}

.testimonial-content {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-light);
}

.author-role {
  font-size: 0.875rem;
  color: var(--text-gray);
}

@media (max-width: 768px) {
  .testimonials {
    padding: 4rem 0;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .testimonial-content {
    font-size: 1rem;
  }
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: var(--black);
  position: relative;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 968px) {
  .contact-content {
    grid-template-columns: 1fr;
    max-width: 600px;
    gap: 3rem;
  }
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.contact-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-details {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.125rem;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(74, 158, 255, 0.2);
}

.contact-item:hover {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(74, 158, 255, 0.4);
  transform: translateX(5px);
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.social-links h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(74, 158, 255, 0.2);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(74, 158, 255, 0.4);
  transform: scale(1.1);
}

.social-icon {
  width: 24px;
  height: 24px;
  color: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-icon svg {
  width: 100%;
  height: 100%;
}

.social-name {
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(74, 158, 255, 0.2);
  border-radius: 12px;
  color: var(--text-light);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--light-blue);
  box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.1);
}

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

.submit-button {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
  color: var(--white);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(74, 158, 255, 0.3);
  margin-top: 0.5rem;
  font-family: inherit;
}

.submit-button:hover {
  box-shadow: 0 6px 30px rgba(74, 158, 255, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-content {
    padding: 0 1rem;
  }
  
  .social-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 4rem 0;
  }
  
  .contact-info h3 {
    font-size: 1.75rem;
  }
  
  .contact-description {
    font-size: 1rem;
  }
}

