/* Base Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #c0c0c0;
    --text-color: #333333;
    --light-gray: #f3f4f6;
    --medium-gray: #9ca3af;
    --dark-gray: #4b5563;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --radius: 0.5rem;
    --dark-text-color: #333333;
    --gray-text-color: #666666;
    --primary-button-bg-color: #000000;
    --primary-button-text-color: #ffffff;
    --primary-button-hover-bg-color: #333333;
    --primary-button-hover-text-color: #ffffff;
    --button-padding-x: 2rem;
    --button-padding-y: 0.75rem;
    --font-family-heading: 'Playfair Display', serif;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Playfair Display', serif;;
    color: var(--text-color);
    line-height: 1.6;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .service-button-container {
    text-align: center;
    margin-top: 50px;
}

.service-button {
    background-color: #000;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    font-family: 'Playfair Display', serif;;
}

.service-button:hover {
    background-color: #333;
}
  .container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .min-h-screen {
    min-height: 100vh;
  }
  
  .bg-white {
    background-color: var(--white);
  }
  
  .bg-gray-100 {
    background-color: var(--light-gray);
  }
  
  .py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  
  /* Typography */
  .text-2xl {
    font-size: 1.5rem;
  }
  
  .font-bold {
    font-weight: 700;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
  }
  
  .title-underline {
    display: block;
    width: 5rem;
    height: 0.25rem;
    background-color: var(--primary-color);
    margin: 1rem auto 0;
  }
  
  /* Navigation */
  .navbar-logo {
    max-height: 50px; /* Adjust as needed */
    display: inline-block;
    vertical-align: middle;
  }

  nav {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 50;
  }
  
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-link {
    color: var(--white);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: var(--transition);
  }
  
  .nav-link:hover {
    color: var(--secondary-color);
  }
  
  .mobile-menu-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
  }
  
  .hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  /* New Hero Box */
  .hero-box-container {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 1.5rem;
  }
  
  .hero-box {
    border: 20px solid var(--primary-color);
    background-color: var(--white);
    padding: 2.5rem;
    text-align: center;
    width: 100%;
    max-width: 550px;
    height: auto;
    min-height: 550px; /* Set minimum height equal to width for square appearance */
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto; /* Allow scrolling if content exceeds height */
  }
  
  .hero-subtitle-small {
    padding-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    /* color: var(--primary-color); */
    color: #ffffff;
  }
  
  .hero-title-new {
    margin-bottom: 1.5rem;
    border-bottom: 8px solid var(--primary-color);
    padding-bottom: 1rem;
    font-size: 1.875rem;
    font-weight: 600;
    /* color: var(--dark-text-color); */
    color: #ffffff;
    font-family: var(--font-family-heading);
    line-height: 1.2;
  }
  
  .hero-text {
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.025em;
    /* color: var(--gray-text-color); */
    color: #ffffff;
  }
  
  .hero-button {
    display: inline-block;
    border: 1px solid var(--dark-text-color);
    background-color: var(--primary-button-bg-color);
    padding: var(--button-padding-y) var(--button-padding-x);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-button-text-color);
    text-decoration: none;
    transition: var(--transition);
  }
  
  .hero-button:hover {
    background-color: var(--primary-button-hover-bg-color);
    color: var(--primary-button-hover-text-color);
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
  }
  
  .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
  }
  
  .btn-primary:hover {
    background-color: #e5e5e5;
  }
  
  .btn-dark {
    background-color: var(--primary-color);
    color: var(--white);
  }
  
  .btn-dark:hover {
    background-color: #333333;
  }
  
  /* Services Section */
  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  /* Service Card Hover Effect */
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
  }
  
  .service-card:hover {
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); */
    transform: scale(1.10);
  }
  
  /* .service-card:hover::before {
    transform: scaleY(0.15);
  }
  
  .service-card:hover .service-title {
    color: var(--primary-color);
  }
  
  .service-card:hover .service-image {
    transform: scale(1.05);
  } */
  
  .service-image {
    position: relative;
    height: 12rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
    overflow: hidden;
    transition: transform 0.4s ease;
  }
  
  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
  }
  
  .service-description {
    color: var(--dark-gray);
  }
  
  /* About Section */
  .about-container {
    display: flex;
    flex-direction: column;
  }
  
  .about-image {
    position: relative;
    height: 24rem;
    margin-bottom: 2.5rem;
  }
  
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
  }
  
  .about-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .about-text {
    color: var(--dark-gray);
    margin-bottom: 1rem;
  }
  
  .about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
  }
  
  .badge {
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 0.875rem;
  }
  
  /* Testimonials */
  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  
  .testimonial-text {
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 1rem;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .author-image {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
  }
  
  .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author-name {
    font-weight: 600;
  }
  
  .author-title {
    font-size: 0.875rem;
    color: var(--medium-gray);
  }
  
  /* Contact Section */
  .contact-container {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group label {
    display: block;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    transition: var(--transition);
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
  }
  
  .contact-info {
    background-color: #1f2937;
    color: var(--white);
    padding: 2rem;
  }
  
  .info-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  .info-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .info-item {
    display: flex;
    align-items: flex-start;
  }
  
  .info-item svg {
    margin-right: 1rem;
    color: var(--medium-gray);
  }
  
  .item-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .item-text {
    color: var(--medium-gray);
  }
  
  .info-hours {
    margin-top: 1rem;
  }
  
  .info-social {
    margin-top: 1rem;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  
  .social-icon {
    color: var(--white);
    transition: var(--transition);
  }
  
  .social-icon:hover {
    color: var(--medium-gray);
  }
  
  /* Footer */
  .footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2.5rem 0;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
  }
  
  .footer-links a:hover {
    color: var(--medium-gray);
  }
  
  .footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--medium-gray);
  }
  
  /* Media Queries */
  @media (min-width: 768px) {
    .nav-links {
      display: flex;
    }
  
    .mobile-menu-btn {
      display: none;
    }
  
    .hero-box-container {
      justify-content: flex-start;
      padding-left: 6rem;
      width: 50%;
    }
  
    .hero-box {
      text-align: left;
      max-width: 500px;
      min-height: 500px; /* Keep square on tablet */
    }
  
    .hero-title-new {
      font-size: 2.25rem;
    }
  
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .about-container {
      flex-direction: row;
      align-items: center;
    }
  
    .about-image {
      width: 50%;
      margin-bottom: 0;
    }
  
    .about-content {
      width: 50%;
      padding-left: 3rem;
    }
  
    .testimonials-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .contact-container {
      flex-direction: row;
    }
  
    .contact-form {
      width: 50%;
    }
  
    .contact-info {
      width: 50%;
    }
  
    .footer-content {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .footer-links {
      flex-direction: row;
      gap: 2rem;
    }
  }
  
  /* Scroll to Top Button */
  #scrollToTopBtn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0.7); /* Black background with transparency */
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%; /* Make it circular */
    width: 50px; /* Fixed width */
    height: 50px; /* Fixed height */
    box-shadow: var(--shadow);
    transition: background-color 0.3s ease, opacity 0.3s ease;
  }
  
  #scrollToTopBtn:hover {
    background-color: rgba(0, 0, 0, 0.9); /* Darken on hover */
  }
  
  #scrollToTopBtn svg {
    width: 20px; /* Adjust icon size */
    height: 20px;
  }

  /* WhatsApp Button */
  #whatsappBtn {
    position: fixed;
    bottom: 20px; /* Initial position same as scroll-to-top */
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: rgba(37, 211, 102, 0.8); /* WhatsApp green with transparency */
    color: white;
    cursor: pointer;
    padding: 13px; /* Slightly smaller padding */
    border-radius: 50%;
    width: 50px; 
    height: 50px; 
    box-shadow: var(--shadow);
    transition: background-color 0.3s ease, opacity 0.3s ease;
    display: flex; /* Center icon */
    align-items: center; /* Center icon */
    justify-content: center; /* Center icon */
  }

  #whatsappBtn:hover {
    background-color: rgba(37, 211, 102, 1); /* Full opacity on hover */
  }

  #whatsappBtn svg {
    width: 24px; /* Adjust icon size if needed */
    height: 24px;
  }

  .whatsapp-shifted {
    bottom: 80px !important; /* Use !important to ensure override if needed, adjust value as necessary */
  }
  
  /* Dropdown Styles */
  .dropdown {
    position: relative;
    display: inline-block; /* Keep it inline with other nav links */
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: var(--radius); /* Use existing radius variable */
    /* margin-top: 0.5rem; Removed to prevent gap causing hover issues */
  }
  
  .dropdown-content a {
    color: var(--primary-color); /* Use primary color for text */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease; /* Smooth background transition */
  }
  
  .dropdown-content a:hover {
    background-color: #ddd; /* Light gray background on hover */
  }
  
  .dropdown:hover .dropdown-content {
    display: block; /* Show dropdown on hover */
  }
  
  /* Ensure dropdown button maintains nav-link styles */
  .dropbtn {
    /* Inherits styles from .nav-link */
  }
  
  @media (min-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  
    .hero-box {
      max-width: 550px;
      min-height: 550px; /* Keep square on desktop */
    }
  
    .hero-title-new {
      font-size: 2.25rem;
    }
  }
  
  @media (min-width: 1280px) {
    .hero-box-container {
      width: 40%;
    }
  }
