:root {
  /* Primary Brand Colors */
  --color-primary: #010A6F;
}
.head_search_con .amigoways-btn-search {
  background-image: url(../images/auto-search.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px auto;
  border: 1px solid #F0F1FF;
  padding: 16px 16px;
  cursor: pointer;
  display: inline-block;
  background-color: #F0F1FF;
}


.navbar-search-li {
  position: relative;
  display: flex;
  align-items: center;
}

.search-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}



.main-header .navbar-right .fa {
  font-size: 20px !important;
}

.dropdown-menu li a {

  padding: 10px !important;
}





.contact-section .field_title {
  color: #000;
  padding: 15px 0px 0px;
}

.contact-section label.error {
  background: #fff;
  padding: 2px 2px 0px;
  border-radius: 3px;
}


.zigzag-section {
  padding: 60px 0;
}

.zigzag-row {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.zigzag-image {
  background-size: cover;
  background-position: center;
  height: 350px;
  position: relative;
  border-radius: 30px;
  width: 100%;
}


.zigzag-content {
  padding: 20px;
  position: relative;
  top: -10%;
  /* move up by 10% */
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.95);
  border-left: 5px solid #c5a56e;
  border-radius: 20px;
  right: 10%;
}


.zigzag-content-con {
  padding: 20px;
  position: relative;
  top: -10%;
  /* move up by 10% */
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.95);
  border-left: 5px solid #c5a56e;
  border-radius: 20px;
  left: 10%;
}

