@media (min-width: 800px) and (max-width:1280px){
    .horizontal-scroll-container {
        height: auto; /* Adjust height for smaller screens */
        margin-top: 0; /* Remove margin */
    }

    .full-screen-image {
        height: auto;
        max-height: 100vh;
		margin-top:-40px!important;
    }

    .full-screen-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        margin-top: 0; /* Remove margin for mobile */
    }
}


.register-btn {
    background-color: #FAA216; /* Button color */
    color: white; /* Text color */
    border: none;
    padding: 12px 24px; /* Adjust padding for better shape */
    font-size: 16px; /* Adjust font size */
    cursor: pointer;
    border-radius: 10px; /* Slightly rounded corners */
    transition: 0.3s ease-in-out;
    font-weight: bold; /* Makes text bolder */
}

/* Optional: Add hover effect */
.register-btn:hover {
    background-color: #e69514; /* Slightly darker shade on hover */
}



/* General Container Styling */
.container1 {
  padding: 2rem;
  font-family: Arial, sans-serif;
}

/* Row Styling */
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

/* Column Styling */
.col-md-6 {
  width: 48%;
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.col-md-6:hover {
  transform: translateY(-5px);
}

/* Image Styling */
.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Text Styling */
h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Alternating Image-Content Layout */
.row:first-child .col-md-6:first-child {
  order: 2;
}
.row:first-child .col-md-6:last-child {
  order: 1;
}

.row.mt-4 .col-md-6:first-child {
  order: 1;
}
.row.mt-4 .col-md-6:last-child {
  order: 2;
}
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }
  
  .col-md-6 {
    width: 100%;
  }
  
  /* Reset order on mobile */
  .row:first-child .col-md-6:first-child,
  .row:first-child .col-md-6:last-child,
  .row.mt-4 .col-md-6:first-child,
  .row.mt-4 .col-md-6:last-child {
    order: unset;
  }
}
/* Top Header Section */
.st-top-header-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 10px 20px;
  font-family: Arial, sans-serif;
  border-bottom: 1px solid #ddd;
}

/* List Container */
.st-top-header-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* List Items */
.st-top-header-list li {
  display: flex;
  align-items: center;
  margin-right: 20px;
  font-size: 14px;
  color: #000;
}

/* Links */
.st-top-header-list li a {
  text-decoration: none;
  color: #F98E1C;
  margin-left: 5px;
  transition: color 0.3s ease;
}

.st-top-header-list li a:hover {
  color:#F98E1C;
}

/* Icons */
.st-top-header-list li svg {
  width: 16px;
  height: 16px;
  fill: #555;
}

/* Button */
.st-top-header-btn {
  background-color: #F98E1C;
  color: #fff;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.st-top-header-btn:hover {
  background-color: #d9a600;
}

/* Mobile View */
@media (max-width: 768px) {
  .st-top-header-in {
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    padding: 10px;
  }

  .st-top-header-list {
    flex-direction: column;
    align-items: flex-end;
    padding: 5px 0;
  }

  .st-top-header-list li {
    margin: 5px 0;
    font-size: 13px;
  }

  .st-top-header-btn {
    padding: 6px 12px;
    font-size: 13px;
    margin-top: 5px;
  }
}


/* Logo Styling */
/* Logo Styling */
.logo-container1 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  margin-bottom: 0px;
  flex-wrap: wrap;
}

.line-left, .line-right {
  height: 2px;
  background-color: #FAA216!important;
  width: 100px;
  margin: 0 15px;
}

.logo {
  width: 120px;
  height: auto;
}

.header {
  margin-top: -70px;
}

.header1 {
  margin-top: 70px;
}

.header1 h1,
.header h1 {
  font-size: 25px;
  text-align: center;
}

/* Responsive Styles for Tablets */
@media screen and (max-width: 1024px) {
  .header1 {
    margin-top: 180px!important
  }
  
  .header h1 {
    font-size: 22px;
    text-align: center;
  }
}

/* Responsive Styles for Mobile */
@media screen and (max-width: 768px) {
  .header1 {
    margin-top: 10px;
  }

  .header h1 {
    font-size: 20px;
    text-align: center;
  }
}

/* Extra Small Screens */
@media screen and (max-width: 480px) {
  .header {
    margin-top: 10px;
  }

  .header h1 {
    font-size: 18px;
  }
}

/* Extra Small Mobile Screens */
@media screen and (max-width: 480px) {
  .header {
    margin-top: 80px;
  }

  .header h1 {
    font-size: 18px;
    text-align: center;
  }

  .logo {
    width: 90px;
  }

  .line-left, .line-right {
    width: 60px;
  }
}

/* Very Small Screens */
@media screen and (max-width: 360px) {
  .logo {
    width: 80px;
  }

  .header h1 {
    font-size: 18px;
    text-align: center;
  }

  .line-left, .line-right {
    width: 50px;
  }
}

