@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Handjet:wght@100..900&family=Playwrite+CU:wght@100..400&family=Satisfy&display=swap');


:root {
  --primary-color: #3d2f2b;
  --secondary-color: #e6be8a;
  --accent-color: #a44f30;
  --light-color: #f6f3ee;
  --dark-color: #1a1a1a;
  --text-color: #333;
  --text-light: #777;
  --white: #ffffff;
  --black: #000000;
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-color);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
}

.divider {
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 20px auto;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

/* Navbar Styles ---------------------------------------------------------- Started */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #3d2f2b;
    color:#f6f3ee;
    position: relative;
    box-shadow: 0 0 20px #a4a4a4;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .navbar .logo img {
    height: 60px;
    width: auto;
} */

.navbar .logo img {
  height: 60px;
  transform: scale(3.2); 
  transform-origin: center; 
  object-fit: contain;
  padding-left: 10px;
  padding-top: 5px;
}


.navbar .nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.navbar .nav-links li {
    position: relative;
}

.navbar .nav-links a {
    color:#f6f3ee;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #E6BE8A;
}

.navbar .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 3px;
    background-color:#FFD700;
    transition: width 0.3s ease;
}

.navbar .nav-links a:hover::after {
    width: 100%;
}

.navbar .get-started-btn {
    background-color: #6d0700;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: transform 0.3s ease-in-out;
}

.navbar .get-started-btn:hover {
    background-color: #000000;
    color: #ffffff;
    transform: scale(1.1);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
}

.menu-toggle .bar {
    height: 4px;
    width: 32px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100px;
        right: 0;
        background-color: transparent;
        backdrop-filter: blur(5px);
        margin: 20px;
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .navbar .logo img {
        height: 50px;
        width: auto;
    }

    .navbar .nav-links a {
        color: #ffffff;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .get-started-btn {
        display: none;
    }
}

/* Navbar Styles ---------------------------------------------------------- Ended */


/* pASTED Styles...................................................started*/

/* .wh-carousel{
    width: 100%;
    height: 32rem;
    min-height: 24rem;
    /* min-width: 385px; 
} */

/* Update the .wh-carousel class */
.wh-carousel {
    width: 100%;
    /* Remove fixed height */
    height: auto; 
    min-height: 24rem;
}

/* Update the image styling within the carousel item */
.carousel-item img {
    max-width: 100%;
    /* Set height to auto to maintain aspect ratio */
    height: auto; 
    
    /* Remove fixed height and use a proportional approach */
    object-fit: contain; /* This will ensure the whole image is visible */
}

/* Add a media query for mobile devices */
@media (max-width: 768px) {
    .wh-carousel {
        /* On smaller screens, you can adjust the min-height if needed */
        min-height: auto; 
    }
}


.controls-carousel{
    position: relative;
    overflow: hidden;
    width: 100%;
    /* min-height: 25rem; */
    margin: 10px;
    padding-left: 0px; /* 12px */
    padding-right: 20px;
}

.controls-carousel2{
    position:relative;
    width: 75%;
    height: 96px;
    overflow:hidden;
    border-radius: 0.5rem;
    padding-left: 0.75rem; /* 12px */
    padding-right: 0.75rem; /

}

.carousel-item {
    display: none;
}
.carousel-item.active {
    display: block;
}


.custom-carousel-item {
display: none; /* Hide all slides by default */
}

.custom-carousel-item.active {
display: flex; 
/* Show only the active slide */
}

.product-carosel {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    background-color: #ffffff;
    
}
/* .carousel-item img {
    max-width: 100%;
    height: 32rem;
    
    object-fit: cover; Ensures the image covers the area 
}*/


/* .flex{
    display: flex;
    
}

.justify-center{
    justify-content: center;
} */


.carousel-container {
    position: relative;
    width: 500px;
    height: 500px;
    overflow: hidden;
    /* border-radius: 75px; */
    background-color: #ffffff;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); */
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
    width: calc(100% * number-of-items); /* Replace with actual item count */
    
    
}

.carousel-item2 {
    width: 100%; /* Each item takes full width*/
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    background-color: #ffffff;
    border-radius: 75px; 
}

.carousel-button {

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0, 0, 0, 0.5);
    background-color:transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 2em;
    z-index: 1;
    transition: background-color 0.3s ease;
    /* position: relative;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
    border-radius: 30%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); */
}

.left-button {
    left: 10px;
}

