
@import "bootstrap/dist/css/bootstrap.min.css";
@import "@fortawesome/fontawesome-free/css/all.min.css";

@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source '../**/*.blade.php';
@source '../**/*.js';


@font-face {
  font-family: 'MyBodyFont';
  src: url('/fonts/Mona-Sans-Light.ttf') format('truetype');
  font-weight: light;
  font-style: normal;
}

@font-face {
  font-family: 'MyHeadingFont';
  src: url('/fonts/Erode-Variable.ttf') format('truetype');
  font-weight: light;
  font-style: normal;
}
@theme {
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
}
body {
  font-family: 'MyBodyFont', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'MyHeadingFont', serif;
}
p, span{
  font-family: 'MyBodyFont', sans-serif;
}

 .banner-section {
      height: 42.5rem;
      background-size: cover;
      background-position: center;
      background-image: url('../../public/img/bg-img.jpg');
    }
    .terms-section h1 {
      font-size: 2rem;
      font-weight: 300;
      margin-bottom: 1.5rem;
    }
    .terms-section h2 {
      font-size: 25px;
      font-weight: 300;
      margin-top: 1.5rem;
      margin-bottom: 0.9rem;
      line-height: 33px;
    }
    .terms-section p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }
    .terms-section a {
      color: #707070;
      text-decoration: underline;
    }


/* home page */





