/*
Theme Name: Gangaa Theme
Theme URI: https://yourwebsite.com
Author: Your Name
Description: A custom WordPress theme with a left sidebar and content on the right.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-menu, sidebar, bootstrap, responsive
*/

/* Main CSS */

/* General Reset (Bootstrap already includes Normalize.css) */
html {
  scroll-behavior: smooth;
}
html, body {
/*   font-family: 'Poppins', sans-serif;  */
/* 	font-family: "Lora", serif; */
	font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  /* background: #9599a9; */
  height: 100%;
}

/* Links */
a {
  color: #007bff; /* Bootstrap primary color */
  text-decoration: none;
  transition: 0.6s;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
  transform: scale(1.01);
}

/* Buttons */
.btn {
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 15px;
/*   font-family: "Playfair Display", serif; */
	/* font-family: "Poppins", sans-serif; */
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h2 {
  font-size: 42px;
}

/* Containers */
.container {
  max-width: 1200px;
  margin: auto;
}

/* Navbar */
.navbar {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer */
/* .footer {
  background: #343a40;
  color: #ffffff;
  padding: 20px;
  text-align: center;
} */

.bg-cover {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-white {
  background: white;
}

.bg-black {
  background: black;
  color: white;
}

.section {
  padding: 100px 0;
}


/* Forms */
input, textarea, select {
  border-radius: 4px;
}

input::placeholder {
  color: #fff !important; /* Optional: lighter placeholder */
}


input:focus,
input:focus-visible {
  border: 1px solid #555; /* Optional: slight border change on focus */
  outline: none; /* Removes default focus ring */
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-primary {
  background: #d3260e;
  width: 100%;
  border: none;
  padding: 10px;
}

/* Custom Card Styling */
.card {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Grid (Custom Utility) */
@media (max-width: 768px) {
  .grid-2, .grid-3 {
      grid-template-columns: 1fr;
  }
}

.bg_blue {
  background: #3A489C;
}

.parallax {
  position: relative;
  /* background-attachment: fixed; */
  background-size: cover;
  background-position: center;
}

.btn-submit {
  background-color: #007bff;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 4px;
}
.btn-submit:hover {
  background-color: #0056b3;
}





/* Header */

.top-bar {
  background-color: #d3260e;
  font-size: 14px;
}

.navbar-nav a {
  font-weight: 500;
  padding: 8px 15px;
  color: #000;
  position: relative;
  text-decoration: none;
  transition: 0.6s;
}

.navbar-nav .menu-item a.active,
.navbar-nav .menu-item a:hover {
  color: #d3260e;
  text-decoration: none;
}

/* Active menu underline */
.navbar-nav .current-menu-item a::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 24px;
  background: #d3260e;
  bottom: 5px;
  left: 0;
  transform: translateX(-50%);
  text-decoration: none;
}

/* Custom Hamburger to X */
.custom-toggler .navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 24px;
  position: relative;
}

.custom-toggler .navbar-toggler-icon::before,
.custom-toggler .navbar-toggler-icon::after,
.custom-toggler.collapsed .navbar-toggler-icon::before,
.custom-toggler.collapsed .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #000;
  left: 0;
  transition: 0.3s;
}

.custom-toggler .navbar-toggler-icon::before {
  top: 8px;
}

.custom-toggler .navbar-toggler-icon::after {
  top: 16px;
}

.custom-toggler.collapsed .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 12px;
}

.custom-toggler.collapsed .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 12px;
}

@media (max-width: 991px) {
  .navbar-nav {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
  }
}

li.menu-item {
  margin-right: 35px;
}


/* Banner */

.home-slider {
  position: relative;
  overflow: hidden;
}