.right-button {
    right: 10px;
}


/* .carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
} */


.left {
    left: 10px;
}

.right {
    right: 28px;
    
}

.sliderleft{
    position: relative;
    top: 50%;
    left: 4px;
    transform: translateY(50%);
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 50px;
    
    background-color:#f6f3ee;
    opacity: 75;
    
    
}

.slider:hover{
    opacity: 100;
    outline: none;
    
}

.sliderright{
    position: relative;
    top: 50%;
    right: 4px;
    transform: translateY(50%);
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10px;
    width: 30px;
    border-radius: 9px;
    background-color:#f6f3ee;
    opacity: 75;
    
}


/*pasted styles -----------------------------------------------------------ended*/



/* Stats Section */
.stats-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-card {
  padding: 30px 20px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--secondary-color);
  font-family: 'Cinzel', serif;
}

.stat-label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Hero Section ---------------------------------------------------------- Started*/

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 40px;
    background-color:#f6f3ee;
    min-height: 89vh;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1360px;
    gap: 40px;
}

.left-section {
    max-width: 50%;
}

.left-section h1 {
    font-size: 3.4rem;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.2;
}

.left-section h3 {
    font-size: 1.6rem;
    color: #444;
    margin-bottom: 20px;
    font-weight: 400;
}

.left-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color:#f6f3ee;
    color: #000000;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 4px solid #870900;
    transition: transform 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 0 10px #8709008a;
    font-weight: 600;
}

.cta-button:hover {
    transform: scale(0.9);
}

.right-section img {
    width: 100%;
    max-width: 540px;
    height: auto;
    border-radius: 15px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .left-section {
        max-width: 100%;
    }

    .left-section h1 {
        font-size: 2.5rem;
    }

    .left-section h3 {
        font-size: 1.4rem;
    }

    .left-section p {
        font-size: 1rem;
    }

    .right-section img {
        max-width: 80%;
        margin-top: 20px;
    }

    .hero {
        padding: 40px 20px;
    }
}


/* About Section */
.about-section {
  padding: 70px 0;
  background-color: var(--light-color);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.about-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--border-radius);
  background-color: var(--white);
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.about-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  transition: var(--transition);
}

