*{
    margin: 0;
    padding: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
   background-size: 100% 800px;
   background-repeat: no-repeat;
   background-attachment: scroll !important;
    min-height: 100vh;
    color: #ffffff;
    padding-top: 0;
    margin: 0;
}

.header {    
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header.hide {
  transform: translateY(-100%);
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
   
}

.header .container {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 48%; 
    
}

.ashmit-brand{
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: #ffffff;
}

/* Circular avatar */
.ashmit-logo{
  margin-top: 10px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #000000;
  background: #111;
}
.ashmit-logo:hover{
    border: 2px solid #ff3b3b;
}

.ashmit-name{
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: .3px;
  line-height: 1;
}
.ashmit-name-main{ color: #ffffff; }
.ashmit-name-accent{ color: #ff3b3b; } 




.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
    gap: 30px; 
}

.nav-link {
  display: inline-block;
  position: relative;
  align-items: center;
  font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  border-radius: 8px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;      
  right: 1rem;     
  bottom: 0;
  height: 3px;
  background-color: red;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}


.nav-link:hover::after {
  transform: scaleX(1);
}


.menu-toggle {
    display: none; 
    
}

.hamburger {
    display: none; 
    cursor: pointer;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 8px;
    padding: 10px;
    width: 45px;
    height: 45px;
    
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 3px;
    background-color: red;
    border-radius: 3px;
    transition: all 0.3s ease;  
}


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

.hero-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; 
    height: 100%;
    width: 100%;
}


.hero-content-center {
    text-align: center; 
    max-width: 900px;
    
}


.hero-content-center h1 {
    font-size: 4.8rem; 
    line-height: 1.1;
    font-style:italic;
    font-weight: 900; 
    color: #e9e9e9;
    margin-bottom: 10px;
    letter-spacing: -1px;
    
}

.hero-content-center h2 {
    font-size: 3.5rem; 
    line-height: 1.1;
    font-style: oblique;
    font-weight: 400; 
    color: #e9e9e9;
    margin-bottom: 20px;
    letter-spacing: -1px;
}


.ashmit {
  position: relative;
  display: inline-block;
 
  font-size: 16px;  
  color: #00A67D;
}

.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: 1.3rem;
    color: #e9e9e9; 
    line-height: 1.6;
    font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;

}


.desktop-view {
        display: block;
    }

    
    .mobile-view {
        display: none;
    }

.info-container{
  display: flex;
  justify-content: flex-start;  
  gap: 180px;
  width: 90%;
  margin: -20px auto 0;
  font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
}



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

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

.info-right .info-list{
  text-align: left;
}
.info-title {
  font-size: 24px;
  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;
  justify-content: space-between;
  gap: 40px;
  margin-top: 10px;
}

.project-col{
  width: 48%;
  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: 18px;
}


.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: 16px;
}

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


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

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


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


.footer-logo{
  font-size: 26px;
  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: 18px;
}


.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: 16px;
  transition: 0.2s ease;
}




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

.social-links a{
  color: #ffffff;
  font-size: 20px;
  width: 38px;
  height: 38px;
  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: 14px;
}

.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%;
}


