* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  
/* HEADER */

/* HEADER */
/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  z-index: 9999;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
  max-width: 100%;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}
ul.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 0px;
  padding-right: 0px;
}

.header-logo {
  width: 500px;
}

.header-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}
.mobile-category {
  position: relative;
}

.mobile-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: -200px; /* adjust as needed */
  background-color: rgba(0, 0, 0, 0.7); /* black transparent background */
  padding: 10px;
  border-radius: 5px;
  width: 180px; /* adjust width if needed */
}

.mobile-submenu a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 5px 0;
  font-size: 25px;
}

.mobile-category:hover .mobile-submenu {
  display: block;
}

.header-right {
  width: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.header-top-info {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.header-info-block {
  margin-left: 2.5rem;
  text-align: right;
}

.header-info-title {
  color: #fff;
  font-weight: 600;
}

.header-info-sub {
  color: #ccc;
  font-size: 0.875rem;
}

.header-main-nav .header-nav-list {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2rem;
  
}

.header-main-nav .header-nav-list a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.header-main-nav .header-nav-list a:hover {
  color: #ccc;
}
.header-mobile-menu-button {
  display: none;
  position: fixed; /* 🔥 Instead of absolute */
  top: 0.5rem;     /* Adjust as needed */
  right: 1.5rem;   /* Adjust as needed */
  z-index: 100;    /* Higher than header (your header is z-index 50) */
}

  
  .header-mobile-menu-button button {
    background: transparent;
    /* border: 2px solid #fff; */
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 0.5rem;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
  }
  
  .header-mobile-menu {
    display: none;
    background: #111;
    padding: 1rem;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    border-radius: 8px;
  }
  
  .header-mobile-menu.open {
    display: block;
  }
  
  .header-mobile-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid #333;
}

.header-mobile-menu a:last-child {
  border-bottom: none;
}
 /* General button styling */
.category-toggle,
#mobile-procedures-btn,
#about-procedures-btn,
.about-toggle,
#intimate-procedures-btn,
#transform-procedures-btn,#blog,#req,#cosmetic-procedures-btn {
  background: transparent;
  color: #ffffff;
  border: none;
  padding: 10px 10px;
  /* border-radius: 5px; */
  font-size: 16px;
  text-align: left;
  border-bottom: none;
  width: 100%;
}


/* Mobile dropdown wrapper */
.header-mobile-menu {
  background-color: #000; /* assuming black background */
  padding: 10px;
}

/* Submenu container */
.mobile-categories,
.mobile-submenu {
  padding-left: 10px;
  padding-top: 5px;
  text-align: left;
  padding-bottom: 5px;
}
 /* Submenu item links */
 .mobile-submenu a,
 .about-toggle a {
   display: block;
   padding: 10px 0;
   color: #ffffff;
   text-decoration: none;
   font-size: 15px;
   /* border-bottom: 1px solid #444;  */
 }
 
 .mobile-submenu a:last-child,
 .about-toggle a:last-child {
   border-bottom: none; /* remove line after last item */
 }
 
 /* Optional: Hover effect for better UX */
 .mobile-submenu a:hover,
 .about-toggle a:hover {
   background-color: #1a1a1a;
   padding-left: 5px;
   transition: 0.3s;
 }
 
/* RESPONSIVE */
@media (max-width: 768px) {
  body,html{
    overflow-x: hidden;
  }
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .header-container {
    justify-content: space-between;
  }

  .header-right {
    display: none;
  }

  .header-mobile-menu-button {
    display: block;
  }
}




.visible {
  opacity: 1;
  z-index: 1;
}

.hidden {
  z-index: 0;
}


.top-bar {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 10px;
}

.top-left {
    display: flex;
    gap: 40px;
}

.top-right {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}

.right-pair {
    display: flex;
    gap: 40px;
}

.top-column {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.align-right {
    text-align: right;
}

.navbar {
  display: flex;
  justify-content: flex-end; /* aligns navbar content to the right */
  align-items: center;
  padding: 1rem 0;
  z-index: 100000;
  /* position: fixed; */
}
.navbar,
.top-bar {
position: relative;
z-index: 10;
}
/* Base styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  padding: 0px;
  /* background-color: rgba(0, 0, 0, 0.85); */

}

.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
  min-width: 200px;
  padding: 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  list-style: none;
  position: relative;
  padding: 8px;
  background-color: rgba(0, 0, 0, 0.85);

}

.dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.85);
}



.dropdown-item:hover .submenu {
  display: block;
}

.submenu li {
  padding: 3px;
}

.submenu li:hover {
  background-color: rgba(0, 0, 0, 0.85);
}

.submenu {
  
  display: none;
  position: absolute;
  top: 0;
  left: 100%; /* Current setting puts it just next to the menu */
  margin-left: 10px; /* ✅ Add this line to add space */
  background-color: rgba(0, 0, 0, 0.85);
  padding: 10px;
  border-radius: 5px;
  min-width: 180px;
  z-index: 1000;
}