/* Hero Section */
.hero {
    height: 100vh;
    background: url(https://www.tonimay.com.au/cdn/shop/files/HOMEPAGE_BANNER_7_f9e0c18f-1b57-4b41-ab9e-dde65939b65c.png?v=1756123236&width=1920) no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    text-align: center;
    color: white;
}
.hero-content h4 {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.hero-content h1 {
    
    font-size: 56px;
    margin: 0;
}
.hero-content .btn-outline-light {
    margin-top: 25px;
    padding: 12px 28px;
    font-size: 14px;
    text-transform: uppercase;
}

.services h2 {
    font-size: 50px;
    font-weight: 200;
    margin-bottom: 50px;
    text-align: center;
}
.service-card img {
    width: 100%;
    height: 600px; 
    object-fit: cover;
}

.service-card p {
    font-size: 12px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    color: #000;
}


.ashoka_text{
    font-size: 50px;
    font-weight: 200;
}
.ashoka_text_P{
    font-size: 20px;
    font-weight: 200;
    color: rgb(168, 168, 168);
    letter-spacing: 1px;
}
.ashoka_text_content{
    font-size: 14px;
    font-weight: 200;
    color: rgb(120, 120, 120);
    letter-spacing: 0.4px;
}

/* Carousel row as flex container */
.carousel-item .slide-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px; /* gap between images */
  padding: 0 5px; /* optional small padding */
  flex-wrap: nowrap; /* prevent wrapping */
}

/* Images */
.carousel-item img {
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  height: 600px; /* fixed height */
}

/* Side images */
.carousel-item img.side {
  flex: 0 0 20%; /* side images take 20% each */
  transform: scale(0.8);
  filter: brightness(0.7);
}

/* Center image */
.carousel-item img.center {
  flex: 0 0 50%; /* center image takes 50% */
  transform: scale(1.1);
  filter: brightness(1);
  z-index: 2;
}

/* Content below images */
.carousel-item .slide-content {
  text-align: center;
  margin-top: 100px;
  font-size: 1.1rem;
  color: #333;
  
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    display: none !important;
}

.carousel-control-prev-icon{
  display: none !important;
}.carousel-control-next-icon{
  display: none !important;
}
.flex-container {
	height: 80vh;
	width: 100%;
	display: -webkit-flex; 
	display: flex;
    margin: auto;
	overflow: hidden;
	@media screen and (max-width: 768px) {
		flex-direction: column;
	}
}
.flex-title {
	color: #f1f1f1;
	position: relative;
	font-size: 1vw;
	margin: auto;
	text-align: center;
	transform: rotate(90deg);
	top: 15%;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	@media screen and (max-width: 768px) {
		transform: rotate(0deg) !important;
	}
}
.flex-about {
	opacity: 0;
	color: #f1f1f1;
	position: relative;
	width: 70%;
	font-size: 1vw;
	padding: 5%;
	top: 20%;
	border-radius: 10px;
	line-height: 1.3;
	margin: auto;
	text-align: left;
	transform: rotate(0deg);
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	@media screen and (max-width: 768px) {
		padding: 0%;
		border: 0px solid #f1f1f1;
	}
}


.flex-slide {
	-webkit-flex: 1;  /* Safari 6.1+ */
	-ms-flex: 1;  /* IE 10 */    
	flex: 1;
	cursor: pointer;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	@media screen and (max-width: 768px) {
		overflow: auto;
		overflow-x: hidden;
	}
}
.flex-slide p {
	@media screen and (max-width: 768px) {
		font-size: 2em;
	}
} 
.flex-slide ul li {
	@media screen and (max-width: 768px) {
		font-size: 2em;
	}
} 
.flex-slide:hover {
	-webkit-flex-grow: 3;
	flex-grow: 3;
}






 .howtobuy-section {
    padding: 50px 0;
  }
  .howtobuy-section h2{
    font-size: 50px;
    font-weight: 200;
  }

  .howtobuy-content {
    position: relative;
    min-height: 250px; /* ताकि height jump ना करे */
  }

  /* Steps default hidden */
  .howtobuy-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-in-out;
    pointer-events: none;
  }
  .howtobuy-step.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Image fade effect */
  .howtobuy-image img {
    max-width: 100%;
    transition: opacity 0.6s ease-in-out;
    opacity: 1;
  }
  .howtobuy-image img.fade-out {
    opacity: 0;
  }

  /* Controls bottom center */
  .slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 32.5rem;
  }

  .slider-controls button {
    border: none;
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .slider-controls button:hover {
    background: #ddd;
  }

  .step-counter {
    font-weight: 200;
    font-size: 16px;
  }
.howtobuy-step h3{
  font-size: 28px;
    font-weight: 200;
}
.howtobuy-step h5{
  font-size: 20px;
    font-weight: 400;
}

.howtobuy-step p{
  margin: 0 10px;
    color: #333;
    font-size: 13px;
    text-decoration: none;
    margin-top: 30px;
}






.home {
	height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://www.tonimay.com.au/cdn/shop/files/Untitled_design_38.png?v=1754009191&width=1920);
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	@media screen and (min-width: 768px) {
		animation: aboutFlexSlide defaultSeconds 1;
		animation-delay: 0s;
	}
}

@keyframes aboutFlexSlide {
	0% {
		-webkit-flex-grow: 1;
		flex-grow: 1;
	}
	50% {
		-webkit-flex-grow: 3;
		flex-grow: 3;
	}
	100% {
		-webkit-flex-grow: 1;
		flex-grow: 1;
	}
}

.flex-title-home {
	@media screen and (min-width: 768px) {
		transform: rotate(90deg);
		top: 15%;
		animation: aboutFlexSlide defaultSeconds 1;
		animation-delay: 0s;
	}
}



@keyframes homeFlextitle {
	0% {
		transform: rotate(90deg);
		top: 15%;
	}
	50% {
		transform: rotate(0deg);
		top: 15%;
	}
	100% {
		transform: rotate(90deg);
		top: 15%;
	}
}

.flex-about-home {
	opacity: 0;
	@media screen and (min-width: 768px) {
		animation: aboutFlexSlide defaultSeconds 1;
		animation-delay: 0s;
	}
}

@keyframes flexAboutHome {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}



.about {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://www.tonimay.com.au/cdn/shop/files/Untitled_design_24.png?v=1736222522&width=2000);

	background-size: cover;
	background-position: center center;
	background-attachment: fixed;	
}
.contact-form {
	width: 100%;
}
input {
	width: 100%;
}
textarea {
	width: 100%;	
}
.contact {
		background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://www.tonimay.com.au/cdn/shop/files/250515_TONI_MAY_MEL_CARTMER_EVE_CONTENT_PRODUCT_SHOTS_025.jpg?v=1751324482&width=3211);

	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}
.work {
		background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://www.tonimay.com.au/cdn/shop/files/Website_sliding_images_1.png?v=1749465873&width=2000);

	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}



.spinner {
	position: fixed;
	top: 0;
	left: 0;
	background: #222;
	height: 100%;
	width: 100%;
	z-index: 11;
	margin-top: 0;
	color: #fff;
	font-size: 1em;
}

.cube1, .cube2 {
  background-color: #fff;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
  animation: sk-cubemove 1.8s infinite ease-in-out;
}

.cube2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-cubemove {
  25% { -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5) }
  50% { -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg) }
  75% { -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5) }
  100% { -webkit-transform: rotate(-360deg) }
}