.zigzag-section {
  background: linear-gradient(90deg, var( --color-primary ), #FF4B4E);

}


/* Mobile styles */
@media (max-width: 767.98px) {
  .zigzag-row {
    flex-direction: column;
  }

  .zigzag-image {
    height: 200px;
    /* Ensure image is visible on small screens */
    margin-top: 20px;
    /* Spacing for visual clarity */
    margin-bottom: 10px;
  }

  .zigzag-row>.col-md-5,
  .zigzag-row>.col-md-7 {
    width: 100%;
    max-width: 100%;
  }

  .zigzag-content {
    top: 0;
    left: 0;
  }


  .zigzag-content-con {
    top: 0;
    left: 0;
  }
}

.quote-box.connected-quote p {
  color: #FFF;
}


.vcenter {
  display: flex;
  align-items: center;
  min-height: 408px;
  /* match image height */
  justify-content: end;
}

.image-wrapper {
  position: relative;
  z-index: 2;
}

/* Make image slightly overlap quote box */
.how-it-works-img {
  max-height: 320px;
  object-fit: contain;
  position: relative;
  left: 80px;
}

/* Quote box styles */
.quote-box.connected-quote {
  background: linear-gradient(90deg, var( --color-primary ), #F3B545);
  padding: 50px 50px 35px 100px;
  /* left padding to avoid overlap */
  margin-left: -40px;
  /* pull quote box left under image */
  border-radius: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

/* Remove border-left and shadow on mobile and no overlap */
@media (max-width: 767px) {
  .vcenter {
    display: block;
    min-height: auto;
    text-align: center;
  }

  .image-wrapper {
    position: static;
    z-index: auto;
  }

  .how-it-works-img {
    left: 0;
    margin-bottom: 20px;
  }

  .quote-box.connected-quote {
    margin-left: 0;
    padding: 20px;
    box-shadow: none;
  }
}

.what-we-do-section {
  background: linear-gradient(90deg, var( --color-primary ), #F3B545);
}

.zigzag-container {
  overflow: hidden;
}

.what-we-do-section h4 {
  color: #000;
}

.content-area p {
  color: #FFF;
}

.zigzag-item {
  background: #f9f9f9;
  padding: 20px 25px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  float: left;
  box-sizing: border-box;
  position: relative;
  margin: 10px;
}

.zigzag-img {
  border-radius: 50%;
  background: var( --color-primary );
  padding: 12px;
}

.vertical-center-row {
  display: flex;
  flex-wrap: wrap;
  /* Keep responsiveness */
  align-items: center;
  /* Vertically centers children */
}



.offset-down {
  margin-top: 40px;
  /* tweak this for vertical offset */
}

/* Responsive stacking */
@media (max-width: 767px) {
  .zigzag-item {
    float: none !important;
    width: 100% !important;
    margin-top: 0 !important;
  }

  .vertical-center-row {
    padding: 0px 20px 0px 0px;
  }
}


.our-team-section {
  background: linear-gradient(90deg, var( --color-primary ), #F3B545);
}

.our-team-section h4 {
  color: #000 !important;
}


/* Team rows flex container */
.team-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-bottom: 25px;
}

.team-member {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
  padding: 25px 15px 40px;
  max-width: 380px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  text-align: center;
  border-bottom: 14px solid var( --color-primary );
}

.team-member:hover {
  transform: translateY(-8px);
}



/* Responsive adjustments */
@media (max-width: 991px) {
  .team-member {
    max-width: 45%;
    flex: 1 1 45%;
  }
}

@media (max-width: 575px) {
  .team-member {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .our-team-section {
    padding: 40px 15px;
  }

  .our-team-section .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.scheme-about-section li {
  margin-bottom: 7px !important;
}


.section-ti {
  color: #000;
}

.vison-box {
  background: var( --color-primary );
  border-radius: 15px;
  margin: 10px 15px;
}

.mision-sec {
  display: flex;
  justify-content: center;
}



.scheme-about-section ul {
  list-style-type: disc !important;
  padding-left: 20px;
  font-size: 16px;
  color: #333;
}

.scheme-about-section li {
  margin-bottom: 8px;
}

.scheme-about-section ul li {
  list-style-type: circle;
  margin-top: 6px;
  margin-bottom: 12px;
  color: #000;
  font-size: 15px;
}


.plan-sec {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.chit-fund-sec .nav-tabs>li>a {
  color: var( --color-primary );
  position: relative;
  display: block;
  padding: 16px 108px;
}

.image-tab>li>a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
  padding: 15px;
  border: 2px solid #ccc;
  border-radius: 8px;
  min-height: 200px;
  transition: all 0.3s ease;
  background-color: #fff;
  color: #333;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

/* Optional: Style the ul or parent container to be responsive */
.image-tab {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.image-tab>li {
  flex: 1 1 calc(33.333% - 16px);
  /* 3 columns on large screens */
  box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .image-tab>li {
    flex: 1 1 calc(50% - 16px);
    /* 2 columns on medium screens */
    padding: 10px;
  }
}

@media (max-width: 600px) {
  .image-tab>li {
    flex: 1 1 100%;
    /* 1 column on small screens */
    padding: 10px;
  }

  @media (max-width: 600px) {
    .chit-fund-sec .nav-tabs>li>a {
      padding: 10px !important;
    }
  }
}



/* Responsive text and padding adjustments */
@media (max-width: 768px) {
  .nav-tabs {
    font-size: 14px;
    padding: 10px 12px;
    margin: 11px;
  }
}

@media (max-width: 480px) {
  .nav-tabs {
    font-size: 13px;
    padding: 8px 10px;
    width: 95%;
  }
}


/* Section Basics */


.best-selling-section .section-title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.best-selling-section .section-content {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.best-selling-section .box-item {
  transition: all 0.9s ease;
}

/* === Responsive Grid System === */
.pro-list {
  box-sizing: border-box;

  margin: 0px 0px 25px 0px;
}

.best-selling-section .pro-sale-price {
  color: #000;
  font-size: 22px;
  font-weight: 600;
  padding-right: 5px;
}




/* === Product Box === */
.box-item {
  background: #fff;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  height: 100%;
}

.box-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* === Product Image & Overlay === */

.featured-image img.amigoways-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.featured-image:hover img.amigoways-img {
  transform: scale(1.05);
}

/* Light Black Overlay */
.box-overlay {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

/* Icons Overlay */
.box-overlay-action {
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0;
  visibility: hidden;
  display: flex;
  gap: 8px;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.box-overlay-action a {
  background: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: background 0.3s;
  font-size: 14px;
}

.box-overlay-action a:hover {
  background: #f1f1f1;
}

.featured-image:hover .box-overlay,
.featured-image:hover .box-overlay-action {
  opacity: 1;
  visibility: visible;
}

/* === Favorite Icon === */
.fav-icon i,
.fav-icon-sel i {
  color: #e74c3c;
}

/* === Product Content === */
.box-item-content {
  padding: 10px;
  background: var( --color-primary )0F;
}

.box-item-title .pro-title {
  font-size: 16px;
  font-weight: 700;
  color: #000;

}



/* === Ratings === */
.box-pro-review {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.box-pro-review .fa-star {
  color: #ccc;
  margin-right: 1px;
}

.box-pro-review .fa-star.active {
  color: #ffbf00;
}

.review_count {
  margin-left: 5px;
}

/* === Price === */
.pro-price-con {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
}

/* === Buttons === */
.box-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0px 10px 0px;
}

.top-picks-section .box-item-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 0px 10px 0px;
  border: 1px solid #CCCCCC;
  border-top: none;
}

.best-selling-section .amigoways-btn {
  background-color: var( --color-primary );
  color: #fff !important;
  padding: 5px 10px;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
  white-space: nowrap;
  width: 100%;
}





.best-selling-section .amigoways-btn:hover {
  background-color: var( --color-primary );
}

.cart-text i {
  margin-left: 5px;
}

/*******Product Detail*********/
.price-breakup-table td,
.price-breakup-table th {
  padding: 10px;
  color: #000;
}

.pro-sale-price {
  color: var( --color-primary ) !important;
}

/*******Product Detail*********/



/* === Responsive Fixes === */
@media (max-width: 767px) {
  .box-overlay-action {
    flex-direction: column;
    top: 5px;
    right: 5px;
  }
}





.blog-card {
  display: flex;
  justify-content: center;
}


/* Center text and elements on small screens */
@media (max-width: 767px) {

  .blog-card .col-xs-4,
  .blog-card .col-xs-8 {
    text-align: center;
    width: 100%;
  }

  .blog-card img {
    display: block;
    margin: 0 auto 15px;
    max-width: 80%;
  }

  .blog-meta,
  .blog-desc,
  .read-more {
    text-align: center;
  }
}

.blog-meta,
.blog-desc,
.read-more {
  color: #fff;
}

.blog-sec {
  background: #FF4B4E;
  padding: 16px 16px 16px 0px;
}

.sub-section .sub_heading {
  color: #000;
}

.sub-section .heading {
  color: var( --color-primary );
}






.gift-box {
  background-color: #F0F1FF;
  border-radius: 8px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  /* Soft shadow */
  margin-bottom: 40px;
  transition: box-shadow 0.3s ease;
}

.gift-card-title {
  color: var( --color-primary );
  padding: 15px 0px 2px 15px;
  border-bottom: 1px solid #000000;
  background: #FFFFFF;
}

.gift-details {
  padding: 15px 0px 2px 15px;
  background: #FFFFFF;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.gift-details p {
  color: var( --color-primary );
}

.gift-card-sundar {
  background: #FFFFFF;
  padding: 20px;
}



.contact-us-details {
  margin-top: 30px;
}

.contact-box {
  /* You can add borders or background if you want */
  text-align: center;
  /* center everything horizontally */
}



.full-con-sec .contact-content {
  display: flex;
  align-items: center;
  background: var( --color-primary );
  text-align: left;
}

.full-con-sec .contact-content a {
  margin: 0;
  font-size: 14px;
  color: #fff;
}

.all-contact-sec {
  padding: 29px;
  transition: .3s;
  box-sizing: border-box;
  overflow: hidden;
  border: none;
  background: var( --color-primary );
  border-radius: 20px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 10px 15px rgba(0, 0, 0, 0.05);
}

.contact-content em {
  color: var( --color-primary );
  margin-bottom: 15px;
}

.contact-content h5 {
  margin: 0 0 10px 0;
  font-weight: 600;
}

.contact-content p {
  font-size: 14px;
  color: #fff;
}

.contact-social-icon .fa {
  padding: 8px 9px;
}


.field-row {
  margin: 15px 0px;
}

.gold-input {
  color: var( --color-primary );
  border: 1px solid #ccc;
}



.gold-drop {
  color: #fff;
  background-color: var( --color-primary ) !important;
}




.notes-box {
  background-color: #FFFFFF;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 25px;
  margin-top: 20px;
}

.notes-list li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.notes-list i.fa {
  margin-right: 10px;
}

.detail-sec .product-detail-box {
  background: #FFFFFF;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  padding: 20px;
  margin-top: 20px;
}

.detail-sec .product-name {
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.detail-sec .product-name a {
  color: #333;
  text-decoration: none;
}

.detail-sec .product-name a:hover {
  text-decoration: underline;
}

.detail-sec .product-info li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #555;
}

/* ======== Personal Info Panel Heading + Toggle Switch ======== */

.user-account-box {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  position: relative;
}

.user-account-box .panel-heading {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 15px;
  font-size: 20px
}

.user-account-box .btn-edit-profile {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}


.user-account-box .panel-body {
  padding: 10px;
}

.user-account-box .info-title {
  color: #000F19;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.user-account-box .info-row {
  color: #000F19;
  font-size: 16px;
  margin-bottom: 9px;
}

.user-account-box .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000F19;
  color: #FFFFFF;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  margin-right: 6px;
  font-size: 12px;
}

.user-account-box .btn-edit-profile {
  display: inline-flex;
  align-items: center;
}

.user-account-box .btn-group-sm>.btn,
.btn-sm {
  padding: 4px 8px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 37px;
  background: #1D3545;
  color: #FFFFFF;
  border: 1px solid #1D3545;
}

.user-savings-box {
  background: #fb7637;
}

.kyc-image-sec {
  width: 200px;



}



.user_account_details .panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.user_account_details .panel-title {
  color: var( --color-primary );
  font-size: 21px;
  font-weight: 700;
}


.user_account_details,
.label-left,
.label-right {
  position: relative;
}

.user_account_details .toggle-track {
  background: #ddd;
  border: 2px solid white;
}

.user_account_details .toggle-track {
  height: 34px;
  font-size: 16px;
}

.user_account_details .text-warning {
  color: var( --color-primary );
}

.user_account_details label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 0px;
  font-weight: 500;
  font-size: 16px;
}


.mob_head_side ul#nav li a .fa:hover {

  color: #fff !important;

}

.mob_head_side ul#nav li a .fa {
  padding: 0px 5px 0px 0px;
  font-size: 18px;
  vertical-align: middle;
  line-height: 15px;
  color: var( --color-primary );
}

@media (max-width: 768px) {
  .mob_head_side ul#nav li a {
    padding: 10px 0px 10px 10px;
    color: #666;
    font-size: 14px;
    outline: medium none !important;
    text-decoration: none !important;
  }
}

/* ======== Personal Info Panel Heading + Toggle Switch ======== */




/* Layout Container */


/* Headings */
.static__title {
  color: #DD2626;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
}

.static__subtitle {
  color: var( --color-primary );
  font-size: 1.5rem;
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
  margin: 40px 0 15px;
}

/* Paragraphs and Lists */
.static__intro p {
  margin-bottom: 15px;
}

.static__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
  list-style-type: none !important;
}

.static__list-item {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  list-style-type: none !important;
}

.static__list-item::before {
  content: '\f00c';
  position: absolute;
  left: 0;
  top: 0;
  color: #DD2626;
  font-weight: bold;
  font-size: 1.1rem;
  font: normal normal normal 14px / 1 FontAwesome;
}

/* Sections */
.static__section {
  margin-bottom: 40px;
}

/* Info Boxes */
.static__info-box {
  background-color: #f9f9f9;
  padding: 15px 20px;
  border-left: 5px solid #DD2626;
  border-radius: 6px;
  font-size: 0.95rem;
}

/* Footer */
.static__footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  text-align: center;
  color: #777;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .static__title {
    font-size: 2rem;
  }

  .static__subtitle {
    font-size: 1.3rem;
  }

  .static__container {
    padding: 15px;
  }
}

@media (max-width: 360px) {

  .best-selling-section .amigoways-btn {

    width: 100%;
    margin-bottom: 10px;
  }

}

.amigo-link {
  display: inline-flex;
  text-decoration: none;
}

.chits-retes-sec {
  display: flex;
  justify-content: end;
}

.chit-rates-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-color: #ffffff;
  flex-wrap: wrap;
  border-radius: 50px;
  background: linear-gradient(to right, #FFC55C, #FFB95C);
  margin: 5px 2px 0px 2px;
  padding: 3px 0px 3px 0px;
  width: 165px;
}

.rates-center {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var( --color-primary );
  margin: 5px 0px 0px 3px;
}


.head_search_con .amigoways-btn {
  background: #fff url(../images/auto-search.png) no-repeat scroll center / 20px auto !important;
  border-radius: 50px 50px !important;
  padding: 11px 20px !important;
}


.footer-img-sec {
  background: linear-gradient(to bottom, #01085a, #00053c);
  border-radius: 15px;
}

.foot-section {
  padding: 33px 20px;
}

.footer-social-icon {
  text-align: end;
}


/* Prevent shaking and layout jump */
.category-sec-item {
  background: #fff;
  padding: 10px;
}

.category-sec-item img {
   border-radius: 10px;
}

/* Uniform column width */
.custom-col {
  width: 20%;
  float: left;
  padding: 0 5px;
}


/* Medium devices (tablets) */
@media (max-width: 991px) {
  .custom-col {
    width: 33.33%;
    /* 3 per row */
  }
}

/* Small devices (phones) */
@media (max-width: 761px) {
  .custom-col {
    width: 100%;
    /* 1 per row */
  }

  .top-pick-item {
    margin: 20px !important;
  }
}


.slider-name {
  margin-top: 10px;
  font-size: 19px;
  font-weight: 700;
}

/* Arrow Buttons */
.category-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 24px;
  padding: 8px 12px;
  cursor: pointer;
  color: #333;
  border-radius: 50%;
  background: var( --color-primary );
}

.category-arrow:hover {
  background-color: #eee;
}

.category-arrow-left {
  left: -30px;
  /* Adjust if needed */
}

.category-arrow-right {
  right: -30px;
}

/* Responsive adjustment */
@media (max-width: 786px) {
  .category-arrow-left {
    left: 5px;
  }

  .category-arrow-right {
    right: 5px;
  }

}

.glyphicon {
  color: #fff;
}



/* Top Picks Section Styles */

.top-pick-item {
  margin: 10px 0px;
  position: relative;
  transition: all 0.3s ease;
}

.top-pick-img-wrapper {
  position: relative;
}

.top-pick-img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #CCCCCC;
  border-bottom: none;
}

.top-picks-section .wishlist-icon,
.category-section .wishlist-icon,
.wishlist-section .wishlist-icon,
.search-result-section .wishlist-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
}