.submenu a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 8px 12px;
}

.submenu a:hover {
  background-color: rgba(43, 41, 41, 0.1);
  border-radius: 3px;
}

.logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 500;
}


@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }

  .header-container {
    justify-content: space-between;
  }

  .header-right {
    display: none;
  }

  .header-mobile-menu-button {
    display: block;
  }

  /* Header */
.header {
  padding: 10px 0;
  width: 100%;
}

.header-container {
  padding-left: 20px;
  padding-right: 20px;

}

.header-wrapper {
  flex-direction: row; /* Keep logo and nav on the same row */
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  width: auto;
}

.header-logo-img {
  height: 60px;
}

.header-right {
  align-items: flex-start;
  width: 100%;
}

.header-top-info {
  display: none;
}

.header-info-block {
  margin-left: 0;
  margin-top: 8px;
  text-align: left;
}

/* Navigation */
.header-main-nav {
  display: none;
}

.header-mobile-menu-button {
  display: block;
  margin-top: 10px;
}

.header-mobile-menu.open {
  display: block;
}

    .nav-links {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
  }
}
.dropdown-toggle
{
  color: white;
}
.dropdown-item
{
  color: white;
}
/* end */


  
  .logo img {
  height: 60px;
  }
        a{
          text-decoration: none;
        }
    /* Container */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    
    /* Hero Section */
    .hero {
      background: url('./img/melbourne-city-skyline-twilight-australia.jpg') no-repeat center center/cover;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-content {
      text-align: center;

    }
    .hero-content h1{
      color: white;
      font-size: 60px;
      
    }
    .hero-heading-text {
      color: white;
      font-size: 4rem;
      font-weight: bold;
      line-height: 1.2;
      animation: fade-in 1s ease-in-out;
    }
  
    /* Container */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }
  /* RESPONSIVE */
  @media (max-width: 768px) {
    body,html{
      overflow-x: hidden;
    }
    .desktop-only {
      display: none;
    }
  
    .mobile-only {
      display: block;
    }
  
    .header-container {
      justify-content: space-between;
    }
  
    .header-right {
      display: none;
    }
  
    .header-mobile-menu-button {
      display: block;
    }
  }
  
  @media (max-width: 768px) {
        /* Header */
  .header {
    padding: 10px 0;
    width: 100%;
  }
  
  .header-container {
    padding-left: 20px;
    padding-right: 20px;
  
  }
  
  .header-wrapper {
    flex-direction: row; /* Keep logo and nav on the same row */
    justify-content: space-between;
    align-items: center;
  }
  
  .header-logo {
    width: auto;
  }
  
  .header-logo-img {
    height: 60px;
  }
  
  .header-right {
    align-items: flex-start;
    width: 100%;
  }
  
  .header-top-info {
    display: none;
  }
  
  .header-info-block {
    margin-left: 0;
    margin-top: 8px;
    text-align: left;
  }
  
  /* Navigation */
  .header-main-nav {
    display: none;
  }
  
  .header-mobile-menu-button {
    display: block;
    margin-top: 10px;
  }
  
  .header-mobile-menu.open {
    display: block;
  }
}
  /* end */
  
/* Logos Section */
.logos {
    padding: 40px 0;
    background: black;
}

.logo-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo-grid img {
    max-height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-grid img:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-left, .nav-right {
        display: none;
    }
    
    .menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .logo-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
}
.default-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  /* <!-- ========== SECTION: contact-section ========== --> */
.contact-section {
    background-color: black;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    }
    .form-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1800px;
    background-color: black;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin-top: 30px;
    gap: 150px; 
    }
    
    .left-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 50%;
    }
    .left-image img {
    width: 100%;
    height: auto;
    max-height: 680px; /* maintain height ratio */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .form-container {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ccc;
    width: 1000px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    }
    
    /* Optional: Make responsive */
    @media (max-width: 768px) {
    .form-wrapper {
      flex-direction: column;
      padding: 20px;
    }
    
    .left-image,
    .form-container {
      width: 100%;
    }
    }
    
    .info-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap; /* for responsiveness */
    }
    
    .left-side {
    display: flex;
    flex-direction: column;
    max-width: 45%;
    }
    
    .logo-column img {
    max-width: 200px;
    height: auto;
    }
    
    .contact {
    margin-top: 15px;
    font-size: 25px;
    color: #333;
    }
    
    .right-side {
    max-width: 50%;
    }
    
    .map-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 8px;
    }
    
    
    .contact-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif; /* Clean, modern font */
    color: #333;
    }
    
    .form-container {
    width: 90%;
    max-width: 700px;
    /* background: #f9f9f9; */
    padding: 30px;
    /* border-radius: 10px; */
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
    }
    
    form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    }
    
    .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    }
    select {
    margin-top: 10px;
    padding: 5px;
    }
    
    .form-group {
    margin-bottom: 20px;
    }
    .hidden {
    display: none;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
    flex: 1;
    padding: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    }
    
    textarea {
    resize: vertical;
    height: 100px;
    font-family: 'Poppins', sans-serif; /* Change font for message */
    font-size: 15px;
    color: #333;
    }
    
    .phone-input {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    }
    
    .flag {
    font-size: 18px;
    }
    
    .question {
    margin-top: 10px;
    font-weight: 500;
    }
    
    label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    }
    
    button {
    background-color: #add8d8;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    }
    
    /* button:hover {
    background-color: #93caca;
    } */
    
    input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    font-size: 16px;
    }
    
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Montserrat:wght@400;600&display=swap');
/* FOOTER */
.foooter {
background-image: url('img/bg-light.jpg');
background-size: cover;
padding: 30px 20px;
font-family: sans-serif;
}

