/* Base Styles */
:root {
  --primary-color: #0070f3;
  --secondary-color: #6c63ff;
  --accent-color: #ff4081;
  --background-color: #ffffff;
  --text-color: #333333;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #757575;
  --gradient-primary: linear-gradient(135deg, #0070f3, #6c63ff);
  --gradient-secondary: linear-gradient(135deg, #6c63ff, #ff4081);
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--dark-gray);
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 0 0.5rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #0051a8;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: rgba(0, 112, 243, 0.1);
  transform: translateY(-2px);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
  padding: 1rem 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Logo Styling */
.logo-container {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 1px;
}

/* Navigation Styling */
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  color: #333;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  position: absolute;
  transition: all 0.3s ease;
}

.hamburger {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* Hero Section */
.hero {
  position: relative;
  color: white;
  padding: 0;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background-color: #0a1930;
}

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

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a1930 0%, #1a365d 100%);
  opacity: 0.9;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
}

.hero-container {
  position: relative;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 10;
  display: flex;
  align-items: center;
}

.hero-content-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.hero-text-column {
  flex: 1;
  text-align: left;
  padding-right: 2rem;
}

.hero-visual-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(0, 112, 243, 0.1);
  color: #64ffda;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(100, 255, 218, 0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-title .highlight {
  color: #64ffda;
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(100, 255, 218, 0.2);
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  line-height: 1.6;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-outline {
  background: transparent;
  color: #64ffda;
  border: 1px solid #64ffda;
}

.btn-outline:hover {
  background: rgba(100, 255, 218, 0.1);
}

/* Hero Visual Elements */
.hero-visual {
  position: relative;
  width: 100%;
  height: 400px;
}

.tech-sphere {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
}

.sphere-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #64ffda 0%, rgba(100, 255, 218, 0.5) 100%);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(100, 255, 218, 0.5);
  animation: pulse 3s infinite alternate;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.5);
  }
  100% {
    box-shadow: 0 0 50px rgba(100, 255, 218, 0.8);
  }
}

.sphere-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(100, 255, 218, 0.3);
  border-radius: 50%;
}

.orbit-1 {
  width: 150px;
  height: 150px;
  animation: rotate 15s linear infinite;
}

.orbit-2 {
  width: 220px;
  height: 220px;
  animation: rotate 20s linear infinite reverse;
}

.orbit-3 {
  width: 290px;
  height: 290px;
  animation: rotate 25s linear infinite;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #64ffda;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(100, 255, 218, 0.8);
}

.tech-cards {
  position: absolute;
  width: 100%;
  height: 100%;
}

.tech-card {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(26, 54, 93, 0.8);
  border: 1px solid rgba(100, 255, 218, 0.3);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: #64ffda;
}

.card-1 {
  top: 20%;
  left: 10%;
}

.card-2 {
  top: 60%;
  left: 15%;
}

.card-3 {
  top: 40%;
  right: 10%;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #64ffda;
}

.card-label {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

/* Icons */
.icon-code:before {
  content: '</>';
}

.icon-cloud:before {
  content: '☁';
}

.icon-brain:before {
  content: '🧠';
}

.icon-stack:before {
  content: '⚙️';
}

.icon-kubernetes:before {
  content: '🚀';
}

.icon-ai:before {
  content: '🤖';
}

.hero-slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  z-index: 10;
}

.slider-control {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.slider-control:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 0.8rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  backdrop-filter: blur(5px);
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.dot.active {
  background: white;
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Services Section */
.services {
  position: relative;
  overflow: hidden;
  background-color: var(--light-gray);
}

.services-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.05;
}

.services-grid-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--dark-gray) 1px, transparent 1px);
  background-size: 20px 20px;
}

.services-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
  justify-content: space-between;
}

.service-card-container {
  height: 100%;
  display: flex;
  flex: 1;
  min-width: 0;
}

.service-card {
  height: 100%;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card-inner {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon-wrapper {
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.service-icon i {
  font-size: 24px;
  color: white;
}

.tech-icon {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.service-description {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition);
  margin-top: auto;
}

.service-link:hover {
  color: var(--secondary-color);
}

.service-link .arrow {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.service-link:hover .arrow {
  transform: translateX(5px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-description {
  color: var(--dark-gray);
  line-height: 1.6;
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
  background-color: white;
  padding: 5rem 0;
}

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

.about-pattern-left {
  position: absolute;
  top: 10%;
  left: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(0, 112, 243, 0.05));
  border-radius: 50%;
  filter: blur(60px);
}

.about-pattern-right {
  position: absolute;
  bottom: 10%;
  right: 0;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(255, 64, 129, 0.05), rgba(108, 99, 255, 0.1));
  border-radius: 50%;
  filter: blur(60px);
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.about-image-column {
  position: relative;
}

.about-image-container {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}

.about-expertise-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.expertise-badge {
  display: flex;
  align-items: center;
  background: white;
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

.expertise-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 8px;
  margin-right: 1rem;
  color: white;
}

.expertise-label {
  font-weight: 600;
  color: var(--text-color);
}

.about-text-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text-wrapper {
  max-width: 500px;
}

.about-text-block {
  margin-bottom: 2rem;
}

.about-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.about-paragraph {
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  margin-top: 1rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--dark-gray);
}

.check-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  background: var(--primary-color);
  border-radius: 50%;
  position: relative;
}

.check-icon:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  height: 10px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
}

.about-cta {
  margin-top: 2rem;
  align-self: flex-start;
}

/* Contact Section */
.contact {
  position: relative;
  overflow: hidden;
  background-color: var(--light-gray);
  padding: 6rem 0;
}

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

.contact-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 25%, transparent 25%),
              linear-gradient(225deg, rgba(0, 112, 243, 0.05) 25%, transparent 25%),
              linear-gradient(315deg, rgba(108, 99, 255, 0.05) 25%, transparent 25%),
              linear-gradient(45deg, rgba(0, 112, 243, 0.05) 25%, transparent 25%);
  background-size: 60px 60px;
  background-position: 0 0, 30px 0, 30px -30px, 0px 30px;
}

