@media screen and (min-width: 426px) and (max-width: 768px) {
  main{
    overflow-x: hidden;
  }

  .hero-bg{
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(/assets/images/home-herobg.avif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    padding: 5vw 10vw 20vh;
    height: max-content;
  }

  .title{  
    font-size: 5vw;
    color: rgb(0, 0, 255);
    font-weight: bolder;
    margin: 0 0 2%;
  }

  .title span{
    font-size:2vw;
    color: white;
    font-family: catamaran;
  }

  .hero-heading{
    margin: 0 0 2%;
    color: white;
    font-size: 3.5vw;
    font-weight: bold;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }

  .hero-heading span{
    color: #a6a1ff;
  }

  .hero-paragraph{
    margin: 0 0 2%;
    color: rgb(255, 255, 255);
    font-size: 2.5vw;
    font-family:'Courier New', Courier, monospace;
    font-weight: 550;
  }


  .call2action{
    background-color: blue;
    color: rgb(255, 255, 255);
    border-radius: 5px;
    border: none;
    padding: 15px 1vw;
    cursor: pointer;
    font-weight: 600;
    width: 30vw;
    position: absolute;
    right: 10vw;
    animation: pulse 1.5s ease infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(1); /* Original size */
    }
    50% {
      transform: scale(1.1); /* Slightly larger */
    }
    100% {
      transform: scale(1); /* Back to original size */
    }
  }

  .call2action:hover{
    background-color: rgba(0, 0, 255, 0.747);
  }

  :root {
    --primary: #4361ee;
    --primary-dark: #3a56d4;
    --secondary: #3f37c9;
    --accent: #4895ef;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
  }

  .about {
    padding: 50px;
    background: rgba(33, 33, 255, 0.212);
  }

  .about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
  }

  .about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }

  .about-image:hover img {
    transform: scale(1.05);
  }

  .about-content h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
  }

  .about-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
  }

  .about-features {
    margin: 30px 0;
  }

  .about-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--dark);
  }

  .about-features li::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
  }

  .about-content a {
    color: blue;
    padding: 20px 40px;
    border: 1px solid blue;
    border-radius: 5px;
    text-decoration: none;
    transition: transform 0.5s ease;
    display: inline-block;
  }

  .btn-primary:hover{
    color: blue;
    background-color: white;
    transform: scale(1.05);
  }

  .mission-vision {
    padding: 50px 50px;
    background: rgb(109, 109, 255);
  }

  .mv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(auto, 1fr));
    gap: 50px;
  }

  .mv-card {
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(175, 175, 255, 0.486);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-color: rgb(168, 168, 255);
  }

  .mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
  }

  .mv-card:hover::before {
    opacity: 1;
  }

  .mv-card:hover {
    color: white;
    transform: translateY(-10px);
  }

  .mv-card:hover h3,
  .mv-card:hover .mv-icon {
    color: white;
  }

  .mv-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: color 0.3s ease;
    justify-self: center;
  }

  .mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
    transition: color 0.3s ease;
    text-align: center;
  }

  .mv-card p {
    margin-bottom: 0;
    transition: color 0.3s ease;
    text-align: center;
  }

  /* Services Section */
  .services {
    padding: 50px;
    background: rgba(33, 33, 255, 0.212);
  }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
  }

  .section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: blue !important;
    font-size: 1.1rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgb(80, 80, 255);
    transition: all 0.3s ease;
    width: 300px;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .service-icon {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
  }

  .service-icon img{
    width: 50px;
    height: 50px;
    border-radius: 100%;
  }

  .service-content {
    padding: 30px;
  }

  .service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
  }

  .service-content p {
    color: var(--gray);
    margin-bottom: 20px;
  }

  .service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
  }

  .service-link:hover {
    color: var(--secondary);
  }

  .service-link:hover i {
    transform: translateX(5px);
  }

  /* Technology Stack Section */
  .tech-stack {
    padding: 50px 50px;
    background: var(--primary);
  }

  .section-2 p{
    color: rgb(236, 236, 255) !important;
  }

  .tech-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
  }

  .tech-logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .tech-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .tech-logo img {
    max-width: 60px;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
  }

  .tech-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
  }

  /* Stats Section */
  .stats {
    padding: 40px 0;
    background: rgb(0, 0, 49);
  }

  .stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
  }

  .stat-item {
    padding: 30px;
  }

  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
  }

  .stat-label {
    font-size: 1.1rem;
    color: var(--gray);
  }

  /* CTA Section */
  .cta {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
  }

  .cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    opacity: 0.9;
  }

  .cta a {
    color: white;
    padding: 20px 40px;
    border: 1px solid white;
    border-radius: 5px;
    text-decoration: none;
    transition: transform 0.5s ease;
    display: inline-block;
  }

  .cta a:hover {
    color: var(--primary);
    background-color: white;
    transform: scale(1.1);
  }
}