.footer-container {
max-width:100%;
margin: auto;
}

.info-section {
display: flex;
justify-content: space-between;
padding: 0 10px; /* You can reduce even further or set to 0 */
margin: 0;
line-height: 1.3;
}

.left-side {
display: flex;
flex-direction: column;
max-width: 40%;
padding: 0;
}

/* .logo-column img {
width: 800px; 
height: auto;
} */
strong{
font-size: 20px;
}
.contact p {
margin: 0;
font-size: 20px;
color: #333;
gap: 40;
margin-bottom: 5px;
margin-top: 20px;

}

.right-side iframe {
max-width: 100%;
border-radius: 10px;
}

.social-icons {
text-align: center;
margin: 20px 0;
}

.social-icons a img {
width: 30px;
margin: 0 10px;
vertical-align: middle;
}

/* Centering container */
.button-wrapper {
text-align: center; /* horizontal centering */
margin-top: 20px;
}

.footer-bottom {
text-align: center;
font-size: 14px;
color: #666;
}

.footer-bottom a {
color: #444;
text-decoration: none;
}

.footer-bottom .disclaimer {
margin-top: 10px;
font-size: 13px;
color: #888;
line-height: 1.4;
}

.logo-column1 {
    text-align: left;
    flex: 1;
}

.logo-column1 img {
    width: 350px; /* Increased size */
    height: auto;
    display: block;
  
}

.social-icons {
    margin: 30px 0;
}

.social-icons a {
    margin: 0 15px;
    display: inline-block;
}

.social-icons img {
    width: 35px;
    height: 35px;
}

.footer-bottom {
    margin-top: 25px;
    font-size: 16px; /* Increased font size */
    /* font-family: 'Montserrat', sans-serif; */
}

.footer-bottom a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.disclaimer {
    margin-top: 15px;
    font-size: 14px; /* Slightly larger for readability */
    color: gray;
}

 
.know-more-btn {
    display: inline-block;
    padding: 15px 30px;
    background-image: url('img/btn-gold.jpg'); /* your background image here */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    border: 2px solid white;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .know-more-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
  }
  
