/* General Reset */
* { box-sizing: border-box; }

body {
    font-family: Arial;
    margin: 0;
    padding: 0;
    background: #f1f1f1;
}
header
{
	background-color:Red;
	text-align:center;
	color:White;
	}

/* Top Navigation */
.topnav {
    overflow: hidden;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 20px;
}

.topnav .brand {
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
    -webkit-background-clip: text;
    color: transparent;
    display: block;
    flex-grow: 1;
}

.topnav a {
    display: inline-block;
    color: #414145;
    text-align: center;
    padding: 16px 24px;
    text-decoration: none;
    font-weight: bold;
    transform: skewX(-12deg);
    border-top-left-radius: 20px;
    transition: all 0.3s ease;
}

.topnav a:hover,
.topnav a.active {
    background-color: #fa790c;
    color: white;
    transform: scale(1.1) skewX(-12deg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
}

@media screen and (max-width: 768px) {
    .topnav {
        flex-direction: column;
        align-items: flex-start;
    }

    .topnav .brand {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .topnav a {
        width: 100%;
        text-align: left;
        margin-bottom: 5px;
        transform: none;
        border-radius: 10px;
        display: none;
    }

    .topnav.responsive a {
        display: block;
    }

    .hamburger {
        display: block;
        color: #414145;
    }
}

/* Banner Slider */
.banner-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 1s ease;
}

.slide {
    flex: 0 0 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-overlay {
    position: absolute;
    top: 30%;
    left: 5%;
    z-index: 2;
}

.text-box {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 20px;
    border-radius: 10px;
    color: white;
    max-width: 400px;
}

/* Header Container */
.header-bar {
    background: #000; /* Dark background for better contrast */
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    overflow: hidden;
}

/* Brand Heading */
.heading {
    font-size: 2.2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6a00, #ffb700, #2affd5, #2f80ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

/* Sub Heading with Marquee Animation */
.sub-heading {
    font-size: 1.1rem;
    color: #fff;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.sub-heading span {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 15s linear infinite;
}

/* Animation for scrolling text */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}



.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 3;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: #fa790c;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 12px;
    cursor: pointer;
    z-index: 3;
}

.left-arrow { left: 10px; }
.right-arrow { right: 10px; }

.overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

/* Testimonials Section */
.testimonials {
    background-color: #ffffff;
    padding: 40px;
    text-align: center;
}

.testimonial-heading {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

.testimonial-card {
    display: inline-block;
    background-color: #f9f9f9;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonial-card p {
    font-style: italic;
    color: #666;
}

.testimonial-card .name {
    font-weight: bold;
    margin-top: 10px;
}

.scroll-text {
  overflow: hidden;
  white-space: nowrap;
  animation: scroll-left 15s linear infinite;
  color: white;
  background-color: darkred;
  padding: 5px;
}

@keyframes scroll-left {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}


footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}



.products-section {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    color: #fa790c;
    margin-bottom: 30px;
    font-weight: bold;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.product-card {
    background: #f1f1f1;
    padding: 20px;
    width: 260px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.product-card h3 {
    margin: 15px 0 10px;
    font-size: 1.2rem;
    color: #333;
}

.product-card p {
    font-size: 1rem;
    color: #666;
}

.buy-button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #fa790c;
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buy-button:hover {
    background-color: #e15f00;
}


.testimonials-section {
    background-color: #fff7f0;
    padding: 60px 20px;
    text-align: center;
}

.testimonial-title {
    font-size: 2rem;
    color: #fa790c;
    margin-bottom: 40px;
    font-weight: bold;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    padding: 25px 20px;
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    font-style: italic;
    position: relative;
}

.testimonial-card::before {
    content: "“";
    font-size: 4rem;
    color: #fa790c;
    position: absolute;
    top: 10px;
    left: 15px;
}

.testimonial-card p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    font-size: 1rem;
    color: #555;
    font-weight: bold;
}


.button-container {
  display: flex;
  justify-content: space-between; /* Left और Right में बटन रखेगा */
  padding: 10px 20px;
  background: #f5f5f5;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;            /* Left side fix */
  background-color: #25D366;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe57;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
  pointer-events: none; /* ताकि क्लिक इवेंट बटन पर ही रहे */
}



.scroll-to-top {
  font-size: 24px;
  cursor: pointer;
  color: #fa790c;
  text-decoration: none;
  padding: 5px 10px;
}

/* --- New Updates Added Below --- */

/* Smooth scrolling for whole page */
html {
  scroll-behavior: smooth;
}

/* New Button Style */
.btn-primary {
  background-color: #fa790c;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #e15f00;
}

/* Responsive Improvements for product grid on small devices */
@media (max-width: 480px) {
  .product-grid {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    width: 90%;
  }
}

/* Dark Mode Basic Setup - add class 'dark-mode' on body to activate */
body.dark-mode {
  background-color: #121212;
  color: #ddd;
}

body.dark-mode header {
  background-color: #a50000;
  color: #eee;
}

body.dark-mode .topnav {
  background-color: #222;
}

body.dark-mode .topnav a {
  color: #ccc;
}

body.dark-mode .topnav a:hover,
body.dark-mode .topnav a.active {
  background-color: #fa790c;
  color: #fff;
}

body.dark-mode .testimonial-card {
  background-color: #1e1e1e;
  box-shadow: 0 4px 10px rgba(250, 121, 12, 0.3);
  color: #ccc;
}

body.dark-mode footer {
  background-color: #111;
  color: #aaa;
}

/* Scroll-to-top button styling */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #fa790c;
  color: white;
  border-radius: 50%;
  padding: 10px 15px;
  box-shadow: 0 4px 8px rgba(250, 121, 12, 0.5);
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.scroll-to-top:hover {
  background-color: #e15f00;
}

/* Accessibility Focus styles for links and buttons */
a:focus,
button:focus {
  outline: 3px solid #fa790c;
  outline-offset: 3px;
}



.more-products-btn {
  text-align: center;
  margin-top: 30px;
}

.btn-many-more {
  background: linear-gradient(to right, #4CAF50, #2E7D32);
  color: white;
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-many-more:hover {
  background: linear-gradient(to right, #2E7D32, #4CAF50);
  transform: scale(1.05);
}


.contact-section {
  padding: 50px 20px;
  background: #fff;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  margin-bottom: 20px;
  color: #2E7D32;
}

.contact-info p {
  margin: 10px 0;
  font-size: 16px;
}

.contact-map {
  flex: 1;
  min-width: 300px;
  height: 100%;
}

h1, h2 {
  color: #2E7D32;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}

.about-section, .mission-vision-section, .team-section {
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.about-section .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mission-vision-section .mission, 
.mission-vision-section .vision {
  margin-bottom: 30px;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.member {
  background-color: #f1f1f1;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 250px;
  transition: transform 0.3s ease;
}

.member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}