/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');


/* Global Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*body {
  font-family: 'Roboto Condensed', 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}
*/
body{
  /* font-family: Sansation, sans-serif; */
    font-style: normal;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  /*font-family: 'Montserrat', sans-serif;*/
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: #111;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Paragraphs & small text */
p {
  margin-bottom: 1rem;
  color: #2e2e2e;
  font-size: 1rem;
}
small {
  font-size: 0.875rem;
  color: #888;
}

/* Links */
a {
  color: #0d6efd;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Lists */
ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
ul li, ol li {
  margin-bottom: 0.0rem;
  font-size: 1rem !important;
  color: #555 !important;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
table th,
table td {
  border: 1px solid #ddd;
  padding: 0.4rem;
  text-align: left;
}
table th {
  background-color: #f8f9fa;
  font-weight: 600;
}

/* Buttons */
button, .btn { 
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}
button:hover, .btn:hover {
  opacity: 0.85;
}

/* Form inputs */
input, select, textarea { 
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: 0.3s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #0d6efd;
  box-shadow: 0 0 0px rgba(13, 110, 253, 0.2) !important;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }

/* Others */
hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 1rem 0;
}






/*===============================================*/
/* Navbar desktop */
.navbar {
  background-color: #fff;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #ddd;
}
.navbar-brand img {
  height: 65px;
}
.navbar-nav .nav-link {
  color: #000 !important;
  font-weight: 500;
  margin: 0 8px;
  transition: 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #0d6efd !important;
  border-bottom: 2px solid #0d6efd;
  text-decoration: none !important;
}

/* Search box */
.search-box {
  position: relative;
}
.search-box input {
  border-radius: 20px;
  padding-right: 35px;
}
.search-box button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  color: #0d6efd;
}

/* Cart icon */
.cart-icon {
  position: relative;
  color: #000;
  font-size: 1.2rem;
  margin-left: 15px;
}
.cart-icon span {
  position: absolute;
  top: -0px;
  right: -0px;
  background: #ffc107;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  padding: 0px 6px;
  border-radius: 50%;
}

/* Dropdown custom */
.custom-dropdown {
  background: #f8f9fa;
}
.custom-dropdown .dropdown-item {
  color: #000;
  transition: 0.3s;
  text-decoration: none;
}
.custom-dropdown .dropdown-item:hover {
  background: #0d6efd;
  color: #fff;
}

/* Mobile Offcanvas */
.offcanvas {
  width: 260px;
}
.offcanvas .nav-link {
  color: #000;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
.offcanvas .nav-link.active,
.offcanvas .nav-link:hover {
  color: #0d6efd;
  background-color: rgba(13, 110, 253, 0.1);
}

/* Dropdown in offcanvas */
.offcanvas .dropdown-menu {
  position: static;
  float: none;
  background: #f8f9fa;
  border: none;
  box-shadow: none;
}
.offcanvas .dropdown-item {
  color: #000;
}
.offcanvas .dropdown-item:hover {
  background: #0d6efd;
  color: #fff;
}



.hero-section {
  background: linear-gradient(135deg, #f0f4ff 50%, #fff 50%);
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
}

.hero-text h1.hero-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d6efd;
}

.hero-text p.hero-para {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.hero-list li {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
}

.hero-list li i {
  font-size: 1.2rem;
}

/* Buttons */
.hero-text .btn {
  border-radius: 50px;
  padding: 0.8rem 2rem;
  transition: all 0.3s ease;
}
.hero-text .btn:hover {
  transform: translateY(-3px);
}

/* Hero Image & floating shapes */
.hero-image img {
  max-width: 100%;
  border-radius: 20px;
}
.shape-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  right: -20px;
  opacity: 0.2;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero-section {
    background: #f8f9fa;
  }
  .hero-text h1.hero-heading { 
            font-size: 1.5rem;
        text-align: left;
  }
  .hero-text p.hero-para {
    font-size: 1rem;
    text-align: left;

  }
  .hero-list {
    flex-direction: column !important;
    gap: 1rem;
  }
  .hero-image {
    margin-top: 2rem;
  }
}



/*==========================================*/
/*dump card css */
.dump-card .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dump-card .card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-img-top {
  height: 120px;
  object-fit: cover;
  border-bottom: 1px solid #eaeaea;
}

.dump-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #0d6efd;
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .card-img-top {
    height: 100px;
  }
  .dump-title {
    font-size: 0.85rem;
  }
}


/*============================================*/
/*slider css */
/*.section-title {
  font-weight: 700;
  font-size: 1.8rem;
  color: #0d6efd;
  margin-bottom: 2rem;
}*/
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d6efd;
}