.top-picks-section .wishlist-icon a i,
.category-section .wishlist-icon a i,
.wishlist-section .wishlist-icon a i,
.search-result-section .wishlist-icon a i {
  font-size: 20px;
  color: var( --color-primary );
  background: #fff;
  padding: 6px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}


.top-picks-section .wishlist-icon a i.favoured,
.category-section .wishlist-icon a i.favoured,
.search-result-section .wishlist-icon a i.favoured {
  color: #fff;
  background: #ffa90a;
}


.top-pick-info {
  padding: 12px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #CCCCCC;
  border-top: none;
  border-bottom: none;
}

.top-pick-title {
  display: block;
  font-size: 17px;
  color: #333333;
  margin-bottom: 5px;
  font-weight: 600;
  text-decoration: none;
}


.top-pick-price {
  font-size: 17px;
  color: #333333;
  font-weight: 700;
}

.top-picks-section .wishlist-icon a i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.top-picks-section .wishlist-icon a:hover i {
  transform: scale(1.2);
}


.badge-offer,
.badge-new {
  position: absolute;
  padding: 5px 10px;
  color: #000000;
  font-size: 12px;
  font-weight: bold;
  border-radius: 3px;
  z-index: 10;
}

.badge-offer {
  top: 10px;
  left: 10px;
  background-color: #FFB95C;
}

