/* Reset & Overflow Fix */
* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  /* Color Variables */
  :root {
    --primary-teal: #00a8a8;
    --secondary-yellow: #ffda2d;
    --light-grey: #f5f5f5;
    --dark-text: #333;
    --white: #fff;
  }
  
  /* Top Contact Info */
  @font-face {
    font-family: glacial-r;
    src: url(Fonts/glacial-indifference/GlacialIndifference-Regular.otf);
  }
  @font-face {
    font-family: league-r;
    src: url(Fonts/league-spartan/LeagueSpartan-Bold.otf);
  }
  
  .contact-info {
    font-family: glacial-r;
    font-size: 16px;
    color: #4d4d4d;
    gap: 30px;
    padding: 10px;
  }
  
  /* Separator Line */
  .separator-line {
    border-top: 1px solid #000;
    opacity: 0.15;
    margin: 0;
  }
  
  /* Navbar */
  .logo {
    width: 100px;
  }
  .brand-name {
    font-family: glacial-r;
    font-size: 22px;
    color: #000;
  }
  .navbar-nav .nav-link {
    font-family: glacial-r;
    font-size: 18px;
    color: #4d4d4d;
    margin: 0 10px;
  }
  .navbar-nav .nav-link:hover {
    color: var(--primary-teal);
  }
  .btn-teal {
    font-family: glacial-r;
    background-color: var(--primary-teal) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 4px 24px !important;
    font-size: 18px !important;
    margin-left: 20px;
  }
  .btn-teal:hover {
    background-color: #00796b !important;
  }
  
  /* Page Title */
  .page-title-section {
    padding: 60px 0;
    text-align: center;
  }
  .page-title-section h1 {
    font-family: league-r;
    font-size: 38px;
    color: #4d4d4d;
  }
  
  /* Product Grid Section */
  .product-grid-section {
    background: var(--light-grey);
    padding: 40px 0;
  }
  .section-heading {
    font-family: league-r;
    font-size: 38px;
    text-align: center;
    color: #4d4d4d;
    margin-bottom: 10px;
  }
  .section-pa {
    font-family: glacial-r;
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #000;
  }
  
  /* Product Card */
  .product-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .3s, box-shadow .3s;
  }
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
  }
  .product-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
  }
  .product-image img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }
.section-description{
   font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 10px auto 40px;
  text-align: center;
  line-height: 1.6;
  font-family: glacial-r;
}  
  /* Reusable Container */
  .container-contact {
    width: 100%;
    max-width: 1200px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  
  /* Footer starts here */
  .perfection-section {
    background-color: #857F6D;
    padding: 80px 0;
    color: white;
  }
  
  .section1-title, .contact-title {
    font-family: league-r;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
  }
  
  .contact-title {
    margin-top: 15px;
    margin-left: 100px;
  }
  
  .section1-text {
    font-family: glacial-r;
    font-size: 18px;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.6;
  }
  
  .contact-info {
    border-left: 2px solid rgba(255, 255, 255, 0.4);
    padding-left: 40px;
  }
  
  .contact-details {
    list-style: none;
    padding: 0;
    margin-left: 100px;
    text-align: left;
  }
  
  .contact-details li {
    font-family: glacial-r;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  .contact-details i {
    font-size: 18px;
    color: #ffffff;
    width: 24px;
    text-align: left;
  }
  
  /* Fix row spacing */
  .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .row {
      flex-direction: column;
      text-align: center;
    }
  
    .contact-title {
      text-align: center;
      margin: 0px;
    }
  
    .text-content {
      margin-bottom: 30px;
    }
  
    .contact-details li {
      text-align: center;
      margin: 10px 0px;
    }
  
    .contact-info {
      border-left: none;
      padding-left: 0;
      margin-top: 20px;
    }
  
    .contact-details {
      margin-left: 0px;
    }
  
    .contact-details li {
      text-align: left;
      margin-left: 30px;
    }
  }
  
  /* Footer section */
  .footer {
    font-family: glacial-r;
    padding: 20px 0;
    background-color: white;
    font-size: 14px;
  }
  
  .footer p {
    margin: 0;
    color: black;
  }
  