.about-card:hover .about-icon {
  background-color: var(--accent-color);
  transform: rotateY(180deg);
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Hero Section ---------------------------------------------------------- Ended */
/* 
.carousel-section {
    padding: 50px;
    text-align: center;
    background-color:#f6f3ee ;
    position: relative;
}

.carousel-heading {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 500px;
    background-color: #f6f3ee ;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px; 
    height:600px;
}

.card {
    flex: 0 0 300px;
    background-color:#f6f3ee ;
    border-radius: 10px;
    padding: 20px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    text-align: left;
    height: 500px;
}



.card img {
    width: 620px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}




.card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
   
    display: flex;
    justify-content: center;
}

.card p {
    font-size: 1em;
    color: #555;
} 

 .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color:#f6f3ee;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 2em;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.left-button {
    left: 10px;
}

.right-button {
    right: 10px;
}



 @media (max-width: 768px) {
    .card {
        flex: 0 0 250px;
    }
}

@media (max-width: 480px) {
    .card {
        flex: 0 0 200px;
    }
} */



/*induction...........................*/

/* .intro  h1{
    text-align: center;
    font-size: 65px; 
    padding: 3px;
    font-family: 'Raleway', sans-serif;
  } */
  /* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap'); */
/* check this shit */


@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Handjet:wght@100..900&family=Playwrite+CU:wght@100..400&family=Satisfy&display=swap');

  .intro {
    /* font-family: 'Poppins', sans-serif !important; */
    font-family: "Cinzel", serif;
    font-size: 50px; /* Adjust size as needed */
    font-weight: 600; /* Extra bold for strong impact */
    letter-spacing: 2px; /* Adds spacing for a stylish look */
    text-transform: uppercase;
    color: #333; /* Dark gray for a modern look */
    text-align: center; /* Centers the heading */
    margin-top: 30px; /* Adds space from the top */
}

.discover {
    /* font-family: 'Poppins', sans-serif !important; */
    font-family: "Cinzel", serif;
    font-size: 50px; /* Adjust size as needed */
    font-weight: 600; /* Extra bold for strong impact */
    letter-spacing: 2px; /* Adds spacing for a stylish look */
   
    color: #333; /* Dark gray for a modern look */
    text-align: center; /* Centers the heading */
    margin-top: 30px; /* Adds space from the top */
    margin-bottom: 10px;
    padding-bottom: 0;
}

 
  .intro_deet{
    margin: 3px;
    padding: 20px;
    text-align: justify;
  }

  /*induction...........................end*/

  .linethrough{
    color: black;
    background-color: black;
    height: 5px;
    width: 100%;
    border: 1px solid black;
    margin-top: 10px;
    margin-bottom: 5px;
   
  }

  .discover{
    padding-bottom: 1rem;
    padding-left: 0.75rem; /* 12px */
    padding-right: 0.75rem; /
  }

  .pb-6{
    padding-bottom: 1.25rem;
  }
/* Container for the marquee, controls the visible area */
.marquee {
  height: 45px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(90deg, #f6f3ee 60%, #e6be8a 100%);
  padding: 8px 0 4px 0;
}

/* The element containing the duplicated content to be animated */
.marquee-content {
  display: flex;
  width: max-content;
  animation: marquee-scroll 20s linear infinite; /* You can adjust the duration for speed */
  will-change: transform;
}

.marquee-content span {
  display: flex;
  align-items: center;
}

/* Text styling from your provided CSS */
.marquee a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #735e59;
  text-shadow: 0 2px 8px #e6be8a88;
  letter-spacing: 0.2em;
  text-decoration: none;
  margin-right: 20px; /* Space between each link */
}

/* Hover effect from your provided CSS */
.marquee a:hover {
  color: #e6be8a;
  text-shadow: 0 0 10px #e6be8a;
  transition: color 0.3s, text-shadow 0.3s; /* Ensures a smooth transition on hover */
}

/* The keyframe animation for the continuous loop */
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--light-color);
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-card {
  display: none;
  padding: 40px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

.testimonial-content {
  position: relative;
  margin-bottom: 30px;
}

.quote-icon {
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 4rem;
  color: var(--secondary-color);
  opacity: 0.2;
}

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-color);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.author-info span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.testimonial-controls button {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-controls button:hover {
  color: var(--accent-color);
}

.testimonial-indicators {
  display: flex;
  gap: 10px;
}

.testimonial-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--light-color);
  border: 2px solid var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-indicator.active {
  background-color: var(--primary-color);
}

/*grid---------------------------------start*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Unicase:wght@300;400;500;600;700&display=swap');

.whatwedoimage{
 
    background-color: rgb(57, 147, 147);
    border: 10px solid rgb(4, 42, 51);
    max-width: 370px;
    max-height: 340px;
   
    
  }
  
  .whatwedoimage img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures it covers the whole block */
}



.whoweare{
 
  background-color: #321d18;
    border: 10px solid  #321d18;
    max-width: 370px;
    max-height: 340px;
   
  
}

.whoweare img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures it covers the whole block */
}

.ourmission{
 
  background-color: rgb(57, 147, 147);
  border: 10px solid #a52a2a;
  max-width: 370px;
  max-height: 340px;
 
  
}

.ourmission img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures it covers the whole block */
}

.ourvision{
 
  background-color: rgb(57, 147, 147);
  border: 10px solid #628474;
  max-width: 370px;
  max-height: 340px;
 
  
}

.ourvision img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures it covers the whole block */
}

.whychooseus{
 
  background-color: rgb(57, 147, 147);
  border: 10px solid  #3a320c;
  max-width: 370px;
  max-height: 340px;
 
  
}

.whychooseus img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures it covers the whole block */
}

  
  .matter{
    
    background-color: #f6f3ee;
    border: 10px solid  #f6f3ee;
    padding: 5px;

  }
  .matter1{
    
    background-color:  #735e59;
    border: 10px solid rgb(244, 248, 249);
    padding: 5px;
  }
  .matter2{
    
    background-color:  #a44f30;
    border: 10px solid rgb(244, 248, 249);
    padding: 5px;
  }
  .matter3{
    
    background-color: #c1dbda;
    border: 10px solid rgb(244, 248, 249);
    padding: 5px;
  }
  .matter4{
    
    background-color: #aaa245;
    border: 10px solid rgb(244, 248, 249);
    padding: 5px;
  }

  .matter h2{
    font-size: 50px;
    font-family: "Cormorant Unicase", serif;
    font-weight: 400;
    font-style: normal;
    color: black;
  }

  .matter p{
   font-size: large;
    text-align: left;
   padding-top: 4px;
  }
  
  .gridclub{
    display: grid;
      grid-template-columns: 1fr 3fr; /* Smaller first column, larger second column */
      /* Space between columns */
      /* max-width: 800px; Optional max width */
      min-height: 400px;
      margin: auto;
      padding: 30px;
  }
  
  .gridclub-alt{
    display: grid;
      grid-template-columns: 3fr 1fr; /* Smaller first column, larger second column */
      /* Space between columns */
      /* max-width: 800px; Optional max width */
      min-height: 400px;
      margin: auto;
      padding: 30px;
  }