.badge-new {
  top: 10px;
  right: 10px;
  background-color: #FFB95C;
}

.product-search-page .wishlist-icon a i,
.category-section .wishlist-icon a i,
.wishlist-section .wishlist-icon a i,
.search-result-section .wishlist-icon a i {
  font-size: 20px;
  color: var( --color-primary );
  background: #fff;
  padding: 6px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.product-search-page .wishlist-icon,
.category-section .wishlist-icon,
.wishlist-section .wishlist-icon,
.search-result-section .wishlist-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
}

.product-search-page .wishlist-icon a i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.product-search-page .wishlist-icon a:hover i {
  transform: scale(1.2);
}

.product-search-page .box-item-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 0px 10px 0px;
  border: 1px solid #CCCCCC;
  border-top: none;
}

.dashboard-con .wishlist-icon a i,
.category-section .wishlist-icon a i,
.wishlist-section .wishlist-icon a i,
.search-result-section .wishlist-icon a i {
  font-size: 20px;
  color: var( --color-primary );
  background: #fff;
  padding: 6px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.dashboard-con .wishlist-icon,
.category-section .wishlist-icon,
.wishlist-section .wishlist-icon,
.search-result-section .wishlist-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
}

.dashboard-con .wishlist-icon a i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.dashboard-con .wishlist-icon a:hover i {
  transform: scale(1.2);
}

