@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

*{
    padding: 0px;
    margin: 0px;
   box-sizing: border-box;
}

:root {
  --primary-color: #D56767;  /* Bootstrap Blue */
  --success-color: #6c757d; /* Gray */
  --background-color:#e3e3e3; /* Light Gray */ 
  --text-color: #212529; /* Dark Gray */
  --button-hover: #ef5d5d; /* Darker Blue */
  --footer-background:#201f1f;
  --primary:#D56767;
  --gray-light: #f5f5f5;
  --text-dark: #333;
  --text-light: #666;
  --white: #fff;

}
 body {
            /* font-family: Arial, sans-serif; */
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            transition: overflow 0.3s;
              background-color: #f2f3f7;
      }
   .body-bg{
    background-color: #f2f3f7;;
   }
   ul{
  list-style: none;
}
p{
  font-size: 15px;
  color: #848282;
}
.mobil-view{
  display:none;
}
.bg-success {
    background-color: var(--primary-color);
}
        .container {
            max-width: 1350px;
            margin: 0 auto;
           
        }

        .row {
            display: flex;
            /* justify-content: space-between; */
            align-items: center;
            flex-wrap: wrap;
        }
      .top-header {
            background: #D56767;
            padding: 6px 0px 0px 0px;
            height: 40px;
            position: relative;
        }

        .top-header .top-nav {
            margin-left: 0px;
        }

        .top-header .top-nav li {
            display: inline-flex;
            padding: 6px 10px;
        }

        .top-header .top-nav li a {
            color: #fff;
            text-decoration: none;
            font-size: 13px;
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: flex;
            list-style: none;
            gap: 20px;
            margin: 0;
            padding: 0;
        }

     .desktop-nav li a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    padding: 8px 12px;
    /* transition: background-color 0.3s; */
}

        .desktop-nav li a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
        }

        /* Toggle Button */
        .toggle-btn {
            background-color: #D56767;
            color:#eee;
            border: none;
            padding: 4px 8px;
            font-size: 18px;
            cursor: pointer;
            display: none;
            position: absolute;
            top: 9px;
            right: 15px;
            z-index: 1001;
            border-radius: 4px;
        }

        /* Social Icons */
        .social-section {
            display: flex;
            align-items: center;
        }

        .social-icons {
            display: flex;
            list-style: none;
            gap: 15px;
            margin: 0;
            padding: 0;
            margin-top: 1px;
        }

        .social-icons li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 14px;
            border:1px solid #eee;
            padding: 5px 7px;
            border-radius: 18px;
        }

        .social-icons li:hover a{
            color: #000;
        }

        /* Overlay */
        .overlay {
            display: none;
            position: fixed;
            top: 0; 
            left: 0;
            height: 100vh;
            width: 100vw;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .overlay.active {
            display: block;
        }

        .nav-section a, .mobile-slide-nav a {
            position: relative;
            z-index: 1001;
        }

        /* Mobile Slide Menu */
        .mobile-slide-nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background: #fff;
            z-index: 9999;
            transition: right 0.3s ease;
            padding: 20px;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
            overflow-y: auto;
        }

        .mobile-slide-nav.active {
            right: 0;
        }

        /* Close Button */
        .close-btn {
            background: none;
            border: none;
            color: #D56767;
            font-size: 14px;
            cursor: pointer;
            position: absolute;
            top: 20px;
            right: 15px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.3s;
        }

        .close-btn:hover {
            background-color: rgba(213, 103, 103, 0.1);
        }

        /* Mobile Menu Navigation */
        .mobile-slide-nav .top-nav {
            list-style: none;
            margin-top: 60px;
            padding: 0;
        }

        .mobile-slide-nav .top-nav li {
            margin-bottom: 10px;
            display: block;
            border-bottom: 1px solid #eee;
        }

        .mobile-slide-nav .top-nav li a {
            color: #D56767;
            text-decoration: none;
            font-size: 16px;
            padding: 12px 0;
            display: block;
            transition: padding-left 0.3s;
        }

        .mobile-slide-nav .top-nav li a:hover {
            padding-left: 10px;
            background-color: rgba(213, 103, 103, 0.1);
        }

        /* Mobile Social Icons */
        .mobile-slide-nav .social-icons {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .mobile-slide-nav .social-icons a {
            color:#D56767;
            font-size: 18px;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.3s;
        }

        .mobile-slide-nav .social-icons a:hover {
            background-color: rgba(213, 103, 103, 0.1);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .toggle-btn {
                display: block;
                width:50px;
                height:50px;
            }
            
            .desktop-nav,
            .social-section {
                display: none;
            }
            
            .top-header {
                height: 50px;
            }
            .search{
    display: none;
}
        }

        @media (max-width: 996px) {
          .desk-view{
            display:none;
          }
          .mobil-view{
  display:block;
}
.search{
    display: none;
}
.tab-content {
   display:block;
    padding: 15px;
    animation: fadeIn 0.5s;
}
            .toggle-btn {
                display: block;
                margin-top: 57px;
            }
            .header-middle .logo img {
                max-height: 149px;
                margin-left: -56px;
                object-fit: contain;
            }
            .desktop-nav,
            .social-section {
                display: none;
            }
            
            .top-header {
                height: 50px;
            }
        }

        /* Content area for demo */
        .content {
            padding: 40px 20px;
            text-align: center;
        }

        .content h1 {
            color: #D56767;
            margin-bottom: 20px;
        }

        .content p {
            line-height: 1.6;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /*************Middle Header*************/
        @media (max-width: 767px) {
            .header-middle .search-container {
                flex-wrap: nowrap;
                flex-direction: row;
                width: 100%;
                margin: 0 auto;
                border-radius: 0 !important;
            }

            .search-dropdown,
            .search-input,
            .search-button {
                border-radius: 0 !important;
                font-size: 13px;
                padding: 10px;
            }
            .mobile-ico{
                display: none;
            }
            .header-middle .search-dropdown {
                flex: 1;
                min-width: 30%;
                border-right: 1px solid #ccc;
            }

            .header-middle .search-input {
                flex: 2;
                min-width: 40%;
            }

            .header-middle .search-button {
                flex: 1;
                min-width: 25%;
            }

            /* Book Demo and Create Account in one row under search */
            .mobile-action-buttons {
                display: flex;
                justify-content: space-between;
                margin-top: 10px;
                gap: 10px;
            }

            .mobile-action-buttons a {
                flex: 1;
                text-align: center;
                padding: 10px;
                font-size: 13px;
                border: 1px solid #d56767;
                border-radius: 5px;
                text-decoration: none;
            }

            .mobile-action-buttons .book-demo {
                background-color: #d56767;
                color: #fff;
            }

            .mobile-action-buttons .create-account {
                background-color: #fff;
                color: #d56767;
            }
        }

        /*************Search Section middle header*******************/
        .header-middle {
            background-color: #f8f9fa;
            border-bottom: 1px solid #dee2e6;
        }

        .header-middle .logo img {
            max-height: 57px;
            padding-left: 29px;
            object-fit: contain;
        }

        .header-middle .search-container {
            display: flex;
            align-items: center;
            /* border: 1px solid #ccc; */
            overflow: hidden;
            max-width: 60%;
            min-width: 300px;
            flex: 1;
            margin-right: 20px;
            border-radius: 0;
        }

        .header-middle  .search-container form {
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
            width: 100%;
        }

        .search-dropdown {
            height: 40px;
            border-radius: 20px 0 0 20px;
            border: 1px solid #ccc;
            background-color: #f5f5f5;
            font-size: 14px;
            padding: 0 12px;
            color: #333;
            border-right: none;
        }

        .search-input {
            flex: 1;
            height: 40px;
            border: 1px solid #ccc;
            border-left: none;
            font-size: 14px;
            padding: 0 12px;
            background-color: #fff;
        }

        .search-button {
            height: 40px;
            padding: 0 15px;
            border-radius: 0 20px 20px 0;
            border: none;
            background-color: #d56767;
            color: #fff;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .search-button:hover {
            background-color: #c54848;
        }
       #autocomplete-results {
  position: absolute;
  background: white;
  /* border: 1px solid #ddd; */
  width: 90%;
  max-height: 200px;
  overflow-y: auto;
}
.autocomplete-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.autocomplete-item {
  padding: 8px;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
}
.autocomplete-item:hover {
  background: #f4f4f4;
}
.no-results {
  padding: 10px;
  color: #d56767;
}
.suggestions-dropdown {
position: absolute;
    top: 80%;
    left: 354px;
    right: 0px;
    background: #fff;
    border: 1px solid #ddd;
    width: 51%;
  display: none;
  z-index: 1000;
}
.suggestion-item {
  padding: 8px;
  cursor: pointer;
}
.suggestion-item:hover {
  background: #f1f1f1;
}

/* Optional: Mobile fine-tuning */
@media (max-width: 768px) {
  .suggestions-dropdown {
    font-size: 14px;
    top: 68%;
    left: 48px;
    right: 0px;
    background: #fff;
    border: 1px solid #ddd;
    width: 84%;
  }
      
}
@media (max-width: 996px) {
  .suggestions-dropdown {
    font-size: 14px;
    top: 68%;
    left: 48px;
    right: 0px;
    background: #fff;
    border: 1px solid #ddd;
    width: 84%;
  }
}
@media (max-width: 480px) {
  .suggestions-dropdown {
    font-size: 13px;
    top: 68%;
    left: 48px;
    right: 0px;
    background: #fff;
    border: 1px solid #ddd;
    width: 84%;
  }
}
        /* Middle right section (desktop) */
        .middle-right ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .middle-right ul li {
            display: flex;
            margin-left: 10px;
            font-size: 14px;
            color: #333;
        }

        .fw-bold{
            color:#D56767;
        }

        .middle-right ul li i {
            margin-right: 5px;
            color: #999;
        }

        .middle-right a {
            text-decoration: none;
            color:#555;
        }

        .middle-right a:hover {
            color:#212529;
        }

        /* Mobile Buttons */
        .book-demo-mobile {
            display: block;
        }

        .book-demo-mobile a {
            display: inline-block;
            font-size: 13px;
            padding: 6px 12px;
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 5px;
            color: #000;
            text-decoration: none;
        }

        .book-demo-mobile.demo-blink a {
            background-color: #fff4f4;
            border-color: #d56767;
            color: #d56767;
            font-weight: bold;
        }

        .book-demo-mobile .account-btn a {
            background-color: #f1f1f1;
            color: #555;
        }

        .book-demo-mobile a i {
            margin-right: 5px;
        }

        @media (max-width: 767px) {
            .search{
                display: none;
            }
            .header-middle .search-container {
                flex-wrap: nowrap;
                flex-direction: row;
                width: 100%;
                margin: 0 auto;
                border-radius: 0 !important;
            }

            .search-dropdown,
            .search-input,
            .search-button {
                border-radius: 0 !important;
                font-size: 13px;
                padding: 10px;
            }

            .header-middle .search-dropdown {
                flex: 1;
                min-width: 30%;
                border-right: 1px solid #ccc;
            }

            .header-middle .search-input {
                flex: 2;
                min-width: 40%;
            }

            .header-middle .search-button {
                flex: 1;
                min-width: 25%;
            }

            .mobile-action-buttons {
                display: flex;
                justify-content: space-between;
                margin-top: 10px;
                gap: 10px;
            }

            .mobile-action-buttons a {
                flex: 1;
                text-align: center;
                padding: 10px;
                font-size: 13px;
                border: 1px solid #d56767;
                border-radius: 5px;
                text-decoration: none;
            }

            .mobile-action-buttons .book-demo {
                background-color: #d56767;
                color: #fff;
            }

            .mobile-action-buttons .create-account {
                background-color: #fff;
                color: #d56767;
            }
        }

        @media (max-width: 996px) {
        
   

            .search{
                display: none;
            }
                .book-demo {
        margin-left: 3px;
        padding-left: 0px;
    } 
         .book-demo .btn {
        border: 1px solid #D56767;
        margin-left: 97px;
        
    }



            .header-middle .search-container {
                flex-wrap: nowrap;
                flex-direction: row;
                width: 100%;
                max-width:360px;
                margin: 7px 0px 0px 15px;
                border-radius: 0 !important;
            }

            .search-dropdown,
            .search-input,
            .search-button {
                border-radius: 0 !important;
                font-size: 13px;
                padding: 10px;
            }

            .header-middle .search-dropdown {
                flex: 1;
                min-width: 30%;
                border-right: 1px solid #ccc;
            }

            .header-middle .search-input {
                flex: 2;
                min-width: 40%;
            }

            .header-middle .search-button {
                flex: 1;
                min-width: 25%;
            }

            .mobile-action-buttons {
                display: flex;
                justify-content: space-between;
                margin-top: 10px;
                gap: 10px;
                width:100%;
            }

            .mobile-action-buttons a {
                flex: 1;
                text-align: center;
                padding: 10px;
                font-size: 13px;
                border: 1px solid #d56767;
                border-radius: 5px;
                text-decoration: none;
            }

            .mobile-action-buttons .book-demo {
                background-color: #d56767;
                color: #fff;
            }

            .mobile-action-buttons .create-account {
                background-color: #fff;
                color: #d56767;
            }
            
            .auth-links{
                text-align: center;
                color:#fff;
                padding-top:0px;
            }
            
            .auth-links a{
                text-decoration: none;
                color:#fff;
            }
        }
/*********************Third Section***************************************************/


  
/* ==== Responsive Form Styling ==== */
.custom-form {
    background-color: #ffffff;
    padding: 10px 10px;
    border-radius: 4px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.custom-form h3 {
    font-size: 15px;
     text-align: center;
    color: #222;
    margin-bottom: 5px;
}

.custom-form .form-control, .custom-form .form-select {
  height: 36px;
    border-radius: 6px;
    font-size: 11px;
    padding: 0px 12px;
    border: 1px solid #ccc;
    box-shadow: none;
    transition: border-color 0.2s;
}

.custom-form .form-control:focus,
.custom-form .form-select:focus {
    border-color: #D56767;
    outline: none;
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
}

.custom-form .form-check-input {
    margin-right: 6px;
}

.custom-form .form-check-label {
    margin-right: 15px;
    font-weight: 500;
    color: #333;
    font-size: 12px;
}

.custom-form .btn-primary {
    background-color: #D56767;
    border-color: #D56767;
     padding: 8px 20px;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.custom-form .btn-primary:hover {
    background-color: #292626;
    border-color: #292626;
}

.custom-form .alert {
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 5px;
}

.custom-form .invalid-feedback {
    font-size: 13px;
}

/* ==== RESPONSIVE STYLING ==== */
@media (max-width: 992px) {
    .custom-form {
        margin-top: 20px;
        box-shadow: none;
        border-radius: 0;
        padding: 20px 15px;
    }

    .custom-form h3 {
        font-size: 20px;
    }
      .sidebar {
    display: none;
    } 
}

@media (max-width: 576px) {
    .custom-form .form-control,
    .custom-form .form-select {
        height: 42px;
        font-size: 13px;
    }
  .sidebar {
    display: none;
    } 
    .custom-form .btn-primary {
        font-size: 15px;
        padding: 10px 16px;
    }

    .custom-form h3 {
        font-size: 18px;
    }

    .custom-form .form-check-label {
        font-size: 14px;
    }
}
/**************MegaMenu**********************/
/* Sidebar Container */
.sidebar {
    padding: 0;
    font-size: 13px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: visible !important; /* must be visible for megamenu */
    position: relative;
    z-index: 1000;
   
}

/* Sidebar List */
.sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar ul li {
     padding: 7px 10px 3px 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    font-size: 12px;
    transition: background 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
     position: relative; 
    margin-top: -2px;
     overflow: visible;
}

.sidebar ul li:last-child {
    border-bottom: none;
}

.sidebar ul li:hover {
       color: #D56767;
}

/* Sidebar Icon */
.sidebar ul li img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 900px;
    max-height: 450px;
    overflow-y: auto;
    background: #f9f9f9;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
    border-left: 1px solid #eee;
    padding: 16px;
    flex-wrap: wrap;
    gap: 16px;
     transition: top 0.2s ease, bottom 0.2s ease;
}

.sidebar ul li:hover > .mega-menu {
    display: flex;
}

/* Mega Column */
.mega-column {
    width: 200px;
    
}

.mega-column h3 {
    font-size: 12px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column ul li {
    padding: 0px 0px;
    font-size: 9px;
}

.mega-column ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.mega-column ul li a:hover {
    color: #d56767;
    text-decoration: none;
}

.mega-column a {
    display: inline-block;
    margin-top: 7px;
    font-size: 12px;
    color: #D56767;
    text-decoration: none;
}

.mega-column a:hover {
    text-decoration: underline;
}
.mega-menu.upward {
    top: auto !important;
    bottom: 0;
}
/* Responsive: Show Mega Menu as block */
@media (max-width: 992px) {
    .mega-menu {
        position: static;
        width: 100%;
        display: block !important;
        box-shadow: none;
        max-height: none;
        border: none;
        padding: 0;
    }

    .mega-column {
        width: 100%;
        margin-bottom: 20px;
    }

    .sidebar ul li:hover .mega-menu {
        display: block;
    }
    .sidebar {
    display: none;
    } 
}

.navbar {
  padding: 0px 20px;
}
.navbar-nav {
  margin-left: auto;
}
.nav-item {
  margin-left: 15px;
}

.nav-link {

  color: #333;
  padding: 10px 15px;
  transition: all 0.3s ease-in-out;
}
.navbar-toggler {
  border: none;
  outline: none;
}
.region-section img{
  width:50px;
  height: 50px;
}
.box-region h4{
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}
.third-section h1{
    font-size: 18px;
    padding-left: 5px;
}
.third-section h3{
  font-size: 18px;
  padding-left: 5px;
}
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.brand-slider {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: transform 0.5s ease-in-out;
}

.brand-slider li {
  min-width: 200px;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  
}
.brand-slider li a{
  text-decoration: none;
  color:#292626;
}
.brand-slider img {
  width: 150px;
  border-radius: 12px;
  height: auto;
  padding: 10px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.slider-controls button {
  
  border: none;
  padding: 10px 15px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 5px;
}

.slider-controls button:hover {
  background-color: #D56767;
  color:#fff;
}

.bg-primary{
    background-color:#D56767
}
.bg-light{
  background-color: #d7d7d7;
}
/* .bg-white{
  background-color: #f5f5f5 !important;
} */
.ab-section .sec-1{
  background: linear-gradient(to right, #ED8C33, #f37021);
}

.ab-section .sec-2{
  background: linear-gradient(to right, #373B44, #434750);
}

.ab-section .sec-1,.ab-section .sec-2 h3{
   color:#d7d7d7;
}

.ab-section .sec-1 p{
  color:#dcdfe3;
}
.ab-section .sec-2 p{
  color:#dcdfe3;
}
a{
    text-decoration: none !important;
}
/* .bg1-secondary {
  background-color: var(--background-color);
  border-bottom: 1px solid #333;
} */

    .section {
      text-align: center;
      padding: 14px 20px;
    }

    .section h2 {
      font-size: 20px;
      font-weight: 500;
      margin-bottom: 7px;
      color: #1a1a1a;
    }

    .section p {
      font-size: 16px;
      color: #6c757d;
      margin-bottom: 19px;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      /*max-width: 1200px;*/
      margin: 0 auto;
    }

    .feature-card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      padding: 30px 20px;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    .feature-icon {
      width: 60px;
      height: 60px;
      background: #eef3f8;
      border-radius: 50%;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: #dc3545;
    }

    .feature-title {
      font-weight: 700;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .feature-value {
      color: #dc3545;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .feature-description {
      font-size: 14px;
      color: #6c757d;
    }
.fourth-section h3 {
  font-size: 18px;
  padding-left: 5px;
}
/* Section spacing */
.fourth-section {
    padding: 20px 0;
}

/* Card container for each panel */
.bg-white {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Section heading */
.bg1-secondary h3 {
       background: linear-gradient(90deg, #f9f9f9, #e9ecef);
    border-bottom: 2px solid #D56767;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
 /* Table Styling */
        .table {
            margin-bottom: 0;
        }

        .table tbody tr {
            border-bottom: 1px solid #f1f3f4;
            transition: background-color 0.2s ease;
        }

        .table tbody tr:hover {
            background-color: #f8f9ff !important;
        }

        .table tbody tr:last-child {
            border-bottom: none;
        }

        .table td {
            vertical-align: middle;
            padding: 8px 8px;
            border: none;
        }

        /* Flag styling */
        .flag-img {
            width: 35px;
            height: 20px;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            object-fit: cover;
        }

        /* Product image styling */
        .product-img {
           width: 110px;
          height: 80px;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            object-fit: cover;
            transition: transform 0.2s ease;
        }
        .product-info h5 {
            font-size: 15px;
            font-weight: 600;
        }
       
        .product-img:hover {
            transform: scale(1.05);
        }
        .product-section h3{
  font-size: 20px;
  color:#555;
  font-weight: bold;
  padding:15px 0px 0px 9px;
  
}
.product-top{
  background-image: url('../images/about/product.jpg'); 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  color: white;
  position: relative;
}
.product-top h4{
  font-size: 30px;
  letter-spacing: 1px;
  padding-top: 90px;
  padding-left: 0px;
  font-weight: 600;

}
.product-top p{
  font-size: 18px;
  letter-spacing: 1px;
  color: #dcdfe3;
  margin-top: 10px;
  padding-left: 0px;
}
.product-top .btn{
 top: 60%;
  background: #f5f5f5;
  color: #D56767;
  width:200px;
  position: absolute;
  padding: 7px 10px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 40px;
}
.product-top .btn:hover{
  background: #D56767;
  color: white;
}
.product-cont {
  padding-left: 10px;
}
.product-cont a{
  text-decoration: none;
  color: #D56767;
  font-size:14px;
}
.product-cont h4{
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
}
        /* Text styling */
        .table span {
            font-weight: 500;
            font-size: 12px;
            color: #333;
            line-height: 1.4;
        }

        /* Timestamp styling */
        .timestamp {
            font-size: 12px;
            color: #777;
            white-space: nowrap;
            font-weight: 400;
        }
/* Carousel controls (optional style enhancements) */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #D56767;
    border-radius: 50%;
    background-size: 50% 50%;
    padding: 10px;
    margin-top: -20px;
}

    .card-title {
    margin-bottom: .5rem;
    font-size: 18px;
    color: #292929;
    letter-spacing: 1px;
}

    /* Remove table borders */
    /*.table,*/
    /*.table th,*/
    /*.table td,*/
    /*.table thead,*/
    /*.table tbody {*/
    /*    border: none !important;*/
    /*}*/

    .table td {
        text-align: left;
        border-bottom: 1px solid #ebe6e6;
    }
    .all-product h3 {
  font-size: 18px;
  padding-left: 5px;
}
/* Section Heading Style */
.section-header {
    background: linear-gradient(90deg, #f9f9f9, #e9ecef);
    border-bottom: 2px solid #D56767;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.btn-outline-primary{
  border: 1px solid #d56767;
  color: #d56767;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #343a40;
    margin: 0;
}

/* Banner image on the left */
.left-banner-image {
    height: 100%;
    display: flex;
    align-items: center;
}

.left-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
/* Product Cards */
.product-card {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

/* Card Content */
.card-body {
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 14px;
  color: #555;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn {
  font-size: 14px;
  padding: 8px 12px;
  background-color: #d56767;
  color:#fff;
  font-weight: 500;
  border-radius: 4px;
}.btn:hover {
  font-size: 14px;
  padding: 8px 12px;
  background-color: #292626;
  color:#fff;
  font-weight: 500;
  border-radius: 4px;
}

/* Optional for subtle visuals */
.bg-white, .bg-light {
    border-radius: 8px;
}

ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.form-section {
  background: url(../images/bg/ew-2.png) no-repeat center center / cover;
  }

.sec-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
    z-index: 0;
}

.sec-container .container {
    position: relative;
    z-index: 1;
}
.text-orange {
    color: #D56767;
}

.feature-list li {
    font-size: 15px;
    margin-bottom: 0.5rem;
    color: #333;
    display: flex;
    align-items: center;
}

.form-box {
    max-width: 100%;
}

input.form-control, textarea.form-control {
    border-radius: 0;
    font-size: 14px;
    padding: 10px;
}

.btn-dark {
    background-color: #2c2c2c;
    border: none;
}

.btn-dark:hover {
    background-color: #1a1a1a;
}

.supplier-section h3{
     font-size: 16px;
    padding-left: 5px;
    letter-spacing: 1px;
}
.supplier-section h2{
  font-size: 19px;
  
}
.you-tube h3{
  font-size: 18px;
  padding-left: 5px;
}
  .video-section{
    margin-top: 50px !important;
  }
    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 14px;
        color: white;
        background: rgba(0, 0, 0, 0.6);
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        transition: 0.3s;
    }

    .video-container:hover .play-button {
        background: rgba(0, 0, 0, 0.8);
    }
        .debug-bar-dinlineBlock{
    display: none;
}
.blogs h3{
  font-size: 18px;
  padding-left: 5px;
}
.blog-content h1{
    font-size: 19px;
}
.blogs{

    margin-bottom: 2rem;
}

.blogs h4{
  font-size: 18px;
  font-weight: 700;
  color: #333;
}
.blogs h2{
  font-size: 15px;
  font-weight: 700;
  color: #333;
}
.blogs .card-title {
    margin-bottom: .5rem;
    font-size: 16px;
    color: #292929;
    
}

.blog-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.blog-card .card-title {
    font-size: 16px;
    line-height: 1.3;
    color: #333;
}

.blog-card .btn {
    font-size: 13px;
}
.blog-details a{
  text-decoration: none;
}

    .blog-details a{
        color: #04327b;
        font-weight: 700;
        font-size: 13px;
        text-decoration: none;
        transition: color 0.3s ease-in-out;
       
    }
    .blog-content .bg1-secondary h1{
       background: linear-gradient(90deg, #f9f9f9, #e9ecef);
    border-bottom: 2px solid #D56767;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }
    .blog-content h2{
        font-size:20px;
    }
    /* strong{
        color: #292929;
    } */
    .blog-sidebar{
        width: 100%;
    }
    .social-share-icons h4{
       font-weight: bold;
       font-size:18px;
    }
    .social-share-icons li{
        float: left;
        color:#292929;
        padding:2px 10px;
        border: 1px solid #eee;
        margin: 0px 5px;
    }
     .social-share-icons li a{
         text-decoration: none;
         color:#292929;
        
      
      
     }
     .social-share-icons li a:hover{
         color: #D56767;
         
     }
     
    .blog-description ul {
    padding-left: 20px;
    list-style-type: disc;
    margin-bottom: 1rem;
}
.blog-description li {
    margin-bottom: 5px;
} 

.blog-sidebar{
  margin-top: -5px;
}
.blog-sidebar h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 0px;
}

.blog-details img {
    border-radius: 5px;
    height: auto;
    width: 100%;
    object-fit: cover;
}

.blog-details a {
    font-weight: 500;
    font-size: 15px;
    color: #333;
}

.blog-details a:hover {
    color: #C85D28;
}
.blog-content {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
}

.blog-description span {
    display: block;
    font-size: 15px;
    margin-bottom: 10px;
    color: #dc3545;
    font-weight: 500;
}

.blog-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}



.btn-outline-primary:hover{
  background-color: #D56767;
  border:1px solid #d56767 ;
}
.faq-section h3{
   font-size: 18px;
  padding-left: 5px;
}


.accordion-body {
  background-color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 1rem 1.25rem;
}

.accordion-item {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.accordion-button {
  font-weight: 600;
  font-size: 1rem;
}
.accordion-button:not(.collapsed) {
  background-color: #e2e6ea;
  color: #d56767;
}
.btn-primary{
  background-color: #d56767;
  border:1px solid #d56767;
}
.btn-primary:hover{
  background-color: #292626;
  border: 1px solid #292626;
}
.footer {
  background-color: #1e1e1e;
  color: #ccc;
  padding-top: 3rem;
  padding-bottom: 2rem;
  font-size: 0.95rem;
}
/* Heading underline with text width only */
.footer .section-title {
  position: relative;
  display: inline-block;
  color: #d56767;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 16px;
}

.footer .section-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #d56767;
  margin-top: 5px;
}



.footer a {
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer ul {
  padding-left: 0;
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.6rem;
}
.footer-bottom {
  background-color: #111;
}

.social-media-icons li a {
  color: #eee;
  border: 3px solid #999;
  padding: 5px 7px;
  font-size: 18px;
  margin-left: 10px;
}

.social-media-icons li a:hover {
  color: #d56767;
}
.floating-button-right {
    position: fixed;
    right: 0;
    top: 40%;
    z-index: 1000;
    background: #d56767;
    color: white;
    padding: 13px 2px;
    font-size: 14px;
    /* font-weight: 600; */
    text-align: center;
     border-radius: 0px 6px 6px 0px; 
    text-decoration: none;
    writing-mode: vertical-rl; /* Text rotated vertically */
    text-orientation: mixed;
    transform: rotate(180deg); /* Rotate for top-down */
    transition: background 0.3s ease;
}

.floating-button-right:hover {
    background: #333;
    color: #fff;
}
.middle-footer {
  padding: 20px 0;
}

/* Heading underline with text width only */
.middle-footer .section-title {
  position: relative;
  display: inline-block;
  color: #d56767;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 16px;
}

.middle-footer .section-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #d56767;
  margin-top: 5px;
}

/* Breadcrumb / link styling */
.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.breadcrumb-list li {
  display: inline;
}

.breadcrumb-list li a {
  color: white;
  font-size: 14px;
  text-decoration: none;
  border-left: 1px solid #ccc;
  padding-left: 8px;
}

.breadcrumb-list li:first-child a {
  border-left: none;
}

/* Responsive */
@media (max-width: 576px) {
  .breadcrumb-list {
    flex-direction: column;
    gap: 5px;
  }

  .breadcrumb-list li a {
    border-left: none;
    padding-left: 0;
  }
}
.supplier-region {
  background-color: #2b2b2b;
  padding: 30px 20px;
  color: #fff;
}

.supplier-region .section-title {
  position: relative;
  display: inline-block;
  color: #d56767;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 16px;
}
.middle-footer .section-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #d56767;
  margin-top: 5px;
}
.region-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.region-list li a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.region-list li a:hover {
  color: #d56767;
}

.region-list img {
  width: 20px;
  height: 14px;
  object-fit: contain;
  margin-right: 10px;
  border: 1px solid #999;
  border-radius: 2px;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .region-list {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}@media (max-width: 768px) {
  .region-list {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

@media (max-width: 576px) {
  .region-list {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    padding: 5px 12px;
    font-size: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: bounce 2s infinite;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}


.value-services {
  background-color: #f8fafc;
}
.value-services h3{
  font-size: 18px;
}
.underline-bar {
  width: 130px;
  height: 3px;
  background-image: linear-gradient(to right, #d56767, #d56767);
  margin: 0 auto 1rem;
  border-radius: 5px;
}

.icon-wrapper i {
  font-size: 2.5rem;
  color: #d56767;
  border: 2px solid #d56767;
  padding: 15px;
  border-radius: 50%;
  background-color: #fff;
  transition: 0.3s ease;
}

.service-card:hover i {
  background-color: #d56767;
  color: #fff;
}

.learn-more {
  color: #d56767;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  margin-top: 8px;
  text-decoration: none;
}

.learn-more:hover {
  color: #292626;
  text-decoration: underline;
}
/************************About Page***********************************/
.about-top {
  background-image: url('../images/about/about.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 460px;
  color: white;
  position: relative;
  
  padding: 20px;
}

.about-top h4 {
  font-size: 30px;
  letter-spacing: 1px;
  padding-top: 90px;
  font-weight: 600;
}

.about-top p {
  font-size: 18px;
  letter-spacing: 1px;
  color: #dcdfe3;
  margin-top: 10px;
}

.about-top .btn {
  top: 60%;
  background: #f5f5f5;
  color: #D56767;
  width:200px;
  position: absolute;
  padding: 7px 10px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 40px;
}

.about-top .btn:hover {
  background: #D56767;
  color: white;
}

/* About middle */
.about-middle {
  padding: 30px 15px;
  text-align: center;
}

.about-middle h3 {
  font-size: 20px;
  font-weight: bold;
}

.about-middle .fa {
  font-size: 40px;
  color: #D56767;
  padding: 10px 0;
}

/* Responsive Styling */
@media (max-width: 991px) {
  .about-top {
    height: 360px;
  }

  .about-top h4 {
    font-size: 24px;
    padding-top: 70px;
  }

  .about-top p {
    font-size: 16px;
  }

  .about-top .btn {
    width: 160px;
    font-size: 13px;
    padding: 6px 8px;
  }
}

@media (max-width: 767px) {
  .about-top {
    height: 300px;
    padding: 10px;
  }

  .about-top h4 {
    font-size: 20px;
    padding-top: 50px;
  }

  .about-top p {
    font-size: 14px;
  }

  .about-top .btn {
    width: 140px;
    font-size: 12px;
    top: 65%;
  }

  .about-middle h3 {
    font-size: 18px;
  }

  .about-middle .fa {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .about-top {
    height: 250px;
  }

  .about-top h4 {
    font-size: 18px;
    padding-top: 40px;
  }

  .about-top p {
    font-size: 13px;
  }

      .about-top .btn {
        width: 120px;
        font-size: 11px;
        top: 80%;
    }
}
.about-middle i {
    font-size: 40px;
    color: #D56767;
}
.about-middle h3 {
    font-size: 18px;
    font-weight: 600;
}
.about-middle p {
    font-size: 15px;
}
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/****************Buyer *************************/
.buyer-section h3 {
    font-size: 18px;
    color: #222;
   font-weight: 600;
   
}
.buyer-top {
  background-image: url('../images/about/buyer.jpg'); 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 460px;
  color: white;
  position: relative;
}
.buyer-top h4{
  font-size: 30px;
  letter-spacing: 1px;
  padding-top: 90px;
  padding-left: 0px;
  font-weight: 600;

}
.buyer-top p{
  font-size: 18px;
  letter-spacing: 1px;
  color: #dcdfe3;
  margin-top: 10px;
  padding-left: 0px;
}
.buyer-top .btn{
  top: 60%;
   background: #f5f5f5;
   color: #D56767;
   width:200px;
   position: absolute;
   padding: 7px 10px;
   border: none;
   border-radius: 5px;
   font-size: 14px;
   cursor: pointer;
   border-radius: 40px;
 }
 .buyer-top .btn:hover{
   background: #D56767;
   color: white;
 }
.contact-top{
  background-image: url('../images/about/contact-us.jpg'); 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 460px;
  color: white;
  position: relative;
}
.contact-top h4{
  font-size: 30px;
  letter-spacing: 1px;
  padding-top: 90px;
  padding-left: 0px;
}

/******************************Buyer*********************************************/
  .lead-form-container {
      background-color: var(--white);
      padding: 25px 20px;
      border-radius: 16px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
    }

    .lead-form-container h3 {
      color: var(--primary);
      font-weight: 600;
      font-size: 20px;
      margin-bottom: 5px;
      text-transform: uppercase;
    }

    .lead-form-container h5 {
      color: var(--text-dark);
      font-size: 14px;
      margin-bottom: 20px;
    }

    .lead-form-container input,
    .lead-form-container select {
      border: 1px solid #ddd;
      padding: 10px 12px;
      width: 100%;
      border-radius: 8px;
      margin-bottom: 12px;
      font-size: 14px;
    }

    .btn-submit {
      background-color: var(--primary);
      border: none;
      color: white;
      font-weight: bold;
      border-radius: 25px;
      padding: 10px 25px;
      width: 100%;
      font-size: 16px;
      box-shadow: 0 5px 10px rgba(255, 102, 0, 0.3);
      transition: all 0.3s ease;
    }

    .btn-submit:hover {
      background-color: #e05500;
    }

    .buyer-lead-card {
      background: var(--white);
      border-radius: 12px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
      margin-bottom: 20px;
      display: flex;
      justify-content: space-between;
      padding: 20px;
    }

    .buyer-lead-info {
      flex: 1;
    }

    .buyer-lead-info h5 {
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 5px;
    }

    .buyer-lead-info p {
      font-size: 14px;
      color: var(--text-light);
      margin-bottom: 8px;
    }
     .list-unstyled {
      margin-bottom: -5px;
    padding-left: 0px;
    
    list-style: none;
}
    .buyer-lead-info small {
      font-size: 13px;
      color: #999;
    }

    .flag-text {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 3px;
    }

    .flag-text img {
      width: 20px;
      height: 14px;
      object-fit: contain;
    }

    .buyer-lead-action {
      text-align: center;
      min-width: 180px;
    }

    .buyer-lead-action .rating {
      color: #f5b301;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .buyer-lead-action .contact-btn {
      background-color: var(--primary);
      color: #fff;
      font-weight: bold;
      border: none;
      padding: 8px 18px;
      border-radius: 25px;
      font-size: 14px;
      box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
      transition: all 0.3s ease;
    }

    .buyer-lead-action .contact-btn:hover {
      background-color: #e05500;
    }

    .featured-supplier {
      border-left: 4px solid var(--primary);
      margin-top: 20px;
      padding:5px 0px 0px 10px;
    }

    /* Fix the vertical alignment */
    .align-start {
      align-items: flex-start;
    }
    /* Blurred Effect */
.blurred {
    display: inline-block;
    /*background: rgba(0, 0, 0, 0.1);*/
    color: transparent;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
    padding: 3px 8px;
    border-radius: 5px;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--primary);;
    border-color:var(--primary);;
}
.page-item .page-link{
    z-index: 3;
   color:#d56767;
}
.subcategory-link {
  
  padding: 6px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.subcategory-link a:hover{
  color: #d56767;
  transform: translateY(-3px);
}
 .example-leads-banner {
   background-color: rgba(245, 245, 245, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      padding: 45px;
    }

    .example-leads-banner .lead-link {
          display: block;
    padding: 10px 0px;
    border-radius: 8px;
    color: #333;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    /* text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); */
    transition: all 0.3s ease;
    }

    .example-leads-banner .lead-link:hover {
     
      color: #d56767;
    }

    @media (max-width: 768px) {
      .example-leads-banner {
        height: auto;
        padding: 40px 20px;
      }
    }
   .btn-outline-danger{
    border: 1px solid #d56767;
   }
   .btn-outline-danger:hover{
    background-color: #d56767;
    border: 1px solid #d56767;
    color:#fff;
   }
   .about-text p {
    text-align: justify;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
}

.about-text ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style: none;
}

.about-text ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 1rem;
    text-align: justify;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
}

.about-text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: #d56767; /* or #198754 for green */
    font-size: 1rem;
}
.faq-container {
    margin-top: 30px;
}
.faq-container .section-title  {
  color:#d56767;
}
.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.faq-item:hover {
    background-color: #fff;
}

.faq-question {
    padding: 8px;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: var(--transition);
}

.faq-answer {
    padding: 3px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fff;
}

.faq-answer p {
    padding: 0;
    margin: 0;
    padding-bottom: 20px;
}

/* Active state */
.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: white;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
    color: white;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}
  .about-section h1{
      font-size: 20px;
      font-weight: 700;
  }
    .about-section h2{
      font-size: 18px;
      font-weight: 700;
  }
  .about-section h3{
      font-size: 18px;
      font-weight: 700;
  }
        
     
         ol {
            margin: 10px 0 20px 30px;
        }

        li {
            margin-bottom: 8px;
        }

        b {
            color: #D56767;
        }
        h4{
            font-size: 18px;
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .nav-tabs {
                flex-direction: column;
            }

            .tab-button {
                width: 100%;
                text-align: left;
                border-bottom: 1px solid #ddd;
            }

            .container {
                padding: 10px;
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
           .complaint-container {
            max-width: 600px;
            margin: 20px auto;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }

        .complaint-container .form-title {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 30px;
            font-size: 2em;
        }

        .complaint-container .form-group {
            margin-bottom: 20px;
        }

        .complaint-container label {
            display: block;
            margin-bottom: 8px;
            color: #34495e;
            font-weight: 500;
        }

    .complaint-container input,.complaint-container select,.complaint-container textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #bdc3c7;
            border-radius: 6px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .complaint-container input:focus, .complaint-container select:focus, .complaint-container textarea:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 2px rgba(52,152,219,0.2);
        }

        .complaint-container .date-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .complaint-container textarea {
            resize: vertical;
            min-height: 120px;
        }

        
        .complaint-container .submit-btn:hover {
            background: #2980b9;
        }

        @media (max-width: 768px) {
            .date-group {
                grid-template-columns: 1fr;
            }
            
            .complaint-container {
                padding: 20px;
                margin: 10px;
            }
            
            .form-title {
                font-size: 1.5em;
            }
        }
        /*********************MemberShip*************************************/
.member-top{
  background-image: url('../images/about/membership.jpg'); 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 420px;
  color: white;
  position: relative;
}
.member-top h4{
  font-size: 30px;
  letter-spacing: 1px;
  padding-top: 90px;
  padding-left: 0px;
  font-weight: 600;

}
.member-top p{
  font-size: 18px;
  letter-spacing: 1px;
  color: #dcdfe3;
  margin-top: 10px;
  padding-left: 0px;
}
.member-top .btn{
 top: 60%;
  background: #f5f5f5;
  color: #D56767;
  width:200px;
  position: absolute;
  padding: 7px 10px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 40px;
}
.member-top .btn:hover{
  background: #D56767;
  color: white;
}

.advisory-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advisory-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.advisory-list .icon {
  font-size: 26px;
  color: #007acc;
  margin-right: 15px;
  min-width: 35px;
  text-align: center;
}

.advisory-list strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.advisory-list p {
  margin: 0;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
}
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  gap: 5px;
}

.features-list .icon {
  font-size: 30px;
  flex-shrink: 0;
  color: #5a67d8;
}

.features-list .text h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #222;
}

.features-list .text p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}
.experience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.experience-list li {
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  gap: 20px;
  transition: transform 0.2s;
}

.experience-list li:hover {
  transform: translateY(-4px);
}

.icon {
  font-size: 28px;
  color: #3498db;
  margin-top: 4px;
  flex-shrink: 0;
}

.text h3 {
  font-size: 1.3rem;
  margin: 0 0 8px;
  color: #333;
}

.text p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.btn-button{
    background-color: #D56767;
    color: white;
    border: none;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 100px;
    cursor: pointer;
    border-radius: 25px;
   
}
.btn-button:hover{
    background-color: #292926;
    color: white;
}
/* General Form Styles */
.certificate-form {
    max-width: 400px; /* Adjust to fit your needs */
    margin: 20px auto; /* Center the form */
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Input Fields */
.certificate-form input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 15px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s ease;
}

.certificate-form input[type="text"]:focus {
    border-color: #007bff; /* Blue border on focus */
}

/* Submit Button */
.certificate-form input[type="submit"] {
    width: 100%;
    padding: 7px;
    background-color: #D56767; /* Blue button */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.certificate-form input[type="submit"]:hover {
    background-color: #292926; /* Darker blue on hover */
}
 .widget-body {
        max-height: 300px; /* Adjust this value as needed */
        overflow-y: auto;
    }
    /* waves */
.cover-section h2{
    font-size: 45px;
    font-weight: 700;
    color:#292926;
}


.services-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-family: 'Arial', sans-serif;
  
}

.services-list li {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
  
  text-align: center;

}

.services-list li:last-child {
  border-bottom: none; /* Removes border from the last item */
}
.debug-bar-dinlineBlock{
    display: none;
}
.services-list li:before {
  /* content: '*'; */
  margin-right: 15px;

}
.services-list .btn{
  background-color: #d56767;
   color: white;
}.services-list .btn:hover{
  background-color: #292629;
   color: white;
}
.play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 14px;
        color: white;
        background: rgba(0, 0, 0, 0.6);
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        transition: 0.3s;
    }

    .video-container:hover .play-button {
        background: rgba(0, 0, 0, 0.8);
    }
        .debug-bar-dinlineBlock{
    display: none;
}

.services-list li:hover {
  background-color: #f7f9fc;
  cursor: pointer;
  color: #292626;
}
.services-list .fa-check{
  color: #2dc210;
}
.services-list .fa-times{
  color: #b80923;
}
.modal-title{
margin-left: 20px !important;
font-size: 18px !important;
}
.btn-close{
  margin: 19px 0px 0px 95px !important;
}
/* For responsive design */
@media (max-width: 600px) {
  .services-list li {
    padding: 10px;
    font-size: 11px;
  }
}
/* waves */

.ocean {
   height: 80px;
    width: 100%;
    position: absolute;
    bottom: 120px;
    left: 0;
    right: 0;
    overflow-x: hidden;
}

.wave {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%23d9d9d9'/%3E%3C/svg%3E");
    position: absolute;
    width: 200%;
    height: 100%;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
}

.wave:nth-of-type(2) {
    bottom: 0;
    animation: wave 18s linear reverse infinite;
    opacity: 0.5;
}

.wave:nth-of-type(3) {
    bottom: 0;
    animation: wave 20s -1s linear infinite;
    opacity: 0.5;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.cover-section {
    background: #e3e3e3;
    padding-bottom: 20px;
}
.btn-button{
    background-color: #D56767;
    color: white;
    border: none;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 100px;
    cursor: pointer;
    border-radius: 25px;
   
}
.btn-button:hover{
    background-color: #292926;
    color: white;
}
.contact-top{
  background-image: url('../images/about/contact-us.jpg'); 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 460px;
  color: white;
  position: relative;
}
.contact-top h4{
  font-size: 30px;
  letter-spacing: 1px;
  padding-top: 90px;
  padding-left: 0px;
  font-weight: 600;

}
.contact-top p{
  font-size: 18px;
  letter-spacing: 1px;
  color: #dcdfe3;
  margin-top: 10px;
  padding-left: 0px;
}
.contact-top .btn{
  top: 60%;
   background: #f5f5f5;
   color: #D56767;
   width:200px;
   position: absolute;
   padding: 7px 10px;
   border: none;
   border-radius: 5px;
   font-size: 14px;
   cursor: pointer;
   border-radius: 40px;
 }
 .contact-top .btn:hover{
   background: #D56767;
   color: white;
 }
 .contact-top .fa{
  font-size: 40px;
    color: #D56767;
    padding: 10px 0px;

}
.contacts-section h3{
  font-size: 18px;
  padding-left: 5px;
  font-weight: bold;

}
.contact-info{
  padding: 0px;
}
.contact-info li{
  list-style: none;
  font-size: 15px;
  color:#333;
  padding-bottom: 6px;
  letter-spacing: 0.5px;
}
.contact-social li {
 
  text-decoration: none;
  display: inline;
  text-align: center;
 margin-left:5px;
}
.contact-social li a{
  color:#333;
  transition: color 0.3s ease;
  padding: 10px 7px;
}

 .contact-social a:hover{
  background-color:#D56767;
  color:#dcdfe3;
}
.contacts-section .form-section label input{
  padding: 5px;

}



/* Signup form wrapper */
.signup-form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    position: relative;
    transition: 0.4s ease-in-out;
}

/* Logo image */
.signup-form img {
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
}

/* Headline */
.signup-form h4 {
    text-align: center;
    margin-bottom: 22px;
    font-weight: 600;
    font-size: 18px;
    color: #3f3f3f;
}

/* Input and select styles */
.signup-form .form-control {
    height: 45px;
    border: none;
    border-radius: 10px;
    padding-left: 15px;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.signup-form .form-control:focus {
    box-shadow: 0 0 5px rgba(13, 110, 253, 0.6);
    outline: none;
}

/* Error and alert styling */
.alert {
    font-size: 13px;
    border-radius: 10px;
    padding: 12px;
}

/* Button styling */
.signup-form .btn-primary {
    width: 100%;
    padding: 12px;
    border: none;
    background: linear-gradient(135deg, #D56767, #D56767);
    border-radius: 10px;
    color: white;
    font-weight: bold;
    transition: background 0.3s ease;
}

.signup-form .btn-primary:hover {
    background: linear-gradient(135deg, #d56767 , #D56767);
}

/* Toggle password icon */
.toggle-password {
    color: #555;
    font-size: 15px;
}

/* Password error */
#passwordError {
    font-size: 12px;
    margin-top: 5px;
    color: #dc3545;
}

/* Bottom link */
.signup-form .form-check-label,
.signup-form a {
    font-size: 14px;
}

.signup-form a {
    color: #3f51b5;
    font-weight: 500;
}

.signup-form a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .signup-form {
        padding: 30px 20px;
    }
}
/*********************************Basic Plan******************************************/
    .debug-bar-dinlineBlock{
    display: none;
}
   
   
    /* Play button styling */
    .play-button {
        position: absolute;
        top: 56%;
        left: 48%;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.7);
        color: #fff;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
           cursor: pointer;
    }

    .play-button fa {
        font-size: 15px;
    }

    .play-button:hover {
        background: rgba(0, 0, 0, 0.9);
    }
 
.container-fluid {
        padding: 0px 30px;
    }

    .content-wrapper {
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
        transform: skewY(-3deg);
        position: relative;
        overflow: hidden;
    }
  @media only screen and (max-width: 768px) {
      .basic-section h4 {
    margin-top: 11px;
    font-size: 1.5rem;

}
       
  }
  

.basic-section{
background-image: url('<?= base_url("public/images/bg/website-banner2.png") ?>');  
background-size: cover;
  background-position: center;
  height: auto;
  justify-content: center;
}
     /* Fade-in effect on page load */
     .basic-section {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s ease-out, transform 1s ease-out;
  }
  .basic-section h3{
    font-size: 1.25rem;
    color: #292626;
    margin-bottom: 8px;
    font-weight: 600;
  }


  .basic-section h4{
    font-size: 3.5rem;
    color: #0b408b;
    margin-bottom: 8px;
    font-weight: 600;
  }
  .basic-section p{
    font-size: 18px;
    color: #292626;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }
.basic-section ul li{
 list-style: none;
 margin-left: -30px;
 color: #292626;
}
.basic-section .btn{
  width: 200px;
  padding: 10px 20px;
  background:linear-gradient(#0b408b , #292626);
  color: #fff;
  text-decoration: none;
  margin:5px 10px 5px 10px;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}
  /* Fade-in on scroll */
  .fade-in {
      opacity: 1 !important;
      transform: translateY(0) !important;
  }

  /* Form styling */
  /* .basic-form {
      border-left: 3px solid #333;
      border-right: 3px solid #333;
      background: white;
      padding: 20px;
      border-radius: 8px;
      margin: 0px 49px;
  } */
  .basic-form {
   
    padding: 20px;
    font-size: 1.5rem;
    text-align: center;
    color: #333;
    background: white;

    /* Gradient border */
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.basic-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #D56767, #D56767);
    z-index: -1;
    border-radius: inherit;
    mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
}
  .basic-form h3 {
      font-size: 20px;
      font-weight: bold;
      color: #333;
  }

  .basic-form input, 
  .basic-form textarea, 
  .basic-form select {
    padding: 7px;
    width: 100%;
    border: none;
    background-color: #f5f5f5;
    border-bottom: 1px solid #6c757d;
    border-radius: 5px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* First Section Animation (No Scroll) */
  .basic-section {
    opacity: 0; /* Ensure it's hidden initially */
    animation: fadeUp 1s ease-in-out forwards; /* `forwards` keeps the final state */
  }
  
 /* Keyframe for fadeIn animation */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
.blogs{
  height:auto;
}

.blogs h4{
  font-size: 18px;
  font-weight: 700;
  color: #333;
}
.blogs h2{
  font-size: 15px;
  font-weight: 700;
  color: #333;
}
.blogs .card-title {
    margin-bottom: .5rem;
    font-size: 16px;
    color: #292929;
    /*letter-spacing: 1px;*/
}

/* Second Section Animation (On Scroll) */
.basic-second {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  animation: fadeIn 1s ease-in-out forwards;
  background-color: #eee;
}
.basic-second h3{
  font-size: 25px;
  font-weight: 700;
  color: #333;
}
.basic-second ul li {
  list-style: none;
  margin-left: -30px;
  padding-top: 10px;
  color: #555;
}
.basic-second ul li span {
  color: #292626;
  font-weight: 600;
}
.basic-second.visible {
  opacity: 1;
  transform: translateY(0);
}

/* First Section Animation (No Scroll) */
.basic-third {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  animation: fadeIn 1s ease-in-out forwards;
}
.basic-third h3{
  font-size: 25px;
  font-weight: 700;
  color: #333;
}
.basic-third ul li {
  list-style: none;
  margin-left: -30px;
  padding-top: 10px;
  color: #555;
}
.basic-third ul li span {
  color: #292626;
  font-weight: 600;
}
.basic-third.visible {
  opacity: 1;
  transform: translateY(0);
}
.basic-fourth {
  
  padding-bottm:-90px;

}

.basic-fourth h3{
  font-size: 25px;
  font-weight: 700;
  color: #333;
  margin-top: 90px;
}
.basic-fourth ul li {
  list-style: none;
  margin-left: -30px;
  padding-top: 10px;
  color: #555;
}
.basic-fourth ul li span{
  color: #292626;
  font-weight: 600;
}
/*------------------------Premium Plan ----------------------------------------*/
.premium-section{
  background-image: url('../images/bg/website-banner2.png');  
  background-size: cover;
    background-position: center;
    height: auto;
    justify-content: center;
  }
       /* Fade-in effect on page load */
       .premium-section {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 1s ease-out, transform 1s ease-out;
    }
    .premium-section h3{
      font-size: 1.25rem;
      color: #c2010f;
      margin-bottom: 8px;
      font-weight: 600;
    }
  
  
    .premium-section h4{
      font-size: 3.5rem;
      color: #5b0208;
      margin-bottom: 8px;
      font-weight: 600;
    }
    .premium-section p{
      font-size: 18px;
      color: #292626;
      margin-bottom: 20px;
      letter-spacing: 1px;
    }
  .premium-section ul li{
   list-style: none;
   margin-left: -30px;
   color: #292626;
  }
  .premium-section .btn{
    width: 200px;
    padding: 10px 20px;
    background:linear-gradient(#5b0208 , #c2010f);
    color: #fff;
    text-decoration: none;
    margin:5px 10px 5px 10px;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
  }
    /* Fade-in on scroll */
    .fade-in {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
  
    /* Form styling */
    /* .basic-form {
        border-left: 3px solid #333;
        border-right: 3px solid #333;
        background: white;
        padding: 20px;
        border-radius: 8px;
        margin: 0px 49px;
    } */
    .premium-form {
      margin-top: 111px;
      padding: 20px;
      font-size: 1.5rem;
      text-align: center;
      background: #5b0208;
      background: white;
  
      /* Gradient border */
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      background-clip: padding-box;
      position: relative;
  }
  
  .premium-form::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, #D56767, #D56767);
      z-index: -1;
      border-radius: inherit;
      mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
      -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
  }
    .premium-form h3 {
        font-size: 20px;
        font-weight: bold;
        color: #5b0208;
     
    }
  
    .premium-form input, 
    .premium-form textarea, 
    .premium-form select {
      padding: 7px;
      width: 100%;
      border: none;
      background-color: #f5f5f5;
      border-bottom: 1px solid #5b0208;
      border-radius: 5px;
      font-size: 13px;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* First Section Animation (No Scroll) */
    .premium-section {
      opacity: 0; /* Ensure it's hidden initially */
      animation: fadeUp 1s ease-in-out forwards; /* `forwards` keeps the final state */
    }
    
   /* Keyframe for fadeIn animation */
  @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }

  /* Second Section Animation (On Scroll) */
  .premium-second {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    animation: fadeIn 1s ease-in-out forwards;
    background-color: #eee;
  }
  .premium-second h3{
    font-size: 25px;
    font-weight: 700;
    color: #5b0208;
  }
  .premium-second ul li {
    list-style: none;
    margin-left: -30px;
    padding-top: 10px;
    color: #555;
  }
  .premium-second ul li .fa{
   
    color: #c2010f;
  }
  .premium-second ul li span {
    color: #c2010f;
    font-weight: 600;
  }
  .premium-second.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* First Section Animation (No Scroll) */
  .premium-third {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    animation: fadeIn 1s ease-in-out forwards;
  }
  .premium-third h3{
    font-size: 25px;
    font-weight: 700;
    color: #5b0208;
  }
  .premium-third ul li {
    list-style: none;
    margin-left: -30px;
    padding-top: 10px;
    color: #555;
  }
  .premium-third ul li .fa{
    color: #c2010f;
  }
  .premium-third ul li span {
    color: #c2010f;
    font-weight: 600;
  }
  .premium-third.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .premium-fourth {
    
    padding-bottm:-90px;
  
  }
  
  .premium-fourth h3{
    font-size: 25px;
    font-weight: 700;
    color: #5b0208;
    margin-top: 90px;
  }
  .premium-fourth ul li {
    list-style: none;
    margin-left: -30px;
    padding-top: 10px;
    color: #555;
  }
  .premium-fourth ul li .fa{
   color: #c2010f;
  }
  .premium-fourth ul li span{
    color: #c2010f;
    font-weight: 600;
  }
  /*------------------------VIP Plan ----------------------------------------*/
.vip-section{
  background-image: url('../images/bg/website-banner2.png');  
  background-size: cover;
    background-position: center;
    height: auto;
    justify-content: center;
  }
       /* Fade-in effect on page load */
       .vip-section {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 1s ease-out, transform 1s ease-out;
    }
    .vip-section h3{
      font-size: 1.25rem;
      color: #e18f00;
      margin-bottom: 8px;
      font-weight: 600;
    }
  
  
    .vip-section h4{
      font-size: 3.5rem;
      color: #452303;
      margin-bottom: 8px;
      font-weight: 600;
    }
    .vip-section p{
      font-size: 18px;
      color: #292626;
      margin-bottom: 20px;
      letter-spacing: 1px;
    }
  .vip-section ul li{
   list-style: none;
   margin-left: -30px;
   color: #292626;
  }
  .vip-section .btn{
    width: 200px;
    padding: 10px 20px;
    background:linear-gradient(#452303 , #e18f00);
    color: #fff;
    text-decoration: none;
    margin:5px 10px 5px 10px;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
  }
    /* Fade-in on scroll */
    .fade-in {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
  
    /* Form styling */
    /* .basic-form {
        border-left: 3px solid #333;
        border-right: 3px solid #333;
        background: white;
        padding: 20px;
        border-radius: 8px;
        margin: 0px 49px;
    } */
    .vip-form {
      margin-top: 176px;
      padding: 20px;
      font-size: 1.5rem;
      text-align: center;
      background: #452303;
      background: white;
  
      /* Gradient border */
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      background-clip: padding-box;
      position: relative;
  }
  
  .vip-form::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, #D56767, #D56767);
      z-index: -1;
      border-radius: inherit;
      mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
      -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
  }
    .vip-form h3 {
        font-size: 20px;
        font-weight: bold;
        color: #452303;
     
    }
  
    .vip-form input, 
    .vip-form textarea, 
    .vip-form select {
      padding: 7px;
      width: 100%;
      border: none;
      background-color: #f5f5f5;
      border-bottom: 1px solid #452303;
      border-radius: 5px;
      font-size: 13px;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* First Section Animation (No Scroll) */
    .vip-section {
      opacity: 0; /* Ensure it's hidden initially */
      animation: fadeUp 1s ease-in-out forwards; /* `forwards` keeps the final state */
    }
    
   /* Keyframe for fadeIn animation */
  @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }

  /* Second Section Animation (On Scroll) */
  .vip-second {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    animation: fadeIn 1s ease-in-out forwards;
    background-color: #eee;
  }
  .vip-second h3{
    font-size: 25px;
    font-weight: 700;
    color: #5b0208;
  }
  .vip-second ul li {
    list-style: none;
    margin-left: -30px;
    padding-top: 10px;
    color: #555;
  }
  .vip-second ul li .fa{
   
    color: #e18f00;
  }
  .vip-second ul li span {
    color: #e18f00;
    font-weight: 600;
  }
  .vip-second.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* First Section Animation (No Scroll) */
  .vip-third {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    animation: fadeIn 1s ease-in-out forwards;
  }
  .vip-third h3{
    font-size: 25px;
    font-weight: 700;
    color: #452303;
  }
  .vip-third ul li {
    list-style: none;
    margin-left: -30px;
    padding-top: 10px;
    color: #555;
  }
  .vip-third ul li .fa{
    color: #e18f00;
  }
  .vip-third ul li span {
    color: #e18f00;
    font-weight: 600;
  }
  .vip-third.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .vip-fourth {
    
    padding-bottm:-90px;
  
  }
  
  .vip-fourth h3{
    font-size: 25px;
    font-weight: 700;
    color: #452303;
    margin-top: 90px;
  }
  .vip-fourth ul li {
    list-style: none;
    margin-left: -30px;
    padding-top: 10px;
    color: #555;
  }
  .vip-fourth ul li .fa{
   color: #e18f00;
  }
  .vip-fourth ul li span{
    color: #e18f00;
    font-weight: 600;
  }
  /*----------------------------------Advanced----------------------------------------------*/
  .advanced-section{
background-image: url('../images/bg/website-banner2.png');  
background-size: cover;
  background-position: center;
  height: auto;
  justify-content: center;
}
     /* Fade-in effect on page load */
     .advanced-section {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s ease-out, transform 1s ease-out;
  }
  .advanced-section h3{
    font-size: 1.25rem;
    color: #083c2f;
    margin-bottom: 8px;
    font-weight: 600;
  }


  .advanced-section h4{
    font-size: 3.5rem;
    color: #02986a;
    margin-bottom: 8px;
    font-weight: 600;
  }
  .advanced-section p{
    font-size: 18px;
    color: #292626;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }
.advanced-section ul li{
 list-style: none;
 margin-left: -30px;
 color: #292626;
}
.advanced-section .btn{
  width: 200px;
  padding: 10px 20px;
  background:linear-gradient(#02986a ,#083c2f);
  color: #fff;
  text-decoration: none;
  margin:5px 10px 5px 10px;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}
  /* Fade-in on scroll */
  .fade-in {
      opacity: 1 !important;
      transform: translateY(0) !important;
  }

  /* Form styling */
  /* .basic-form {
      border-left: 3px solid #333;
      border-right: 3px solid #333;
      background: white;
      padding: 20px;
      border-radius: 8px;
      margin: 0px 49px;
  } */
  .advanced-form {
   
    padding: 20px;
    font-size: 1.5rem;
    text-align: center;
    color: #333;
    background: white;

    /* Gradient border */
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.advanced-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #D56767, #D56767);
    z-index: -1;
    border-radius: inherit;
    mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
}
  .advanced-form h3 {
      font-size: 20px;
      font-weight: bold;
      color: #02986a;
  }

  .advanced-form input, 
  .advanced-form textarea, 
  .advanced-form select {
    padding: 7px;
    width: 100%;
    border: none;
    background-color: #f5f5f5;
    border-bottom: 1px solid #6c757d;
    border-radius: 5px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* First Section Animation (No Scroll) */
  .advanced-section {
    opacity: 0; /* Ensure it's hidden initially */
    animation: fadeUp 1s ease-in-out forwards; /* `forwards` keeps the final state */
  }
  
 /* Keyframe for fadeIn animation */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
/* Second Section Animation (On Scroll) */
  .advanced-second {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    animation: fadeIn 1s ease-in-out forwards;
    background-color: #eee;
  }
  .advanced-second h3{
    font-size: 25px;
    font-weight: 700;
    color: #083c2f;
  }
  .advanced-second ul li {
    list-style: none;
    margin-left: -30px;
    padding-top: 10px;
    color: #555;
  }
  .advanced-second ul li .fa{
   
    color: #02986a;
  }
  .advanced-second ul li span {
    color: #02986a;
    font-weight: 600;
  }
  .advanced .visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* First Section Animation (No Scroll) */
  .advanced-third {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    animation: fadeIn 1s ease-in-out forwards;
  }
  .advanced-third h3{
    font-size: 25px;
    font-weight: 700;
    color: #083c2f;
  }
  .advanced-third ul li {
    list-style: none;
    margin-left: -30px;
    padding-top: 10px;
    color: #555;
  }
  .advanced-third ul li .fa{
    color: #02986a;
  }
  .advanced-third ul li span {
    color: #02986a;
    font-weight: 600;
  }
  .advanced-third.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .advanced-fourth {
    
    padding-bottm:-90px;
  
  }
  
  .advanced-fourth h3{
    font-size: 25px;
    font-weight: 700;
    color: #083c2f;
    margin-top: 90px;
  }
  .advanced-fourth ul li {
    list-style: none;
    margin-left: -30px;
    padding-top: 10px;
    color: #555;
  }
  .advanced-fourth ul li .fa{
   color: #02986a;
  }
  .advanced-fourth ul li span{
    color: #02986a;
    font-weight: 600;
  }
  /* Golden Stars */
.gold-stars {
  background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  font-weight: bold;
  margin-left: 5px;
  display: inline-block;
}
.plan-des{
  background:#D56767;
  color: white;
  border-radius: 18px;
  padding: 5px 0px;
  margin-top:-4px;
}
.plan-des h3{
  font-size: 20px;
  font-weight: 600;
  
}
.plan-des-1{
  width: 100%;
}
.plan-des-1 h3{
  font-size: 20px;
  font-weight: 600;
  color:#D56767;
}
.plan-des-2 h3 {
    font-size: 20px;
    font-weight: 600;
    color: #D56767;
}.plan-des-3 h3 {
    font-size: 20px;
    font-weight: 600;
    color: #D56767;
}
   
.services-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-family: 'Arial', sans-serif;
  
}

.services-list li {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
      font-size: 10px;
  text-align: center;

}

.services-list li:last-child {
  border-bottom: none; /* Removes border from the last item */
}
.debug-bar-dinlineBlock{
    display: none;
}
.services-list li:before {
  /* content: '*'; */
  margin-right: 15px;

}
  .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 14px;
        color: white;
        background: rgba(0, 0, 0, 0.6);
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        transition: 0.3s;
    }

    .video-container:hover .play-button {
        background: rgba(0, 0, 0, 0.8);
    }
        .debug-bar-dinlineBlock{
    display: none;
}

.services-list li:hover {
  background-color: #f7f9fc;
  cursor: pointer;
  color: #292626;
}
.services-list .fa-check{
  color: #2dc210;
}
.services-list .fa-times{
  color: #b80923;
}
.modal-title{
margin-left: 20px !important;
font-size: 18px !important;
}
.btn-close{
  margin: 19px 0px 0px 95px !important;
}
/* For responsive design */
@media (max-width: 600px) {
  .services-list li {
    padding: 10px;
    font-size: 11px;
  }
}
.blog-details a{
  text-decoration: none;
}
.inquiry-section{
  background: url('../images/bg/banner1.jpg') no-repeat center;
  background-size: cover;
     height: 201px;
    margin-bottom: -20px
}
.inquiry-section h2{
  font-weight: bold;
}
.inquiry-section .btn {
  background: #D56767;
  color: #fff;
  padding: 10px 20px;
  border: none;
  width: 250px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  
}
.inquiry-section p{
  font-size: 16px;
  color:#292626;
}
.book-demo{
   background: url('../images/bg/book-demo.jpg') no-repeat center;
  background-size: cover;  
}
.book-demo h3{
    font-weight: 700;
    
   
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.product-grid a {
  text-decoration: none;
  color:#6c757d;
  font-size: 14px;
}

.product-grid a:hover {

  color:#D56767;
  text-decoration:none !important;
}
.product{
  border: 1px solid #ccc;
  align-items: center;
  padding: 7px 4px 5px 5px;
  margin-bottom: 11px;
  border: 1px solid #ccc;
  transition: background-color 0.3s ease;
  width:100%;
 


}
.product .btn{

  padding: 5px;
  background: #333;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}
@media (max-width: 576px) {
  .product {
    padding: 8px;
  }

  .product-grid a {
    font-size: 13px;
  }

  .product .btn {
    font-size: 13px;
    padding: 5px 8px;
  }
}@media (max-width: 996px) {
  .product {
    padding: 8px;
  }
.example-leads-banner .lead-link {
    display: block;
    padding: 0px 0px;
    border-radius: 8px;
    color: #333;
    font-weight: 600;
    font-size: 11px;
    text-decoration: none;
    /* text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); */
    transition: all 0.3s ease;
}
  .product-grid a {
    font-size: 13px;
    text-align: left;
  }

  .product .btn {
    font-size: 13px;
    padding: 5px 8px;
  }
}
.nav-link {
  text-decoration: none;
  color: #333;
  padding: 10px 20px;
  /* font-weight: bold; */
  border-radius: 5px;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.nav-link:hover, .nav-link.active {
  background:#D56767;
  color: #fff;
  /* font-weight: bold; */
}
.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
  /* color: rgba(0, 0, 0, .9); */
  color: #fff;
}
.navbar-right {
  
float: right;
  gap: 10px;
}

.navbar-light .navbar-nav .nav-link {
  color:#292626;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
/****************Supplier*************************/
.supplier-top{
  background-image: url('../images/about/supplier.jpg'); 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 460px;
  color: white;
  position: relative;
}
.supplier-top h4{
  font-size: 30px;
  letter-spacing: 1px;
  padding-top: 90px;
  padding-left: 0px;
  font-weight: 600;

}
.supplier-top p{
  font-size: 18px;
  letter-spacing: 1px;
  color: #dcdfe3;
  margin-top: 10px;
  padding-left: 0px;
}
.supplier-top .btn{
 top: 60%;
  background: #f5f5f5;
  color: #D56767;
  width:200px;
  position: absolute;
  padding: 7px 10px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 40px;
}
.supplier-top .btn:hover{
  background: #D56767;
  color: white;
}

#countrySearch {
    border: 1px solid #ccc;
    transition: all 0.3s ease;
}

#countrySearch:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
    outline: none;
}

.country-list {
  list-style: none;
  padding: 0;

}

.country-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;

}
.country-list li a{
  text-decoration: none;
  color:#D56767;
}
.country-list img {
  width: 24px;
  height: 16px;
  margin-right: 10px;
}


  @media only screen and (max-width: 768px) {
        .supplier-top .btn {
    top: 84%;

    position: relative;
        }
}
.newsletter-section {
  background-color:#d56767; /* Dark blue */
}

.newsletter-form input.form-control {
  max-width: 400px;
  border-radius: 5px;
}

.newsletter-form .btn {
  white-space: nowrap;
  font-weight: 600;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  transition: background-color 0.3s ease;
}

.newsletter-form .btn:hover {
  background-color: #c0392b;
}
 @media only screen and (max-width: 996px) {
  .floating-button-right {display: none;}
        .buyer-top .btn {
    top: 68%;
    color: #D56767;

}

.btn-demo {
    color: #292626;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 6px;
    margin-left: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border:1px solid #d56767;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn-demo:hover {
    background-color: #d56767;
    color: #fff;
}
.contact-top h4 {

    font-size: 30px;
    letter-spacing: 1px;
    padding-top: 37px;
    padding-left: 0px;
    font-weight: 600;
}
.contact-top p {
    font-size: 16px;
    /* letter-spacing: 1px; */
    color: #dcdfe3;
    margin-top: 10px;
    padding-left: 0px;
}
.contact-top .btn {
    top: 70%;

}
.buyer-top h4 {
    font-size: 22px;
    letter-spacing: 1px;
    padding-top: 101px;
    padding-left: 0px;
    color:#fff;
    
}
.buyer-top p {
    font-size: 13px;
    letter-spacing: 0px;
    color:#fff;
    margin-top: 10px;
    padding: 0px 56px 0px 0px;
}

.lead-form-container {
    background-color: var(--white);
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* margin-bottom: 30px; */
    width: 100%;
    margin-left: 0px;
}
    .featured-supplier {
        border-left: 4px solid var(--primary);
        margin-top: 20px;
        padding: 5px 0px 0px 10px;
        width: 98%;
        margin-left: -3px;
    }
.list-group {
    width: 99%;
}
.product-top .btn {
    top: 70%;
   }
   .product-top p {
    font-size: 18px;
    letter-spacing: 0px;
      margin-top: 10px;
    padding-left: 0px;
}
.product-top h4 {
    font-size: 28px;
    letter-spacing: 0px;
    padding-top: 17px;
    padding-left: 0px;
    font-weight: 600;
}
    .member-top h4 {
        font-size: 27px;
        letter-spacing: 0px;
        padding-top: 27px;
        padding-left: 0px;
        font-weight: 600;
    }
.member-top .btn {
        margin: 3px 0px 0px 0px;
    }
        .plan-des {
        background: #D56767;
        color: white;
        border-radius: 18px;
        padding: 5px 0px;
        width: 237px;
        margin-left: -22px;
    }
        .plan-des-1 {
        width: 100%;
        margin-left: 22px;
        margin-top: 68px;
        
    }
        .plan-des-2 {
        width: 100%;
        margin-left: 22px;
        margin-top: 149px;
    }
    .nav-tabs {
            display: flex;
            flex-wrap: wrap;
            border-bottom: 2px solid #ddd;
            margin-bottom: 20px;
        }

        .tab-button {
            padding: 15px 30px;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 16px;
            color: #666;
            transition: all 0.3s;
        }

        .tab-button.active {
            color: #D56767;
            border-bottom: 3px solid #D56767;
        }

        .tab-content {
            margin-top: -60px;
            display: block;
            padding: 15px;
            animation: fadeIn 0.5s;
        }
        .member-top p {
            font-size: 16px;
            letter-spacing: 0px;
            color: #dcdfe3;
            margin-top: 10px;
            padding-left: 0px;
        }
        .tab-content.active {
            display: block;
        }
         .plan-des-3 {
        width: 100%;
        margin-left: 22px;
        margin-top: 105px;
    }

}

/* Supplier Plan Badge Styles */
    .supplier-initial {
        display: inline-block;
        padding: 3px 4px;
        font-size: 12px;
        font-weight: bold;
        color: white;
        border-radius: 5px;
    }
    .supplier-initial span{
        font-size:14px;
    }

    /* Plan-Specific Colors */
    .basic {
        background-color: red;
    }

    .free {
        background-color: grey;
    }

    .premium {
        background-color: blue;
    }
    .vip {
        background-color: #452303;
    }
    .advanced {
        background-color: #006400;
    }
    /* Supplier Plan Badge Styles */
    .supplier-initial {
        display: inline-block;
        padding: 13px 4px;
        font-size: 14px;
        font-weight: bold;
        color: white;
        border-radius: 5px;
    }

    /* Plan-Specific Colors */
    .basic {
        background-color: red;
    }

    .free {
        background-color: grey;
    }

    .premium {
        background-color: blue;
    }
    .primeum{
        background-color: blue;
    }
    .professional{
        background-color: blue;
    }
    .vip{
        background-color: #e18f00;
    }
    .results-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .result-item {
        border: 1px solid #ddd;
        padding: 15px;
        border-radius: 5px;
        width: 30%;
        background: #f9f9f9;
    }

  
 
.supplier-details h3{
  font-size: 20px;
  font-weight: 700;
  color: #04327b  ;
}
/* Supplier Card Layout */


.supplier-details .card-header {
    background-color: #d56767;
    border-bottom: 1px solid #dee2e6;
    color:#fff;
}

.supplier-details h2, 
.supplier-details h5 {
    font-weight: 600;
}

.supplier-details .shadow-sm {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.supplier-details .rounded {
    border-radius: 8px;
}

/* Supplier Info Section */
.demo-card {
    padding: 10px 0;
}
.demo-card a{
  color:#D56767;
}
.demo-card .btn{
  color:#fff;
}
.supplier-initial {
    display: inline-block;
    width: 26px;
    height: 26px;
    line-height: 1px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    background-color: #999;
}

.supplier-initial.vip {
    background-color: #ffc107;
}
.supplier-initial.advanced,
.supplier-initial.advance {
    background-color: #28a745;
}
.supplier-initial.premium {
    background-color: #007bff;
}
.supplier-initial.basic {
    background-color: #6c757d;
}
.supplier-initial.free {
    background-color: #adb5bd;
}

.trusted-badge {
    font-size: 13px;
    color: #fff;
    background: #28a745;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

/* Badge / Stars / Payment */
.gold-stars {
    color: #ffc107;
    font-weight: 600;
    font-size: 14px;
}

/* Image Styling */
.img-thumbnail {
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

/* Sidebar Country List */
#supplierList li a {
    transition: all 0.2s ease-in-out;
}

#supplierList li a:hover {
    text-decoration: underline;
    color: #007bff;
}

#supplierList img {
    width: 24px;
    height: auto;
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .supplier-details .row > div[class^="col-md-"] {
        margin-bottom: 20px;
    }

    .supplier-initial {
        margin-right: 5px;
    }

    .trusted-badge {
        display: inline-block;
        margin-top: 5px;
    }
}

@media (max-width: 576px) {
    .supplier-details .row {
        flex-direction: column;
    }

    .supplier-details .btn {
        width: 100%;
    }

    .demo-card {
        padding: 0;
    }

    .supplier-details h5 {
        font-size: 16px;
    }

    .supplier-details h2 {
        font-size: 20px;
    }

    .img-thumbnail {
        height: 80px !important;
    }

    .supplier-details .shadow-sm {
        padding: 10px;
    }

    .supplier-details .col-md-7,
    .supplier-details .col-md-5 {
        width: 100%;
    }
}
.login-footer{
    height:50px;
}
.login-footer p{
    padding-top:15px;
}

@media (max-width:1024px) {
.services-list li {
    padding: 12px 13px;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
    font-size: 10px;
}
.counter-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #D56767;
    margin-bottom: 10px;
}
.counter-section p {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
}
.search{
    display: none;
}
}

