html {
  scroll-behavior: smooth;
}

.main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 70px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  box-shadow: 0 2px 16px 0 rgba(90,40,120,0.10);
  border-bottom: 1.5px solid #18121B;
  padding: 0 2.5vw;
  transition: transform 0.35s cubic-bezier(0.4,0.2,0.2,1);
}
.header-left {
  display: flex;
  align-items: center;
}
.header-logo {
  height: 44px;
  width: auto;
  margin-right: 1.2rem;
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex: 1 1 auto;
  height: 100%;
}
.nav-link {
  color: #FF5C39;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.13rem;
  letter-spacing: 0.7px;
  padding: 0.5rem 1.1rem;
  border-radius: 0.5rem;
  background: transparent;
  transition: color 0.18s, background 0.18s, box-shadow 0.18s;
  position: relative;
  box-shadow: 0 0 0 rgba(255,92,57,0);
}
.nav-link::after {
  content: '';
  display: block;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, #FF5C39 0%, #8A3A97 100%);
  transition: width 0.2s;
  margin: 0 auto;
  border-radius: 2px;
}
.nav-link:hover::after, .nav-link:focus::after {
  width: 100%;
}
.nav-link:hover, .nav-link:focus {
  color: #fff;
  background: linear-gradient(90deg, #FF5C39 0%, #8A3A97 100%);
  box-shadow: 0 2px 12px 0 rgba(255,92,57,0.10);
}
.header-right {
  display: flex;
  align-items: center;
}
.book-call-btn {
  background: linear-gradient(90deg, #FF5C39 0%, #8A3A97 100%);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-size: 1.08rem;
  text-decoration: none;
  margin-left: 1.5rem;
  box-shadow: 0 2px 8px 0 rgba(255,92,57,0.10);
  transition: background 0.18s, color 0.18s, transform 0.15s;
  cursor: pointer;
}
.book-call-btn:hover {
  background: linear-gradient(90deg, #8A3A97 0%, #FF5C39 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* Add top padding to body to prevent content under header */
body {
  padding-top: 70px;
  transition: padding-top 0.35s cubic-bezier(0.4,0.2,0.2,1);
}

body {
  margin: 0;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  background: #0A0A0A;
  color: #fff;
}

body, html {
  overflow-x: hidden;
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.background-img {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  object-fit: cover;
  filter: grayscale(1) brightness(0.5);
  z-index: 1;
}
.overlay {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: linear-gradient(120deg, rgba(91,44,115,0.7) 0%, rgba(255,92,57,0.3) 100%);
  z-index: 2;
}
.center-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.logo {
  width: 180px;
  max-width: 90vw;
  margin-bottom: 1.5rem;
}
h1 {
  font-size: 2.8rem;
  margin: 0.5rem 0;
  background: linear-gradient(90deg, #FF5C39 0%, #8A3A97 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.subtitle {
  font-size: 1.3rem;
  color: #FF764E;
  margin-bottom: 1rem;
}
.description {
  max-width: 600px;
  margin: 0 auto 2rem auto;
  color: #ccc;
}
nav {
  margin-top: 1.5rem;
}
nav a {
  color: #FF5C39;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 600;
  transition: color 0.2s;
}
nav a:hover {
  color: #8A3A97;
}
/* Section division and visual enhancement */
.section {
  padding: 5rem 1rem 3rem 1rem;
  max-width: 900px;
  margin: 3rem auto 3rem auto;
  background: #18121B;
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px 0 rgba(90,40,120,0.18);
  border: 1.5px solid #2D1B3B;
  position: relative;
  z-index: 2;
}
.section:not(:last-child) {
  margin-bottom: 4rem;
}
.section h2 {
  font-size: 2.2rem;
  background: linear-gradient(90deg, #FF5C39 0%, #5B2C73 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

/* Decorative divider between sections */
.section::before {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  margin: 0 auto 2.5rem auto;
  background: linear-gradient(90deg, #FF5C39 0%, #8A3A97 100%);
  border-radius: 2px;
  opacity: 0.7;
}

/* Hero section separation */
.hero-section {
  margin-bottom: 4rem;
  border-bottom: 2px solid #2D1B3B;
  box-shadow: 0 8px 32px 0 rgba(90,40,120,0.10);
}

/* Packages section cards */
.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}
.package {
  background: #22162B;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px 0 rgba(90,40,120,0.18);
  padding: 2.2rem 1.7rem;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  border: 1.5px solid #5B2C73;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  z-index: 3;
}
.package:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(255,92,57,0.18);
  border-color: #FF5C39;
}
.package h3 {
  color: #FF5C39;
  margin-bottom: 0.5rem;
}
.cta {
  color: #FF764E;
  font-weight: bold;
  text-decoration: underline;
}
/* Contact section highlight */
.contact-section {
  background: rgba(24, 18, 27, 0.98);
  border-radius: 2rem;
  margin: 4rem auto 2rem auto;
  box-shadow: 0 4px 32px 0 rgba(90,40,120,0.13);
  border: 1.5px solid #8A3A97;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 3.5rem 0;
  max-width: 600px;
  /* Remove any pseudo-elements or lines */
}
.contact-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  text-align: center;
}
.contact-heading {
  font-size: 2.1rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 1.1rem;
  font-family: 'Segoe UI', 'Arial', sans-serif !important;
}
.contact-support {
  color: #b6b0c2;
  font-size: 1.13rem;
  text-align: center;
  margin-bottom: 2.1rem;
  font-family: 'Segoe UI', 'Arial', sans-serif !important;
  max-width: 420px;
}
.contact-cta-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-btn {
  background: linear-gradient(90deg, #FF5C39 0%, #8A3A97 100%);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  border: none;
  border-radius: 1.1rem;
  padding: 1.1rem 3.2rem;
  box-shadow: 0 4px 32px 0 rgba(255,92,57,0.13);
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.09em;
  text-transform: none;
  outline: none;
  display: inline-block;
}
.contact-btn:hover, .contact-btn:focus {
  background: linear-gradient(90deg, #8A3A97 0%, #FF5C39 100%);
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 8px 40px 0 rgba(255,92,57,0.18);
}
footer {
  text-align: center;
  color: #888;
  padding: 2rem 0 1rem 0;
  font-size: 0.95rem;
  background: #0A0A0A;
  border-top: 1px solid #18121B;
}
/* Responsive improvements */
@media (max-width: 900px) {
  .section {
    padding: 2.5rem 0.5rem 2rem 0.5rem;
    margin: 2rem auto 2rem auto;
  }
  .packages {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 700px) {
  .hero-section {
    height: 80vh;
    margin-bottom: 2rem;
  }
  .center-content h1 {
    font-size: 2rem;
  }
  .section {
    padding: 1.5rem 0.2rem 1.2rem 0.2rem;
    margin: 1rem auto 1rem auto;
  }
  .logo {
    width: 120px;
  }
  .contact-section {
    padding: 2rem 0;
    min-height: 120px;
    max-width: 98vw;
    border-radius: 1.1rem;
  }
  .contact-content {
    padding: 0 0.5rem;
  }
  .contact-heading {
    font-size: 1.3rem;
  }
  .contact-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 0.7rem;
  }
} 

@media (max-width: 900px) {
  .main-header {
    flex-direction: column;
    height: auto;
    padding: 0.5rem 1vw;
  }
  .header-nav {
    gap: 1.2rem;
  }
  .book-call-btn {
    margin-left: 0.7rem;
    padding: 0.6rem 1.1rem;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0.5vw;
  }
  .header-logo {
    height: 36px;
  }
  .header-nav {
    gap: 0.7rem;
    font-size: 0.98rem;
  }
  .book-call-btn {
    padding: 0.5rem 0.7rem;
    font-size: 0.95rem;
  }
} 

.ai-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: linear-gradient(120deg, #18121B 60%, #5B2C73 100%);
  padding: 6rem 0 5rem 0;
  position: relative;
  z-index: 2;
}
.ai-section h2 {
  text-align: center;
  margin-left: 0;
  margin-bottom: 1.5rem;
  margin-top: 0;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #FF5C39 0%, #8A3A97 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: unset;
}
.ai-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.ai-info {
  flex: 2 1 340px;
  min-width: 260px;
}
.ai-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0 1.5rem 0;
}
.ai-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 1.08rem;
  margin-bottom: 1.1rem;
  color: #e0d6f6;
  background: rgba(91,44,115,0.08);
  border-radius: 0.6rem;
  padding: 0.7rem 1rem;
  box-shadow: 0 1px 6px 0 rgba(90,40,120,0.07);
}
.ai-features li span {
  font-size: 1.3rem;
  color: #FF5C39;
  margin-top: 1px;
}
.ai-cta-row {
  margin-top: 1.5rem;
}
.ai-demo-btn {
  background: linear-gradient(90deg, #FF5C39 0%, #8A3A97 100%);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 0.5rem;
  padding: 0.9rem 2.1rem;
  font-size: 1.13rem;
  text-decoration: none;
  box-shadow: 0 2px 8px 0 rgba(255,92,57,0.10);
  transition: background 0.18s, color 0.18s, transform 0.15s;
  cursor: pointer;
  display: inline-block;
}
.ai-demo-btn:hover {
  background: linear-gradient(90deg, #8A3A97 0%, #FF5C39 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.ai-visual {
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}
.ai-graphic {
  width: 120px;
  max-width: 100%;
  filter: drop-shadow(0 2px 16px #5B2C73aa);
  border-radius: 1.2rem;
  background: rgba(255,255,255,0.01);
}
@media (max-width: 900px) {
  .ai-section {
    padding: 3.5rem 0 2.5rem 0;
  }
  .ai-content {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    padding: 0 1rem;
  }
  .ai-section h2 {
    font-size: 2rem;
  }
} 

html, body, * {
  font-family: 'Segoe UI', 'Arial', sans-serif !important;
}
.ai-section h2, .webdev-title {
  font-family: 'Segoe UI', 'Arial', sans-serif !important;
  font-weight: 400 !important;
} 

.webdev-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: linear-gradient(120deg, #18121B 60%, #5B2C73 100%);
  padding: 3.5rem 0 2.5rem 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.webdev-card {
  background: rgba(255,255,255,0.05);
  border-radius: 1.2rem;
  box-shadow: 0 4px 32px 0 rgba(90,40,120,0.10), 0 1.5px 8px 0 rgba(91,44,115,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2.1rem 1.3rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  transition: box-shadow 0.22s, transform 0.22s, border 0.22s;
  border: 1.5px solid rgba(91,44,115,0.18);
  position: relative;
  overflow: hidden;
}
.webdev-card:hover {
  box-shadow: 0 8px 40px 0 rgba(91,44,115,0.18), 0 2px 16px 0 rgba(255,92,57,0.13);
  border: 1.5px solid #8A3A97;
  transform: translateY(-6px) scale(1.025);
}
.webdev-card-title {
  color: #FF5C39;
}
.webdev-demo-btn {
  background: linear-gradient(90deg, #FF5C39 0%, #8A3A97 100%);
}
.webdev-demo-btn:hover {
  background: linear-gradient(90deg, #8A3A97 0%, #FF5C39 100%);
} 

.webdev-timeline-section {
  background: linear-gradient(120deg, #18121B 60%, #5B2C73 100%);
  padding: 4.5rem 0 3.5rem 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.webdev-timeline {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 100%;
  margin: 0 auto 2.5rem auto;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  padding: 0 2rem;
}

.webdev-timeline::-webkit-scrollbar {
  height: 8px;
}

.webdev-timeline::-webkit-scrollbar-track {
  background: transparent;
}

.webdev-timeline::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.webdev-timeline::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border-radius: 1.2rem;
  box-shadow: 0 4px 32px 0 rgba(90,40,120,0.10), 0 1.5px 8px 0 rgba(91,44,115,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(91,44,115,0.18);
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  width: 220px;
  min-width: 220px;
  flex-shrink: 0;
  transition: box-shadow 0.22s, transform 0.22s, border 0.22s;
  position: relative;
  overflow: hidden;
}
.timeline-step:hover {
  box-shadow: 0 8px 40px 0 rgba(91,44,115,0.18), 0 2px 16px 0 rgba(255,92,57,0.13);
  border: 1.5px solid #8A3A97;
  transform: translateY(-6px) scale(1.025);
}
.timeline-icon {
  font-size: 2.1rem;
  margin-bottom: 0.7rem;
  color: #FF5C39;
}
.timeline-title {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  color: #FF5C39;
  margin-bottom: 0.3rem;
  text-align: center;
}
.timeline-desc {
  font-size: 0.99rem;
  color: #e0d6f6;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  max-width: 90%;
}
.webdev-cta-row {
  margin-top: 2.2rem;
  text-align: center;
  width: 100%;
}
.webdev-demo-btn {
  background: linear-gradient(90deg, #FF5C39 0%, #8A3A97 100%);
  color: #fff;
  font-weight: 400 !important;
  border: none;
  border-radius: 0.5rem;
  padding: 1.1rem 2.5rem;
  font-size: 1.13rem;
  text-decoration: none;
  box-shadow: 0 2px 16px 0 rgba(255,106,61,0.13);
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.09em;
  text-transform: none;
}
.webdev-demo-btn:hover {
  background: linear-gradient(90deg, #8A3A97 0%, #FF5C39 100%);
  color: #fff;
  transform: scale(1.045);
  box-shadow: 0 4px 32px 0 rgba(255,106,61,0.18);
}
@media (max-width: 1100px) {
  .webdev-timeline {
    gap: 1.2rem;
  }
  .timeline-step {
    width: 200px;
    min-width: 200px;
    padding: 1.5rem 0.7rem 1rem 0.7rem;
  }
}
@media (max-width: 800px) {
  .webdev-timeline {
    gap: 1rem;
    padding: 0 1rem;
  }
  .timeline-step {
    width: 180px;
    min-width: 180px;
    padding: 1.2rem 0.5rem 0.8rem 0.5rem;
  }
} 

.webdev-title {
  text-align: center;
  margin: 0 auto 2rem auto;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #3B82F6 0%, #22D3EE 50%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: unset;
  border: none;
  padding: 0;
  z-index: 2;
  position: relative;
  font-family: 'Segoe UI', 'Arial', sans-serif !important;
  text-transform: none;
} 

.packages-section {
  background: #18121B;
  padding: 5rem 0 4rem 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  border: none;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.packages-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #FF5C39 0%, #8A3A97 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: unset;
  margin-bottom: 0.5rem;
  font-family: 'Segoe UI', 'Arial', sans-serif !important;
}
.packages-subtitle {
  text-align: center;
  color: #b6b0c2;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  font-family: 'Segoe UI', 'Arial', sans-serif !important;
}
.packages-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.package-card {
  background: #18121B;
  border-radius: 1.3rem;
  box-shadow: 0 4px 32px 0 rgba(90,40,120,0.13);
  border: 2px solid rgba(255,92,57,0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow 0.22s, border 0.22s, transform 0.22s;
}
.package-card:hover {
  box-shadow: 0 8px 40px 0 rgba(255,92,57,0.18), 0 2px 16px 0 rgba(194,59,228,0.13);
  border: 2px solid #FF5C39;
  transform: translateY(-8px) scale(1.03);
}
.package-featured {
  border: 2.5px solid #22D3EE;
  box-shadow: 0 8px 40px 0 rgba(34,211,238,0.18), 0 2px 16px 0 rgba(255,92,57,0.13);
  z-index: 2;
}
.package-popular {
  position: absolute;
  top: -1.3rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #22D3EE 0%, #8A3A97 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.4rem 1.3rem;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px 0 rgba(34,211,238,0.13);
  letter-spacing: 0.08em;
  font-family: 'Segoe UI', 'Arial', sans-serif !important;
}
.package-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FF5C39;
  margin-bottom: 0.7rem;
  letter-spacing: 0.08em;
  text-align: center;
  font-family: 'Segoe UI', 'Arial', sans-serif !important;
}
.package-price {
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.2rem;
  text-align: center;
  font-family: 'Segoe UI', 'Arial', sans-serif !important;
}
.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  width: 100%;
}
.package-features li {
  color: #b6b0c2;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  padding-left: 1.2rem;
  position: relative;
  font-family: 'Segoe UI', 'Arial', sans-serif !important;
}
.package-features li:before {
  content: '\2713';
  color: #22D3EE;
  font-size: 1.1rem;
  position: absolute;
  left: 0;
  top: 0.1rem;
}
.package-desc {
  color: #8A3A97;
  font-size: 1.01rem;
  margin-bottom: 1.2rem;
  text-align: center;
  font-family: 'Segoe UI', 'Arial', sans-serif !important;
}
.package-btn {
  background: linear-gradient(90deg, #FF5C39 0%, #8A3A97 100%);
  color: #fff;
  font-weight: 400;
  border: none;
  border-radius: 0.7rem;
  padding: 0.9rem 2.1rem;
  font-size: 1.13rem;
  text-decoration: none;
  box-shadow: 0 2px 8px 0 rgba(255,92,57,0.10);
  transition: background 0.18s, color 0.18s, transform 0.15s;
  cursor: pointer;
  display: inline-block;
  margin-top: auto;
  letter-spacing: 0.09em;
  text-transform: none;
  font-family: 'Segoe UI', 'Arial', sans-serif !important;
}
.package-btn:hover {
  background: linear-gradient(90deg, #8A3A97 0%, #FF5C39 100%);
  color: #fff;
  transform: scale(1.045);
  box-shadow: 0 4px 32px 0 rgba(255,106,61,0.18);
}
@media (max-width: 1100px) {
  .packages-cards {
    gap: 1.2rem;
  }
  .package-card {
    min-width: 220px;
    max-width: 320px;
    padding: 1.7rem 1rem 1rem 1rem;
  }
}
@media (max-width: 800px) {
  .packages-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .package-card {
    min-width: 0;
    max-width: 400px;
    width: 100%;
  }
} 

#contact.section::before {
  display: none !important;
}
.contact-section, .contact-content {
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* Clean Footer Styles */
.clean-footer {
  background: #111;
  color: #fff;
  padding: 2rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0 2rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  filter: brightness(1.1);
}

.footer-text {
  text-align: center;
}

.footer-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #fff;
  font-family: 'Segoe UI', 'Arial', sans-serif;
}

.footer-text p {
  font-size: 1rem;
  color: #bbb;
  margin: 0 0 1rem 0;
  font-family: 'Segoe UI', 'Arial', sans-serif;
}

.footer-copyright p {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
  font-family: 'Segoe UI', 'Arial', sans-serif;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
}

.linkedin-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0077b5;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.linkedin-link:hover {
  color: #fff;
  background: #0077b5;
  transform: scale(1.1);
}

.linkedin-icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .footer-logo {
    height: 50px;
  }
  
  .footer-text h3 {
    font-size: 1.3rem;
  }
  
  .footer-text p {
    font-size: 0.95rem;
  }
  
  .footer-social {
    margin-top: 0.5rem;
  }
}

/* ===== COMPREHENSIVE MOBILE COMPATIBILITY ===== */

/* Mobile Header Adjustments */
@media (max-width: 768px) {
  .main-header {
    height: 60px;
    padding: 0 1rem;
    justify-content: space-between;
    display: flex;
    align-items: center;
  }
  
  .header-left {
    display: flex;
    align-items: center;
    flex: 1;
  }
  
  .header-logo {
    height: 36px;
    margin-right: 0;
  }
  
  .header-nav {
    display: none; /* Hide navigation on mobile */
  }
  
  .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
  }
  
  .book-call-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    margin-left: 0;
  }
  
  body {
    padding-top: 60px;
  }
}

/* Mobile Hero Section */
@media (max-width: 768px) {
  .hero-section {
    height: 100vh;
    padding: 0 1rem;
  }
  
  .center-content {
    padding: 0 1rem;
  }
  
  .logo {
    width: 140px;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0.3rem 0;
  }
  
  .subtitle {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .description {
    font-size: 0.95rem;
    margin: 0 auto 1.5rem auto;
    line-height: 1.5;
  }
  
  nav {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  
  nav a {
    font-size: 0.9rem;
    margin: 0 0.5rem;
    padding: 0.5rem 0.8rem;
    background: rgba(255, 92, 57, 0.1);
    border-radius: 0.5rem;
  }
  
  /* Hide Contact Us link on mobile landing page */
  nav a[href="#contact"] {
    display: none;
  }
}

/* Mobile Sections */
@media (max-width: 768px) {
  .section {
    padding: 3rem 1rem 2rem 1rem;
    margin: 2rem auto;
    border-radius: 1rem;
  }
  
  .section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}

/* Mobile AI Section */
@media (max-width: 768px) {
  .ai-section {
    padding: 3rem 1rem 2rem 1rem;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    transform: none;
    border-radius: 0;
    overflow: hidden;
  }
  
  .ai-content {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    padding: 0;
  }
  
  .ai-info {
    order: 1;
    width: 100%;
    padding: 0;
  }
  
  .ai-visual {
    order: 2;
    text-align: center;
    width: 100%;
    display: none; /* Hide logo on mobile */
  }
  
  .ai-graphic {
    width: 120px;
    height: 120px;
  }
  
  .ai-features li {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
  }
  
  .ai-features li span {
    font-size: 1rem;
    margin-right: 0.5rem;
  }
  
  .ai-demo-btn {
    font-size: 1rem;
    padding: 0.9rem 1.8rem;
  }
}

/* Mobile Web Development Section */
@media (max-width: 768px) {
  .webdev-timeline-section {
    padding: 3rem 0 2rem 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    transform: none;
    border-radius: 0;
  }
  
  .webdev-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .webdev-timeline {
    gap: 1rem;
    padding: 0 1rem;
    width: 100%;
    justify-content: center;
  }
  
  .timeline-step {
    width: 160px;
    min-width: 160px;
    padding: 1rem 0.8rem 0.8rem 0.8rem;
  }
  
  .timeline-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .timeline-title {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }
  
  .timeline-desc {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .webdev-demo-btn {
    font-size: 1rem;
    padding: 0.9rem 1.8rem;
  }
}

/* Mobile Packages Section */
@media (max-width: 768px) {
  .packages-section {
    padding: 3rem 0 2rem 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    transform: none;
    border-radius: 0;
    overflow: hidden;
  }
  
  .packages-title {
    font-size: 2rem;
    margin-bottom: 0.3rem;
  }
  
  .packages-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .packages-cards {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
    margin-left: -0.25rem;
  }
  
  .package-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 1.8rem 1.2rem 1.2rem 1.2rem;
    box-sizing: border-box;
    margin: 0;
  }
  
  .package-name {
    font-size: 1.1rem;
  }
  
  .package-features li {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }
  
  .package-desc {
    font-size: 0.85rem;
  }
  
  .package-btn {
    font-size: 0.95rem;
    padding: 0.8rem 1.6rem;
  }
}

/* Mobile Contact Section */
@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0 2rem 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    transform: none;
    border-radius: 0;
    overflow: hidden;
  }
  
  .contact-content {
    max-width: 85%;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .contact-heading {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .contact-support {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .contact-heading {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .contact-support {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  
  .contact-btn {
    font-size: 0.95rem;
    padding: 0.8rem 1.6rem;
  }
}

/* Mobile Footer */
@media (max-width: 768px) {
  .clean-footer {
    padding: 1.5rem 0;
    margin-top: 1.5rem;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .footer-logo {
    height: 50px;
  }
  
  .footer-text h3 {
    font-size: 1.3rem;
  }
  
  .footer-text p {
    font-size: 0.95rem;
  }
  
  .footer-social {
    margin-top: 0.5rem;
  }
  
  .linkedin-icon {
    width: 20px;
    height: 20px;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
  .main-header {
    height: 55px;
    padding: 0 0.8rem;
  }
  
  .header-logo {
    height: 32px;
  }
  
  .book-call-btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  body {
    padding-top: 55px;
  }
  
  .hero-section {
    padding: 0 0.8rem;
  }
  
  .logo {
    width: 120px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .description {
    font-size: 0.9rem;
  }
  
  nav a {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
  
  .section {
    padding: 2.5rem 0.8rem 1.5rem 0.8rem;
    margin: 1.5rem auto;
  }
  
  .section h2 {
    font-size: 1.6rem;
  }
  
  .ai-section, .webdev-timeline-section, .packages-section, .contact-section {
    padding: 2.5rem 0.8rem 1.5rem 0.8rem;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    transform: none;
    border-radius: 0;
    overflow: hidden;
  }
  
  .timeline-step {
    width: 140px;
    min-width: 140px;
    padding: 0.8rem 0.6rem 0.6rem 0.6rem;
  }
  
  .timeline-icon {
    font-size: 1.6rem;
  }
  
  .timeline-title {
    font-size: 0.9rem;
  }
  
  .timeline-desc {
    font-size: 0.8rem;
  }
  
  .package-card {
    padding: 1.5rem 1rem 1rem 1rem;
    max-width: 100%;
    width: 100%;
    margin-left: -0.25rem;
  }
  
  .contact-heading {
    font-size: 1.6rem;
  }
  
  .contact-support {
    font-size: 0.9rem;
  }
  
  .contact-content {
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 0 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .contact-heading {
    font-size: 1.6rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .contact-support {
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .footer-container {
    padding: 0 0.8rem;
  }
  
  .footer-logo {
    height: 45px;
  }
  
  .footer-text h3 {
    font-size: 1.2rem;
  }
  
  .footer-text p {
    font-size: 0.9rem;
  }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    height: 100vh;
  }
  
  .logo {
    width: 100px;
    margin-bottom: 0.5rem;
  }
  
  h1 {
    font-size: 1.6rem;
    margin: 0.2rem 0;
  }
  
  .subtitle {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  nav {
    margin-top: 0.5rem;
  }
  
  nav a {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .timeline-step:hover,
  .package-card:hover,
  .contact-btn:hover,
  .ai-demo-btn:hover,
  .webdev-demo-btn:hover,
  .package-btn:hover,
  .book-call-btn:hover,
  .linkedin-link:hover {
    transform: none;
  }
  
  .timeline-step:active,
  .package-card:active,
  .contact-btn:active,
  .ai-demo-btn:active,
  .webdev-demo-btn:active,
  .package-btn:active,
  .book-call-btn:active,
  .linkedin-link:active {
    transform: scale(0.98);
  }
} 