.dashboard-con .box-item-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 0px 10px 0px;
  border: 1px solid #CCCCCC;
  border-top: none;
}



.category-section .wishlist-icon a i,
.category-section .wishlist-icon a i,
.wishlist-section .wishlist-icon a i,
.search-result-section .wishlist-icon a i {
  font-size: 20px;
  color: var( --color-primary );
  background: #fff;
  padding: 6px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.category-section .wishlist-icon,
.category-section .wishlist-icon,
.wishlist-section .wishlist-icon,
.search-result-section .wishlist-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
}

.category-section .wishlist-icon a i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.category-section .wishlist-icon a:hover i {
  transform: scale(1.2);
}

.category-section .box-item-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 0px 10px 0px;
  border: 1px solid #CCCCCC;
  border-top: none;
}




.why-sam-sec {
  background: linear-gradient(to right, rgba(255, 189, 93, 0.6), rgba(255, 195, 93, 0.6));
}

.why-sam-sec .image-box {
  background: none;
}

.why-sam-sec .saving-content-wrapper {
  border: 1px solid #1A1A1A;
  min-height: 280px;
  margin-bottom: 15px;
}

.why-sam-sec .saving-content-wrapper:hover {
  box-shadow: none;
  border-radius: 0px;
}

.how-to-redeem-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-top: 30px;
}

.sip-redeem-section {
  background: linear-gradient(to right, #FFBD5D, #FFC35D);
}

.about-us-section h2.section-title {
  color: #000000 !important;
}



.blog-box {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 12px 10px 10px 13px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  min-height: 360px;
}

.blog-box:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-image {
  background-size: cover;
  background-position: center;
  height: 180px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.blog-title {
  font-size: 18px;
  margin: 17px 0px 7px 0px;
}

.blog-content {
  color: #555;
  margin: 0px;
}

@media (max-width: 767px) {
  .how-to-redeem-wrapper {
    flex-direction: column;
  }

  .arrow-img {
    display: none;
  }
}

.blog-center-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 0px 10px 0px;
  border-top: none;
  border-radius: 20px;
}

.savings-plan-section .saving-content-wrapper {
  min-height: 280px;
  margin-bottom: 15px;
}

.savings-plan-section .saving-content-wrapper:hover {
  box-shadow: none;
}

.gradient-border {
  border-radius: 12px;
  background: linear-gradient(#FFB95C, #FFC35D);
  /* border gradient */
  position: relative;
  z-index: 0;
}

.gradient-border::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: white;
  /* or your inner content background */
  border-radius: 10px;
  z-index: -1;
}


.save-plan-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}



