
 :root {
    --primary-color: #1d1d1f;
    --accent-color: #fe5000;
    --secondary-color:#061d41;
    --secondary-light-color:#f9fbff;
    --font-primary: 'Inter', 'Helvetica Neue', 'Helvetica World', helvetica, sans-serif;
}


.bg-secondary-color
{
  background: var(--secondary-light-color);
}

/* Base Styles */
body {
    font-family: var(--font-primary); 
    color: white;
    min-height: 100vh;
    line-height: 1.6;
}

.border-radius-18{ 
    border-radius: 18px;
}



/* ------------ Navigation ------------ */
    .navbar {
      background: linear-gradient(135deg, #1a1f2e 0%, #2a3040 100%);
      font-size: smaller;
      position: fixed;
      width: 100%;
      z-index: 10;
    }

    .nav-bar-img
    {
    width: 12%;
    }

    .navbar-sm-image
    {
      display: none;
    }

    .navbar-brand {
        font-size: 1.8rem;
        letter-spacing: 2px;
        font-weight: 700;
        color: white !important;
    }

    .nav-link {
        color: white !important;
        margin: 0 1rem;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .nav-link:hover {
        color: var(--accent-color) !important;
    }

/* Buttons */
.btn-contact {
    background-color: var(--accent-color);
    color: white;
    font-weight: bold;
    padding: 0.5rem 1.8rem;
    border-radius: 25px;
    border: none;
    transition: transform 0.3s ease;
    font-size: smaller;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(61, 106, 71, 0.3);
    color: white;
}

/* ------------ Hero Section  ------------ */
    .hero-section {
        padding: 6rem 0;  
        height: 100vh; 
        background-image: url(../images/hero-bg.png);
        background-size: cover;
      }

    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
        color: white;
    }

    .hero-content p {
        font-size: 1.4rem;
        margin-bottom: 2.5rem;
        color: var(--accent-color);
        font-weight: 500;
        letter-spacing: 1px;
    }

/* ------------  About Section - New Styles ------------  */
    .about-section {
        padding: 5rem 0;
        background: #ffffff;
        position: relative;
        margin-top: 1rem;
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
    }

    .about-section.fade-in {
        opacity: 1;
    }

    .about-card {
        background-color: #f5f5f4;
        border-radius: 1rem;
        padding: 2rem;
        height: 100%;
        transition: transform 0.3s ease;
    }

    .about-card h3 {
        color: #1d1d1f;
        font-size: 1.75rem;
        font-weight: 600;
        margin-bottom: 1rem;
    } 

    .about-card p {
        color: #666;
        font-size: 1rem;
        line-height: 1.6;
    }

    .mission-list {
        list-style: none;
        padding-left: 0;
        margin: 0;
    } 

    .mission-list li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.75rem;
        color: #666;
        font-size: 1rem;
        line-height: 1.6;
    }

    .mission-list li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: var(--accent-color);
        font-size: 1.2rem;
        line-height: 1.5;
        font-weight: bold;
    }

    .about-card .icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.5rem;
    }

    .quality-card {
        background:var(--accent-color);
        color: white;
    }

    .quality-card h3, .quality-card p {
        color: white;
    }

    .masonry-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(200px, auto);
        gap: 1.5rem;
        padding: 2rem;
    }

    @media (max-width: 992px) {
        .masonry-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .masonry-grid {
            grid-template-columns: 1fr;
        }
    }
 

/* Utilities */
.z-2 {
    position: relative;
    z-index: 2;
}

.service-section {
    padding: 5rem 0;
    background: #fff;
    position: relative;
    margin-top: 1rem; 
    transition: opacity 0.8s ease-in-out;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    background: var(--secondary-color);
}

.service-icon {
    width: 50px;
    height: 50px;
    color:#fff;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: white;
}

.service-title {
    color: #2d3436;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-description {
    color: #636e72;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
 

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}


.image-section {
    padding: 80px 0 40px;
}

.image-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #7a401e;
    line-height: 1;
    margin-bottom: 20px;
}

.image-text p {
    font-size: 1.2rem;
    color: #3d2c21;
}

.showcase {
    background-color: #d1d1d138;
    border-radius: 1rem;
    padding: 45px 27px;
    position: relative;
    overflow: hidden;
}

.showcase-title { 
      font-size: 42px; 
      color: #1d1d1d; 
      text-align: center; 
}

.statement-text {
    font-size: 0.9rem;
    max-width: 200px;
    margin-bottom: 30px;
    color: #ddd;
}

.jewelry-card {
    background-color: #e8d6c9;
    border-radius: 25px;
    overflow: hidden;
    height: 320px;
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.3s ease;
}

.jewelry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jewelry-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%; /* Adjust height for more or less fade */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

.jewelry-card:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.jewelry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
.jewelry-card img ::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%; /* Adjust as needed */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

.jewelry-name {
    position: absolute;
    bottom: 15px;
    left: 13px;
    color: #f8f9fa;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.center-card {
    transform: scale(1.05);
    z-index: 1;
    margin-top: -20px;
}

.category-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
}

.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background-color: #fff;
    color: #c19a79;
}


.about-card:hover {
    background-color: orange;
    color: white;
}

