/* styles.css - Vanilla CSS replacement for Tailwind */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.MobileNav{
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background-color: #0d1117;
    padding-top: 10%;
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease-in-out;
}
.MobileNav.Visible{
    transform: scaleX(1);
}
.Mobile-links{
    display: flex;
    flex-direction: column;
    font-size: 36px ;
   
}
.Services-Mobile-Link{
    width: 80%;
    
    border-bottom: 2px solid #a2c9ff;
    height: 60px;
    margin: 5% auto 5% auto;
    display: flex;
    align-items: center;
}

.Logo{
    width: 48px;
    aspect-ratio: 1/1;
  
    background-image: url(logoV2.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.logo-area{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 25%;
}
.Nav-Right{
    display: flex;
    flex-direction: row;
    align-items: center;;
}

.Menu{
    /* border: 2px solid red; */
    width: 48px;
    aspect-ratio: 1/1;
    
    background-image: url(menu.svg);
    background-position: center;
    background-size:cover;
    margin-left: 5px;
}
body {
  background-color: #0d1117;
  color: #c9d1d9;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Geist', sans-serif;
}

/* Header / Navigation */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #161b22;
  border-bottom: 1px solid #30363d;
  z-index: 50;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-text {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  line-height: 32px;
  font-weight: 600;
  color: #a2c9ff;
  letter-spacing: -0.025em;
  margin-left: 3%;
}

.nav-links {
  display: none;
  gap: 32px;
  align-items: center;
}

@media (min-width: 662px) {
  .nav-links {
    display: flex;
  }
}



.nav-link:hover {
  color: #a2c9ff;
}

.nav-link.active {
  color: #a2c9ff;
  font-weight: 700;
  border-bottom: 2px solid #a2c9ff;
  padding-bottom: 4px;
}



/* Main Content */
.main-content {
  padding-top: 56px;
}

/* Section Containers */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 24px;
}

.border-top {
  border-top: 1px solid #30363d;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  gap: 32px;
  align-items: center;
  border: 1px solid #30363d;
  padding: 32px;
  background-color: #161b22;
  border-radius: 8px;
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-title {
  font-family: 'Geist', sans-serif;
  font-size: 48px;
  line-height: 1.2;
  color: #e0e2ea;
  margin-bottom: 16px;
  font-weight: 600;
}
@media(max-width:480px){
    .pricing-title{

    font-size: 36px;
}
}

.pricing-description {
  color: #8b949e;
  font-size: 18px;
  line-height: 1.5;
  max-width: 600px;
  margin-bottom: 16px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e0e2ea;
}

.check-icon {
  color: #a2c9ff;
}

.pricing-card {
  background-color: #1c2025;
  border: 1px solid #30363d;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.price-label {
  color: #8b949e;
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.price-value {
  font-size: 64px;
  font-weight: 700;
  color: #a2c9ff;
  line-height: 1;
}

/* Section Headers */
.section-header {
  margin-bottom: 32px;
}

.section-title {
  font-family: 'Geist', sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #e0e2ea;
}

.section-subtitle {
  color: #8b949e;
}

/* Features Grid */
.features-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.feature-card {
  padding: 16px;
  border: 1px solid #30363d;
  background-color: #181c21;
  border-radius: 8px;
  transition: all 0.2s;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  color: #96ccff;
  margin-bottom: 8px;
  display: inline-block;
}

.feature-title {
  font-family: 'Geist', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #e0e2ea;
  margin-bottom: 8px;
}

.feature-description {
  font-size: 12px;
  line-height: 18px;
  color: #8b949e;
}

/* Extras Section */
.extras-section {
  background-color: #181c21;
  border-top: 1px solid #30363d;
  border-bottom: 1px solid #30363d;
}

.extras-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .extras-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .extras-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.extra-item {
  display: flex;
  gap: 16px;
}

.extra-icon {
  color: #ffba42;
  flex-shrink: 0;
}

.extra-title {
  font-family: 'Geist', sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #e0e2ea;
  margin-bottom: 4px;
}

.extra-description {
  font-size: 12px;
  line-height: 18px;
  color: #8b949e;
}

/* Portfolio Section */
.portfolio-header {
  margin-bottom: 32px;
  text-align: center;
}

.portfolio-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: 8fr 4fr;
  }
}

.portfolio-main {
  background-color: #161b22;
  border-radius: 12px;
  border: 1px solid #30363d;
  padding: 16px;
  height: 500px;
  overflow: hidden;
  position: relative;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #414752;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.portfolio-mockup {
  background-color: #161b22;
  border-radius: 12px;
  border: 1px solid #30363d;
  padding: 16px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.phone-mockup {
  width: 280px;
  height: 550px;
  background-color: #000;
  border: 8px solid #222;
  border-radius: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA Section */
.cta-section {
  margin-bottom: 32px;
}

.cta-card {
  background-color: #a2c9ff;
  color: #00315c;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
}

.cta-title {
  font-family: 'Geist', sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}

.cta-description {
  max-width: 672px;
  margin: 0 auto 16px;
  opacity: 0.9;
}

/* Footer */
.footer {
  width: 100%;
  border-top: 1px solid #30363d;
  background-color: #0b0e14;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 32px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-about {
  grid-column: span 2;
}

.footer-logo {
  font-family: 'Geist', sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #e0e2ea;
}

.footer-text {
  color: #8b949e;
  margin-top: 8px;
  max-width: 384px;
}

.footer-copyright {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #8b949e;
  margin-top: 32px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-heading {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #a2c9ff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-link {
  color: #8b949e;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #a2c9ff;
}

/* Material Icons */
.material-symbols-outlined {
  font-size: 24px;
}

/* Utility Classes */
.text-primary {
  color: #a2c9ff;
}

.text-secondary {
  color: #96ccff;
}

.text-tertiary {
  color: #ffba42;
}