.gallery-item {
  margin-bottom: 15px;
  padding: 0px;
}

.tall-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  min-height: 300px;
}

.top-image img {
  height: 260px;
  width: 100%;
  margin-bottom: 10px;
}

.bottom-image img {
  height: 167px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 10px;
}

@media (max-width: 767px) {

  .tall-image img,
  .top-image img,
  .bottom-image img {
    height: auto;
  }

  .tall-image img {
    padding: 15px;
  }
}

.bottom-image {
  padding: 3px 6px 0px 16px;

}

.gallery-bottom-padd {
  padding: 3px 14px 0px 6px;
}


/* Make row a flex container */
.split-equal-height {
  display: flex;
  flex-wrap: wrap;
}


/* Make images fill their containers properly */
.split-image-wrapper {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.split-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay Styling */
.split-overlay {
  position: absolute;
  top: 37px;
  left: 0;
  width: 100%;
  color: #fff;
  padding: 20px;
}

/* Optional: Button styling inside overlay */
.btn-overlay {
  margin-top: 10px;
  padding: 8px 20px;
  text-decoration: none;
  border: 1px solid #fff;
  color: #fff;
}

.btn-overlay 
.btn.focus, .btn:focus, .btn:hover {
    color: #fff;
    text-decoration: none;
}

/* Responsive fix for stacked layout */
@media (max-width: 767px) {
  .split-equal-height {
    display: block;
  }

  .split-image-wrapper {
    height: auto;
  }

  .split-image-wrapper img {
    min-height: 207px;
    object-fit: cover;
  }

  .overlay-align {
    left: 88px !important;
    padding: 0px;
  }

  .split-overlay {
    padding: 7px;
  }

  .cat-rectangle-img {
    padding: 14px !important;
  }
}

.rect-img {
  max-height: 275px;
}

.overlay-align {
  left: 270px;
}

.split-layout-static p.section-content {
  margin: 10px 0px;
  color: #fff;
}

.split-layout-static h3 {
  color: #fff;
}



/* Tabs Styling */
.nav-tabs {
  margin-bottom: 30px;
  background: var( --color-primary );
}



.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus {
  color: var( --color-primary ) !important;
  cursor: default;
  background: #F0F1FF !important;
  border: 5px solid var( --color-primary );
}


.nav-tabs>li>a {
  color: #fff;
  position: relative;
  display: block;
  text-align: center;
  background: var( --color-primary );
  border: 5px solid var( --color-primary ) !important;
  font-size: 19px;
}

.card-style {
  padding: 0;
  background: #F0F1FF;
  border-radius: 8px;
  border: 1px solid #F0F1FF;
  width: 100%;
  float: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}


.save-gold-cal {
  margin-bottom: 20px;
}

.saving-tabpanel-section .gold-silver-rate {
  display: flex;
  align-items: center;
  line-height: 1;
  justify-content: center;
  background: #FF762B;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 10px;
}

.custom-dg-radio {
  position: relative;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
  user-select: none;
  padding-left: 8px;
  padding-top: 2px;
}

#save-silver-section,
.gold-save-grams-section,
.silver-save-grams-section,
#sip-silver-section {
  display: none;
}

.btn-save-section {
  text-align: center;
  padding: 20px;
  width: 100%;
  float: left;
  margin: 20px 0px 20px 0px;
}


.saving-tabpanel-section .form-control {
  border: 1px solid #7A7A7A !important;
  box-shadow: none;
  background: #fff;
  padding: 21px;
  border-radius: 0px;
}


.save-gold-silver-sec {
  display: flex;
  justify-content: center;
}


.saving-tabpanel-section .input-group span {
  background: #fff;
  border: 1px solid #7A7A7A !important;
  padding: 15px 24px 0px 11px;
}


.saving-tabpanel-section .nav>li>a:focus,
.nav>li>a:hover {
  background: #FFC4A5;
  color: #FFF;
  box-shadow: none;
}


/* Input Row */
.icon-input-row {
  margin-top: 20px;
}

.label-icon {
  width: 21px;
  height: 21px;
  vertical-align: middle;
}


.input-group-addon {
  background: #f1f1f1;
  font-weight: bold;
}

/* Arrow */
.arrow-wrap {
  margin: 46px 0 15px;
}

.arrow-icon {
  width: 30px;
}

/* Buttons */
.action-buttons .btn {
  margin: 5px;
  min-width: 90px;
  border-radius: 20px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 767px) {
  .icon-input-row {
    margin-bottom: 15px;
  }

  .round-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .action-buttons .btn {
    min-width: 60px;
  }

  .save-gold-pot {
    max-width: 190px;
  }

  .arrow-wrap {
    margin: 12px 0 10px;
  }

  .icon-input-row label {
    margin-bottom: 8px;
  }

  .text-info {
    margin: 0px !important;
  }

  .btn-gold-amount-sec {
    margin: 0px;
  }

  .btn-save-section {
    margin: 0px;
  }
}