.about-card:hover h3,
.about-card:hover p,
.about-card:hover li {
    color: white;
}



/* Extracted color from .quality-card */
.about-card:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Ensure text changes to white for readability */
.about-card:hover h3,
.about-card:hover p,
.about-card:hover li {
    color: white;
}

/* Remove background color from the third card */
.quality-card {
    background-color: #f5f5f4; /* Same as the default .about-card */
    color: #1d1d1f; /* Reset text color */
}

/* Ensure text inside the third card is visible */
.quality-card h3, .quality-card p, .quality-card li {
    color: #666;
}


 
/* ------------  Team  ------------ */

    .team-section {
        padding: 80px 0;
    }

    .team-sm-image
    {
      display: none;
    }

    .section-title {
        margin-bottom: 40px;
        color: var(--primary-color);
    }

    .section-title h2 {
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--primary-color);
    }

    h3 { 
        color: var(--primary-color);
    }

    h4 { 
        color: var(--primary-color);
    }

    h5 { 
        color: var(--primary-color);
    }

    .team-member-img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .role-badge {
        background-color: var(--accent-color);
        padding: 6px 12px;
        border-radius: 8px;
        font-size: 15px;
        color: #fff;
        display: inline-block;
        margin-bottom: 15px;
    }

    .experience-list {
        list-style: none;
        padding-left: 0;
        color: var(--primary-color);
    }

    .experience-list li {
        margin-bottom: 12px;
        display: flex;
        align-items: start;
    }

    .experience-list li i {
        margin-right: 10px; 
        margin-top: 4px
    }

/*------------- Call to action *------------- */

      .contact-section {
          padding: 5rem 0; 
          margin-top: 1rem; 
          transition: opacity 0.8s ease-in-out;
      }

      .heading-badge {
          background-color: #fff;
          color: #dc6b4f;
          font-size: 14px;
          padding: 8px 20px;
          border-radius: 25px;
          box-shadow: 0 2px 15px rgba(0,0,0,0.08);
          display: inline-block;
          margin-bottom: 20px;
      }

      .section-title {
          font-size: 42px;
          margin-bottom: 20px;
          color: #333;
      }

      .section-title span {
          color: #dc6b4f;
      }

      .sub-heading {
          color: #666;
          margin-bottom: 50px; 
          margin-left: auto;
          margin-right: auto;
          font-weight: normal;
      }

      .contact-card {
          background: #fff;
          border-radius: 15px;
          padding: 30px;
          height: 100%;
          box-shadow: 0 5px 20px rgba(0,0,0,0.05);
          transition: transform 0.3s ease;
      }

      .contact-card:hover {
          transform: translateY(-5px);
      }

      .contact-icon {
          width: 50px;
          height: 50px;
          background-color: #1a1b3d;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 20px;
      }

      .contact-icon i {
          color: #fff;
          font-size: 20px;
      }

      .contact-type {
          color: #1a1b3d;
          font-weight: 600;
          margin-bottom: 10px;
      }

      .contact-info {
          color: #dc6b4f;
          font-weight: 500;
          margin-bottom: 5px;
      }

      .contact-detail {
          color: #666;
          font-size: 14px;
          margin: 0;
      }

/* ------------ Footer ------------ */
      .footer {
          padding: 4rem 0;
          background-color: var(--primary-color);
      }

      .footer-logo {
          width: 70% !important;
      }

      .footer h5 {
          font-weight: 600;
          margin-bottom: 1.5rem;
      }

      .footer ul {
          list-style: none;
          padding: 0;
      }

      .footer ul li {
          margin-bottom: 0.75rem;
          color: #6c757d;
      }

      .footer ul li a {
          color: #6c757d;
          text-decoration: none;
          transition: color 0.3s;
      }

      .footer ul li a:hover {
          color: var(--accent-color);
      }

      .social-icons a {
          margin-left: 1rem;
          color: #6c757d;
          text-decoration: none;
      }

      .copyright {
          color: #6c757d;
          font-size: 0.9rem;
      }

/* ------------ Responsiveness ------------ */

@media screen and (max-width: 991px) {
  .navbar {
   background: #fff;
  }

  .navbar-sm-image
  {
    display: block;
  }

  .navbar-md-image
  {
    display: none;
  }

  .nav-link {
    color: #6c757d !important;
  }

  .navbar-toggler
  {
    border: none!important;
    font-size: 12px!important;
    color: var(--secondary-color)!important;
  }

  .nav-bar-img {
    width: 33%;
  }

  .team-md-image
  {
    display: none;
  }

  .team-sm-image
  {
    display: block;
  }

  .role-badge
  {
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
    display: block;
  }
  
  .hero-section
  {
    text-align: center;
    height: 100vh;
  }

  .hero-content h1 { 
    line-height: 43px;
  }

}

@media screen and (max-width: 768px) {
  .footer-logo {
    width: 30% !important;  
  }

  .hero-content h1 {
    font-size: 20px;
  } 
 
}

@media screen and (max-width: 480px) {
  .footer-logo {
    width: 55% !important;  
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 5px; 
}

/* Track */
::-webkit-scrollbar-track {
    background: #f0f0f0;   
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #1a1f2e 0%, #2a3040 100%)
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color)  
}