   /* Base Styles */
   body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-container {
    display: inline-flex;
    align-items: center;
}

.logo-img {
    height: 200px;
    margin-right: 20px;
}

.logo-text {
    font-size: 50px;
    color: #000;
    font-weight: bold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.tattoo-text {
    color: rgb(4, 4, 4);
    font-weight: bold;
    font-size: 50px;
}

.menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu ul li {
    margin: 0 15px;
}

.menu ul li a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: bold;
}

.menu ul li a:hover {
    color: #1905f9;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .logo-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-top: 20px;
    }

    .menu ul li {
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 200px;
    }

    .logo-text {
        font-size: 60px;
    }

    .tattoo-text {
        font-size: 60px;
    }

    .menu ul li a {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    header {
        padding: 10px 0;
    }

    .logo-img {
        height: 200px;
    }

    .logo-text {
        font-size: 40px;
    }

    .tattoo-text {
        font-size: 40px;
    }

    .menu ul {
        align-items: center;
    }

    .menu ul li {
        margin: 5px 0;
    }

    .menu ul li a {
        font-size: 14px;
    }
}


/* Base Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.banner {
    position: relative;
    background-image: url(https://images.unsplash.com/photo-1565058379802-bbe93b2f703a?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
}

.overlay h1 {
    color: white;
    font-size: 3em;
    margin-bottom: 20px;
}

.details {
    color: #fff;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.2em;
    text-align: center;
}

.details h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.details p {
    font-size: 1.1em;
    line-height: 1.6em;
}

/* Social Links */
.social-links {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column; /* Stack the buttons vertically */
    gap: 15px; /* Add spacing between buttons */
}

.whatsapp-button,
.instagram-button {
    background-color: #fafafa;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover,
.instagram-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img,
.instagram-button img {
    width: 60px;
    height: 60px;
}

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
    .overlay h1 {
        font-size: 2.5em;
    }

    .details h2 {
        font-size: 1.8em;
    }

    .details p {
        font-size: 1.1em;
    }

    .whatsapp-button img,
    .instagram-button img {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 992px) {
    .overlay h1 {
        font-size: 2em;
    }

    .details h2 {
        font-size: 1.6em;
    }

    .details p {
        font-size: 1em;
    }

    .whatsapp-button img,
    .instagram-button img {
        width: 50px;
        height: 50px;
    }

    .social-links {
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 768px) {
    .overlay {
        padding: 40px;
    }

    .overlay h1 {
        font-size: 1.8em;
    }

    .details h2 {
        font-size: 1.4em;
    }

    .details p {
        font-size: 0.9em;
    }

    .whatsapp-button img,
    .instagram-button img {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .overlay {
        padding: 30px;
    }

    .overlay h1 {
        font-size: 1.5em;
    }

    .details h2 {
        font-size: 1.2em;
    }

    .details p {
        font-size: 0.85em;
    }

    .whatsapp-button img,
    .instagram-button img {
        width: 40px;
        height: 40px;
    }

    .social-links {
        bottom: 10px;
        right: 10px;
    }
}
/* Base Styles */
.section {
    padding: 60px 0;
    background-color: #f8f8f8; /* Add some background to separate sections */
}

.container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping of content for smaller screens */
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.text {
    max-width: 600px; /* Constrain text width for readability on larger screens */
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: left;
    line-height: 1.6em;
}

.text h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

.text p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333;
}

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
    .text h2 {
        font-size: 2.2em;
    }

    .text p {
        font-size: 1em;
    }
}

@media (max-width: 992px) {
    .container {
        flex-direction: column; /* Stack image and text vertically */
        text-align: center;
    }

    .text {
        max-width: 100%; /* Full width for text on smaller screens */
        padding: 0 20px; /* Add some padding for mobile readability */
    }

    .text h2 {
        font-size: 2em;
    }

    .text p {
        font-size: 1em;
    }

    .image {
        margin-bottom: 20px; /* Add space between image and text on smaller screens */
    }
}

@media (max-width: 768px) {
    .text h2 {
        font-size: 1.8em;
    }

    .text p {
        font-size: 0.95em;
    }

    .image img {
        width: 100%; /* Ensure image takes full width on mobile */
    }
}

@media (max-width: 576px) {
    .text h2 {
        font-size: 1.5em;
    }

    .text p {
        font-size: 0.85em;
    }

    .image img {
        width: 100%; /* Ensure image is full-width for small screens */
    }

    .text {
        padding: 0 15px; /* Add more padding on mobile for readability */
    }
}
/* Base Styles */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }
  
  .row {
    display: flex;
    justify-content: space-between;
  }
  
  .image-section {
    position: relative;
    text-align: center;
  }
  
  .tattoo-image {
    width: 100%;
    height: auto;
  }
  
  .before-after-label {
    position: absolute;
    top: 10px;
    left: 10px;
  }
  
  .label-before,
  .label-after {
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
  }
  
  .before-image {
    width: 20%;
    height: auto;
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
  
  .why-choose-us {
    padding-left: 20px;
  }
  
  .why-choose-us h2 {
    font-size: 28px;
    font-weight: bold;
  }
  
  .why-choose-us h3 {
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
  }
  
  .why-list {
    list-style-type: none;
    padding: 0;
  }
  
  .why-list li {
    margin-bottom: 15px;
    font-size: 16px;
  }
  
  .why-list strong {
    font-weight: bold;
  }
  
/* Responsive Design */
@media (max-width: 992px) {
    .row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .image-section, .why-choose-us {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .before-image-wrapper {
        width: 35%; /* Larger for smaller screens */
    }

    .before-after-label {
        font-size: 0.9em;
    }
}
/* Base Styles */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-title {
    font-size: 2.5em;
    color: blue;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.contact-description {
    color: #000;
    font-size: 2.2em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
    align-items: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.contact-info {
    font-size: 1.2em;
    color: #000;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-title {
        font-size: 2em;
    }

    .contact-description {
        font-size: 1.1em;
    }
}

/* Base Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
    color: white;
  }
  
  .brand {
    text-align: left;
  }
  
  .logo {
    font-size: 2em;
    color: white;
    text-decoration: none;
  }
  
  .logo span {
    color: #ff9800; /* Highlight the 'Tattoo' part */
  }
  
  .copyright {
    margin-top: 10px;
  }
  
  .map-container {
    text-align: center;
  }
  
  .footer-address {
    margin-top: 15px;
    font-size: 1.2em;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }
  
    .map-container iframe {
      width: 100%;
      height: 300px;
    }
  }
  
  @media (max-width: 768px) {
    .footer-address {
      font-size: 1em;
    }
  
    .logo {
      font-size: 1.8em;
    }
  }
  