.slide-item {
  height: 500px!important;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.slider-text {
  max-width: 600px;
}

.slider-text h2 {
  font-size: 44px;
  color: #000;
  font-weight: 600;
  line-height: 1.3;
}

.slider-text .green {
  color: #4CAF50;
}

/* Slick Dots (Vertical Numbers) */
.slick-dots {
  position: absolute;
  top: 45%;
  width: 56px;
  height: 150px;
  background: #d3260e;
  border-radius: 0 30px 30px 0;
  transform: translateY(-50%);
  display: flex !important;
  flex-direction: column;
  /* align-items: center; */
  gap: 20px;
  counter-reset: slide;
  z-index: 9;
}

.slick-dots li {
  counter-increment: slide;
  margin-top: 6px;
}

.slick-dots li button {
  background: transparent;
  border: 1px solid !important;
  opacity: 0.6 !important;
  font-size: 16px;
  font-weight: bold;
  color: #d3260e;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #d3260e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: 10px 0; */
}

.slick-dots li.slick-active button {
  color: #fff;
  border: 2px solid!important;
  opacity: 1!important;
}

.slick-dots li button:before {
  color: transparent!important;
}




/* about */

.about-section {
  padding: 80px 0;
  position: relative;
  background-color: #fff;
}

.about-section .about-img {
  max-width: 90%;
  height: auto;
}

.about-section .about-text {
  padding-left: 30px;
}

.about-section .about-text .subtitle {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
  position: relative;
  padding-bottom: 10px;
}

.about-section .about-text .subtitle::after {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #d3260e;
  display: block;
  margin-top: 8px;
}

.about-section .about-text .title {
  font-size: 36px;
  color: #d3260e;
  margin: 20px 0;
  font-weight: 700;
}

.about-section .about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.about-section .btn-know-more {
  display: inline-block;
  margin-top: 20px;
  background: #d3260e;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.about-section .btn-know-more:hover {
  background: #d3260e;
  text-decoration: none;
  transform: scale(1.05);
}


/* products */

.products-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 80px 0;
}

.products-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #d3260e;
  margin-bottom: 10px;
}