/*grid---------------------------------ended*/


/* carousel-new */



#pcaro-marquee {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100vw;
  height: 80px;
  transform: translateY(-50%);
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

#pcaro-marquee span {
  display: inline-block;
  white-space: nowrap;
  font-size: 3rem;
  font-weight: 900;
  opacity: 0.7;
  color: #e6be8a;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 4px 16px #0008, 0 2px 8px #0006, 0 1px 0 #fff;
  animation: marquee-move 12s linear infinite;
  will-change: transform;
}

@keyframes marquee-move {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100vw); }
}

#pcaro-container {
  height: 100vh;
  width: 100%;
  box-sizing: border-box;
  background: none;
  position: relative;
}

#pcaro-galleryView {
  height: 100vh;
  width: 100vw;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

#pcaro-galleryContainer { 
  height: 500px;
  width: 800px;
  background: transparent;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}

#pcaro-mainView {
  height: 450px;
  width: 450px;  
  border-radius: 5px;
  background-color: none;
  margin-left: 10px;
  margin-right: 10px;
  z-index: 1;
  transition: all 1s;  
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.slide-text {
  margin: 24px auto 0 auto;
  width: 100%;
  max-width: 450px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: gold;
  background: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25), 0 1px 0 gold;
  background: linear-gradient(90deg, #ffb347 0%, #ff5e62 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-radius: 0 0 5px 5px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

#pcaro-mainView:hover + .slide-text {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#pcaro-mainView:hover {
  transform: scale(1.2);
  transition: all 1s;   
}

#pcaro-leftView {
  height: 400px;
  width: 150px;
  opacity: 0.5;
  border-radius: 5px;
  transform: skewy(5deg);
  transform-origin: top right;
  background-color: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s;  
}

#pcaro-leftView:hover {
  opacity: 1;
  transition: all 1s;
}

#pcaro-rightView {
  height: 400px;
  width: 150px;
  opacity: 0.5;
  border-radius: 5px;
  transform: skewy(-5deg);
  transform-origin: top left;
  background-color: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s;
}

#pcaro-rightView:hover {
  opacity: 1;
  transition: all 1s;
}

.pcaro-navBtns {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  position: absolute;
  opacity: 0;
  background-color: transparent;
  cursor: pointer;
  color: white;
  transition: opacity 0.3s, background-color 0.3s;
}

.pcaro-navBtns:hover {
  opacity: 1;
  background-color: transparent;
}

#pcaro-navLeft {
  left: 50px;
}

#pcaro-navRight {
  right: 50px;
}




/*form page-------------------------------------------------started*/

.section-form{
    display: flex;
    justify-content: center;
    
}



.form-cont{
    display: flex;
    align-self: center;
    align-items: center;
}

.row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}


/*form page-------------------------------------------------started*/


/*product page*/



/*product page end */