@media (max-width: 768px) {
    /* Header */
    .header {
      padding: 10px 0;
      width: 100%;
    }
    
    .header-container {
      padding-left: 20px;
      padding-right: 20px;
    
    }
    
    .header-wrapper {
      flex-direction: row; /* Keep logo and nav on the same row */
      justify-content: space-between;
      align-items: center;
    }
    
    .header-logo {
      width: auto;
    }
    
    .header-logo-img {
      height: 60px;
    }
    
    .header-right {
      align-items: flex-start;
      width: 100%;
    }
    
    .header-top-info {
      display: none;
    }
    
    .header-info-block {
      margin-left: 0;
      margin-top: 8px;
      text-align: left;
    }
    
    /* Navigation */
    .header-main-nav {
      display: none;
    }
    
    .header-mobile-menu-button {
      display: block;
      margin-top: 10px;
    }
    
    .header-mobile-menu.open {
      display: block;
    }
    
    /* Hero Section */
    .hero-container {
      height: 100vh;
      width: 100%;
      overflow: hidden;
    }
    
    .hero-image {
      object-fit: cover;
      height: 100vh;
      width: 100%;
    }
    
    .hero-content {
      padding: 1rem;
      text-align: center;
    }
    
    .hero-text {
      margin-top: 80px;
    }
    
    .hero-text h1 {
      font-size: 36px;
      font-weight: 700;
      line-height: 1.2;
    }
    
    .hero-text p {
      font-size: 20px;
      margin-top: 15px;
      line-height: 1.4;
    }
 
    
    .contact-section {
    padding: 40px 20px;
    }
    
    .form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    }
    
    .left-image {
    width: 0; /* Hide image on smaller screens */
    display: none;
    }
    
    .form-container {
    width: 100%;
    padding: 15px;
    height: 50vh; /* Reduced height for form */
    }
    
    .form-container h1 {
    font-size: 28px;
    text-align: center;
    }
    
    .form-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    }
    
    .form-row input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 10px;
    }
    
    .question {
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
    }
    
    .phone-input {
    display: flex;
    flex-direction: column;
    }
    
    textarea {
    width: 100%;
    height: 100px; /* Reduced height for textarea */
    padding: 10px;
    font-size: 16px;
    margin-top: 10px;
    }
    
    #file-upload-input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    }
    
    .know-more-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #d5a561;
    color: white;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    }
    
    .footer {
    padding: 20px 10px; /* Adjust padding for smaller screens */
    }
    
    .info-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    }
    
    .left-side {
    max-width: 100%;
    padding: 0;
    text-align: center;
    }
    
    .right-side {
    max-width: 100%;
    padding: 0;
    text-align: center;
    margin-top: 15px;
    }
    .right-side iframe {
    height: 200px; /* Adjust this value to whatever fits your design */
    }
    
    .social-icons {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    }
    
    .social-icons a img {
    width: 25px; /* Adjust icon size for mobile */
    margin: 0 8px;
    }
    
    /* Adjusting logo size */
    .logo-column1 img {
    width: 200px; /* Decrease logo size on mobile */
    }
    
    .footer-bottom {
    font-size: 14px; /* Slightly smaller font size */
    margin-top: 20px;
    }
    
    .footer-bottom a {
    font-size: 14px; /* Ensure text remains legible */
    }
    
    .disclaimer {
    font-size: 13px; /* Adjust disclaimer size for readability */
    }
    
    /* Centering button-wrapper */
    .button-wrapper {
    text-align: center;
    margin-top: 15px;
    }
    
    .logo-column1 {
    margin-bottom: 0; /* Remove bottom margin to reduce space below the logo */
    padding-bottom: 0; /* Remove any padding */
    }
    
    .contact {
    margin-top: 10px; /* Reduce space above the contact text */
    padding-top: 0; /* Ensure no additional padding */
    }
    
    .contact p {
    font-size: 14px; /* Optionally reduce the font size further for better fit */
    margin-top: 5px; 
    margin-bottom: 12px/* Reduce the space above the contact text */
    }
    }
    .container {
        max-width: 1300px;
        /* margin: 50px auto; */
        padding: 0 30px;
        margin-top: 50px;
        background-color: #fff;
        /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
        /* border-radius: 8px; */
      }
  
      .container h2 {
        color: #2a2a2a;
        border-bottom: 2px solid #ddd;
        padding-bottom: 8px;
        margin-top: 40px;
        font-size: 40px;
      }
  
      .container p {
        margin-bottom: 16px;
        margin-top: 30px;
        font-size: 20px;
        /* line-height: 4px; */
      }
      
.image-frame {
    position: relative;
    display: inline-block;
    padding: 15px; /* Creates space around the image for the rectangle to animate */
    z-index: 1;
  }
  
  .image-frame img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2; /* Keeps the image on top of the lines */
    border-radius: 4px;
    margin-top: 60px;
    margin-left: 70px;
  }
  
  /* Rectangle lines */
  .border-line {
    position: absolute;
    background-color: #d5a561;
    z-index: 1;
  }
  
  
  :root {
    --inset: 50px;
    --line-width: 6px;
  }
  
  /* Top Line */
  .top-line {
    top: var(--inset);
    left: var(--inset);
    height: var(--line-width);
    width: 0;
    animation: drawTop 1s forwards;
  }
  
  /* Left Line */
  .left-line {
    top: var(--inset);
    left: var(--inset);
    width: var(--line-width);
    height: 0;
    animation: drawLeft 1s forwards;
  }
  
  /* Bottom Line */
  .bottom-line {
    bottom: var(--inset);
    left: var(--inset);
    height: var(--line-width);
    width: 0;
    animation: drawBottom 1s forwards 1s;
  }
  
  /* Right Line */
  .right-line {
    top: var(--inset);
    right: var(--inset);
    width: var(--line-width);
    height: 0;
    animation: drawRight 1s forwards 1s;
  }
  
  /* Keyframes */
  @keyframes drawTop {
    from { width: 0; }
    to { width: calc(100% - 2 * var(--inset)); }
  }
  
  @keyframes drawLeft {
    from { height: 0; }
    to { height: calc(100% - 2 * var(--inset)); }
  }
  
  @keyframes drawBottom {
    from { width: 0; }
    to { width: calc(100% - 2 * var(--inset)); }
  }
  
  @keyframes drawRight {
    from { height: 0; }
    to { height: calc(100% - 2 * var(--inset)); }
  }
  