* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
  color: #333;
}

section {
  padding: 100px 10%;
}

.title h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.logo {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  background: transparent; /* Transparent logo background */
}

.navigation {
  display: flex;
  list-style: none;
}

.navigation li {
  margin-left: 30px;
  position: relative;
}

.navigation li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  padding: 5px 0;
  position: relative;
  transition: 0.3s;
}

.navigation li a::after {
  content: '';
  height: 2px;
  width: 0;
  background: #e91e63;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.navigation li a:hover::after {
  width: 100%;
}

.toggle {
  display: none;
}

.banner {
  height: 100vh;
  background: url('images/banner.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 0 10%;
  color: #000;
}

.banner .content {
  max-width: 600px;
}

.banner h2 {
  font-size: 50px;
  margin-bottom: 20px;
  color: #000; /* black homepage text */
}

.banner h2 span {
  color: #e91e63;
}

.banner p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #000; /* black subtext */
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 5px;
}

.btn:hover {
  background: #e91e63;
  color: #fff;
}

/* About Section */
.about .content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.about .imgBox {
  flex: 1;
  min-width: 300px;
}

.about .imgBox img {
  width: 100%;
  border-radius: 10px;
}

.about .textBox {
  flex: 2;
}

.about .textBox h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.about .textBox p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.tab-titles {
  display: flex;
  margin-bottom: 20px;
}

.tab-links {
  margin-right: 20px;
  cursor: pointer;
  position: relative;
  font-weight: 500;
}

.tab-links::after {
  content: '';
  height: 2px;
  width: 0;
  background: #e91e63;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.tab-links.active-link::after {
  width: 100%;
}

.tab-contents {
  display: none;
}

.tab-contents.active-tab {
  display: block;
}

.tab-contents ul {
  list-style: none;
}

.tab-contents ul li {
  margin-bottom: 10px;
}

.tab-contents ul li span {
  color: #e91e63;
  font-weight: bold;
}

/* Services Section */
.services .content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.services .box {
  flex: 1;
  min-width: 250px;
  background: #f5f5f5;
  padding: 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 10px;
  overflow: hidden;
}

.services .box:hover {
  background: #e91e63;
  color: #fff;
}

.services .box img {
  max-width: 100%;
  height: 150px;
  display: block;
  margin: 0 auto 20px;
  object-fit: contain;
  border-radius: 8px;
}

.services .box h3 {
  margin: 20px 0;
}
/* Work Section */
.work .content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.workBox {
  flex: 1;
  min-width: 280px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.workBox .imgBox {
  position: relative;
  overflow: hidden;
}

.workBox img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.5s;
  display: block;
}

.workBox .overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(233, 30, 99, 0.9);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  text-align: center;
  padding: 20px;
}

.workBox:hover img {
  transform: scale(1.1);
}

.workBox:hover .overlay {
  bottom: 0;
}

.workBox .overlay h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
}

.workBox .overlay p {
  font-size: 14px;
  margin-bottom: 15px;
}

/* Link icon button - fixed layout */
.workBox .overlay a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  color: #e91e63;
  font-size: 22px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.workBox .overlay a:hover {
  background: #e91e63;
  color: #fff;
  transform: scale(1.1);
}



/* Contact Section */
.contact .content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contactInfo {
  flex: 1;
  min-width: 250px;
}

.contactInfo p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.contactInfo img {
  width: 20px; /* Made icons smaller */
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  transition: transform 0.3s;
}

/* Contact Details Icons (email & phone) */
.contactDetails img {
  width: 20px; /* Smaller size for email/phone icons */
  height: 20px;
  object-fit: contain;
}

/* Socials Icons */
.socials a {
  display: inline-block;
  margin-right: 15px;
  transition: color 0.3s, transform 0.3s;
  color: #333;
  font-size: 20px;
}

.socials a:hover {
  color: #e91e63;
  transform: scale(1.2);
}

/* If social icons use images or SVG */
.socials a img,
.socials a svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
  vertical-align: middle;
  transition: transform 0.3s;
}

/* Contact form styles */
.contactForm {
  flex: 2;
  min-width: 300px;
}

.contactForm .inputBox {
  position: relative;
  margin-bottom: 30px;
}

.contactForm input,
.contactForm textarea {
  width: 100%;
  padding: 10px;
  outline: none;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 16px;
  resize: none;
}

.contactForm span {
  position: absolute;
  left: 10px;
  top: 10px;
  pointer-events: none;
  transition: 0.3s;
  color: #000000;
}

.contactForm input:focus ~ span,
.contactForm textarea:focus ~ span,
.contactForm input:valid ~ span,
.contactForm textarea:valid ~ span {
  top: -15px;
  left: 5px;
  font-size: 12px;
  color: #e91e63;
  background: Transparent; 
  padding: 0 5px;
}


/* General button style */
.btn, 
input.btn[type="submit"], 
button.btn {
  display: inline-block;
  padding: 10px 25px;
  background: #000;       
  color: #fff;            
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.btn:hover, 
input.btn[type="submit"]:hover, 
button.btn:hover {
  background: #e91e63;    
  color: #fff;            
}


/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #eee;
  color: #555;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .about .content,
  .contact .content {
    flex-direction: column;
  }

  .navigation {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 10%;
    background: #fff;
    width: 200px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .navigation.active {
    display: flex;
  }

  .toggle {
    display: block;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: url('images/menu.png') no-repeat center/contain;
  }
}
