*{
    margin: 0;
    padding: 0;
    font-family: 'poppins',sans-serif;
    box-sizing: border-box;
    
}
body{
    background: #080808;
    color: #fff;
}
#header{
    width: 100%;
    height: 100vh;
    background-image: url(images/WhatsApp\ Image\ 2025-01-01\ at\ 16.15.39\ \(1\).jpeg);
    background-repeat: no-repeat;
    background-size: 28%;
    background-position: right;
    background-position-x: 90%;
    background-position-y: 50%;
}
.container{
    padding: 10px 10%;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo{
    width: 120;
}
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;
}
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;
}
.header-text h1{
    font-size: 60px;
    margin-top: 20px;

}
.header-text h1 span{
    color: #ff004f;
}

#about{
    padding: 80px 0;
    color: #ababab;
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-col-1{
    flex-basis: 35%;
}
.about-col-1 img{
    width: 100%;
    border-radius: 15px;
}
.about-col-2{
    flex-basis: 60%;
}


.sub-title{
    font-size: 60px;
    font-weight: 600;
    color: #fff;
}
.tab-titles{
    display: flex;
    margin: 20px 0 40px;
}
.tab-links{
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.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{
    margin: 10px 0;
    list-style: none;
}
.tab-contents ul li span{
    color: #b54769;
    font-size: 14px;
}
.tab-contents{
    display: none;
}
.tab-contents.active-tab{
    display: block;
}
#services {
  padding: 30px 0;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 40px;
  margin-top: 50px;
}

.services-list div {
  background: #262626;
  padding: 40px;
  font-size: 14px;
  font-weight: 300;
  border-radius: 10px;
  transition: 0.5s ease;
}

.services-list div i {
  font-size: 50px;
  margin-bottom: 30px;
  color: #ff004f;
}

.services-list div h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.services-list div a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  margin-top: 20px;
  display: inline-block;
}

.services-list div:hover {
  background: #ff004f;
  transform: translateY(-10px);
}


#portfolio {
  padding: 50px 0;
  background: #111;
}

.work-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.work {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.layer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0,0,0,0.6), #ff004f);
  color: #fff;
  opacity: 0;
  transition: 0.5s;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.work:hover img {
  transform: scale(1.1);
}

.work:hover .layer {
  opacity: 1;
}

.layer h3 {
  margin: 0;
}

.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 30px;
  background: #000000;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #e60045;
}



#contact {
  padding: 60px 0;
  background: #111;
}

.contact-left {
  flex-basis: 35%;
  color: #fff;
}

.contact-right {
  flex-basis: 60%;
}

.contact-left p {
  margin: 20px 0;
}

.contact-left i {
  color: #ff004f;
  margin-right: 15px;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  text-decoration: none;
  font-size: 20px;
  margin-right: 15px;
  color: #bbb;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #000000;
}

.btn2 {
  display: inline-block;
  background: #ff004f;
  color: #fff;
  padding: 10px 30px;
  margin-top: 30px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.contact-right form {
  display: flex;
  flex-direction: column;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  background: #222;
  color: white;
  border-radius: 6px;
}

form .btn2:hover {
  background: #e60045;
}
html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: #111;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 70px;
    left: 0;
    display: none;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    margin: 15px 0;
  }

  .header-text h1 {
    font-size: 36px;
  }

  .header-text {
    font-size: 22px;
    margin-top: 40%;
  }

  .about-col-1,
  .about-col-2,
  .contact-left,
  .contact-right {
    flex-basis: 100%;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .logo {
    width: 100px;
  }
}
.contact-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.icon-btn {
  font-size: 24px;
  color: white;
  transition: transform 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.icon-btn:hover {
  transform: scale(1.2);
}

.icon-btn:nth-child(1):hover {
  color: #0077b5; 
}

.icon-btn:nth-child(2):hover {
  color: #333; 
}

.icon-btn:nth-child(3):hover {
  color: #e1306c; 
}


/* Mobile Responsive Layout */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .contact-section {
    padding: 20px;
  }

  .contact-section input,
  .contact-section textarea {
    width: 100%;
    font-size: 16px;
  }

  .contact-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .icon-btn {
    font-size: 26px;
  }

  button[type="submit"] {
    width: 100%;
    font-size: 16px;
  }
}

/* Extra Small Devices (Phones <480px) */
@media (max-width: 480px) {
  nav ul {
    gap: 10px;
  }

  .contact-section {
    padding: 15px;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .icon-btn {
    font-size: 28px;
  }

  .contact-section input,
  .contact-section textarea {
    font-size: 15px;
  }

  button[type="submit"] {
    font-size: 15px;
  }
}