@keyframes sk-cubemove {
  25% { 
    transform: translateX(42px) rotate(-90deg) scale(0.5);
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  } 50% { 
    transform: translateX(42px) translateY(42px) rotate(-179deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
  } 50.1% { 
    transform: translateX(42px) translateY(42px) rotate(-180deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  } 75% { 
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  } 100% { 
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}

.about-head h2 {
            font-size: 17px;
            font-weight: 200;
            line-height: 1.2;
        }

 .hero_shop {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(https://www.uoozee.com/cdn/shop/files/image_bg.png?crop=center&height=146&v=1747403726&width=375);
    display: flex;
   background-size: cover;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .bg-text {
    position: absolute;
    font-size: 10vw;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
    will-change: transform;
  }

  .hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
  }

  .hero-content img {
    max-width: 400px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 5px;
  }

  .hero-content p {
    font-size: 16px;
    color: #fff9f9;
    margin-bottom: 15px;
  }
.hero-content button{
    border: 1px solid white;
    color: white;
    background: transparent;
    padding: 10px 25px;
}

 
.process_text h2{
  font-size: 50px;
  font-weight: 200;
}
.process_text p{
      font-size: 13px;
    padding-right: 83px;
    margin-bottom: 20px;
}

  .carousel-container {
  position: relative;
  width: 80%;
  margin: 50px auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.carousel-track .slide {
  flex: 0 0 100%; /* default: 1 per view */
}

@media (min-width: 768px) { /* desktop breakpoint */
  .carousel-track .slide {
    flex: 0 0 calc(100% / 3); /* 3 per view */
  }
}

.carousel-slide {
  flex: 0 0 33.33%;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0.5;
  transform: scale(0.8);
  transition: all 0.5s ease-in-out;
}

.carousel-slide.center {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide img {
  width: 100%;
  height: auto;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 30px;
  color: #333;
  user-select: none;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background-color: #333;
}


.carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.carousel-slide.center img {
  transform: scale(1.05);
  opacity: 1;
}
.carousel-slide:not(.center) img {
  opacity: 0.6;
}

 /* Slider Wrapper */
        .slider-wrapper {
            max-width: 1200px;
            width: 100%;
            padding: 40px;
        }

        /* Main Slider Container with Flexbox */
        .slider-container {
            display: flex;
            align-items: center;
            gap: 50px;
            /* Animation for content fading in */
            animation: fadeIn 0.7s ease-in-out;
        }

        /* Image Section */
        .slider-image {
            flex-basis: 55%; /* Takes up 55% of the container width */
            min-width: 0;
        }

        .slider-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Content Section */
        .slider-content {
            flex-basis: 45%; /* Takes up 45% of the container width */
        }
        
        .slider-content .step {
            font-size: 14px;
            color: #888;
            margin-bottom: 20px;
        }

        .slider-content h2 {
            font-size: 24px;
            font-weight: 500;
            line-height: 1.5;
            margin-top: 0;
            margin-bottom: 25px;
        }

        .slider-content .description {
            font-size: 15px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 15px;
        }

        /* Navigation Controls */
        .slider-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 40px;
            padding-right: 10px; /* Align with content block */
        }

        .slider-nav .page-number {
            font-size: 14px;
            color: #333;
        }

        .slider-nav .arrows {
            display: flex;
            gap: 15px;
        }

        .slider-nav .arrow {
            cursor: pointer;
            user-select: none; /* Prevents text selection on click */
            font-size: 20px;
            color: #888;
            transition: color 0.3s;
        }

        .slider-nav .arrow:hover {
            color: #000;
        }

        /* Fade-in Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Media Query for smaller screens */
        @media (max-width: 900px) {
            .slider-container {
                flex-direction: column;
                gap: 30px;
            }
            .slider-content {
                padding-left: 0;
            }
        }






/* Slider Section Styles */
.slider-section {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    font-size: 50px;
    font-weight: 200;
    letter-spacing: 0.1em;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hslider-section {
  padding: 40px;
  background: #fff;
}



/* Default Card */
.hslide-card {
  background: #f9f9f9;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hslide-card img {
  width: 100%;
  object-fit: cover;
}

.hslide-content {
  padding: 20px;
  background: #fff;
  flex: 1;
}

.hslide-content h3 {
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}

.hslide-content p {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}

.hslide-content a {
  font-size: 10px;
  font-weight: bold;
  color: #222;
  text-decoration: underline;
}

/* First Slide Overlay Style */
.hslide-overlay {
  position: relative;
  color: #fff;
}

.hslide-overlay img {
  height: 100%;
  object-fit: cover;
}

.hslide-overlay-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 20px;
}

.hslide-overlay-content h3,
.hslide-overlay-content p,
.hslide-overlay-content a {
  color: #fff;
  font-size: 13px;
}


.hslide_p{
    font-size: 10px;
    margin-bottom: 10px;
    color: #fff;
}



  .hero-section2 {
      position: relative;
      width: 100%;
      height: 100vh; /* Full screen height */
      background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e") no-repeat center center/cover;
      display: flex;
      justify-content: center;
      align-items: center;
       background-attachment: fixed;
    }

    .hero-card2 {
      background: #fff;
      padding: 40px 10px;
      text-align: center;
      max-width: 360px;
      border-radius: 2px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .hero-card2 h4 {
      font-size: 12px;
      letter-spacing: 3px;
      font-weight: 400;
      margin-bottom: 15px;
      color: #444;
    }

    .hero-card2 p {
      font-size: 16px;
      color: #333;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .hero-card2 a {
      font-size: 15px;
      text-decoration: underline;
      color: #333;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .hero-card2 a:hover {
      color: #000;
    }



      .insta-section {
      text-align: center;
      padding: 60px 20px;
    }

    .insta-section h4 {
      font-size: 12px;
      letter-spacing: 2px;
      font-weight: 400;
      margin-bottom: 10px;
      color: #555;
    }

    .insta-section h2 {
      font-size: 22px;
      letter-spacing: 2px;
      font-weight: 500;
      text-transform: uppercase;
      margin-bottom: 40px;
      border-bottom: 1px solid #999;
      display: inline-block;
      padding-bottom: 5px;
    }

    /* Image grid */
    .insta-gallery {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 15px;
      margin-bottom: 50px;
    }

    .insta-gallery img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* Features row */
    .features {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
    }

    .feature-box {
      text-align: center;
    }

    .feature-box i {
      font-size: 28px;
      margin-bottom: 15px;
      display: block;
      color: #333;
    }

    .feature-box h5 {
      font-size: 17px;
      letter-spacing: 2px;
      font-weight: 200;
      margin-bottom: 10px;
      color: #444;
    }

    .feature-box p {
      font-size: 14px;
      color: #555;
      line-height: 1.5;
      font-weight: 200;
      letter-spacing: 0.5px;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .insta-gallery {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 576px) {
      .insta-gallery {
        grid-template-columns: repeat(2, 1fr);
      }
    }










    /* contactus page */





    
/* Main container for the form */
.contact-container {
    width: 100%;
    max-width: 550px; /* Controls the width of the form */
    padding: 20px;
    box-sizing: border-box;
    margin: auto;
}

/* Breadcrumb styling */
.breadcrumb {
    font-size: 14px;
    color: #888;
    margin-bottom: 60px; /* Space between breadcrumb and form */
    text-align: left;
}

/* Styling for each form group (label + input) */
.form-group {
    margin-bottom: 15px; /* Space between each form field */
}

/* Label styling */
.form-group label {
    display: block;
    font-size: 14px;
    color: #555;
}

/* The key style for the input and textarea fields */
.form-group input,
.form-group textarea {
    width: 100%;
    border: none; /* Remove all borders */
    border-bottom: 1px solid #ddd; /* Add only the bottom border */
    background-color: transparent; /* Ensure no background color */
    font-size: 16px;

    outline: none; /* Remove the default browser outline on focus */
    transition: border-color 0.3s ease;
}

/* Change border color on focus for user feedback */
.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #333;
}

/* Specific styling for the textarea */
.form-group textarea {
    resize: vertical; /* Allow vertical resizing only */
    min-height: 60px;
}

/* Submit Button Styling */
.submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    background-color: #fbeae9; /* Light pink background from image */
    color: #333;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #f8d7da; /* A slightly darker shade for hover */
}









.image-column img {
    width: 100%;
    max-height: 700px;
    height: 100%;
    object-fit: cover; 
}

/* Text content styling */
.text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 100px;
    padding-right: 100px;
    align-content: center;
}

/* Main Heading: "Online Enquiries" */
.text-column h1 {
     /* An elegant serif font for the heading */
    font-size: 25px;
    font-weight: 200;
    color: #000;
    margin-top: 0;
    margin-bottom: 25px;
}
.text-column h5 {
    font-size: 15px;
}
/* Paragraph styling */
.text-column p {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 10px;
}

/* Styling for individual info sections (Service hours, Email, etc.) */
.info-section {
    margin-bottom: 15px;
}

.info-section .info-title {
    font-weight: 200;
    font-size: 15px;
    margin-bottom: 4px;
    color: #000;
}

.info-section p {
    margin: 0;
}

/* Smaller footnote text at the bottom */
.footnote {
    font-size: 13px;
    color: #666;
    margin-top: 20px;
}

/* Link Styling */
.text-column a {
    color: #333;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.text-column a:hover {
    color: #000;
}

/* --- Responsive Design for smaller screens --- */
@media (max-width: 768px) {
    .enquiry-container {
        flex-direction: column; /* Stack columns on top of each other */
        gap: 40px;
    }
   
}

.accordion-item {
    color: var(--bs-accordion-color);
    background-color: white;
    border-bottom: 1px solid;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}
.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: transparent;
 box-shadow: none;
}
.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
    border: none !important;
}
.faq-container h1{
    font-size: 35px;
    font-weight: 200 !important;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.accordion-button:focus {
    z-index: 3;
    border-color: transparent !important;
    outline: 0;
    box-shadow: none !important;
}


.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: white !important;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.btn_carousal{
  
    border: 1px solid white;
    color: white;
    background: transparent;
    padding: 10px 25px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 30px;
    color: rgb(51, 51, 51);
    user-select: none;
    display: none;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    display: none;
}










/* media query */


@media (min-width: 320px) and (max-width: 767px) {
  .img_buy img{
      width: 385px;
      margin-bottom: 20px;
}
.img_buy{
    text-align: center;
}
.text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
         padding: 55px 30px 30px 30px;
    align-content: center;
}
.feature-box {
    margin: auto;
}
.faq-container h1 {
    font-size: 26px;
}

.flex-title {
    color: #f1f1f1;
    position: relative;
    font-size: 6vw;
}


 }







 .crafting-section {
        background-color: #f8f5f2;
        padding: 40px 0;
        text-align: center;
        position: relative;
    }

    .image-gallery {
        position: relative;
        overflow: hidden; /* Hide overflow for slider effect */
    }

    .slider-container {
        display: flex;
        transition: transform 0.5s ease; /* Smooth sliding transition */
        width: max-content; /* Allow all images to fit */
    }

    .slider-container img {
        width: 30%; /* One-third width for 3 visible at a time */
        max-width: 400px;
        min-width: 300px;
        height: auto;
        object-fit: cover;
        border-radius: 4px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        flex-shrink: 0;
    }

    .prev-btn, .next-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        z-index: 10;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .pagination-dots {
        font-size: 24px;
        color: #333;
        letter-spacing: 10px;
        margin-top: 10px;
    }

    @media (max-width: 768px) {
        .slider-container img {
            width: 100%;
            max-width: 100%;
        }
        .slider-container {
            flex-direction: column;
        }
        .prev-btn, .next-btn {
            display: none; /* Hide buttons on mobile */
        }
    }



   
