* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }

  body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  /* Header and Navigation */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .logo {
    display: flex;
    align-items: center;
  }

  .logo img {
    height: 40px;
  }

  nav ul {
    display: flex;
    list-style: none;
  }

  nav ul li {
    margin-left: 2rem;
  }

  nav ul li a {
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
  }

  nav ul li a:hover {
    color: #0056b3;
  }

  .login-btn {
    background-color: #0056b3;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
  }

  .login-btn:hover {
    background-color: #003d7a;
  }
.carousel-item img{
    height: 500px;
    /* background-size: cover;
    background-position: center; */
    /* width: 100%; */
}
  /* Hero Section */
  .hero {
    height: 65vh;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5)
      ),
      url("/api/placeholder/1500/800");
    background-size: cover;
    background-position: center;
    color: white;
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; */
    /* padding: 0 10%; */
    position: relative;
  }

  .hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 1.2s ease-out;
  }

  .hero-btn {
    background-color: #0056b3;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    margin-top: 2rem;
    transition: background-color 0.3s;
    animation: fadeInUp 1.5s ease-out;
  }

  .hero-btn:hover {
    background-color: #003d7a;
  }

  /* Services Bar */
  .services-bar {
    display: flex;
    justify-content: space-around;
    background-color: white;
    padding: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: 8px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.8s ease-out;
  }

  .service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    transition: transform 0.3s;
  }

  .service-item:hover {
    transform: translateY(-5px);
  }

  .service-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0056b3;
  }

  /* Welcome Section */
  .welcome {
    text-align: center;
    padding: 5rem 10%;
  }

  .welcome h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
  }

  .welcome h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0056b3;
  }

  /* Leather Collection Grid */
  .leather-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 1rem; */
    /* padding: 0 5%; */
    margin-bottom: 5rem;
  }

  .leather-item {
    overflow: hidden;
    /* border-radius: 8px; */
    position: relative;
    height: 250px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .leather-item:hover {
    transform: scale(1.03);
  }

  .leather-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .leather-item:hover img {
    transform: scale(1.1);
  }

  /* Expert Section */
  .expert-section {
    text-align: center;
    padding: 5rem 10%;
    background-color: #f9f9f9;
  }

  .expert-section h2 {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
  }

  .expert-section h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #0056b3;
  }

  /* Services Grid */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem 5%;
  }

  .service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 2rem 1rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .service-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
  }

  .service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0056b3;
  }

  .service-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
  }

  .service-card .card-footer {
    margin-top: auto;
    font-size: 0.8rem;
    color: #999;
  }

  /* Order Procedure */
  .order-procedure {
    padding: 5rem 10%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
  }

  .procedure-title {
    flex: 1;
  }

  .procedure-title h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .procedure-steps {
    position: relative;
    flex: 2;
  }

  .step {
    display: flex;
    margin-bottom: 2rem;
    animation: fadeInRight 0.5s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
  }

  .step:nth-child(1) {
    animation-delay: 0.2s;
  }
  .step:nth-child(2) {
    animation-delay: 0.4s;
  }
  .step:nth-child(3) {
    animation-delay: 0.6s;
  }
  .step:nth-child(4) {
    animation-delay: 0.8s;
  }

  .step-number {
    background-color: #e6f0ff;
    color: #0056b3;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
  }

  .step-content {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
  }

  .step-content h3 {
    margin-bottom: 0.5rem;
    color: #0056b3;
  }

  /* Payment Terms */
  .payment-terms {
    background-color: #011e3d;
    color: white;
    padding: 5rem 10%;
  
    /*justify-content: space-between;*/
    
  }