/* Desktop Grid */
.desktop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card Styles */
.cert-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.cert-header {
  background: linear-gradient(135deg, #0d6efd, #0d6efd);
  color: #fff;
  text-align: center;
  padding: 15px;
}

.cert-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.cert-body {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cert-name {
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 10px;
  flex-grow: 1;
  color: #333;
}

.cert-info {
  /*display: flex;*/
  /*justify-content: space-between;*/
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 10px;
}

.cert-info span {
  flex: 1;
  text-align: center;
}

.cert-btn {
  background: #0d6efd !important;
  color: #fff !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  padding: 5px 10px !important;
  text-decoration: none !important;
  transition: background 0.3s ease !important;
}

.cert-btn:hover {
  background: #6610f2;
  color: #fff;
}

/* Swiper adjustments */
.swiper-container {
  padding-bottom: 30px;
}
.swiper-slide {
  width: 250px !important;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .desktop-grid {
    display: none;
  }
}






.btn {
  background: #0d6efd !important;
  color: #fff !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  padding: 5px 10px !important;
  text-decoration: none !important;
  transition: background 0.3s ease !important;
}

.btn:hover {
  background: #6610f2;
  color: #fff;
}









/*=============================================*/
/*features cards */ 
.certification-section {
  background: #f9f9f9;
}

/*.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0d6efd;
}
*/
.section-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
}

.section-description {
  font-size: 1rem;
  color: #555;
}

.feature-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0d6efd;
}