.contact-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
}

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

.contact-info-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 8px;
  margin-right: 1rem;
}

.contact-info-icon i {
  font-size: 24px;
  color: white;
}

.contact-info-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
}

.contact-info-text {
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.contact-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--secondary-color);
}

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

.contact-form-wrapper {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.form-input,
.form-textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.1);
}

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

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 112, 243, 0.2);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 112, 243, 0.3);
}

.submit-button span {
  margin-right: 0.5rem;
}

.submit-button i {
  font-size: 16px;
  color: white;
  margin-left: 8px;
}

.form-success {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon i {
  font-size: 30px;
  color: white;
}

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
  .services-wrapper {
    flex-wrap: wrap;
  }
  
  .service-card-container {
    flex-basis: calc(50% - 0.75rem);
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about-content-wrapper,
  .contact-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-text-wrapper {
    max-width: 100%;
  }
  
  .about-image-column {
    order: -1;
  }
}

@media (max-width: 768px) {
  .services-wrapper {
    gap: 1rem;
  }
  
  .service-card-container {
    flex-basis: calc(50% - 0.5rem);
    margin-bottom: 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .services-wrapper {
    flex-direction: column;
  }
  
  .service-card-container {
    flex-basis: 100%;
    margin-bottom: 1.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}

/* Blog Posts */
.blog-posts {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.post-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.post-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .featured-image {
  transform: scale(1.05);
}

.post-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-meta {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.post-meta .date {
  margin-right: 1rem;
}

.post-meta .author {
  font-weight: 500;
}

.post-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.post-title a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-title a:hover {
  color: var(--primary-color);
}

.post-excerpt {
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more {
  margin-top: auto;
  align-self: flex-start;
}

/* Single Blog Post */
.blog-post-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.single-post {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.post-header {
  margin-bottom: 2rem;
}

.post-header .post-image {
  height: 400px;
  margin-bottom: 2rem;
}

.post-header-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  padding: 0 2rem;
}

.post-header-meta {
  color: var(--dark-gray);
  font-size: 1rem;
  padding: 0 2rem;
}

.post-body {
  padding: 0 2rem 2rem;
  line-height: 1.8;
}

.post-body p {
  margin-bottom: 1.5rem;
}

.post-body h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--primary-color);
}

.post-body h3 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  color: var(--primary-color);
}

.post-body ul, .post-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.post-body li {
  margin-bottom: 0.5rem;
}

.post-body img {
  max-width: 100%;
  border-radius: 5px;
  margin: 2rem 0;
}

.post-footer {
  margin-top: 3rem;
  padding: 2rem;
  border-top: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
}

.post-tags {
  display: flex;
  gap: 0.5rem;
}

.post-tag {
  background: var(--light-gray);
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  font-size: 0.9rem;
  color: var(--dark-gray);
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-tag:hover {
  background: var(--primary-color);
  color: white;
}

.post-share {
  display: flex;
  gap: 1rem;
}

.share-link {
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.share-link:hover {
  color: var(--primary-color);
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto 4rem;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--medium-gray);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}

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

.error-message {
  color: red;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.submit-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #0051a8;
}

.form-success {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-info {
  text-align: center;
}

.contact-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

address {
  font-style: normal;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background-color: #1a1a2e;
  color: #ffffff;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section {
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-description {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.address {
  font-style: normal;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.address p {
  margin-bottom: 0.5rem;
}

.address a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.address a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Blog Styles */
.blog-header {
  background: linear-gradient(135deg, #0070f3 0%, #6c63ff 100%);
  color: white;
  padding: 10rem 0 5rem;
  text-align: center;
}

.blog-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.blog-subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.blog-posts {
  padding: 5rem 0;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.post-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.post-image {
  height: 200px;
  overflow: hidden;
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.post-content {
  padding: 1.5rem;
}

.post-meta {
  margin-bottom: 0.75rem;
}

.post-date {
  font-size: 0.875rem;
  color: #666;
}

.post-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.post-title a {
  color: var(--text-color);
  transition: color 0.3s ease;
}

.post-title a:hover {
  color: var(--primary-color);
}

.post-excerpt {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  transition: transform 0.3s ease;
}

.read-more:hover {
  transform: translateX(5px);
}

/* Single Blog Post */
.blog-post-container {
  padding: 10rem 0 5rem;
}

.single-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.post-header {
  margin-bottom: 2.5rem;
}

.post-header-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.post-header-meta {
  color: #666;
  font-size: 0.875rem;
}

.post-content {
  margin-bottom: 3rem;
}

.post-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.post-content h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
  color: #1a1a2e;
}

.post-content h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: #1a1a2e;
}

.post-content ul, .post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin: 2rem 0;
}

.post-navigation {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--medium-gray);
}

.back-to-blog {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  transition: transform 0.3s ease;
}

.back-to-blog:hover {
  transform: translateX(-5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero {
    padding: 8rem 0 4rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .about-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-header-title {
    font-size: 2rem;
  }
  
  .mobile-menu-button {
    display: block;
    z-index: 1001;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 6rem 2rem 2rem;
    z-index: 1000;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 0;
    font-size: 1.2rem;
  }

  .logo-name {
    font-size: 1.2rem;
  }

  .logo-tagline {
    font-size: 0.8rem;
  }
}
