@media only screen and (min-width: 200px) and (max-width: 575px) {
     .hamburger {
        display: flex;
    }

  
  .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
        width: 100%; 
    }

  .navbar {
       position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0c0c0c;
        flex-direction: column;
        align-items: center;
        padding: 0; 
        gap: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    }

    
    .menu-toggle:checked ~ .navbar {
        max-height: 300px;
        padding: 20px 0; 
    }

    
    .menu-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
        background-color: red;
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
        background-color: red;
    }
    
    .mobile-scroll {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 16px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    padding: 10px 0 20px;
  }

  
  .mobile-scroll::-webkit-scrollbar {
    display: none;
  }

  .hero-section {
    
    background-color: transparent; 
    min-height: 85vh; 
    display: flex;
    align-items: center; 
    justify-content: center;
    position: relative;
    padding-top: 0px;
   }

    

    .header .container {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 120px; 
    padding: 10px 5px;
}

    .hero-content-center {
        margin-top: 1px;
        width: 100%;
    }

  .hero-content-center h1 {
        font-size: 2.4rem;
        line-height: 1.2;
        font-style: normal;
        font-weight: 900;
        color: #e9e9e9;
        margin-bottom: 15px;
        letter-spacing: -0.5px;
    }

    .hero-content-center h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        font-style: normal;
        font-weight: 900;
        color: #e9e9e9;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }
    .hero-subtext p{
      font-size: 1rem;
    }

    .desktop-view {
        display: none;
    }

    
    .mobile-view {
        display: block;
    }

    .ashmit::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        height: 2px;
        background-color: red;
        width: 100%;
        transition: width 0.25s ease;
    }

    .hero-subtext {
        font-size: 1rem;
        color: #e9e9e9;
        line-height: 1.6;
        font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    }

    .info-container {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 40px;
        width: 100%;
        margin: -100px auto 0;
        padding: 0 15px;
        font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    }

    .info-left {
        width: 100%;
        text-align: left;
    }

    .info-right {
        width: 100%;
        text-align: left;
    }

    .info-right .info-list {
        text-align: left;
    }

    .info-title {
        font-size: 20px;
        color: #ffffff;
        margin-bottom: 10px;
    }

    .info-title span {
        position: relative;
        display: inline-block;
        cursor: pointer;
    }

    .info-title span::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 3px;
        background-color: red;
        width: 50%;
        transition: width 0.3s ease;
    }

    .info-title span:hover::after {
        width: 95%;
    }

    .project-row {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 30px;
        margin-top: 10px;
    }

    .project-col {
        width: 100%;
        text-align: left;
    }

    .info-subtitle {
        font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
        color: rgba(255, 255, 255, 0.75);
        margin: 18px 0 10px;
        font-size: 16px;
    }

    .info-subtitle span {
        position: relative;
        display: inline-block;
        cursor: pointer;
    }

    .info-subtitle span::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        height: 3px;
        background: red;
        width: 0;
        transition: width 0.25s ease;
    }

    .info-subtitle span:hover::after {
        width: 100%;
    }

    .info-list {
        font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .info-list a {
        cursor: pointer;
        font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
        color: #00A67D;
        text-decoration: underline;
    }

    .info-list a:hover {
        text-decoration: underline;
        color: red;
    }

    .info-list li {
        font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
        color: rgba(255, 255, 255, 0.9);
        padding: 6px 0;
        font-size: 15px;
    }

    .footer {
        padding: 10px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 40px;
        font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    }

    .footer .container {
        width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }

    .footer-row {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
        gap: 30px;
    }

    .footer-col {
        width: 100%;
        min-width: 100%;
        font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    }

    .footer-logo {
        font-size: 22px;
        color: #ffffff;
        font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
        text-decoration: none;
        font-weight: bold;
        display: inline-block;
        margin-bottom: 15px;
    }

    .footer-col h4 {
        color: #ffffff;
        font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
        margin-bottom: 15px;
        font-size: 17px;
    }

    .footer-col ul {
        list-style: none;
        font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
        padding: 0;
    }

    .footer-col ul li {
        font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
        padding: 6px 0;
    }

    .footer-col ul li a {
        font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        font-size: 15px;
        transition: 0.2s ease;
    }

    .social-links {
        display: flex;
        gap: 12px;
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .social-links a {
        color: #ffffff;
        font-size: 18px;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        transition: 0.25s ease;
        text-decoration: none;
    }

    .social-links a:hover {
        background: #ff3b3b;
        transform: translateY(-3px);
    }

    .footer-links li {
        display: flex;
        align-items: center;
        color: rgba(255, 255, 255, 0.9);
    }

    .support-email i {
        color: #ff3b3b;
    }

    .footer-bottom {
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 13px;
    }

    .footer-bottom p {
        font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    }

    .footer-col ul li a {
        position: relative;
        display: inline-block;
    }

    .footer-col ul li a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        height: 2px;
        background-color: #ff3b3b;
        width: 0;
        transition: width 0.25s ease;
    }

    .footer-col ul li a:hover::after {
        width: 100%;
    }

    .footer-col h4 span {
        position: relative;
        display: inline-block;
        cursor: pointer;
    }

    .footer-col h4 span::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -5px;
        height: 2px;
        background: #ff3b3b;
        width: 40%;
        transition: width 0.25s ease;
    }

    .footer-col h4 span:hover::after {
        width: 100%;
    }
}
