 
/* ==============================
   HEADER BASE
================================ */





/*banner section css start*/

.social-icons svg {
    width: 34px !important;
    height: 25px !important;
    
    
    max-width: 34px !important;
    max-height: 34px !important;
}


.social-icons svg {
  transition: transform 0.3s ease !important;
}

.social-icons svg:hover {
  transform: scale(1.2) !important;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 17px;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 30px;
  color: #e6e6e6;
}

/* Button */
.hero-btn {
  background: #ffb400;
  color: #000;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #e6a200;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-btn {
    padding: 12px 22px;
    font-size: 14px;
  }
}


/*banner section css end*/


 





/*about section css start*/



.trust-section {
  padding: 80px 20px;
  background: #ffffff;
}

.trust-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
.trust-content h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #0b1c2d;
}

.trust-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 36px;
  max-width: 520px;
}

/* Feature Items */
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}


.trust-badge {
    background: #0b1c2d;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: 6px;
    white-space: nowrap;
    font-family: sans-serif;
}
 

.trust-item p {
    font-size: 15px;
    line-height: 1.6;
    color: black;
    font-family: sans-serif;
}

.trust-item strong {
  font-weight: 600;
}

/* Button */
.trust-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 26px;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.trust-btn:hover {
  background: #000;
  color: #fff;
}

/* Right Image */
.trust-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .trust-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .trust-section {
    padding: 60px 16px;
  }

  .trust-content h2 {
    font-size: 26px;
  }

  .trust-subtitle {
    font-size: 15px;
  }
}


/*about section css end*/




/*collection section css start*/

section.griddddd {
    background: #f7f8f9;
}


.mp-featured-footer {
     
    padding-bottom: 40px;
}

/* Grid */
.mp-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-left: 60px;
    padding-right: 60px;
    background:#f9fafb;
}

/* Card */
.mp-product-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.mp-product-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.mp-product-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Badge */
.mp-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0b1c2d;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Title */
.mp-product-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 18px 6px 28px;
  color: #000;
  font-family: sans-serif;
}

/* Button */
.mp-product-btn {
  margin: auto 6px 6px;
  padding: 10px 0;
  text-align: center;
  border: 1px solid #000;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  color: #000;
  transition: all 0.3s ease;
}

.mp-product-btn:hover {
  background: #000;
  color: #fff;
}

/* Footer Button */
.mp-featured-footer {
  text-align: center;
  margin-top: 40px;
}

.mp-view-all-btn {
  display: inline-block;
  background: #0b1c2d;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .mp-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
    
    .mp-product-grid {

    padding-left: 10px;
    padding-right: 10px;
}
  .mp-product-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= MODAL ================= */

.mp-product-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.mp-modal-content {
  background: #fff;
  width: 90%;
  max-width: 900px;
  border-radius: 14px;
  padding: 24px;
  position: relative;
}

.mp-close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 22px;
  cursor: pointer;
}

/* Modal Layout */
.mp-modal-body {
  display: flex;
  gap: 30px;
}

.mp-modal-image img {
  width: 300px;
  height: 300px;
  border-radius: 12px;
}

.mp-modal-info h2 {
  font-size: 24px;
  margin-bottom: 6px;
}

.mp-modal-info h4 {
  font-size: 16px;
  color: #555;
  margin-bottom: 16px;
}

.mp-modal-info p {
  font-size: 18px;
  line-height: 40px;
  margin-bottom: 24px;
  color: black;
}

/* Contact */
.mp-contact-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #0b1c2d;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

.mp-contact-btn:hover {
  background: #000;
}

/* Mobile */
@media (max-width: 700px) {
  .mp-modal-body {
    flex-direction: column;
  }
}








/*collection section css end*/



/*why chosse us section css start*/
.why-section {
  padding: 60px 20px;
  background: #ffffff;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.why-header {
  text-align: center;
  margin-bottom: 50px;
}

.why-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.why-header p {
  font-size: 15px;
  color: #555;
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.why-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Icon */
.why-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
}