.feature-desc {
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .feature-card {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .feature-card {
    padding: 20px 15px;
  }
  .feature-title {
    font-size: 0.95rem;
  }
  .feature-desc {
    font-size: 0.85rem;
  }
}




/*=======================================*/
/*info section*/
/* Section */
.info-section {
  background: #f7f9fc;
  color: #333;
  font-family: 'Montserrat', sans-serif;
}

/* Section Title */
/*.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0d6efd;
}*/

.section-description {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Cards */
.info-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Diagonal gradient overlay on hover */
.info-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, #0d6efd, #ff6b6b);
  transform: rotate(45deg) scale(0);
  transition: all 0.5s ease;
  z-index: 0;
  opacity: 0.3;
}

.info-card:hover::before {
  transform: rotate(45deg) scale(1);
  opacity: 0.2;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Card content on top */
.info-card-title, .info-card-text, .info-card ul {
  position: relative;
  z-index: 1;
}

.info-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 15px;
}

.info-card-text {
  font-size: 1rem;
  line-height: 1.6;
}

.info-list {
  list-style-type: disc;
  padding-left: 20px;
}

.info-list li {
  margin-bottom: 10px;
  color: #444;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
  .info-card {
    padding: 25px 15px;
  }
}
@media (max-width: 576px) {
  .section-title {
    font-size: 1.6rem;
  }
  .info-card-title {
    font-size: 1.2rem;
  }
}












/*testimonial */
/* Section */
.testimonial-section {
  background: #f7f9fc;
  color: #333;
  font-family: 'Montserrat', sans-serif;
}

/*.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0d6efd;
}*/

.section-description {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Testimonial Cards Container */
.testimonial-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Individual Card */
.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  flex: 1 1 300px;
  max-width: 350px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Diagonal Gradient on Hover */
.testimonial-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, #0d6efd, #ff6b6b);
  transform: rotate(45deg) scale(0);
  transition: all 0.5s ease;
  z-index: 0;
  opacity: 0.2;
}

.testimonial-card:hover::before {
  transform: rotate(45deg) scale(1);
}

/* Card content */
.testimonial-content {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

/* Author */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {
  .testimonial-cards {
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .testimonial-cards {
    flex-direction: column;
    gap: 20px;
  }
}



/*==============================================*/
/*blog csss*/

.blog-section {
  background: #f9f9f9;
  font-family: 'Montserrat', sans-serif;
}

/*.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0d6efd;
}*/

.section-description {
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.blog-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-img {
  width: 100%;
  height: 150px;
  object-fit: fill;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-body {
  position: relative;
  z-index: 2;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0d6efd;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.blog-btn {
  text-decoration: none;
  color: #fff;
  background: #0d6efd;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.blog-btn:hover {
  background: #0056b3;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-img {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .blog-card {
    margin-bottom: 20px;
  }
  .blog-img {
    height: 150px;
  }
}
.blog-card{
  border-radius: 10px;
}









/*=====================================*/
/*faq css */ 

.faq-section {
  background: #f3f6ff;
  font-family: 'Montserrat', sans-serif;
}



.section-description {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  background: #fff;
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0d6efd;
  text-align: left;
  border: none;
  background: #e7f1ff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #d0e4ff;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
  background: #f9fbff;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px 20px;
}

.faq-answer p {
  margin: 0;
  color: #333;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 576px) {
  .faq-question {
    font-size: 1rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }
}














/*=======================================*/
/* Footer Dark Theme */
.footer-section {
  background: linear-gradient(135deg, #000, #000);
  color: #f0f0f0;
  /*font-family: 'Montserrat', sans-serif;*/
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer-logo .logo-img {
  width: 160px;
  margin-bottom: 15px;
}

.footer-about {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d1d1d1;
}

.footer-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}

.footer-links a:hover{
  color: #fff !important; 
}


.footer-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  margin-top: 5px;
  right: 0;
  background: #0d6efd;
  transition: width 0.3s ease;
  -webkit-transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
  left: 0;
  background: #fff;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icon {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 50%;
  background: #1b1b1b;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.social-icon:hover {
  background: #00ffff;
  color: #0a1f44;
  box-shadow: 0 0 12px #00ffff;
  transform: translateY(-3px);
}

.newsletter-form input.form-control {
  border-radius: 50px;
  padding: 12px 20px;
  border: none;
  background: #1b1b1b;
  color: #fff;
}

.newsletter-form input.form-control::placeholder {
  color: #888;
}

.newsletter-form .btn {
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 600;
  background: #00ffff;
  color: #0a1f44;
  border: none;
  transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
  background: #0a1f44;
  color: #00ffff;
  box-shadow: 0 0 10px #00ffff;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 20px;
}

.footer-divider {
  border-color: rgba(255,255,255,0.2);
  margin-top: 30px;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .social-icons {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .newsletter-form input, 
  .newsletter-form .btn {
    width: 100%;
    margin-top: 10px;
  }
}



















 .hero-section-about {
      position: relative;
      background: url('https://images.unsplash.com/photo-1508780709619-79562169bc64?auto=format&fit=crop&w=1470&q=80') no-repeat center center;
      background-size: cover;
      height: 50vh;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 15px;
      margin-bottom: 0px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .hero-section-about h1 {
      background-color: rgba(0,0,0,0.6);
      color: #fff;
      padding: 15px 30px;
      border-radius: 10px;
      font-size: 3rem;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .about-content {
      padding: 50px 0;
    }

    .about-image {
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      width: 100%;
      height: auto;
      transition: transform 0.5s;
    }

    .about-image:hover {
      transform: scale(1.05);
    }

    .section-title {
      text-align: center;
      margin-bottom: 40px;
      font-weight: 600;
      color: #0d6efd;
    }

    .features .card {
      border: none;
      border-radius: 15px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .features .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .features .card i {
      font-size: 2rem;
      color: #0d6efd;
      margin-bottom: 15px;
    }

    .btn-primary {
      border-radius: 50px;
      padding: 10px 30px;
      font-weight: 500;
      transition: all 0.3s;
    }

    .btn-primary:hover {
      background-color: #0b5ed7;
      transform: translateY(-2px);
    }
/*=========================================*/
/*login modal */














 
.highlight {
  color: #0d6efd;
}

.info-section {
  background-color: #fff;
}

.info-section h2 {
  color: #0d6efd;
}

.icon-check {
  font-size: 1.5rem;
  color: #0d6efd;
  margin-right: 12px;
}



 
















 /*table*/

/* ===== Desktop Table Styles ===== */
.responsive-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
}

.responsive-table thead th {
    background: linear-gradient(135deg, #0d6efd, #0d6efd);
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding: 12px 15px;
    border: none;
}

.responsive-table tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: middle;
    font-size: 0.95rem;
}

.responsive-table tbody tr {
    transition: transform 0.2s, box-shadow 0.2s;
}

.responsive-table tbody tr:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background-color: #f9f9f9;
}

.responsive-table a.btn {
    font-size: 0.85rem;
    padding: 5px 10px;
}

/* ===== Mobile Card View ===== */
@media (max-width: 768px) {
  .responsive-table table,
  .responsive-table thead,
  .responsive-table tbody,
  .responsive-table th,
  .responsive-table td,
  .responsive-table tr {
    display: block;
    width: 100%;
  }

  .responsive-table thead tr {
    display: none; /* hide table header */
  }

  .responsive-table tbody tr {
    margin-bottom: 1.8rem;
    /*border-radius: 16px;*/
    padding: 0px;
    /*background: #ffffff;*/
    /*box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);*/
    transition: all 0.3s ease-in-out;
  }

  .responsive-table tbody tr:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

  .responsive-table td {
    text-align: left;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: #333;
    border-bottom: 1px solid #eee;
    display: block;  /* Stack each cell */
  }

  /* Hide the ::before labels */
  .responsive-table td::before {
    display: none;
  }

  .responsive-table td a.btn {
    margin-top: 0.5rem;
    padding: 0.45rem 0;
    font-size: 0.9rem;
    border-radius: 8px;
    background: #007bff;
    color: #fff !important;
    text-align: center;
    width: 100%;
    transition: all 0.2s ease-in-out;
  }

  .responsive-table td a.btn:hover {
    background: #0056b3;
    transform: scale(1.05);
  }
}































/*contact us css*/
.contact-info h2, .contact-form h2 {
  color: #007bff;
  font-weight: 700;
}

.contact-info p.lead {
  font-size: 1.2rem;
  font-weight: 500;
}

.contact-info ul li i {
  font-size: 1.2rem;
}

.contact-info a {
  text-decoration: none;
  color: #007bff;
  transition: color 0.2s;
}

.contact-info a:hover {
  color: #0056b3;
}

.contact-form input,
.contact-form textarea {
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
  outline: none;
}

.contact-form button {
  border-radius: 8px;
  transition: all 0.3s;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}












/*blogs page css*/
/* Blog Posts */
.blog-post img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-post img:hover {
  /* transform: scale(1.05); */
}

.blog-title {
  color: #007bff;
  font-weight: 700;
}

.blog-meta {
  font-size: 0.9rem;
}

.blog-excerpt {
  font-size: 1rem;
  color: #555;
}

.blog-post a.btn {
  border-radius: 8px;
  transition: all 0.3s;
}

.blog-post a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

/* Recent Blogs Sidebar */
.recent-blogs h4 {
  color: #007bff;
  font-weight: 700;
}

.blog-title-sm {
  font-weight: 600;
  color: #333;
}

.recent-blogs a:hover .blog-title-sm {
  color: #007bff;
}

.recent-blogs img {
  transition: transform 0.3s;
}

.recent-blogs a:hover img {
  transform: scale(1.1);
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
  .blog-post {
    margin-bottom: 2rem;
  }
  .recent-blogs {
    margin-top: 2rem;
  }
}




/*my account css*/
/* Sidebar Tabs */
/* Sidebar Tabs */
.account-sidebar .nav-link {
  color: #555;
  border-radius: 8px;
  padding: 12px 15px;
  transition: all 0.3s;
}
.account-sidebar .nav-link:hover,
.account-sidebar .nav-link.active {
  background: #0d6efd;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Mobile Cloud Tabs */
.mobile-tabs {
  background: #f8f9fa;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
.mobile-tab {
  flex: 1;
  border-radius: 50px;
  transition: all 0.3s;
  font-weight: 500;
  white-space: nowrap;
}
.mobile-tab.active {
  background: #0d6efd;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.mobile-tab:hover {
  background: #0b5ed7;
  color: #fff !important;
}

/* Account Content Card */
.account-content {
  transition: all 0.3s;
  border-left: 5px solid #0d6efd;
}
.account-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* Table Styling */
.table-hover tbody tr:hover {
  background: #e9f2ff;
}
.badge {
  font-size: 0.85rem;
}






 .auth-modal {
      /* background: #fff; */
      border-radius: 18px;
      max-width: 420px;
      margin: auto;
      padding: 2rem 2.5rem;
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
      /* font-family: "Poppins", sans-serif; */
    }

    .auth-header {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 1.5rem;
      font-weight: 600;
    }

    .auth-header button {
      border: none;
      background: transparent;
      font-size: 1.1rem;
      padding-bottom: 0.3rem;
      border-bottom: 2px solid transparent;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .auth-header button.active {
      border-bottom: 2px solid #0d6efd;
      color: #0d6efd;
    }

    .auth-input {
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 0.75rem 1rem;
      font-size: 1rem;
      width: 100%;
      margin-bottom: 1rem;
      transition: 0.3s;
    }

    .auth-input:focus {
      border-color: #0d6efd;
      box-shadow: none;
      outline: none;
    }

    .auth-btn {
      width: 100%;
      border: none;
      border-radius: 50px;
      background: linear-gradient(90deg, #0d6efd, #0d6efd);
      color: white;
      padding: 0.8rem;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .auth-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .divider {
      position: relative;
      text-align: center;
      margin: 1.5rem 0;
    }

    .divider::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 1px;
      background: #ccc;
      z-index: 0;
    }

    .divider span {
      background: #fff;
      padding: 0 10px;
      z-index: 1;
      position: relative;
      font-size: 0.9rem;
      color: #666;
    }

    .google-btn {
      border: 1px solid #ccc;
      border-radius: 50px;
      width: 100%;
      padding: 0.8rem;
      background: #fff;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: 0.3s;
    }

    .google-btn:hover {
      background: #f7f7f7;
    }

    .terms {
      font-size: 0.75rem;
      color: #666;
      text-align: center;
      margin-top: 1rem;
    }

    .terms a {
      color: #007bff;
      text-decoration: none;
    }

    .terms a:hover {
      text-decoration: underline;
    }




    /* Custom Toast Styles */
.swal2-toast {
  background: #1e1e2f !important; /* Dark background */
  color: #fff !important;         /* White text */
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  border-left: 5px solid #ffb400; /* Accent color */
}

.swal2-toast .swal2-title {
  color: #fff;
  font-weight: 600;
}

.swal2-toast .swal2-icon-success {
  color: #4caf50 !important;
}

.swal2-toast .swal2-icon-error {
  color: #f44336 !important;
}


/* Price Styling */
.price-inr {
  font-weight: 500;
  color: #000000; /* Green for price */
}

.price-usd {
  font-weight: 500;
  color: #007bff; /* Blue for USD */
}

.mrp {
  color: #343434;
  text-decoration: line-through;
  font-size: 0.9rem;
}


.variety-row {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
/* .variety-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
} */
@media (max-width: 576px) {
    .variety-row {
        text-align: left;
    }
    .variety-row .col-md-3 {
        margin-bottom: 0.5rem;
    }
} 






 
/* .variety-row:nth-child(1) .add-to-cart-btn {
  background: linear-gradient(135deg, #28a745, #218838);
  color: #fff;
  border: none;
  font-weight: 600;
  transition: 0.3s;
}
.variety-row:nth-child(1) .add-to-cart-btn:hover {
  background: linear-gradient(135deg, #34ce57, #28a745);
  transform: scale(1.05);
} */

.variety-row:nth-child(1) .add-to-cart-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  border: none;
  font-weight: 600;
  transition: 0.3s;
}
.variety-row:nth-child(1) .add-to-cart-btn:hover {
  background: linear-gradient(135deg, #3399ff, #007bff);
  transform: scale(1.05);
}

.variety-row:nth-child(2) .add-to-cart-btn {
  background: #ff5722;
  color: #fff;
  border: 2px solid #ff5722;
  font-weight: 600;
  transition: 0.3s;
}
.variety-row:nth-child(2) .add-to-cart-btn:hover {
  background: #ff5722;
  color: #fff;
  transform: scale(1.05);
}

.variety-row:nth-child(3) .add-to-cart-btn {
  background: #070707;
  color: #fff;
  border: 2px solid #070707;
  font-weight: 600;
  transition: 0.3s;
}
.variety-row:nth-child(3) .add-to-cart-btn:hover {
  background: #070707;
  color: #fff;
  transform: scale(1.05);
}



/* Optional shared button styling */
.add-to-cart-btn {
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 14px;
} 

.box_detail {
    /* background-color: #fff !important; */
    /* background-color: #fff; */
    border-radius: 8px;
    /* box-shadow: 0 4px 6px #0000001a; */
    padding: 1rem;
    position: sticky;
    top: 55px;
    z-index: 10;
}



.pay{
  
                    display: inline-block;
                    outline: none;
                    cursor: pointer;
                    font-size: 16px;
                    line-height: 20px;
                    font-weight: 600;
                    border-radius: 8px;
                    padding: 13px 23px;
                    border: 1px solid #222222;
                    transition: box-shadow 0.2s ease 0s, -ms-transform 0.1s ease 0s, -webkit-transform 0.1s ease 0s, transform 0.1s ease 0s;
                    background: #fff;
                    color: #222222;
                    :hover {
                        border-color: #000000;
                        background: #f7f7f7;
                    }
                
}
.pay:hover {
                        border-color: #000000;
                        background: #f7f7f7;
                    }


                    














/* --- Global Setup & Dark Blue Background --- */
.footer-custom {
    /* Main background color from the image (deep navy blue) */
    background-color: #0c1a32; 
    /* The subtle background pattern from the image is tricky. 
       You may need a small repeating image set as background-image: url('path/to/pattern.png'); 
       For now, we'll keep it solid and dark. */
    color: #a4b4d7; /* Light blue/grey for general text */
    font-family: Arial, sans-serif; /* Use a common, clean font */
    position: relative; /* For the absolute WhatsApp button */
}

/* --- Branding/Logo Area --- */
.footer-brand-name {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.footer-logo-img {
    /* Adjust size to match the image's logo size */
    /* width: 45px;  */
    max-height: 80px;
    filter: brightness(0) invert(1); /* If your logo is dark, this makes it white */
}

.footer-about-text {
    font-size: 14px;
    line-height: 1.6;
}

/* --- Titles --- */
.footer-title-custom {
    color: #fff; /* White title text */
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    /* This creates the underlined look below the titles */
    position: relative;
    padding-bottom: 5px; 
}

/* --- Quick Links & Contact Details --- */
.footer-links-custom li {
    margin-bottom: 8px;
}

.footer-links-custom a,
.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    /* Makes the link bold like in the image */
    font-weight: 700; 
    transition: color 0.3s;
    display: inline-block;
}

.footer-links-custom a:hover,
.contact-link:hover {
    color: #a4b4d7; /* Orange hover color */
}

/* Icon for Quick Links (>> sign) */
.footer-links-custom i {
    color: #a4b4d7; /* Orange color for the arrows */
    font-size: 12px;
}

/* --- Safe Checkouts --- */
.guaranteed-title {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-top: 25px;
    margin-bottom: 10px;
}

.payment-logo {
    /* Adjust size for the payment icons */
    height: 35px;
    /* Optional: Slight border/effect to match the image look */
    border-radius: 3px; 
    opacity: 0.8;
}

/* --- Newsletter --- */
.newsletter-sub-text {
    font-size: 14px;
    margin-bottom: 10px;
}

.email-label {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-email-input {
    /* Matches the white background of the input in the image */
    background-color: #fff; 
    border: 1px solid #ced4da;
    border-radius: 4px 0 0 4px; /* Straight edge before the button */
    padding: 10px 15px;
    height: auto; /* Override Bootstrap default height */
    font-size: 14px;
}

.footer-email-input::placeholder {
    color: #a4b4d7;
}

/* Newsletter Subscribe Button (The Orange Rocket) */
.footer-subscribe-btn {
    background-color: #ffc107; /* Orange color */
    color: #0c1a32; /* Dark text/icon color */
    border: 1px solid #ffc107;
    border-radius: 0 4px 4px 0;
    padding: 0 15px; /* Adjust padding to make it square/tall */
    height: 44px; /* Match height of input */
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-subscribe-btn:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}

/* --- WhatsApp Button (Sticky Bottom Left) --- */
.whatsapp-btn-placeholder {
    position: fixed;
    bottom: 95px;   /* adjust distance from bottom */
    left: 0px;     /* adjust distance from left */
    z-index: 9999;  /* ensure it stays on top */
}

.whatsapp-link {
    background-color: #000;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
    border-radius: 0 5px 5px 0;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-link i {
    color: #25D366; /* WhatsApp green */
    margin-right: 8px;
}

.whatsapp-link span {
    font-size: 10px;
    font-weight: 400;
    color: #a4b4d7;
}


/* --- Bottom Bar Section --- */
.footer-bottom-bar {
    /* Slightly darker blue for the bottom bar */
    background-color: #06101c; 
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    font-size: 14px;
    color: #a4b4d7;
}

.bottom-link {
    color: #a4b4d7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    /* Add padding/margin to separate the links */
    padding: 0 5px; 
}

.bottom-link:hover {
    color: #fff;
}

/* --- Bottom Social Icons (The Orange Circles) --- */
.social-icons-bottom a {
    width: 30px;
    height: 30px;
    background-color: #0d6efd; /* Orange circle background */
    color: #fff; /* Dark icon color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icons-bottom a:hover {
    background-color: #fff;
    color: #000;
}