/* Specific Styles for 1280x800 Resolution */
/* Specific Styles for 1280x800 Resolution */
@media screen and (width: 1280px) and (height: 800px) {
  .header1 {
    margin-top: -300px; /* Moves the heading up */
    display: flex;
    flex-direction: column; /* Ensures text appears first */
    align-items: center;
    text-align: center;
  }

  .header1 h1 {
    font-size: 28px; /* Slightly bigger for visibility */
    order: -1; /* Moves text to appear before the logo */
  }

  .logo-container1 {
    margin-top: 10px; /* Moves logo closer to text */
    display: flex;
    flex-direction: row; /* Keeps logo & lines in a row */
    align-items: center;
    justify-content: center;
  }

  .logo {
    width: 110px; /* Adjusted size */
  }

  .line-left, .line-right {
    width: 80px; /* Reduce line size */
  }

  .full-screen-image {
    margin-top: -50px; /* Moves full-screen image up */
  }
}


/*footer */
.footer h5{
	color:#36332E;
}

.footer-column p:first-of-type {
    color: #36332E; /* Changes color only for Copyright & All rights reserved */
    font-weight: bold;
}
.footer {
    background-color: none;
    color: #FAA216!important;
    padding: 20px;
    width: 100%;
    position: relative;
    margin-bottom: -90px; /* Remove negative bottom to prevent overflow */
    box-sizing: border-box; /* Ensure padding doesn't cause overflow */
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 10px; /* Reduce spacing between columns */
    padding: 0 10px; /* Add horizontal padding to prevent overflow */
    box-sizing: border-box; /* Ensure padding doesn't cause overflow */
}

/* Footer Column Titles */
.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px; /* Reduce space below heading */
    font-weight: bold;
    text-align: left;
	color:#36332E;
}

/* Footer Links and Text */
.footer-column p, 
.footer-column a {
    color: #FAA216;
    text-decoration: none;
    font-size: 19px;
    line-height: 1.4; /* Reduce space between lines */
    display: block;
    text-align: left;
    margin-bottom: 5px; /* Reduce space below each item */
}

.footer-column a:hover {
    text-decoration: underline;
}

/* Footer Logo */
.footer-logo {
    height: 40px;
    margin-bottom: 5px; /* Reduce bottom space */
}

/* Subscribe Input Container */
.footer-subscribe {
    display: flex;
    align-items: center;
    position: relative;
}

/* Subscribe Input */
.subscribe-input {
    padding: 8px 40px 8px 10px; /* Reduce padding */
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: #FAA216;
    color: #FAA216;
}

/* Placeholder Color */
.subscribe-input::placeholder {
    font-family: 'Afacad', sans-serif;
    color: #36332E; /* Placeholder text color */
    opacity: 1; /* Ensures full visibility */
}

/* Telegram Icon Inside Input */
.subscribe-button {
    position: absolute;
    right: 10px; 
    background: none;
    border: none;
    font-size: 18px;
    color: #fff;
    pointer-events: none; 
}

/* ======= MOBILE FOOTER RESPONSIVENESS ======= */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack items */
        text-align: left; /* Ensure all text is left-aligned */
        gap: 5px; /* Reduce space between sections */
        margin-left: 10px; /* Small left margin */
        margin-right: 10px; /* Small right margin */
    }

    .footer-column {
        text-align: left;
        margin: 10px 0; /* Reduce vertical spacing */
    }

    .footer-subscribe {
        justify-content: flex-start; /* Align input field to left */
    }

    .subscribe-input {
        width: calc(100% - 3px); /* Make sure it fits within the container */
    }
}





.advaita-content {
    width: 40%;
}

.advaita-title {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.advaita-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #555;
    margin-bottom: 20px;
}

.advaita-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.advaita-images {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 25%;
}

.advaita-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .advaita-section {
        flex-direction: column;
        gap: 30px;
    }

    .advaita-content, 
    .advaita-images {
        width: 100%;
    }

    .advaita-img {
        width: 100%;
    }
}

    gap: 15px; /* Space between lines and logo */
    margin-top: 20px; /* Moves the entire logo section down */
}

.logo {
    height: 50px; /* Adjust logo size */
    width: auto;
    margin-top: 10px; /* Moves only the logo down */
}

.line-left, .line-right {
    width: 50px;  /* Adjust width of the lines */
    height: 2px;   /* Thickness of the lines */
    background-color: black; /* Line color */
}


/*Products*/

@import url('https://fonts.googleapis.com/css2?family=Afacad&display=swap');

body {
    font-family: 'Afacad', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #36332E;
}

/* Products Section */
.products-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
}

/* Content Container */
.content-container {
    display: flex;
    align-items: stretch; /* Ensures both sections stretch to equal height */
    justify-content: center;
    max-width: 1000px;
    margin: auto;
    gap: 50px;
}

/* Text Content */
.text-content {
    flex: 1; /* Makes text content take equal space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Aligns text vertically */
    max-width: 500px;
    text-align: left;
	
	
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #FF9800;
    margin: 8px 0;
}

.description {
    font-size: 22px;
    margin-bottom: 10px;
}

.content {
    font-size: 22px;
    line-height: 1.6;
}

/* Image Content */
.image-content {
    flex: 1; /* Makes image container take equal space */
    display: flex;
    align-items: center;
}