/* fotter css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins" , sans-serif;
}
body{
  min-height: 100vh;
  width: 100%;
  background:#f6f3ee;
}
footer{
  position: relative;
  background: #f6f3ee;
  width: 100%;
  bottom: 0;
  left: 0;
}
footer::before{
  content: '';
  position: absolute;
  left: 0;
  top: 100px;
  height: 1px;
  width: 100%;
  background: #3d2f2b;
}
footer .content{
  max-width: 1250px;
  margin: auto;
  padding: 30px 40px 40px 40px;
}
footer .content .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.content .top .logo-details{
  color: #3d2f2b;
  font-size: 30px;
}
.content .top .media-icons{
  display: flex;
}
.content .top .media-icons a{
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #f6f3ee;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.top .media-icons a:nth-child(1){
  background: #4267B2;
}
.top .media-icons a:nth-child(1):hover{
  color: #4267B2;
  background: #fff;
}
.top .media-icons a:nth-child(2){
  background: #1DA1F2;
}
.top .media-icons a:nth-child(2):hover{
  color: #1DA1F2;
  background: #fff;
}
.top .media-icons a:nth-child(3){
  background: #E1306C;
}
.top .media-icons a:nth-child(3):hover{
  color: #E1306C;
  background: #fff;
}
.top .media-icons a:nth-child(4){
  background: #0077B5;
}
.top .media-icons a:nth-child(4):hover{
  color: #0077B5;
  background: #fff;
}
.top .media-icons a:nth-child(5){
  background: #FF0000;
}
.top .media-icons a:nth-child(5):hover{
  color: #FF0000;
  background: #fff;
}
footer .content .link-boxes{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .content .link-boxes .box{
  width: calc(100% / 5 - 10px);
}
.content .link-boxes .box .link_name{
  color: #3d2f2b;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}
.link-boxes .box .link_name::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #3d2f2b;
}
.content .link-boxes .box li{
  margin: 6px 0;
  list-style: none;
}
.content .link-boxes .box li a{
  color: #3d2f2b;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease
}
.content .link-boxes .box li a:hover{
  opacity: 1;
  text-decoration: underline;
}
.content .link-boxes .input-box{
  margin-right: 55px;
}
.link-boxes .input-box input{
  height: 40px;
  width: calc(100% + 55px);
  outline: none;
  border: 2px solid #3d2f2b;
  background: #f6f3ee
  ;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 15px;
  color: #3d2f2b;
  margin-top: 5px;
}
.link-boxes .input-box input::placeholder{
  color: #3d2f2b;
  font-size: 16px;
}
.link-boxes .input-box input[type="button"]{
  background: #3d2f2b;
  color: #f6f3ee;
  border: none;
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.4s ease;
}
.input-box input[type="button"]:hover{
  opacity: 1;
}
footer .bottom-details{
  width: 100%;
  background: #f6f3ee
  ;
}
footer .bottom-details .bottom_text{
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a{
  font-size: 14px;
  font-weight: 300;
  color: #3d2f2b;
  opacity: 0.8;
  text-decoration: none;
}
.bottom-details .bottom_text a:hover{
  opacity: 1;
  text-decoration: underline;
}
.bottom-details .bottom_text a{
  margin-right: 10px;
}
@media (max-width: 900px) {
  footer .content .link-boxes{
    flex-wrap: wrap;
  }
  footer .content .link-boxes .input-box{
    width: 40%;
    margin-top: 10px;
  }
}
@media (max-width: 700px){
  footer{
    position: relative;
  }
  .content .top .logo-details{
    font-size: 26px;
  }
  .content .top .media-icons a{
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 3 - 10px);
  }
  footer .content .link-boxes .input-box{
    width: 60%;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a{
    font-size: 12px;
  }
}
@media (max-width: 520px){
  footer::before{
    top: 145px;
  }
  footer .content .top{
    flex-direction: column;
  }
  .content .top .media-icons{
    margin-top: 16px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 2 - 10px);
  }
  footer .content .link-boxes .input-box{
    width: 100%;
  }
}

/*   
  .footer {
    background-color: rgb(248, 245, 245);
    color: #100101;
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    padding-top: 5px;
  }
  
  /* .footer .heading {
    color: #0d0101;
    max-width: 1010px;
    width: 90%;
    text-transform: uppercase;
    margin: 0 auto;
    margin-bottom: 3rem;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  } */

  .footer .heading {
    color: #0d0101;
    max-width: 1010px;
    width: 90%;
    text-transform: uppercase;
    margin: 20px auto 30px auto; /* Adds more space below the heading */
    font-family: "Poppins", sans-serif; /* A clean modern font */
    font-size: 24px; /* Slightly larger for better visibility */
    letter-spacing: 30px; /* Increases space between letters */
    /* margin-top: 50px; */
}

  
  .footer .content {
    display: flex;
    /* justify-content: space-evenly; */
    
    
    justify-content: space-between; /* Ensures space distribution */
    align-items: center; /* Aligns items vertically */
    margin: 2rem;
  }
  
  .footer .content p {
    margin-bottom: 1.3rem;
  }
  
  .footer .content a {
    text-decoration: none;
    color: #120101;
  }
  
  .footer .content a:hover {
    border-bottom: 1px solid #971717;
  }
  
  .footer .content h4 {
    margin-bottom: 1.3rem;
    font-size: 19px;
    display: flex;
    justify-content: end;

  }
  
  footer {
    text-align: center;
    margin: bottom 0;;
  }
  
  footer hr {
    margin: 2rem 0;
  }
  
  @media (max-width: 767px) {
    .footer .content {
      display: flex;
      flex-direction: column;
      font-size: 14px;
    }
  
    .footer {
      position: unset;
    }
  }
  
  @media (min-width: 768px) and (max-width: 1024px) {
    .footer .content,
    .footer {
      font-size: 14px;
    }
  }
  
  @media (orientation: landscape) and (max-height: 500px) {
    .footer {
      position: unset;
    }
  }

  /* .detail-block{
    
     text-align: center; 
    margin-left: auto;
  } */

  .detail-block {
    font-family: 'Poppins', sans-serif; 
    font-size: 20px; 
    font-weight: 600;
    color: #333; 
    line-height: 1.8;
    text-align: center;
    margin-left: auto
}


  .social-media {
    display: flex;
    justify-content: center; /* Centers icons */
    gap: 15px;
    margin-top: 20px; /* Adds space between details and icons */
}