.text-info {
  color: #000;
  margin: 15px 0px;
  font-size: 14px;
}


.action-buttons {
  padding: 20px 0px;

}


/* Create a custom radio button */
.custom-radio {
  cursor: pointer;
  user-select: none;
  font-size: 18px;
  color: #000;
}

.save-silver-cal {
  margin-top: 20px;
}

.save-gold-cal {
  margin-bottom: 20px;
}

.saving-tabpanel-section .amigoways-btn {
  width: 75px;
}

.saving-tabpanel-section .gold-silver-rate {
  display: flex;
  align-items: center;
  line-height: 2;
  justify-content: center;
  background: var( --color-primary );
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 0px;
}

.saving-tabpanel-section .metal-image {
  margin-right: 15px;
}

.saving-tabpanel-section .dropdown-toggle {
  text-decoration: none;
  color: #FFF;
}

.saving-tabpanel-section .head-price h5 {
  font-size: 17px;
  color: #FFF;
}


.custom-dg-radio .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 23px;
  width: 23px;
  background-color: #f0f0f0;
  border: 2px solid #bbb;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
}

.custom-dg-radio input:checked~.checkmark {
  background-color: #e6f0ff;
  border-color: var( --color-primary );
}

.custom-dg-radio .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var( --color-primary );
  transition: all 0.3s ease;
}

.custom-dg-radio input:checked~.checkmark::after {
  display: block;
}


.icon-input-row label {
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
  font-size: 18px;
}

.btn-save-section .btn {
  background: #fb7637;
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}


.metal-options-wrapper,
.frequency-options-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

#gold-weekly,
#gold-monthly,
#silver-weekly,
#silver-monthly,
#silver-rate-save-section {
  display: none;
}

.initial-btn {
  background: var( --color-primary );
  color: #fff;
}

.btn-save-gold {
  background: #fff;
  color: var( --color-primary );
}

.cat-rectangle-img {
  padding: 0px;
}


.save-about-section {
  background: linear-gradient(to right, rgba(255, 189, 93, 0.6), rgba(255, 195, 93, 0.6));
}