.terms-cards{
      display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.bottom-terms{
    text-align:center;
    margin-top: 20px;
}
  .terms-card {
    background-color: #023059;
    padding: 2rem;
    border-radius: 8px;
  }

  .terms-card h3 {
    color: #4e9eff;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
  }

  .terms-card ul {
    list-style: none;
  }

  .terms-card ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
  }

  .terms-card ul li:before {
    content: "•";
    color: #4e9eff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 0.5em;
  }

  /* Footer */
  footer {
    background-color: #f9f9f9;
    padding: 3rem 10%;
    display: flex;
    justify-content: space-between;
  }

  .footer-column {
    flex: 1;
    margin-right: 2rem;
  }

  .footer-column:last-child {
    margin-right: 0;
  }

  .footer-column h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #333;
  }

  .footer-column ul {
    list-style: none;
  }

  .footer-column ul li {
    margin-bottom: 0.8rem;
  }

  .footer-column ul li a {
    color: #666;
    transition: color 0.3s;
  }

  .footer-column ul li a:hover {
    color: #0056b3;
  }

  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }

  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #0056b3;
    color: white;
    border-radius: 50%;
    transition: background-color 0.3s;
  }

  .social-icons a:hover {
    background-color: #003d7a;
  }

  .copyright {
    text-align: center;
    padding: 1.5rem 0;
    background-color: #f1f1f1;
    color: #666;
    font-size: 0.9rem;
  }

  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Scroll Reveal Animation */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }

  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  /* Responsive Design */
  @media (max-width: 1200px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 900px) {
    .leather-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .order-procedure {
      flex-direction: column;
    }
    .payment-terms {
      flex-direction: column;
    }
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
  }
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 1rem;
    }
    .product-grid {
      display: grid;
      grid-template-columns: repeat(1,1fr);
      row-gap: 20px;
    }
  
    .services-bar {
      flex-wrap: wrap;
      margin-top: 20px;
    }
    .service-item {
      width: 100%;
    }
    .services-grid {
      grid-template-columns: 1fr;
    }
    footer {
      flex-direction: column;
    }
    .footer-column {
      margin-right: 0;
      margin-bottom: 2rem;
    }
    .procedure-steps::before{
       visibility: hidden;
    }
  }
  @media (max-width: 576px) {
    .leather-grid {
      grid-template-columns: 1fr;
    }
    .hero h1 {
      font-size: 2rem;
    }
    .procedure-steps::before{
        visibility: hidden;
    }
    /* .product-grid {
      grid-template-columns: 1fr;
    } */
    .terms-cards{
        grid-template-columns: 1fr;
    }
  }
  .procedure-steps::before{
    content: '';
    display: inline-block;
    width: 2px;
    background-color: grey;
    height: 900px;
    left: 15px;
    top: 2px;
    position: absolute;
  }
  
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
  }


  .product-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 300px;
  }
  .product-card img{
    height: 100%;
  }
  .product-card:hover {
    transform: translateY(-5px);
  }
  /* Responsive view */
  @media (max-width: 1200px) {
    .about-container,
    .mission-container {
      flex-direction: column;
      padding: 0 2rem;
      row-gap: 20px;
    }

    .about-images {
      margin-right: 0;
      margin-bottom: 3rem;
      max-width: 600px;
    }

    .mission-card {
      margin-bottom: 2rem;
    }
  }
  @media (max-width: 768px) {
    .mission-container {
      flex-direction: column;
    }

    .mission-card {
      margin: 0 0 2rem 0;
    }
    .menu-toggle {
      display: block;
    }
  
    nav {
      display: none;
      width: 100%;
    }
  
    nav.active {
      display: block;
      position: fixed;
      top: 70px;
      right: 2px;
      /* left: 8px; */
      width: 100%;
      background-color: #fff;
    }
  
    nav ul {
        display: flex;
      flex-direction: column;
      padding: 1rem;
    }
  
    nav ul li {
      margin: 1rem 0;
    }

  }
  /* product tab */
  .tab {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    column-gap: 15px;
    /* border: 1px solid #ccc; */
    /* background-color: #f1f1f1; */
  }

  /* Style the buttons inside the tab */
  .tab button {
    background-color: inherit;
    /* float: left; */
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
  }

  /* Change background color of buttons on hover */
  .tab button:hover {
    border-bottom: 2px solid skyblue;
  }

  /* Create an active/current tablink class */
  .tab button.active {
    border-bottom: 2px solid skyblue;
  }

  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
  }
    /* About Section */
    .about-section {
      padding: 5rem 0;
      background-color: #f8f9fa;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .about-container {
      display: flex;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .about-images {
      flex: 1;
      position: relative;
      margin-right: 3rem;
    }

    .about-image-main {
      width: 100%;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .about-image-main img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }

    .about-image-main:hover img {
      transform: scale(1.05);
    }

    .about-image-overlay {
      position: absolute;
      width: 60%;
      bottom: -20%;
      right: -10%;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .about-image-overlay img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }

    .about-image-overlay:hover img {
      transform: scale(1.05);
    }

    .about-content {
      flex: 1;
      padding: 2rem 0;
    }

    .about-title {
      font-size: 2.5rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      color: #333;
    }

    .about-subtitle {
      font-size: 1.8rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
      color: #555;
    }

    .about-description {
      margin-bottom: 2rem;
      color: #666;
      line-height: 1.8;
    }

    .about-description p {
      margin-bottom: 1rem;
    }

    .join-btn {
      display: inline-flex;
      align-items: center;
      color: #0056b3;
      font-weight: 500;
      transition: all 0.3s;
      position: relative;
    }

    .join-btn::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #0056b3;
      transition: transform 0.3s;
      transform-origin: left;
    }

    .join-btn:hover {
      color: #003d7a;
    }

    .join-btn:hover::after {
      transform: scaleX(1.2);
      background-color: #003d7a;
    }

    .join-btn span {
      margin-right: 8px;
    }

    .join-btn i {
      transition: transform 0.3s;
    }

    .join-btn:hover i {
      transform: translateX(5px);
    }

    /* Mission Section */
    .mission-section {
      padding: 5rem 0;
      background-color: #222;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .mission-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("/api/placeholder/1500/800");
      background-size: cover;
      background-position: center;
      opacity: 0.3;
      z-index: 1;
    }

    .mission-container {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
    }

    .mission-card {
      flex: 1;
      padding: 2rem;
      background-color: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 8px;
      margin: 0 15px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .mission-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .mission-icon {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      display: inline-block;
    }

    .mission-title {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: white;
    }

    .mission-description {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
    }
    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    .fade-in {
      opacity: 0;
      animation: fadeIn 1s ease-out forwards;
    }

    .fade-in-delay-1 {
      animation-delay: 0.3s;
    }

    .fade-in-delay-2 {
      animation-delay: 0.6s;
    }

    .fade-in-delay-3 {
      animation-delay: 0.9s;
    }
    /*-------------------------------- 
            contact-us section  
    ----------------------------------*/
    .contact-section {
      padding: 50px 10%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .contact-heading {
      margin-bottom: 30px;
      font-size: 1.8rem;
      font-weight: normal;
    }

    .contact-container {
      display: flex;
      width: 100%;
      gap: 30px;
    }

    .map-container {
      flex: 1;
      height: 300px;
      border-radius: 5px;
      overflow: hidden;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .form-container {
      flex: 1;
    }

    .contact-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }

    .form-field {
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 4px;
    }

    .form-textarea {
      grid-column: span 2;
      height: 120px;
      resize: none;
    }

    .submit-btn {
      grid-column: span 2;
      background-color: #1a73e8;
      color: white;
      padding: 10px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100px;
    }

    .submit-btn svg {
      margin-left: 8px;
    }

    /* Contact Info */
    .contact-info {
      padding: 30px 10%;
      display: flex;
      justify-content: space-between;
    }

    .contact-card {
      display: flex;
      align-items: center;
    }

    .icon-circle {
      width: 40px;
      height: 40px;
      background-color: #1a73e8;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 15px;
    }

    .icon-circle svg {
      fill: white;
      width: 20px;
      height: 20px;
    }

    .contact-text {
      font-size: 14px;
      max-width: 300px;
    }

    /* Mission Section */
   
    /* Footer */
  

    @media (max-width: 768px) {
      .contact-container{
        flex-direction: column;
        gap: 20px;
      }

      .contact-form {
        grid-template-columns: 1fr;
      }

      .form-textarea {
        grid-column: span 1;
      }

      .submit-btn {
        grid-column: span 1;
      }

      .contact-info {
        flex-direction: column;
        gap: 20px;
      }
    }