.products-section .section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.products-section .product-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products-section .product-card img {
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

.products-section .product-name {
  font-size: 18px;
  font-weight: 600;
  color: #d3260e;
  margin: 10px 0;
}

.products-section .product-price {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

.products-section .btn-order {
  margin-top: auto;
  background: #d3260e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.products-section .btn-order:hover {
  background: #a02626;
  text-decoration: none;
  transform: scale(1.05);
}


/* offers */

.offer-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 80px 0;
  position: relative;
}

.offer-banner .offer-content {
  color: #fff;
  text-align: center;
}

.offer-banner .offer-title {
  font-size: 64px;
  font-weight: bold;
  color: #d3260e; /* Bright Red */
}

.offer-banner .offer-subtitle {
  font-size: 36px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.offer-banner .btn-shop-now {
  background: #d3260e;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  /* transition: 0.6s; */
}

.offer-banner .btn-shop-now:hover {
  background: #d62839;
  text-decoration: none;
  transform: scale(1.05);
}


/* team */

.team-section {
  padding: 80px 0;
  background: #fff;
}

.team-section .team-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #743e0d;
}

.team-section .team-subtitle {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

.team-stars {
  font-size: 14px;
  color: #ffb400;
  margin-top: 15px;
}

.team-section .team-content {
  border: 2px solid #f4b83a;
  padding-bottom: 20px;
}

.team-section .team-card {
  background: #f4b83a;
  /* border-radius: 20px; */
  padding: 30px 20px 20px;
  margin-bottom: 30px;
  transition: 0.3s;
}

.team-stars span {
  font-size: 18px;
  color: #000;
}

.team-section .team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.team-section .team-image-wrapper {
  background: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-section .team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-section .team-name {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #743e0d;
  margin-top: 10px;
}

.team-section .team-role {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
}

.team-section .team-social a {
  color: #333;
  margin: 0 8px;
  font-size: 16px;
  transition: 0.3s;
}

.team-section .team-social a:hover {
  color: #743e0d;
}


/* new products */

.products-cards-section {
  padding: 80px 0;
}

.products-cards-section .product-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 30px;
  border-radius: 15px;
  min-height: 200px;
  /* display: flex; */
  align-items: center;
}

.products-cards-section .product-name {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.products-cards-section .product-price {
  font-size: 16px;
  color: #fff;
  margin: 10px 0;
}

.products-cards-section .btn-order {
  background: #e54423;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.products-cards-section .btn-order:hover {
  background: #c73615;
  transform: scale(1.05);
}

.products-cards-section .img-fluid {
  max-width: 100%;
  height: auto;
}


/* contact */

.contact-section {
  padding: 80px 0;
}

.contact-title {
  font-size: 32px;
  font-weight: bold;
  color: #c73615;
  margin-bottom: 15px;
}

.contact-subtitle {
  margin-bottom: 30px;
  color: #333;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-item .icon {
  background-color: #f3d6d1;
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item img {
  width: 24px;
  height: 24px;
}

.info-item .icon .fa, .info-item .icon .fas {
  color: #d3260e;
}

.contact-form-wrapper {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
}

.contact-form-wrapper label {
  font-size: 14px;
  font-weight: bold;
  color: #c73615;
}

.contact-form-wrapper .form-control {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
}

.btn-submit {
  background-color: #c73615;
  color: #fff;
  padding: 12px 20px;
  width: 100%;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-submit:hover {
  background-color: #a12a12;
}


/* footer */

.footer-section {
  background-color: #000;
  color: #fff;
  padding: 60px 0 20px;
  font-size: 14px;
}

.footer-logo {
  max-width: 120px!important;
}

.footer-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #c73615;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  color: #ccc;
}

.footer-links li a {
  color: #ccc;
  text-decoration: none;
}

.footer-links li a.active,
.footer-links li a:hover {
  color: #c73615;
}

.footer-contact .icon {
  margin-right: 8px;
  color: #c73615;
  font-size: 16px;
}

.highlight {
  color: #c73615;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
}

/* .footer-section img {
  height: 90px;
} */

/* single banner */



/* offers */

.single-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 120px 0;
  position: relative;
}

.single-banner .offer-content {
  color: #fff;
}

.single-banner .offer-title {
  font-size: 52px;
  font-weight: bold;
  color: #d3260e; /* Bright Red */
}


.about-image {
  position: relative;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* Optional, to add rounded corners */
}

[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}




/* Woocommerce */

ul.products li {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 25px !important;
}

ul.products li.product .button {
  display: inline-block;
  margin-top: 1em;
  margin-top: auto;
  background: #d3260e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.woocommerce ul.products li.product a img {
  width: 75%;
  margin: 0 auto !important;
}


.single-woo-banner {
  padding: 80px 0;
	    background: #f8f8f8;
}

.woo_content {
  padding: 80px 0;
}

.woocommerce ul.products {
  padding-top: 30px !important;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
  font-size: 1.2em;
  color: #000;
}
.woocommerce-Price-amount.amount {
  font-size: 1em;
  color: #000;
}
/* Container for the form to style the select element */
.woocommerce-ordering {
display: flex;
align-items: center;
justify-content: flex-start;
margin: 20px 0;
font-family: Arial, sans-serif;
}

/* Styling the select element */
.woocommerce-ordering select.orderby {
font-size: 16px;
padding: 10px 15px;
border: 2px solid #ddd;
border-radius: 5px;
background-color: #fff;
color: #333;
cursor: pointer;
width: auto;
margin-right: 10px;
transition: border-color 0.3s ease;
}

/* Hover and focus states */
.woocommerce-ordering select.orderby:hover,
.woocommerce-ordering select.orderby:focus {
border-color: #0073aa; /* Change to your brand color */
outline: none;
}

/* Styling the options inside the select dropdown */
.woocommerce-ordering select.orderby option {
padding: 10px;
font-size: 14px;
}

/* Option hover state */
.woocommerce-ordering select.orderby option:hover {
background-color: #f1f1f1;
}

/* Custom arrow for the select dropdown */
.woocommerce-ordering select.orderby::-ms-expand {
display: none; /* Hide the default dropdown arrow in IE */
}

.woocommerce-ordering select.orderby {
appearance: none; /* Remove default dropdown arrow in modern browsers */
-webkit-appearance: none; /* Safari */
-moz-appearance: none; /* Firefox */
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><polygon points="4,5 8,9 12,5" fill="none" stroke="#333" stroke-width="1.5"/></svg>');
background-repeat: no-repeat;
background-position: right 10px center;
background-size: 12px;
}

/* Optional: Style hidden input field */
.woocommerce-ordering input[type="hidden"] {
display: none;
}



.custom-message-wooproduct {
  font-weight: bold;
  color: #d9534f;
  margin-top: 10px;
}



/* Responsive */
@media (max-width: 767px) {
  .slide-item {
    height: 400px!important;
    text-align: center;
  }
  .slider-text {
    margin: 0 auto;
  }
  .slick-dots {
    display: none !important;
  }
  .slide-item .row {
    background: #1717178a;
  }
  .slider-text h2 {
    font-size: 28px;
    color: #ffffff;
    line-height: 1.5;
    margin-top: 20px;
  }
  .about-section, .products-section, .team-section, .products-cards-section {
    padding: 40px 0;
  }
  .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    float: none;
    margin: 0;
    margin-bottom: 20px;
    padding: 0;
    position: relative;
    width: 100%;
    margin-left: 0;
}

.offer-banner .offer-title {
  font-size: 48px;
}
.offer-banner .offer-subtitle {
  font-size: 28px;
}
.team-section .team-content {
  margin-bottom: 20px;
}
}