.top-features-section {
  background: linear-gradient(to right, #FFBD5D, #FFC35D);
}

.top-features-section .card-wrapper {
  margin-bottom: 30px;
}

.top-features-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.top-features-section .custom-card {
  background: #FFFFFF;
  padding: 34px 20px 20px;
  border-radius: 8px;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-height: 250px;
  margin-top: 30px;
}

.top-features-section .card-img {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #FFBD5D, #FFC35D);
  padding: 10px 12px;
  border-radius: 50%;
}

/* .top-features-section .card-img img {
  width: 60px;
  height: 60px;
} */

/* .top-features-section .card-title {
  font-size: 18px;
  margin-top: 35px;
  font-weight: bold;
  color: #333;
}

.top-features-section .card-text {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
} */

.why-points-list li {
  font-size: 16px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sip-invest-section .why-points-list li {
  font-size: 16px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}


.digigold-sell-list {
  list-style: none;
  /* Remove default bullets */
  padding-left: 0;
}

.digigold-sell-list li {
  position: relative;
  padding-left: 22px;
  /* Space for bullet */
  margin: 10px 0px;
}

.digigold-sell-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 10px;
  /* Bullet size */
  height: 10px;
  /* Bullet size */
  background-color: var( --color-primary );
  /* Bullet color */
  border-radius: 50%;
  /* Make it round */
}

.how-redem-img {
  border: 1px solid black;
  border-radius: 50%;
  padding: 5px;
}

.start-sip-section {
  background: linear-gradient(to right, rgba(255, 189, 93, 0.6), rgba(255, 195, 93, 0.6));
}



.founder-section .manage-director-sec {
  position: relative;
  background-image: url(../images/founder-bg.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  /* Adjust padding as needed */
}

.founder-section .manage-sec {
  display: flex;
  justify-content: center;
}


@media (max-width: 768px) {
  .founder-section .manage-director-sec {
    background-size: cover;
    padding: 20px;
  }

  .founder-section .manage-director-content {
    padding: 20px 0px;
  }

  .gift-amnt {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap;
    float: none !important;
  }

  .extra-boxes {
    flex-direction: column;
  }

  .cart-bottom a {
    width: 100%;
  }


  .checkout_header .amigoways-btn,
  .amigo-btn {
    padding: 10px 4px;
    font-size: 13px;
  }

  .all-contact-sec {
    padding: 5px;
  }

  .about-director-sec {
    display: flex;
    flex-direction: column;

  }

  .user_account_details,
  .label-left,
  .label-right {
    padding: 0px;
  }
}

.save-gold-home-section {
  background: #F0F1FF;
}

.subscribe-row {
  display: flex;
}

.subscribe-input {
  background: #fff;
  border: 1px solid var( --color-primary );
  flex: 0.7;
  padding: 5px;
  border-right: none;
  border-radius: 0px !important;
}

.subscribe-btn {
  background: #fb7637;
  color: #000;
  border: 1px solid var( --color-primary );
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  font-weight: 700;
}

.subscribe-btn {
  padding: 10px 20px;
  background-color: #ef5808;
  border: 1px solid #007BFF;
  color: white;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.what-offer-section {
  background: linear-gradient(to right, rgba(255, 189, 93, 0.6), rgba(255, 195, 93, 0.6));
}

.full-cart {
  padding: 29px;
  transition: .3s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .05);
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
  border: none;
}

.product-winfo {
  display: flex;
  border: 1px solid #FEC55C;
  max-width: 270px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-weight-column {
  padding: 3px 11px;
}

.product-weight-column:nth-child(1),
.product-weight-column:nth-child(2) {
  border-right: 1px solid #FEC55C;
}

.product-weight-column .label {
  display: block;
  font-weight: bold;
  color: #757575;
  margin-bottom: 4px;
}

.product-weight-column .value {
  color: #000;
}

.pro-stock-sec {
  margin-bottom: 10px !important;
}

.extra-boxes a {
  color: var( --color-primary );
  font-size: 15px;
}

.pincode_check .pincode_check_btn {
  padding: 5px;
  color: #FFF;
  background: #2B337C;
  border: 1px solid #2B337C;
  display: inline-block;
  cursor: pointer;
}

.pincode_check .label-helper {
  position: absolute;
  opacity: 0;
  transition: .2s bottom, .2s opacity;
  bottom: 0;
  left: 0;
  height: 20px;
  z-index: 1;
}

.pincode_check .input-text {
  margin: 0px;
  padding: 0px !important;
}

.pincode_check .input-text {
  margin: 0px;
  border-radius: 0px;
}

.pincode_check .popup_login .form-row,
.signin_content .form-row {
  margin: 0px;
  padding: 0px;
  display: flex;
}

.gift-amnt {
  float: right;
  display: flex;
  gap: 10px;
}

.product-share-all {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.pro-share-con {
  position: relative;
}


.tracking-section .contact-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #F05F06, #F7A51C);
  border-radius: 10px;
  margin-bottom: 10px;
  flex-direction: column;
  height: auto;
  padding: 10px;
}

.tracking-section .contact-content h5 {
  margin: 8px 0px 0px 0px;
  color: #fff;
}

.tracking-section .verfify-sec {
  background: linear-gradient(to right, var( --color-primary ), #5A63C3, var( --color-primary ));

}

.tracking-section .world-wide-sec {
  background: linear-gradient(to right, #E99600, #FFC967, #E99600);

}

.tracking-section .customer-sat-sec {
  background: linear-gradient(to right, #F17F21, #FFA962, #F17F21);

}

.tracking-section .hassle-sec {
  background: linear-gradient(to right, #AC82E5, #D3B2FF, #AC82E5);

}

.review-sec .amigoways-btn {
  width: 100px;
}

.review-section {
  background: #FFFFFF;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  padding: 20px;
  margin-top: 20px;
}

.dash-user-sec {
  display: flex;
  justify-content: center;
}

.social-title {
  margin: 7px 11px 0px 7px;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}


.all-plan-section .saving-content-wrapper {
  border: none;
  min-height: 150px;
  margin-bottom: 15px;
}

.all-plan-section .image-box {
  padding: 10px;
  margin-bottom: 10px;

}


#gold-amount-gram-switcher,
#silver-amount-gram-switcher {
  cursor: pointer;
}

.search_sort {
  display: flex;
  justify-content: center;
  margin-top: 5px;
  padding: 10px;
  background: #f9f9f9;
}

.search_filters {
  display: flex;
  justify-content: center;
  margin-top: 5px;
  padding: 10px;
  background: #f9f9f9;
}

.search-label {
  vertical-align: middle;
  line-height: 1.2;
}
.search_head .fa{
  padding-right: 4px;
}


.top-user-menus {
  display: flex;
  align-items: center;
  justify-content: end;
}

.top-user-menus .tuser-menu a {
  text-transform: capitalize;
}


.savings-plan-section .image-box {
  padding: 10px;
}


.product-gallery-section
.product-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
}



.product-gallery-section
.product-name-overlay {
  position: absolute;
  bottom: 13px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6); /* Dark transparent background */
  color: #fff;
  padding: 8px 12px;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}


/* Mobile screen adjustments */
@media (max-width: 576px) {
  .product-name-overlay {
    font-size: 14px;
    padding: 6px 10px;
  }
}