*{
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  padding: 20px;
  margin: 0;
  background: #080808;
  color: #fff;
}

#header{
  width: 100%;
  height: 100vh;
  background-image: url(/img/white\ cropped.JPG);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

#header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

#container{
  padding: 10px 10%;
  position: relative;
  z-index: 1;
  height: 100%;
}

nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo{
  width: 140px;
}

nav ul li {
  display: inline-block;
  list-style: none;
  margin: 10px 20px;
}

nav ul li a{
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  position: relative;
  font-weight: 500;
}

nav ul li a::after{
  content: '';
  width: 0;
  height: 3px;
  background: #ff004f;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.5s;
}

nav ul li a:hover::after{
  width: 100%;
}

.header-text{
  margin-top: 20%;
  font-size: 30px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.header-text h1{
  font-size: 60px;
  margin-top: 20px;
  line-height: 1.2;
}

.header-text h1 span{
  color: #ff004f;
}

.header-text p {
  font-size: 24px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  border: 2px solid #ff004f;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn:hover {
  background: #ff004f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 0, 79, 0.2);
}

.btn-secondary {
  background: #ff004f;
}

.btn-secondary:hover {
  background: transparent;
}

/* About Section */
#about{
  padding: 80px 0;
  color: #ababab;
  background: #121212;
}

.row{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.about-col-1{
  flex-basis: 35%;
}

.about-col-1 img{
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 0, 79, 0.2);
}

.about-col-2{
  flex-basis: 60%;
}

.sub-title{
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.about-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.tab-titles{
  display: flex;
  margin: 20px 0 40px;
  gap: 20px;
}

.tab-links{
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  color: #ababab;
  transition: color 0.3s;
}

.tab-links:hover {
  color: #fff;
}

.tab-links.active-link {
  color: #ff004f;
}

.tab-links::after{
  content: "";
  width: 0;
  height: 3px;
  background: #ff004f;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.5s;
}

.tab-links.active-link::after{
  width: 50%;
}

.tab-contents ul li{
  list-style: none;
  margin: 15px 0;
  position: relative;
  padding-left: 20px;
}

.tab-contents ul li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: #ff004f;
}

.tab-contents ul li span{
  color: #ff004f;
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}

.tab-contents{
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-contents.active-tab{
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Services Section */
#services{
  padding: 80px 0;
  background: #080808;
}

.services-list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 40px;
  margin-top: 50px;
}

.service-card{
  background: #121212;
  padding: 40px;
  border-radius: 10px;
  transition: all 0.5s ease;
  border: 1px solid #262626;
}

.service-card:hover{
  background: #1a1a1a;
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 0, 79, 0.1);
  border-color: #ff004f;
}

.service-card i{
  font-size: 50px;
  margin-bottom: 30px;
  color: #ff004f;
}

.service-card h2{
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.service-card p {
  color: #ababab;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  color: #ff004f !important;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
}

.service-link:hover {
  color: #fff !important;
  gap: 10px;
}

/* Portfolio Section */
#portfolio{
  padding: 80px 0;
  background: #121212;
}

.work-list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 30px;
  margin-top: 50px;
}

.work{
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  height: 300px;
}

.work img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: transform 0.5s;
}

.layer{
  width: 100%;
  height: 0;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(255, 0, 79, 0.7));
  border-radius: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: height 0.5s;
}

.layer h3{
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 22px;
  color: #fff;
}

.layer p {
  color: #e0e0e0;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.project-links {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.project-link:hover {
  color: #ff004f;
}

.project-link i {
  font-size: 16px;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.tech-stack span {
  background: rgba(255, 0, 79, 0.2);
  color: #00ccff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.work:hover img{
  transform: scale(1.05);
}

.work:hover .layer{
  height: 100%;
}

.view-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 50px auto 0;
}

/* Contact Section */
#contact{
  padding: 80px 0 30px;
  background: #080808;
}

.contact-left{
  flex-basis: 35%;
}

.contact-right{
  flex-basis: 60%;
}

.contact-left p{
  margin-top: 30px;
  display: flex;
  align-items: center;
  color: #e0e0e0;
}

.contact-left p i{
  color: #ff004f;
  margin-right: 15px;
  font-size: 25px;
}

.social-icons{
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.social-icons a{
  font-size: 30px;
  color: #ababab;
  transition: all 0.3s;
}

.social-icons a:hover{
  color: #ff004f;
  transform: translateY(-5px);
}

.btn.btn2{
  padding: 12px 30px;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-right form{
  width: 100%;
}

form input, form textarea{
  width: 100%;
  border: 1px solid #262626;
  outline: none;
  background: #121212;
  padding: 15px;
  margin: 15px 0;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  transition: all 0.3s;
}

form input:focus, form textarea:focus {
  border-color: #ff004f;
}

.copyright{
  width: 100%;
  text-align: center;
  padding: 25px 0;
  background: #121212;
  font-weight: 300;
  margin-top: 50px;
  color: #ababab;
}

.copyright i{
  color: #ff004f;
  margin: 0 5px;
}



@media (min-width: 768px) { /* Adjust breakpoint as needed */
  .fa-solid.fa-circle-xmark,
  .fa-solid.fa-bars {
      display: none;
  }
}



/* Media Queries */
@media only screen and (max-width: 768px){
  #header{
      background-image: url(/img/WhatsApp\ Image\ 2025-02-22\ at\ 13.27.40_13d22dac.jpg);
  }

  .header-text{
      margin-top: 50%;
      font-size: 16px;
  }

 
  
  .header-text h1{
      font-size: 36px;
  }
  
  .sub-title{
      font-size: 36px;
  }
  
  nav .fa-solid{
      display: block;
      font-size: 25px;
      color: #fff;
  }
  
  nav ul{
      background: #121212;
      position: fixed;
      top: 0;
      right: -200px;
      width: 200px;
      height: 100vh;
      padding-top: 50px;
      z-index: 2;
      transition: right 0.5s;
  }
  
  nav ul li{
      display: block;
      margin: 25px;
  }
  
  nav ul .fa-solid{
      position: absolute;
      top: 25px;
      left: 25px;
      cursor: pointer;
  }
  
  .about-col-1, .about-col-2{
      flex-basis: 100%;
  }
  
  .about-col-1{
      margin-bottom: 30px;
  }
  
  .tab-links{
      font-size: 16px;
  }
  
  .contact-left, .contact-right{
      flex-basis: 100%;
  }
  
  .copyright{
      font-size: 14px;
  }
  
  .cta-buttons {
      flex-direction: column;
      gap: 15px;
  }
  
  .btn {
      width: 100%;
      text-align: center;
  }
}

@media only screen and (max-width: 480px){
  .header-text{
      margin-top: 70%;
  }
  
  .header-text h1{
      font-size: 28px;
  }
  
  .sub-title{
      font-size: 28px;
  }
  
  .services-list, .work-list{
      grid-template-columns: 1fr;
  }

  

}