
/* Base Styles */
html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin: 1rem 0;
  }
  
  /* Container */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  /* Header */
  header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .logo img {
    height: 50px;
    width: auto;
  }
  
  /* Logo Text Styling */
  .logo-text {
    font-weight: bold;
    font-size: 1.5rem;
    background: linear-gradient(90deg, hsla(221, 45%, 73%, 1) 0%, hsla(220, 78%, 29%, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
    text-decoration: underline;
    font: 1em sans-serif;
  }
  
  .nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #0056b3;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(90deg, hsla(221, 45%, 73%, 1) 0%, hsla(220, 78%, 29%, 1) 100%);
    color: white;
    padding: 10rem 2rem 6rem;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
  }
  
  .btn {
    display: inline-block;
    background-color: #0056b3;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
  }
  
  .btn:hover {
    background-color: #003d82;
  }
  
  /* Services Section */
  .services {
    padding: 5rem 2rem;
    background-color: white;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  /* Projects Section */
  .projects {
    padding: 5rem 2rem;
    background-color: #f5f7fa;
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .project-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 2;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  .project-content {
    padding: 1.5rem;
  }
  
  .project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .project-card p {
    margin-bottom: 1.5rem;
  }
  
  .project-links {
    display: flex;
    gap: 1rem;
  }
  
  .project-links a {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: #0056b3;
    border: 1px solid #0056b3;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.875rem;
  }
  
  .project-links a:hover {
    background-color: #0056b3;
    color: white;
  }
  
  /* About Section */
  .about {
    padding: 5rem 2rem;
    background-color: white;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  /* Footer */
  footer {
    background: linear-gradient(90deg, hsla(221, 45%, 73%, 1) 0%, hsla(220, 78%, 29%, 1) 100%);
    position: relative;
    color: white;
    padding: 3rem 2rem;
    width: 100%;
    height: 420.77px;
    display: flex;
    justify-content: space-between;
  }
  footer div a {
    color: white;
  }

  footer div .logo {
    justify-content: left;
    flex-direction: column;
    float: left;
    padding: 0;
  }
  footer div .container {
    justify-content: left;
    flex-direction: column;
    float: left;
  }

  .contact-info {
    position: absolute;
    left: 38%;
    border-radius: 8px;
    height: 324.78px;
    width: 324.78px;
    /* margin-right: 500px; */
    justify-content: center;
    align-items: center;
  }
  .contact-info h3 {
    color: white;
  }
  .contact-info .contact-item a {
    color: white;
  }
  
  footer .social-links a:hover {
    background-color: white;
    color: #1a1a1a;
  }
  .footer-links a {
    color: white;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .contact {
    background-color: none;
    height: 324.78px;
    width: 400px;
    margin-right: 50px;
  }
  
  .contact-grid {
    display: grid;
  }
  
  /* .contact-form { 
    max-width: 100%;
  } */
    
  .contact-icon {
    color: #0056b3;
  }
  
  .contact-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .contact-item a:hover {
    color: #0056b3;
  }

   .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f7fa;
    color: #0056b3;
    transition: all 0.3s;
  }
  
  .social-links a:hover {
    background-color: #0056b3;
    color: white;
    transform: translateY(-3px);
  }
  .form-group input {
    border-radius: 10px;
    margin-bottom: 0.5rem;
    width: 400px;
    background: linear-gradient(90deg, hsla(221, 45%, 73%, 1) 0%, rgb(60, 117, 231) 100%);
    border: none;
    color: #f5f7fa;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);


  }
   .form-group textarea {
    border-radius: 10px;
    height: 70px;
    width: 400px;
    background: linear-gradient(90deg, hsla(221, 45%, 73%, 1) 0%, rgb(60, 117, 231) 100%);
    border: none;
    color: #f5f7fa;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);

  }


  /* Circuit board pattern for tech theme */
  .circuit-bg {
    position: relative;
    background-color: #f8f9fa;
    overflow: hidden;
  }
  
  .circuit-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(0, 86, 179, 0.05) 20px, rgba(0, 86, 179, 0.05) 21px),
                      repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(0, 86, 179, 0.05) 20px, rgba(0, 86, 179, 0.05) 21px);
    opacity: 0.4;
    z-index: 0;             /* Lowered */
    pointer-events: none;   /* Crucial! Prevents it from blocking clicks */
  }
  
  /* Animation for tech elements */
  @keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
  }
  
  .tech-pulse {
    animation: pulse 3s infinite ease-in-out;
  }
  
  /* Toast notification */
  .toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4a6fbe;
    color: #fff;
    padding: 15px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 1100;
    max-width: 350px;
  }
  
  .toast.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .toast-title {
    font-weight: bold;
    margin-bottom: 3px;
  }
  
  .toast-description {
    font-size: 0.9rem;
  }

  .project-links a.btn {
    display: inline-block;
    padding: 8px 16px;
    margin: 5px 5px 0 0;
    background-color: #fff;
    border: 1px solid #0d6efd;
    color: #0d6efd;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .project-links a.btn:hover {
    background-color: #0d6efd;
    color: white;
  }

  /* Pricing Section Styles */
.packages {
  padding: 5rem 2rem;
  background-color: #f5f7fa;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #555;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 1rem;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: #0056b3;
}

input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

.discount-badge {
  background-color: #e53e3e;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  margin-left: 0.5rem;
}

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

.pricing-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  transform: scale(1.05);
  z-index: 1;
  border: 2px solid #0056b3;
}

.pricing-card:hover:not(.popular) {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  background-color: #0056b3;
  color: white;
  text-align: center;
  padding: 4px 0;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 9999px;
  width: 150px;
  margin: 0 auto;
}

.pricing-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price-yearly {
  display: none;
}

.price-period {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 400;
}

.pricing-features {
  padding: 2rem;
  flex-grow: 1;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.pricing-features li svg {
  color: #16a34a;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.pricing-btn {
  display: block;
  text-align: center;
  margin: 0 2rem 2rem;
  padding: 0.75rem;
}

.pricing-footer {
  text-align: center;
  margin-top: 3rem;
}

.pricing-footer a {
  color: #0056b3;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.popular {
    transform: none;
    order: -1;
  }
  
  .pricing-toggle {
    flex-direction: column;
  }
  .contact {
    display: flex;
    flex-direction: column;
  }
}
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .header-container {
      flex-direction: column;
      padding: 1rem;
    }

    .contact-form {
      margin-bottom: 2rem;
    }
  
    .nav-links {
      margin-top: 1rem;
      gap: 1rem;
    }
  
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .about-content {
      grid-template-columns: 1fr;
    }
  
    .services-grid,
    .projects-grid,
    .contact-grid {
      grid-template-columns: 1fr;
    }
  }
  /* Responsive Design */
@media (max-width: 430px) {
  body {
    width: 100%;
    scroll-behavior: smooth;

  }

  html {
    width: 100%;
    overflow-x: hidden;
  }
  footer {
    display: flex; 
    flex-direction: column;
    height: 100%;
    width: 100%;
  }
  .form-group input {
    width: 300px;
  }
  .form-group textarea {
    width: 300px;
  }
}

/* Hide any stray horizontal overflow
html, body {
  overflow-x: hidden;
} */