
/* Main */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --white: #ffffff;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Quicksand', sans-serif;
}


a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ------------------------------------------------navbar---------------------------------------------- */
/* Top Navbar */
.top-navbar {
  background: #1a73e8;
  color: white;
  padding: 10px 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.top-navbar .contact-info {
  display: flex;
  gap: 2rem;
}

.top-navbar .contact-info p {
  display: flex;
  align-items: center;
}

.top-navbar .contact-info i {
  margin-right: 8px;
}

.top-navbar .social-links {
  display: flex;
  gap: 1rem;
}

.top-navbar .social-links a {
  
  font-size: 1.2rem;
  transition: color 0.3s;
}

.top-navbar .social-links a:hover {
  color: #ffffff;
}

/* Main Navbar */
.main-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: white;
  
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #df7a06;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #1a73e8;
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
  color: #df7a06;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #f15a29;
  transition: width 0.3s;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  display: none;
  z-index: 1;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  display: block;
  border-bottom: 1px solid #eee;
}

.dropdown-content a:hover {
  background: #f9f9f9;
}

.dropdown:hover .dropdown-content {
  display: block;
}
@media (max-width: 992px){
  .nav-toggle-label {
    display: block;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #f9f9f9;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .nav-toggle:checked ~ .nav-links {
    max-height: 500px;
    box-shadow: 0 10px 10px hsla(0, 0%, 100%, 0.1);
    
  }
  
  .nav-links li {
    padding: 1rem 2rem;
    border-bottom: 1px solid #eee;
  }
  
  .dropdown-content {
    position: static;
    box-shadow: none;
    padding-left: 1rem;
  }
  
  .dropdown-content a {
    padding: 0.5rem 0;
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .top-navbar {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
    height: 100px;
    
  }
  
  .top-navbar .contact-info {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    height: 50px;
  }
  
  .top-navbar .contact-info p {
    justify-content: center;
  }
  
}
@media (max-width: 480px) {
  .main-navbar {
    padding: 1rem;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .logo-img {
    height: 30px;
  }
  
  section {
    padding: 3rem 0;
  }
  
  h2 {
    font-size: 2rem !important;
  }
}

/*--------------------------------- navbar-end--------------------- */
/* --------------------------------Footer-------------------------- */

footer {
  background: #1a73e8;
  color: white;
  padding: 50px 20px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 22px;
  margin-bottom: 20px;
  position: relative;
  font-weight: 700;
}

.footer-section h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: white;
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

.footer-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #f1f1f1;
  margin-bottom: 8px;
}

.footer-section p i {
  margin-right: 10px;
  color: #fff;
}

/* Footer Links */
.footer-section a {
  color: #f1f1f1;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-section a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Social Icons */
.navbar-top-right {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.navbar-top-right a i {
  font-size: 20px;
  background: white;
  color: #1a73e8;
  border-radius: 50%;
  padding: 10px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 20px;
  transition: 0.3s;
}

.navbar-top-right a i:hover {
  background: #0f5ad4;
  color: #fff;
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 40px;
  padding-top: 20px;
}

.footer-bottom .key {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* -------------- RESPONSIVE -------------- */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .navbar-top-right {
    justify-content: center;
  }

  .footer-section h3::after {
    margin: 8px auto 0;
  }
}

@media (max-width: 600px) {
  footer {
    padding: 40px 15px 15px;
  }

  .footer-section h3 {
    font-size: 20px;
  }

  .footer-section p,
  .footer-section a {
    font-size: 14px;
  }

  .navbar-top-right a i {
    font-size: 18px;
    width: 36px;
    height: 36px;
    padding: 9px;
  }
}


/* ----------------------------------------------------Footer End---------------------------------------- */


/* Main End */


/* Slider Styling */

/* ------------------- Slider-Fencingkart ------------------- */
/* ===== Slider Styling ===== */
.slider-Fencingkart {
  position: relative;
  width: 100%;
  height: 60vh; /* 60% of viewport height */
  overflow: hidden;
}

.slider-Fencingkart .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;         /* full width */
  height: 100%;        /* fill the 60vh container */
  object-fit: cover;   /* maintain aspect ratio, cover container */
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider-Fencingkart .slide.active {
  opacity: 1;
}

/* Responsive: smaller screens ke liye height thodi kam kar sakte ho */
@media (max-width: 768px) {
  .slider-Fencingkart {
    height: 40vh; /* mobile pe chota */
  }
}




/* .slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2; 
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
} */

/* Mobile screens */

/* @media (max-width: 768px) {
  .slider-container {
    height: auto; 
  }

  .slide img {
    height: auto;
    object-fit: cover;
    object-position: center;
  }
}

@media (min-width: 1024px) {
  .slider-container {
    height: 70vh; 

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
} */


/* Slider Styles */
/* Dots for Slider Navigation */

/* .dots {
  text-align: center;
  margin-top: 10px;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dots span.active {
  background-color: #333;
} */



/* Marquee Styles */
.news {
  background-color: #FFA800;
  color: #2C3E50;
  
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
/* Testimonials */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  padding: 20px;
}

.testimonial-card {
  flex: 1 1 calc(33.33% - 40px);
  box-sizing: border-box;
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
  .testimonial-card {
      flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .testimonial-card {
      flex: 1 1 100%;
  }
}


/* 3-11-2025 */

/* What clients say */
/* Section Styling */
.testimonial-section {
  background-color: #f9fbfc;
  padding: 80px 8%;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.testimonial-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #0078ff, #0a58ca);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
}

/* Wrapper */
.testimonial-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Side */
.testimonial-left {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  min-width: 300px;
}

.testimonial-item {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: left;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.testimonial-item img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-item p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.testimonial-item h4 {
  color: #0078ff;
  font-weight: 600;
  font-size: 1rem;
}

/* Right Side */
.testimonial-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  min-width: 300px;
}

.testimonial-right img {
  width: 100%;
  border-radius: 16px;
  height: 220px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.testimonial-right img:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
  .testimonial-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-left {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .testimonial-right {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .testimonial-section {
    padding: 60px 5%;
  }

  .testimonial-heading {
    font-size: 2rem;
    padding: 8px 16px;
  }

  .testimonial-right {
    grid-template-columns: 1fr;
  }
}
/* 3-11-2025 */


/* What clients say End */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* Section styles */
/* ---------- General Section Styling ---------- */
/* ---------- Section Styling ---------- */
#FencingKart {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f4f7ff, #ffffff);
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.secondary-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0d2b64;
  margin-bottom: 50px;
  position: relative;
}

.secondary-heading::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: #007bff;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ---------- Container ---------- */
.FencingKart-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;

}

/* ---------- Card ---------- */
.FencingKart-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  max-width: 1500px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(226, 4, 4, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.FencingKart-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.FencingKart-content.reverse {
  flex-direction: row-reverse;
  
}

/* ---------- Image ---------- */
.FencingKart-img {
  width: 45%;
  border-radius:15%;
  object-fit: cover;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);

}

/* ---------- Text ---------- */
.FencingKart-text {
  width: 55%;
  text-align: left;
}

.FencingKart-title {
  font-size: 1.8rem;
  color: #0d2b64;
  margin-bottom: 15px;
  font-weight: 600;
}

.FencingKart-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

/* ---------- Button ---------- */
.FencingKart-btn {
  background: #007bff;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.FencingKart-btn:hover {
  background: #0056d1;
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .FencingKart-content {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .FencingKart-content.reverse {
    flex-direction: column;
  }

  .FencingKart-img {
    width: 100%;
  }

  .FencingKart-text {
    width: 100%;
  }

  .FencingKart-title {
    font-size: 1.6rem;
  }

  .FencingKart-description {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  #FencingKart {
    padding: 40px 10px;
  }

  .FencingKart-content {
    padding: 20px;
  }

  .FencingKart-title {
    font-size: 1.4rem;
  }

  .FencingKart-description {
    font-size: 0.95rem;
  }

  .FencingKart-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* Product Catalog index-page */
 .featured-products {
    padding: 5rem 2%;
    background: var(--light-bg);
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 3rem;
}


.responsive-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    background-color: #fceded;
    margin: 50px auto;
    max-width: 1500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  .left-side {
    flex: 1;
    padding-right: 20px;
  }
  
  .left-side h2 {
    font-size: 28px;
    color: #2C3E50;
    margin-bottom: 20px;
  }
  
  .left-side p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
  }
  
  .left-side button {
    padding: 12px 24px;
    background-color: #FFA800;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .left-side button:hover {
    background-color: #e69500;
  }
  
  .right-side {
    flex: 1;
    text-align: center;
  }
  
  .right-side img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
  }
  @media (max-width: 680px) {
    .responsive-container {
        flex-direction: column;
        text-align: center;
    }
    .left-side {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .right-side img{
      max-width: 100%;
    height: auto;
    border-radius: 10px;
    }
  }

.price {
    color: var(--accent-color);
    font-weight: bold;
    padding: 0 1rem;
}

.buy-button {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.buy-button:hover {
    background: var(--accent-color);
}


.testimonials {
    padding: 5rem 5%;
    ;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background-color: #ecf2f8;
}

.testimonial-card {
  
   font-family: 16px'Times New Roman', Times, serif;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    color: rgb(24, 23, 23);

    text-decoration: none;
}

.stars {
    color: gold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}


@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        color: white;
    }

    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        height: 60vh;
        background: white;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle:checked ~ .nav-links {
        display: flex;
    }

    .contact-info {
      display: none; 
      
    }
   
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .dropdown-content {
        position: static;
        background: transparent;
        box-shadow: none;
    }

    .dropdown-content a {
        color: var(--white);
    }
} 

/* Product Catalog index-page End */

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------ */

/* contact.html page  */
.container-contact {
  width: 90%;
  max-width: 800px;
  margin: 60px auto;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  padding: 40px;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  background-image: url("image/about-fenc.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #FFA800;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
  margin-bottom: 25px;
  position: relative;
}

.form-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #00bfff;
  margin: 10px auto 0;
  border-radius: 2px;
}

.main-user-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.user-input-box {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

.user-input-box label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #FFA800;
}

.user-input-box input {
  height: 45px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #fff;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.user-input-box input:focus {
  border-color: #00bfff;
  box-shadow: 0 0 5px #00bfff;
}

/* Message Box */
#confirmPassword {
  height: 120px;
  resize: none;
  padding-top: 10px;
}

/* Submit Button */
.form-submit-btn {
  text-align: center;
  margin-top: 30px;
}

.form-submit-btn .btn {
  background: linear-gradient(135deg, #00bfff, #007bff);
  color: #fff;
  border: none;
  font-size: 18px;
  padding: 12px 35px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.form-submit-btn .btn:hover {
  background: linear-gradient(135deg, #0094ff, #0056d1);
  transform: translateY(-2px);
}

/* Scroll styling for smaller screens */
.main-user-info::-webkit-scrollbar {
  width: 0;
}

/* -------------- RESPONSIVE DESIGN -------------- */
@media (max-width: 900px) {
  .container-contact {
    padding: 25px;
  }

  .main-user-info {
    flex-direction: column;
    gap: 15px;
  }

  .user-input-box {
    flex: 1 1 100%;
  }

  .form-title {
    font-size: 26px;
  }

  .form-submit-btn .btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .container-contact {
    width: 95%;
    margin: 40px auto;
  }

  .user-input-box input {
    font-size: 14px;
    height: 40px;
  }

  .form-title {
    font-size: 24px;
  }

  .form-submit-btn .btn {
    font-size: 16px;
    padding: 10px 25px;
  }
}


/* contact.html- End  */

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------ */

/* about.html page  */
.about-us {
  padding: 80px 15px;
  text-align: center;
  margin-top: 60px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-direction: row-reverse; /* Default: Image Left, Description Right */
}

.about-image {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.about-image:hover {
  transform: scale(1.05);
}

.about-text {
  width: 50%;
  padding: 20px;
  color: #333;
}

.about-text h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeIn 2s ease-in-out;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  animation: fadeIn 2s ease-in-out;
}

.intro-text {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
}
/* Animations */
@keyframes fadeIn {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 768px) {
  
  .about-item {
      flex-direction: column;
      text-align: center;
  }

  .about-text {
      width: 100%;
      padding: 10px;
  }

  .about-container {
      padding: 20px;
  }

  .about-text h1 {
      font-size: 28px;
  }

  .about-text p {
      font-size: 16px;
  }

  .about-image {
      max-width: 100%;
      margin-top: 20px;
  }
}
/* about.html  End  */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------ */

/* product.html page */

/* ===== PRODUCT SECTION ===== */
.products {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.container-product {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.lg-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
  text-transform: capitalize;
  position: relative;
}

.lg-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #0078ff;
  margin: 10px auto 0;
  border-radius: 2px;
}

.product-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* SINGLE PRODUCT CARD */
.product {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-content {
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.product:hover .product-img img {
  transform: scale(1.08);
}

/* BUTTONS */
.product-btns {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px 0;
  transition: bottom 0.4s ease;
}

.product:hover .product-btns {
  bottom: 0;
}

.btn-cart, .btn-buy {
  border: none;
  outline: none;
  padding: 10px 15px;
  font-size: 0.9rem;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s ease;
  color: #fff;
}

.btn-cart {
  background: #0078ff;
}

.btn-buy {
  background: #28a745;
}

.btn-cart:hover {
  background: #005fcc;
}

.btn-buy:hover {
  background: #218838;
}

/* PRODUCT INFO */
.product-info {
  padding: 15px;
  text-align: left;
}

.product-info-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rating {
  color: #ffb400;
  font-size: 0.9rem;
}

.product-name {
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  display: block;
  margin: 10px 0;
  font-weight: 600;
  transition: color 0.3s ease;
}

.product-name:hover {
  color: #0078ff;
}

.product-price {
  color: #111;
  font-size: 1rem;
  font-weight: 700;
}

/* Optional sale/off badge */
.off-info {
  position: absolute;
  top: 12px;
  left: -40px;
  background: #ff4757;
  color: white;
  padding: 6px 40px;
  font-size: 0.8rem;
  font-weight: bold;
  transform: rotate(-45deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .lg-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .product-btns {
    padding: 10px 0;
  }
  .btn-cart, .btn-buy {
    padding: 8px 10px;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .products {
    padding: 40px 10px;
  }
  .product-info {
    padding: 10px;
  }
  .product-name {
    font-size: 0.95rem;
  }
  .product-price {
    font-size: 0.9rem;
  }
}

/* product.html End */


/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ===== BLOG PAGE SECTION ===== */
/* ===== FEATURED BLOG SECTION (ABOUT CONTAINER) ===== */
.about.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.about.container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contentBx {
  flex: 1 1 500px;
  padding: 10px;
}

.contentBx .titleText {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.4;
}

.contentBx .title-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contentBx .btn2 {
  display: inline-block;
  background: #28a745;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.contentBx .btn2:hover {
  background: #218838;
}

.imgBx {
  flex: 1 1 400px;
  text-align: center;
}

.imgBx img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.4s ease;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.about.container:hover .imgBx img {
  transform: scale(1.05);
}

/* ===== BLOG POSTS CONTAINER ===== */
.post.container {
  max-width: 1200px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.post-box {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.post-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.post-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.post-box:hover .post-img {
  transform: scale(1.05);
}

.post-title {
  color: #222;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 20px 20px 10px;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.post-title:hover {
  color: #0078ff;
}

.post-description {
  color: #555;
  font-size: 0.95rem;
  margin: 0 20px 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.post-box .btn2 {
  align-self: flex-start;
  margin: 0 20px 20px;
  background: #28a745;
  color: #fff;
  padding: 8px 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.post-box .btn2:hover {
  background: #218838;
}

/* ===== MARQUEE SECTION ===== */
.slider-contact {
  position: relative;
  overflow: hidden;
}

.slider img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.news {
  background-color: #0078ff;
  color: #fff;
  padding: 8px 0;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .about.container {
    flex-direction: column;
    text-align: center;
  }
  .contentBx {
    order: 2;
  }
  .imgBx {
    order: 1;
  }
  .imgBx img {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .contentBx .titleText {
    font-size: 1.6rem;
  }
  .contentBx .title-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .post.container {
    gap: 20px;
  }
  .post-title {
    font-size: 1rem;
  }
  .post-description {
    font-size: 0.9rem;
  }
  .contentBx .btn2,
  .post-box .btn2 {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}


/* Blog.htmlEnd */


/* blog-dis.html-page */
.blog-main{
  background-color: #f0ebeb;
}

/* Description Section */
.description-section-blog  {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}

.description-section-blog  h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: justify;
  color: red
}

.description-section-blog  p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
 

  .description-section-blog h2 {
      font-size: 1.5rem;
      text-align: justify;
  }

  .description-section-blog p {
      font-size: 0.9rem;
      text-align: justify;
  }
}


/* blog-dis.html-page End */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------ */