.image-content img {
    width: 140%;
    height: 100%; /* Ensures image matches text height */
    object-fit: cover; /* Prevents distortion */
    border-radius: 8px;
}

/* Product Group (Below Content) */
.product-group {
    margin-top: 30px;
}

.product-group img {
    max-width: 100%;
    height: auto;
}

/* --------------------- */
/* RESPONSIVE DESIGN */
/* --------------------- */

/* For Tablets */
@media screen and (max-width: 1024px) {
    .content-container {
        flex-direction: column; /* Stack content vertically */
        text-align: center;
    }
    .text-content {
        max-width: 90%;
        text-align: center;
    }
    .image-content img {
        width: 80%;
        height: auto; /* Adjust height to fit content */
        margin-top: 20px;
    }
}

/* For Mobile Devices */
@media screen and (max-width: 768px) {
    .content-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .text-content {
        max-width: 100%;
        text-align: center;
        padding: 0 15px;
    }
    .image-content img {
        width: 90%;
        height: auto; /* Adjust height to maintain proportions */
        margin-top: 15px;
    }
    .product-group img {
        width: 95%;
    }
}

/* For Small Mobile Devices */
@media screen and (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
    .description,
    .content {
        font-size: 16px;
    }
    .image-content img {
        width: 100%;
    }
    .product-group img {
        width: 100%;
    }
}

/* features */

@import url('https://fonts.googleapis.com/css2?family=Afacad&display=swap');

body {
    font-family: 'Afacad', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #36332E;
}

/* Orange Banner */
.banner {
    background-color: #FAA216;
    text-align: center;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    color: white!important;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 90%;
}
.banner p{
	color:white;
	font-size:30px;
}


/* Features Section */
.features-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px auto;
    max-width: 1000px;
    flex-wrap: wrap;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    text-align: center;
    width: 300px;
    transition: transform 0.3s ease-in-out;
	font-size:20px;
}

.feature-card:hover {
    transform: translateY(-5px);
}
.feature-card p{
	font-size:20px;
}

.feature-card img {
    width: 120px; /* Set a fixed width */
    height: 127px; /* Set a fixed height to keep uniformity */
    object-fit: contain; /* Ensures the image fits without distortion */
    margin-bottom: 10px;
}


/* Responsive Design */
@media screen and (max-width: 1024px) {
    .features-container {
        flex-direction: row; /* Keep it horizontal */
        flex-wrap: wrap; /* Allow wrapping */
        justify-content: center; /* Center align */
    }

    .feature-card {
        width: 45%; /* Adjust width to fit 2 cards in one row */
        max-width: 350px; /* Limit max width */
    }
}


@media screen and (max-width: 768px) {
    .banner {
        font-size: 18px;
        padding: 15px;
    }
    .feature-card {
        width: 90%;
    }
}

.slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    position: relative;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    width: 80%;
    overflow: visible;
    background: transparent;
    border-radius: 10px;
    padding: 0;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Fixed positive gap value */
    transition: transform 0.5s ease-in-out;
}

.slider img {
    transition: all 0.5s ease;
    object-fit: contain;
    border-radius: 8px;
}

/* Default sizes for desktop */
.small {
    width: 180px;
    height: 180px;
}

.medium {
    width: 240px;
    height: 300px;
}

.large {
    width: 300px;
    height: 400px;
}

.slider-btn {
    background-color: #FAA216;
    color: white;
    border: none;
    cursor: pointer;
    padding: 12px;
    font-size: 24px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: -120px; /* Adjusted for better visibility */
}

.next {
    right: -120px;
}

/* ===== Media Queries for Responsive Design ===== */

/* Tablet View (768px to 1024px) */
@media (max-width: 1024px) {
    .small {
        width: 140px;
        height: 140px;
    }
    .medium {
        width: 180px;
        height: 230px;
    }
    .large {
        width: 250px;
        height: 320px;
    }
    .prev {
        left: -40px;
    }
    .next {
        right: -40px;
    }
}

/* Mobile View (480px to 768px) */

    .prev {
        left: -30px;
    }
    .next {
        right: -30px;
    }
}

/* Small Mobile View (less than 480px) */
@media (max-width: 480px) {
    .small {
        width: 100px;
        height: 100px;
    }
    .medium {
        width: 140px;
        height: 180px;
    }
    .large {
        width: 180px;
        height: 220px;
    }
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
        padding: 6px;
    }
    .prev {
        left: -40px;
    }
    .next {
        right: -40px;
    }
}

/* Mobile View (480px to 768px) */
@media (max-width: 768px) {
    .slider-container {
        overflow: hidden; /* Prevents images from moving outside the visible area */
        width: 100%;      /* Ensures the slider scales correctly */
    }

    .slider {
        gap: 5px;         /* Reduces spacing between images */
    }

    .small {
        width: 100px;
        height: 100px;
    }
    .medium {
        width: 130px;
        height: 170px;
    }
    .large {
        width: 160px;
        height: 200px;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
        padding: 4px;
    }

    .prev {
        left: 5px; /* Adjust position to prevent cutting */
    }
    .next {
        right: 5px; /* Adjust position to prevent cutting */
    }
}
