   /* Home page nav&footer */
   .navbar {
     background-color: white;
     /* Transparent white */
     backdrop-filter: blur(5px);
     /* Blur effect */
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
     opacity: 100%;
   }

   .navbar-brand {
     font-size: 1.5rem;
     font-weight: bold;
   }

   .nav-link {
     font-size: 2rem;
     transition: color 0.3s, background-color 0.3s;
   }

   .nav-link:hover {
     color: #fff;
     background-color: #caa43a;
     border-radius: 5px;
   }

   .contact-btn {
     background-color: #caa43a;
     color: #fff;
     transition: background-color 0.3s, transform 0.2s;
   }

   .contact-btn:hover {
     background-color: #f8f9fa;
     transform: scale(2.0);
   }

   /* Custom Styles __*/
   .carousel-item {
     height: 100vh;
     min-height: 400px;
     background-size: cover;
     background-position: center;
     position: relative;
   }

   .carousel-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(43, 43, 43, 0.35);
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     color: white;
     text-align: center;
   }

   .carousel-overlay h1 {
     font-size: 3rem;
     font-weight: bold;
     margin-bottom: 1rem;
     color: white;
   }

   .carousel-overlay p {
     font-size: 1.5rem;
     margin-bottom: 1.5rem;
     color: white;
   }

   .carousel-overlay .btn {
     background-color: #007bff;
     color: white;
     border: none;
     transition: background-color 0.3s, transform 0.2s;
   }

   .carousel-overlay .btn:hover {
     background-color: #0056b3;
     transform: scale(1.05);
   }

   /* About Us ____*/
   .about-section {
     padding: 100px 0;
   }

   .about-heading {
     font-size: 2rem;
     font-weight: bold;
     margin-bottom: 20px;
   }

   .nav-tabs .nav-link {
     color: #007bff;
     transition: color 0.3s;
   }

   .nav-tabs .nav-link:hover {
     color: #0056b3;
   }

   .nav-tabs .nav-link.active {
     color: white;
     background-color: #007bff;
   }

   .tab-content .tab-pane {
     margin-top: 20px;
   }

   .tab-content h4 {
     font-size: 1.5rem;
     font-weight: bold;
     margin-bottom: 10px;
   }

   .tab-content p {
     margin-bottom: 15px;
     max-height: 60px;
     overflow: hidden;
     transition: max-height 0.5s ease;
   }

   .tab-content p.expanded {
     max-height: 500px;
   }

   .tab-content .btn {
     background-color: #007bff;
     color: white;
     border: none;
     transition: background-color 0.3s;
   }

   .tab-content .btn:hover {
     background-color: #0056b3;
   }

   .col-md-6 {
     padding: 20px;
   }

   .img-fluid {
     height: 700px;
     width: 600px;
   }

   @media(max-width:767px) {
     .img-fluid {
       display: none;
     }
   }

   .bd {
     background-color: rgb(238, 242, 243);
   }

   .collection-section {
     padding: 50px 0;
   }

   .collection-heading {
     font-size: 2rem;
     font-weight: bold;
     text-align: center;
     margin-bottom: 40px;
   }

   .collection-item {
     position: relative;
     overflow: hidden;
     border-radius: 10px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
     transform: scale(1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
   }

   .collection-item img {
     width: 100%;
     height: 75%;
     object-fit: cover;
     transition: transform 0.3s ease;
   }

   .collection-item:hover img {
     transform: scale(1.1);
   }

   .collection-item .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.5);
     opacity: 0;
     transition: opacity 0.3s ease;
     display: flex;
     justify-content: center;
     align-items: center;
     color: white;
     font-size: 1.2rem;
     font-weight: bold;
   }

   .collection-item:hover .overlay {
     opacity: 1;
   }

   .container1 {
     margin-top: 5%;
     width: 100%;
     max-width: 100vw;
     padding: 10px 500px 10px 500px;
     

   }

   /* foter section  */
   .footer {
     background-color: #6892bd;
     color: white;
     padding: 40px 0;
   }

   .footer a {
     color: #ffffff;
     text-decoration: none;
     transition: color 0.3s;
   }

   .footer a:hover {
     color: #000000;
   }

   .footer h5 {
     font-size: 2.2rem;
     margin-bottom: 20px;
   }

   .footer-logo img {
     max-width: 150px;
     margin-bottom: 20px;
   }

   .footer .social-icons a {
     margin-right: 15px;
     font-size: 1.5rem;
   }

   .col-md-4 {
     padding: 10px;
     text-align: justify;
   }


   /* ....Catlogue page styling.......*/
   .catalogue-grid {
     padding: 10px;
   }

   .catalogue-item {
     position: relative;
     overflow: hidden;
     border-radius: 8px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     display: flex;
     flex-direction: column;
   }

   .catalogue-item img {
     width: 100%;
     max-height: 100%;
     height: auto;
     transition: transform 0.3s ease;
   }

   .catalogue-item:hover img {
     transform: scale(1.05);
   }

   .logo-overlay {
     position: absolute;
     bottom: 10px;
     right: 10px;
     background-color: rgba(255, 255, 255, 0.8);
     padding: 5px;
     border-radius: 4px;
   }

   .logo-overlay img {
     max-width: 100px;
     height: auto;
   }

   @media (max-width: 767px) {
     .catalogue-grid {
       padding: 5px;
     }

     .container1 {
       padding: 50px;
     }

     .logo-overlay img {
       max-width: 80px;
     }
   }

   /* form styling */
   .contact-form {
     background-color: #ecd7d7;
     box-shadow: black;
   }

   @media (max-width: 767.98px) {
     .contact-form {
       flex-direction: column-reverse;
     }
   }
 