.why-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #1f2d3d;
  stroke-width: 1.8;
}

/* Title */
.why-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}
.why-icon {
  font-size: 42px;
  color: #1f2d3d;
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
}


/* Text */
.why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 1000px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 26px;
  }
}





/*why chosse us section css end*/



/*blog start*/

.blog-section {
    padding: 60px 15px;
    background: #f9fafb;
    font-family: Arial, sans-serif;
}

.blog-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.blog-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgb(0 0 0 / 17%);
  display: flex;
  flex-direction: column;
}

.blog-card img {
  width: 100%;
  height: 255px;
  object-fit: cover;
}

.blog-content {
  padding: 22px;
  text-align: left;
  flex: 1;
}

.blog-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.5;
}

.blog-btn {
  display: inline-block;
  padding: 10px 18px;
  border: 1.5px solid #000;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.blog-btn:hover {
  background: #000;
  color: #fff;
}

.blog-footer {
  margin-top: 40px;
}

.view-all-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #0b1b2b;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-title {
    font-size: 26px;
  }
}





/*blog end*/




/*tetsimonial section css start*/


.testimonial-section {
  padding-top: 45px;
  padding-bottom: 30px;
  background: #ffffff;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.testimonial-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 0 15px;
}

.testimonial-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonial-subtitle {
    font-size: 15px;
    color: #000000;
    max-width: 506px;
    margin: 0 auto 40px;
    line-height: 24px;
}
.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scroll 35s linear infinite;
}

.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-track {
    padding-top: 10px;
    padding-bottom: 26px;
}
.testimonial-card {
    min-width: 320px;
    max-width: 320px;
    background: #f9fafb;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.testimonial-card p {
  font-size: 14px;
  color: Black;
  line-height: 1.6;
  margin-bottom: 18px;
      font-family: system-ui;
}

.testimonial-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-card span {
  font-size: 13px;
  color: black;
}

/* Smooth infinite animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .testimonial-title {
    font-size: 26px;
  }

  .testimonial-card {
    min-width: 280px;
  }
}



/*tetsimonial section css end*/


/*Partner start*/



.partner-section {
  background: #e9ecef;
  padding: 60px 15px;
  text-align: center;
}

.partner-container {
  max-width: 900px;
  margin: auto;
}

.partner-container h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 14px;
    font-family: sans-serif;
  color: #000;
}

.partner-container p {
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 30px;
    
    font-family: sans-serif;
}

.partner-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
}

.partner-btn:hover {
  background: #222;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .partner-container h2 {
    font-size: 26px;
  }

  .partner-container p {
    font-size: 14px;
  }

  .partner-btn {
    padding: 12px 24px;
  }
}


/*Partner end*/




/*footer start*/

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: #222;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}



/* Footer Base */
.site-footer {
  background: #fff;
  font-family: Arial, sans-serif;
  color: #333;
  border-top: 1px solid #e6e6e6;
}

/* Social Section */
.footer-social {
    text-align: center;
    padding: 40px 20px;
    background: #f5f5f5;
}

.social-icons {
    padding-top: 20px;
}

.footer-social p {
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
  color: #666;
}

.social-icons a {
  margin: 0 10px;
  color: #222;
  font-size: 16px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #000;
}

/* Main Content */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding: 50px 8%;
}

.footer-brand img {
  max-width: 140px;
  margin-bottom: 15px;
}

.footer-brand h4 {
  font-size: 15px;
  margin-bottom: 10px;
}

.footer-col ul li {
   
    color: black;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: black;
}

.footer-col h5 {
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
    color: #000000;
    text-decoration: none;
    line-height: 30px;
}

.footer-col ul li a:hover {
  color: #000;
}

/* Contact */
.contact-list li {
  font-size: 14px;
  color: #555;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #e6e6e6;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: Black;
}

.footer-links a {
  font-size: 13px;
  color: Black;
  margin-left: 15px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #000;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-links a {
    margin: 0 8px;
  }
}



/*footer end*/





