.social-media a {
    color: #000;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.social-media a:hover {
    transform: scale(1.2);
    color: #007bff;
} 

.media-icons .fa-whatsapp {
  background: #25D366 !important;
  color: #fff !important;
  width: 100%;
  height: 100%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.media-icons .fa-whatsapp:hover {
  color: #25D366 !important;
  background: #fff !important;
}


.media-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #f6f3ee;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}

/* fotter css end *\


/* shoe leather */

/* * {
  box-sizing: border-box;
} */
/* 
body {
  margin: 0;

  font-family: sans-serif;
  background-color: #f9f9f9;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 40px;
}

.product {
  flex: 1 1 calc(25% - 1rem);
  max-width: calc(25% - 1rem);

  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.product-name {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 1rem;
  color: #333;
}


@media (max-width: 900px) {
  .product {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}


@media (max-width: 600px) {
  .product {
    flex: 1 1 100%;
    max-width: 100%;
  }
} */

/* Shoe Leather Page Unique Styles */
/* Modern Shoe Leather Section Styles */
.shoeleather-section {
  max-width: 1200px;
  margin: 60px auto 0 auto;
  padding: 40px 24px 40px 24px; /* Increased top padding */
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(60,40,20,0.08);
}
.shoeleather-heading {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #3d2f2b;
  text-align: center;
  margin-top: 24px; /* Add space from top border */
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(40px);
  animation: shoeleatherHeadingFadeIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}
@keyframes shoeleatherHeadingFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.shoeleather-intro {
  text-align: center;
  color: #735e59;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  transform: translateY(40px);
  animation: shoeleatherIntroFadeIn 1.1s cubic-bezier(0.23, 1, 0.32, 1) 0.8s forwards;
}
@keyframes shoeleatherIntroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.shoeleather-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  justify-content: center;
  padding: 0 0 40px 0;
  margin-bottom: 0;
  background: none;
  box-shadow: none;
}
.shoeleather-product {
  background: #f6f3ee;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(61,47,43,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  padding: 24px 18px 18px 18px;
  position: relative;
  overflow: hidden;
}
.shoeleather-product:hover {
  box-shadow: 0 8px 32px rgba(61,47,43,0.18);
  transform: translateY(-6px) scale(1.03);
}
.shoeleather-product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(61,47,43,0.08);
  margin-bottom: 1.2rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shoeleather-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.shoeleather-product:hover .shoeleather-product-image img {
  transform: scale(1.07) rotate(-2deg);
}
.shoeleather-product-name {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 1.15rem;
  color: #3d2f2b;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}
@media (max-width: 700px) {
  .shoeleather-section {
    padding: 0 6px 24px 6px;
    border-radius: 0;
    box-shadow: none;
  }
  .shoeleather-heading {
    font-size: 2rem;
  }
  .shoeleather-intro {
    font-size: 1rem;
  }
  .shoeleather-product-grid {
    gap: 1.2rem;
  }
  .shoeleather-product {
    padding: 14px 6px 12px 6px;
  }
}

/* Minimal Modern Navbar Styles */
.minimal-navbar {
  background: #fff;
  box-shadow: none;
  border-bottom: 1px solid #ececec;
  padding: 16px 0;
}
.minimal-navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.minimal-navbar .logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  padding: 0;
  margin: 0;
}
.minimal-navbar .nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.minimal-navbar .nav-links li {
  position: relative;
}
.minimal-navbar .nav-links a {
  color: #222;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 0;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
.minimal-navbar .nav-links a:hover,
.minimal-navbar .nav-links a:focus {
  color: #a44f30;
  border-bottom: 2px solid #a44f30;
  background: none;
}
.minimal-navbar .menu-toggle {
  display: none;
}
@media (max-width: 900px) {
  .minimal-navbar .container {
    padding: 0 12px;
  }
  .minimal-navbar .nav-links {
    gap: 18px;
  }
  .minimal-navbar .logo img {
    height: 38px;
  }
}

.carousel-section .carousel-button.left-button,
.carousel-section .carousel-button.right-button {
    font-size: 1.2em;
    padding: 4px 8px;
    /* You can further tweak width/height if needed */
}



#toggleContainer label { 
  text-align: center;
  width: 70px;
}

