* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

.shape{
position:fixed;
width:80px;
height:80px;
background:rgba(0,119,182,0.1);
border-radius:50%;
animation:float 6s infinite ease-in-out;
}

.shape1{top:20%;left:5%;}
.shape2{top:60%;right:5%;}
.shape3{bottom:10%;left:10%;}

@keyframes float{
0%{transform:translateY(0)}
50%{transform:translateY(-20px)}
100%{transform:translateY(0)}
}

body {
  background: #f2f6fc;
  color: #333;
}
/* MOBILE RESPONSIVE NAVBAR */

@media (max-width:768px){

header{
flex-direction:column;
align-items:center;
}

nav{
display:flex;
flex-direction:column;
width:100%;
text-align:center;
}

nav a{
display:block;
padding:12px;
border-bottom:1px solid #eee;
font-size:16px;
}

.logo-box{
margin-bottom:10px;
}

}
nav a:hover {
  color: inherit;
  background: none;
}

.windmill-bg{
  position:fixed;
  right:20px;
  bottom:20px;
  width:260px;
  opacity:0.10;
  z-index:-1;
}
.left-gif{
position:fixed;
left:20px;
bottom:20px;
width:220px;
opacity:0.10;
z-index:-1;
}
/* NAVBAR */

header {
background:linear-gradient(90deg, #fafbff, #ffffff);
nav{
display:flex;
gap:20px;
flex-wrap:wrap;
}

@media(max-width:768px){

nav{
justify-content:center;
font-size:14px;
}

header{
flex-direction:column;
align-items:center;
}

}


;

  padding: 15px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo + Text Container */
.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  font-size: 22px;
  color: #ffd60a;
}
.brand {
    font-size: 35px;
    font-weight: bold;
    letter-spacing: 1px;
}

.brand-blue {
   
    color: #2da7e0;    /* dark blue */
}

.brand-light {
   color: #1f5fae;
       /* light blue */
}

/* Logo Image */
.logo-box img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Optional glow hover */
.logo-box img:hover {
  transform: rotate(5deg) scale(1.05);
  transition: 0.3s;
}

.logo {
  color: #ffcc00;
  font-size: 24px;
  font-weight: bold;
}

nav a {
  color: rgb(30, 28, 28);
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #1f5fae;
}

/* HERO */
/* Split brand colors */
.brand1 {
        color: #2da7e0;  /* Heravendra */
    font-weight: 800;
}

.brand2 {
    
  
    color: #1f5fae;  /* Engineering */
    font-weight: 800;
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;

  /* Attractive Gradient Background */
  background: linear-gradient(120deg, #141e30, #a99c9a);
}

/* Hero Text */
.hero-content h1 {
  font-size: 40px;
  font-weight: 900;
  color: white;
  text-shadow: 0px 0px 25px rgba(0,0,0,0.6);
}

.hero-content p {
  font-size: 20px;
  margin-top: 15px;
  color: #f1f1f1;
}

/* Get Started Button */
.hero-btn {
  margin-top: 25px;
  padding: 15px 45px;
  font-size: 20px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;

  background: linear-gradient(90deg, #ff4d6d, #ff9f1c);
  color: white;

  box-shadow: 0px 0px 25px rgba(255, 77, 109, 0.8);
  transition: 0.3s;
}

.hero-btn:hover {
  transform: scale(1.08);
  box-shadow: 0px 0px 35px rgba(255, 159, 28, 1);
}
/* sprinkles */
/* Floating Sprinkle Lights */
.light {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  filter: blur(80px);
  animation: floatLight 6s infinite alternate ease-in-out;
}

.light1 {
  top: 15%;
  left: 20%;
}

.light2 {
  bottom: 20%;
  right: 15%;
}

@keyframes floatLight {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-60px);
  }
}
#sprinkleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}


/* SECTIONS */
.section {
  padding: 80px 10%;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,.15);
}

/* CONTACT FORM */
form {
  max-width: 500px;
  margin: auto;
  display: grid;
  gap: 15px;
}

input, textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  padding: 12px;
  background: #00c853;
  border: none;
  color: white;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: #141e30;
  color: white;
  text-align: center;
  padding: 15px;
}

/* ===== HERO ANIMATION ===== */

.hero {
  position: relative;
  overflow: hidden;
}

/* HERO CONTENT */
.hero-content {
  z-index: 2;
  position: relative;
  animation: fadeUp 1.5s ease;
}