#container {
  height: 100vh;
  width: 100%;
  box-sizing: border-box;
}

#toggleContainer {
  height: 10vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 95vw;
  position: absolute;
}

#tilesContainer {
  min-height: 90vh;
  width: 100vw;
  margin-top: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-content: center;
  
}

.tileItem {
  width: 250px;
  height: 250px;
  margin: 5px;
  border-radius: 5px;
  
  transition: all 0.5s ease;
}

.tileItem:hover {
   transform: scale(1.05);
  transition: all 0.5s ease;
}

#galleryContainer { 
  height: 500px;
  width: 800px;
  background: transparent;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}

#toggle {
  height: 10vh;
  width: 200px;
  display: flex;
  align-items: center;
  margin: 10px;
}

#tilesView {
  min-height: 100vh;
  width: 100vw;
  background: rgb(246,210,106);
  background: linear-gradient(111deg, rgba(246,210,106,1) 0%, rgba(255,159,0,1) 52%, rgba(251,197,100,1) 100%);
  display: none;
  justify-content: center;
  align-items: center;
  
}

#galleryView {
  height: 100vh;
  width: 100vw;
  background: rgb(246,210,106);
  background: linear-gradient(111deg, rgba(246,210,106,1) 0%, rgba(255,159,0,1) 52%, rgba(251,197,100,1) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

#outer3 {
  width: 100px;
  height: 40px;
  background-color: white;
  margin: 10px auto;
  border-radius: 3px;
  border: 2px solid white;
  transition: all 0.5s;
}

#slider3 {
  height: 36px;
  width: 46px;
  background-color: orange;
  border-radius: 3px;  
  transition: all 0.5s;
}

#slider3.active {
  -webkit-transform: translatex(50px);
  -ms-transform: translatex(50px);
  -o-transform: translatex(50px);
  transform: translatex(50px);
  transition: all 0.5s;
  background-color: orange;
}

#outer3.outerActive {
  background-color: white;
  border: 2px solid white;
  transition: all 0.5s;
}

#mainView {
  height: 450px;
  width: 450px;  
  border-radius: 5px;
  background-color: #eb9100;
  margin-left: 10px;
  margin-right: 10px;
  z-index: 1;
  transition: all 1s;  
}

#mainView:hover {
  transform: scale(1.2);
  transition: all 1s;   
}

#leftView {
  height: 400px;
  width: 150px;
  opacity: 0.5;
  border-radius: 5px;
  transform: skewy(5deg);
  transform-origin: top right;
  background-color: #eb9100;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s;  
}

#leftView:hover {
  opacity: 1;
  transition: all 1s;
}

#rightView {
  height: 400px;
  width: 150px;
  opacity: 0.5;
  border-radius: 5px;
  transform: skewy(-5deg);
  transform-origin: top left;
  background-color: #eb9100;
  display: flex;
  justify-content: center;
  align-items: center;
 transition: all 1s;
}

#rightView:hover {
  opacity: 1;
  transition: all 1s;
}

.navBtns {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  position: absolute;
  opacity: 0.8;
  background-color: transparent;
  cursor: pointer;
  color: white;
}

.navBtns:hover {
  opacity: 1;
  transition: all 1s;
  background-color: #eb9100;
}

#navLeft {
  left: 50px;
}

#navRight {
  right: 50px;
}

#linkTag { 
  cursor: pointer;
  z-index: 1;
  box-sizing: border-box;
}