/* TEXT ANIMATION */
.animate-text {
  animation: slideDown 1.5s ease;
}

.animate-text-delay {
  animation: slideDown 2.2s ease;
}

/* BUTTON STYLE + GLOW */
.hero-btn {
  margin-top: 25px;
  padding: 14px 30px;
  font-size: 18px;
  background: linear-gradient(90deg, #ff512f, #dd2476);
  border: none;
  color: white;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255, 0, 100, 0.6);
  transition: 0.4s;
}

.hero-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(255, 0, 150, 1);
}

/* LIGHT EFFECTS */
.light {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  filter: blur(90px);
  animation: floatLight 6s infinite alternate;
}

.light1 {
  top: 20%;
  left: 10%;
}

.light2 {
  bottom: 10%;
  right: 15%;
}

/* ANIMATION KEYFRAMES */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatLight {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-60px);
  }
}
/* product */
/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.product-card {
  background: white;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.product-card img {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
}

.product-card button {
  margin-top: 12px;
  padding: 10px 18px;
  background: linear-gradient(90deg, #ff512f, #dd2476);
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 25px;
  transition: 0.3s;
}

.product-card button:hover {
  background: linear-gradient(90deg, #11998e, #38ef7d);
}
/* home add */
/* ===== HSN CODE SECTION ===== */

.hsn-table {
  margin-top: 40px;
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hsn-row {
  display: flex;
  align-items: center;
  background: white;
  border-left: 8px solid #ff512f;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  transition: 0.3s;
}

.hsn-row:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.18);
}

.hsn-code {
  font-size: 26px;
  font-weight: bold;
  color: #141e30;
  min-width: 100px;
  text-align: center;
}

.hsn-desc {
  font-size: 16px;
  line-height: 1.6;
  padding-left: 20px;
  color: #333;
}
/* ===== COMPANY ALBUM ===== */

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.album-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.album-card:hover {
  transform: translateY(-10px);
}

.album-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.album-card h3 {
  padding: 15px;
  color: #141e30;
}
/* ===== FEATURED PRODUCTS ===== */

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.featured-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  transition: 0.4s;
  padding-bottom: 20px;
}

.featured-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.featured-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.featured-card h3 {
  margin: 15px;
  font-size: 20px;
  color: #141e30;
}

.featured-card p {
  margin: 0 15px;
  font-size: 15px;
  line-height: 1.6;
}

.price {
  font-weight: bold;
  color: #ff512f;
  margin-bottom: 8px;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.btn-group button {
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  font-size: 14px;
  transition: 0.3s;
}

.btn-group button:hover {
  transform: scale(1.05);
}

/* Quote Button */
.btn-group button {
  background: linear-gradient(90deg, #ff512f, #dd2476);
  color: white;
}

/* Details Button */
.details {
  background: linear-gradient(90deg, #11998e, #38ef7d) !important;
}
/* home product-1 */
/* ===== PRODUCT MODAL POPUP ===== */

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  overflow: auto;
  padding-top: 60px;
}

.modal-content {
  background: white;
  max-width: 850px;
  margin: auto;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from {transform: scale(0.7); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

.close-btn {
  float: right;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  color: red;
}

.modal-price {
  font-size: 22px;
  font-weight: bold;
  color: #ff512f;
}

.spec-table {
  width: 100%;
  margin-top: 15px;
  border-collapse: collapse;
}

.spec-table th {
  background: #141e30;
  color: white;
  padding: 10px;
  text-align: left;
}

.spec-table td {
  padding: 10px;
  border: 1px solid #ddd;
}

.note-list {
  margin-top: 15px;
  line-height: 1.8;
}

.modal-btn {
  margin-top: 25px;
  padding: 14px 22px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg,#ff512f,#dd2476);
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.modal-btn:hover {
  transform: scale(1.05);
}
/* ===== FEATURED PRODUCTS 3x2 GRID ===== */

.featured-3x2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 30px;
  margin-top: 50px;
}

.featured-box {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  transition: 0.35s;
  padding-bottom: 20px;
}

.featured-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.featured-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.featured-box h3 {
  margin: 15px;
  font-size: 20px;
  color: #141e30;
}

.featured-box p {
  margin: 0 15px;
  font-size: 15px;
  line-height: 1.6;
}

.price {
  font-weight: bold;
  color: #ff512f;
  margin-bottom: 6px;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.btn-group button {
  padding: 10px 15px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.btn-group button:hover {
  transform: scale(1.05);
}

.details {
  background: linear-gradient(90deg, #11998e, #38ef7d) !important;
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.75);
  overflow: auto;
  padding-top: 60px;
}

.modal-content {
  background: white;
  max-width: 850px;
  margin: auto;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  animation: zoomIn 0.4s ease;
}

.close-btn {
  float: right;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  color: red;
}

@keyframes zoomIn {
  from {transform: scale(0.7); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #fff;
  padding: 25px;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 10px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}

.spec-table th,
.spec-table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

.price {
  color: green;
  font-weight: bold;
}

.modal-btn {
  margin-top: 15px;
  padding: 10px 25px;
  border: none;
  background: #ff9800;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
}
@media(max-width:992px){
  .featured-3x2-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media(max-width:600px){
  .featured-3x2-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 20px;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
}

.close-btn {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  border: 1px solid #ccc;
  padding: 6px;
}

.modal-btn {
  margin-top: 15px;
  padding: 10px 25px;
  background: #ff9800;
  border: none;
  font-weight: bold;
  border-radius: 25px;
}
.featured-3x2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch; /* Important! */
}

.featured-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  height: 100%; /* Stretch cards */
}

.featured-box img {
  width: 100%;
  height: 200px; /* fixed height to keep uniformity */
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.btn-group {
  margin-top: auto; /* Push buttons to bottom */
  display: flex;
  gap: 10px;
  padding: 15px 20px;
}
@media(max-width: 992px) {
  .featured-3x2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .featured-3x2-grid {
    grid-template-columns: 1fr;
  }
}
.featured-3x2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 40px;
}

.featured-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  height: 100%;
  transition: 0.3s;
}

.featured-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.featured-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.featured-box h3 {
  margin: 10px 15px 0;
  font-size: 18px;
  color: #141e30;
}

.featured-box p.price {
  margin: 5px 15px 10px;
  font-weight: bold;
  color: #ff512f;
}

.btn-group {
  margin-top: auto;
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 0 15px 15px 15px;
}

.btn-group button {
  padding: 10px 15px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.btn-group button:hover {
  transform: scale(1.05);
}

.details {
  background: linear-gradient(90deg, #11998e, #38ef7d);
  color: white;
}

.btn-group button:not(.details) {
  background: linear-gradient(90deg, #ff512f, #dd2476);
  color: white;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 25px;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 10px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.modal-btn {
  margin-top: 15px;
  padding: 10px 25px;
  border: none;
  background: #ff9800;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
}

@media(max-width: 992px){
  .featured-3x2-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 600px){
  .featured-3x2-grid { grid-template-columns: 1fr; }
}
/* ===== CONTACT PAGE DESIGN ===== */
/* ===== FLOATING ICONS ===== */

/* ===== FLOATING ICONS ===== */

.floating-icon{
  position: fixed;
  right: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: 0.3s ease;
}

.floating-icon img{
  width: 28px;
  height: 28px;
}

.floating-icon:hover{
  transform: scale(1.15);
}

/* WhatsApp */
.whatsapp{
  bottom: 90px;
  background: #25D366;
}

/* Gmail */
.gmail{
  bottom: 20px;
  background: #EA4335;
}

/* ===== PULSE ANIMATION ===== */

.pulse{
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation{
  0%{
    box-shadow: 0 0 0 0 rgba(0,0,0,0.5);
  }
  70%{
    box-shadow: 0 0 0 15px rgba(0,0,0,0);
  }
  100%{
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
  }
}


/* Layout */
.contact-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 70px 10%;
  flex-wrap: wrap;
}

/* Left Info */
.contact-info {
  flex: 1;
  min-width: 320px;
  background: white;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #141e30;
}

.contact-info p {
  margin: 10px 0;
  font-size: 16px;
}

/* Info Box */
.contact-box {
  margin-top: 25px;
  padding: 20px;
  background: linear-gradient(90deg,#ff512f,#dd2476);
  border-radius: 15px;
  color: white;
}

.contact-box ul {
  margin-top: 10px;
  padding-left: 18px;
}

.contact-box li {
  margin: 8px 0;
}

/* Right Form */
.contact-form {
  flex: 1;
  min-width: 320px;
  background: white;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #141e30;
}

/* Inputs */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 15px;
}

/* Focus Glow */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #ff512f;
  box-shadow: 0 0 10px rgba(255,81,47,0.3);
}

/* Others Input Special */
#otherProduct {
  border: 2px solid #ff512f;
  background: #fff5f2;
}

/* Button */
.contact-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg,#11998e,#38ef7d);
  border: none;
  border-radius: 30px;
  font-size: 17px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: scale(1.05);
}

/* Success Message */
#successMsg {
  margin-top: 15px;
  font-weight: bold;
  text-align: center;
  color: green;
}

/* Responsive */
@media(max-width:768px) {
  .contact-section {
    flex-direction: column;
    padding: 50px 8%;
  }
}
/* uw */

/* uw */
/* ===== FOOTER ===== */

.footer{
  background:#0b2c4a;
  color:white;
  padding:50px 10%;
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.footer-box h3{
  margin-bottom:15px;
  font-size:20px;
}

.footer-box p{
  font-size:15px;
  line-height:1.6;
}

.footer-box a{
  display:block;
  color:#d8e6f7;
  text-decoration:none;
  margin:6px 0;
  transition:0.3s;
}

.footer-box a:hover{
  color:#00c3ff;
}

/* Social Icons */

.social-icons a{
  display:inline-block;
  margin:6px;
  padding:8px 14px;
  border-radius:20px;
  font-size:14px;
  text-decoration:none;
  color:white;
}

.whatsapp{ background:#25D366; }
.linkedin{ background:#0077B5; }
.facebook{ background:#1877F2; }
.instagram{ background:#E4405F; }

.footer-bottom{
  text-align:center;
  margin-top:30px;
  border-top:1px solid rgba(255,255,255,0.2);
  padding-top:15px;
  font-size:14px;
}
.social-icons{
  display:flex;
  gap:12px;
}

.social-icons a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:18px;
  color:white;
  text-decoration:none;
  transition:0.3s;
}

.whatsapp{ background:#25D366; }
.linkedin{ background:#0077B5; }
.facebook{ background:#1877F2; }
.instagram{ background:#E4405F; }

.social-icons a:hover{
  transform:scale(1.15);
}
.footer-logo{
display:flex;
align-items:center;
gap:8px;
margin-bottom:10px;
}

.footer-logo img{
width:28px;
height:auto;
}

.footer-logo h3{
margin:0;
font-size:20px;
}





.hero{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
}

/* Background Video */
.hero-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

/* Dark Overlay */
.hero-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.4);
  z-index:1;
}

/* Text */
.hero-content{
  position:relative;
  z-index:2;
}


/* Add to the section or container */
.about-hero {
  position: relative;
  height: 50vh; /* Adjust height as needed */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden; /* hides anything outside the section */
  color: #fff;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover; /* <-- fills entire section fully */
  transform: translate(-50%, -50%);
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3); /* adjust darkness if needed */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3; /* content on top of video & overlay */
  padding: 0 20px;
}
/* Fade animation */
.fade-out {
  opacity: 0;
  transform: scale(0.98);
  transition: all 0.4s ease;
}

/* Success toast message */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #222;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
  z-index: 999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* serch bar */

#searchInput:focus {
  outline: none;
  border-color: #4BB543;
  box-shadow: 0 0 5px rgba(75,181,67,0.5);
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.product-card {
  width: calc((100% - 60px) / 4); /* 4 cards per row with 20px gaps */
  background: white;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.2s ease;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-weight: 700;
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 20px;
}

.product-card button {
  background: linear-gradient(45deg, #ff4e50, #f9d423);
  border: none;
  border-radius: 25px;
  color: white;
  padding: 10px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 8px rgba(255,78,80,0.3);
  transition: background 0.3s ease;
}

.product-card button:hover {
  background: linear-gradient(45deg, #f9d423, #ff4e50);
  box-shadow: 0 6px 12px rgba(249,212,35,0.5);
}
#searchInput {
  width: 60%;           /* Reduced width */
  padding: 10px;
  margin: 0 auto 30px auto; /* Center horizontally, with bottom margin */
  display: block;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  box-sizing: border-box;
}
/* csr */
.csr-img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:12px;
  transition:0.3s;
}

.csr-box:hover .csr-img{
  transform:scale(1.05);
}
  .hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  top: 0;
  left: 0;
}
  .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills screen without distortion */
  object-position: center; /* center focus */
  z-index: 1;
}
