@import url(/assets/css/plugin.css);

/* INDEX  */
/* ============================== */

/* 1.LANDING */
/* 2.HEADER */
/* 3.BANNER ONE */
/* 4.FOOTER */
/* 5.PRODUCT LIST ONE */
/* 6.BLOG LIST */
/* 7.ABOUT BULLTEK */
/* 8.BREADCRUMB */
/* 9.MAIN FORM */
/* 10.PRODUCTS */
/* 11.BLOG PAGE */
/* 12.PROPERTY DETAILS */

/* ================================ */


button{
  cursor: pointer;
}
/* 1.LANDING */
.bulltek-landing {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: black;
  margin: 0; /* ensure no outside spacing */
  padding: 0;
}

.bulltek-landing .container-landing {
  position: relative;
  height: 100%;
  margin: 0; /* remove scroll-causing margin */
}

.bulltek-landing .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* full height */
  object-fit: cover;
  z-index: 1;
}

.bulltek-landing .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* full height */
  background: #0a251dd6;
  z-index: 2;
}

.bulltek-landing .section {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0; /* remove extra padding */
}

.bulltek-landing .content {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 103px;
    background-color: #ffffff1c;
    border-radius: 20px;
}.bulltek-landing .content .btn {
  background: linear-gradient(135deg, #FF7E00, #FF9E40);
  padding: 14px 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.bulltek-landing .content .btn span {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.bulltek-landing .content .btn svg {
  width: 20px;
  stroke: #fff;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.bulltek-landing .content .btn:hover {
  background: linear-gradient(135deg, #FF9E40, #FF7E00);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.bulltek-landing .content .btn:hover svg {
  transform: translateX(5px);
}
.bulltek-landing .content img {
  max-width: 250px;
  margin-bottom: 20px;
  animation: fadeInUp 2s ease-in-out infinite alternate;
}

@keyframes fadeInUp {
  0% {
    opacity: 0.7;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width:768px) {
  .bulltek-landing .bg-video,
  .bulltek-landing .overlay {
    height: 100vh;
  }
  .bulltek-landing .content {
    padding: 30px;
  }
  .bulltek-landing .content img {
    max-width: 180px;
  }
  .btn-one{
    padding: 12px 20px;
  }
}

/* 2.HEADER */

header {
  position: relative;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 999;
}

header.scrolled {
  box-shadow: 0 3px 30px 0 rgb(0 0 0 / 10%);
  background-color: white;
  position: fixed;
}

/* header top */
header .header-top {
  background-color: var(--color-two);
  padding: 7px 0px;
}

header .header-top .inner-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .header-top .inner-sec .left p {
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

header .header-top .inner-sec .right {
  display: flex;
  align-items: center;
  gap: 5px;
}

header .header-top .inner-sec .right li a {
  display: block;
  height: 32px;
  width: 32px;
  padding: 0px;
  text-align: center;
  color: white;
  border: solid 1px white;
  border-radius: 50%;
}

header .header-top .inner-sec .right li i {
  font-size: 11px;
}

/* header middle */
header .header-middle {
  background-color: #0a251d;
}

header .header-middle .nav-left .logo-link {
  display: flex;
  gap: 10px;
  align-items: center;
}

header .header-middle .nav-left .logo-link img {
  height: 110px;
  width: auto;
}

header .header-middle .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .header-middle .nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-main .nav-left .contact {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-main .nav-left .contact li a {
  color: white;
  display: flex;
  align-items: center;
  gap: 2px;
}

.header-main .nav-left .contact li a span {
  font-size: 14px;
}

.header-main .nav-left .contact li a svg {
  width: 17px;
}

.header-main .nav-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-main .nav-right .search-bar {
  position: relative;
  padding: 2px 2px 2px 12px;
  border: 1px solid #ccc;
  background-color: white;
  border-radius: 40px;
}

.header-main .nav-right .search-bar input {
  font-size: 14px;
  outline: none;
  border: none;
  width: 350px;
  border-radius: 0px;
}

.header-main .nav-right .search-bar button {
  background: var(--color-one);
  border: none;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  padding: 7px 20px;
  border-radius: 30px;
}

.header-main .nav-right .login-btn a {
  display: block;
  height: 46px;
  width: 46px;
  padding: 11px;
  text-align: center;
  border: solid 1px white;
  border-radius: 30px;
}

.header-main .nav-right .login-btn a svg {
  width: 20px;
  fill: white;
}

.header-main .nav-right .search-bar button {
  background-color: var(--color-one);
}


.search-option {
  position: relative;
  width: 100%;
  max-width: 350px; /* adjust to your layout */
}

/* Input styling */
.search-bar {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.search-bar input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  outline: none;
  font-size: 14px;
}

.search-bar button {
  background: #f5f5f5;
  border: none;
  padding: 0 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.search-bar button:hover {
  background: #e9e9e9;
}
/* .header-middle .language-dropdown {
  position: relative;
  display: inline-block;
}

.header-middle .selected-lang {
  background: #fff;
  border: 1px solid #ccc;
  padding: 5px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 25px;
  min-width: 80px;
}

.header-middle .selected-lang img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: block;
}

.header-middle .lang-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid #ccc;
  display: none;
  z-index: 100;
  border-radius: 8px;
  overflow: hidden;
}

.header-middle .lang-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
}

.header-middle .lang-menu li a:hover {
  background: #f5f5f5;
}

.header-middle .language-dropdown.open .lang-menu {
  display: block;
}

.header-middle .language-dropdown.open .lang-menu img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
} */


/* Dropdown */
#searchSuggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 5px;
  background: #fff;
  border-radius: 0 ;
  list-style: none;
  padding: 0;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 1000;
}

/* Items */
#searchSuggestions li {
  padding: 10px 14px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
#searchSuggestions li a{
  display: flex;
  align-items: center;
  gap: 10px;
}
#searchSuggestions li a span{
  font-size: 16px;
}
#searchSuggestions li:hover {
  background: #f7f7f7;
}

#searchSuggestions li img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

#searchSuggestions li .result-title {
  font-weight: 500;
}

#searchSuggestions li .result-sub {
  font-size: 12px;
  color: #777;
}

#searchSuggestions .no-results {
  text-align: center;
  color: #aaa;
  padding: 12px;
  font-size: 14px;
}


/* login */

/* User Dropdown */
.header-middle .user-dropdown {
    position: relative;
    display: inline-block;
}

/* Toggle Button */
.header-middle .user-dropdown .dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 45px;
    height: 45px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
}

.header-middle .user-dropdown .dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-one);
}

.header-middle .user-dropdown .dropdown-toggle svg {
    width: 26px;
    stroke: #fff;
    transition: stroke 0.3s;
}

.header-middle .user-dropdown .dropdown-toggle:hover svg {
    stroke: var(--color-one);
}

/* Dropdown Menu */
.header-middle .user-dropdown .dropdown-menu {
    position: absolute;
    top: 110%;
    right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: dropdownFade 0.2s ease-in-out;
    z-index: 1000;
}

/* Dropdown Animation */
@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* User Info */
.header-middle .user-dropdown .dropdown-menu .user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    font-size: 14px;
    color: #333;
    background: #f9fafb;
    border-bottom: 1px solid #eee;
}

.header-middle .user-dropdown .dropdown-menu .user-info svg {
    width: 20px;
    height: 20px;
    stroke: #6b7280; /* neutral gray */
}

/* Logout Button */
.header-middle .user-dropdown .dropdown-menu .logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    color: #fff;
    background: var(--color-one);
    text-decoration: none;
    transition: background 0.3s;
    font-size: 14px;
}

.header-middle .user-dropdown .dropdown-menu .logout-btn svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
}

.header-middle .user-dropdown .dropdown-menu .logout-btn:hover {
    background: var(--color-two); /* darker red or adjust based on your theme */
}


/* header bottom */
header .header-bottom {
  background-color: var(--color-one);
  padding: 5px 0px;
  position: relative;
  z-index: 10;
}

header .header-bottom .navbar {
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

header .header-bottom .navbar .nav-link,
header .header-bottom .navbar .dropbtn {
  float: left;
  font-size: 15px;
  color: white;
  text-align: center;
  padding: 10px 15px;
  text-decoration: none;
}

header .header-bottom .dropdown {
  float: left;
  overflow: hidden;
}

header .header-bottom .dropdown .dropbtn {
  color: white;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

header .header-bottom .navbar .nav-link:hover,
header .header-bottom .dropdown:hover .dropbtn {
  background-color: var(--color-two);
}

header .header-bottom .dropdown-content {
  display: none;
  position: absolute;
  top: 90%;
  left: 0;
  width: 100vw;
  z-index: 999;
}
header .header-bottom .dropdown-content .container{
    background-color: #ffffff;
    padding: 20px 20px 10px 20px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);


}
header .header-bottom .dropdown-content .header {
  background: red;
  padding: 16px;
  color: white;
}

header .header-bottom .dropdown:hover .dropdown-content {
  display: block;
}

header .header-bottom .dropdown:hover .dropdown-content .top-content ul {
  columns: 3;
}

header .header-bottom .dropdown:hover .dropdown-content .top-content ul li a {
  font-size: 15px;
  color: rgb(54, 54, 54);
}

header .header-bottom .dropdown:hover .dropdown-content .top-content ul li {
  margin-bottom: 5px;
}

header .header-bottom .dropdown:hover .dropdown-content .top-content ul li a {
  color: black;
  padding: 8px;
  width: 100%;
  display: block;
}


header
  .header-bottom
  .dropdown:hover
  .dropdown-content
  .top-content
  ul
  li
  a:hover {
  background-color: #eee;
}

header .header-bottom .dropdown:hover .dropdown-content .bottom-content {
  padding: 15px 0px;
  border-top: 1px solid rgb(202, 202, 202);
}

header .header-bottom .dropdown:hover .dropdown-content .bottom-content ul {
  display: flex;
  gap: 10px;
}

header
  .header-bottom
  .dropdown:hover
  .dropdown-content
  .bottom-content
  ul
  li
  a {
  display: flex;
  gap: 10px;
  align-items: center;
}

header
  .header-bottom
  .dropdown:hover
  .dropdown-content
  .bottom-content
  ul
  li
  a
  span {
  font-weight: 600;
}

header
  .header-bottom
  .dropdown:hover
  .dropdown-content
  .bottom-content
  ul
  li
  svg {
  width: 20px;
  stroke: var(--color-one);
}

header
  .header-bottom
  .dropdown:hover
  .dropdown-content
  .bottom-content
  ul
  li
  a {
  color: black;
  padding: 10px 20px;
}

header
  .header-bottom
  .dropdown:hover
  .dropdown-content
  .bottom-content
  ul
  li
  a:hover {
  background-color: #eee;
}

header
  .header-bottom
  .dropdown:hover
  .dropdown-content
  .bottom-content
  ul
  li
  a
  span {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-one);
}

.menu-button,
.sidebar {
  display: none;
}
.sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 992px) {
  .header-main .nav-left .contact {
    display: none;
  }
  .header-middle .user-dropdown{
    display: none;
  }
.header-middle .lang-menu{
  left: auto;
  right: 0;
    border-radius: 4px;
  min-width: 120px;
}
.header-middle .lang-menu li a {
  padding: 2px 3px;
  font-size: 13px;
}
.header-middle .selected-lang img{
  width: 28px;
  height: 28px;
}
.header-middle .selected-lang {
  width: 35px;
  height: 35px;
  padding: 2px;
}
  header .header-bottom {
    display: none;
  }
.header-main .nav-right .login-btn a{
  width: 36px;
  height: 36px;
}
  .header-main .nav-right .search-bar {
    display: none;
  }

  header .header-middle .nav-left .logo-link img {
    height: 60px;
  }

  header .header-top {
    display: none !important;
  }

  .header-main .menu-button {
    display: block;
    position: relative;
    width: 2.3rem;
    height: 2.3rem;
    font-size: 24px;
    border-radius: 8px;
    border: none;
    background-color: transparent;
  }

  .header-main .menu-button svg {
    color:white;
    width: 38px;
  }

  .sidebar .menu-button:hover {
    transition: 0.3s ease;
    cursor: pointer;
  }

  .sidebar .menu-button:focus {
    transition: 0.3s ease;
    cursor: pointer;
  }
.sidebar {
  position: fixed;
  right: 0;
  top: 0;
  display: none;
  flex-direction: column;
  width: 90%;
  height: 100%;
  box-shadow: -3px 0 15px rgba(0, 0, 0, 0.15);
  z-index: 1100000;
  background-color: white;
  overflow-y: auto; /* enable vertical scroll */
}

.sidebar .sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000000; /* below sidebar but above body */
}

.sidebar .sidebar-overlay.active {
  opacity: 1;
  pointer-events: all;
}

  .sidebar .sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5); /* dark transparent */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

  .sidebar .sidebar-header {
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: var(--color-one);
  }

  .sidebar .sidebar-header h3 {
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
  }

  .sidebar-header .close-button {
    width: 2.3rem;
    height: 2.3rem;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    color: rgb(255, 255, 255);
    background-color: transparent;
  }

  .close-button:hover {
    transition: 0.3s ease;
    cursor: pointer;
  }

  .close-button:focus {
    transition: 0.3s ease;
    cursor: pointer;
  }

  .sidebar .sidebar-link:focus {
    transition: 0.3s ease;
    cursor: pointer;
  }

  @keyframes sidebarIn {
    0% {
      opacity: 0;
      transform: translateX(25rem);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes sidebarOut {
    0% {
      opacity: 1;
    }

    100% {
      opacity: 0;
      transform: translateX(30rem);
    }
  }

  .sidebar .category-lists .main-list li a {
    padding: 12px;
    font-size: 13px;
    display: block;
    color: black;
    font-weight: 400;
    border-bottom: solid 1px #d3d3d3;
  }

  .submenu-toggle i {
    transition: transform 0.3s ease;
  }

  .submenu.open ~ .submenu-toggle i {
    transform: rotate(180deg);
  }

  .sidebar .category-lists .main-list li {
    position: relative;
  }

  .sidebar .category-lists .main-list .submenu {
    display: none;
    padding-left: 20px;
    list-style: none;
    margin-top: 8px;
  }

  .sidebar .category-lists .main-list .submenu li a {
    display: block;
    padding: 10px 0;
    color: #333;
    font-size: 14px;
  }

  .sidebar .category-lists .main-list .has-submenu .submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
  }

  .sidebar .category-lists .main-category {
    border-top: solid 1px var(--color-two);
    border-bottom: solid 1px var(--color-two);
  }

  .sidebar .category-lists .main-category li a {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px;
  }

  .sidebar .category-lists .main-category li a svg {
    width: 16px;
    stroke: var(--color-one);
  }

  .sidebar .category-lists .main-category li a span {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-one);
  }
}



@media (min-width:992px) and (max-width:1400px) {
  header .header-bottom .dropdown .dropbtn {
    padding: 10px 10px;
    font-size: 14px;
  }
}
/* 3.BANNER ONE */

.banner-one {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  color: #fff;
}
.banner-one .swiper{
  height: 100%;
}
.banner-one .bg-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.banner-one .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.banner-one .banner-content {
  position: relative;
  z-index: 2;
}
.banner-one .container {
  display: flex;
  align-items: center;
  height: 100%;
}
.banner-one .banner-content h2 {
  font-size: 65px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  max-width: 900px;
  line-height: 80px;
}

.banner-one .banner-content p {
  color: white;
  font-size: 15px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .banner-one .banner-content h2 {
    font-size: 25px;
    line-height: 41px;
    font-weight: 600;
  }
  .banner-one .banner-content p{
    font-size: 14px;
  }
  .banner-one .btn-three{
    padding: 12px 15px;
  }
  .banner-one .btn-three span{
    font-size: 12px;
  }
  .banner-one .btn-three span{
    font-size: 12px;
  }
}


.banner-one .custom-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  transform: translateY(-50%);
  z-index: 3;
}

.banner-one .custom-nav button {
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-one .custom-nav button:hover {
  background: rgba(255,255,255,0.9);
  color: #000;
}

@media (max-width:768px) {
  .banner-one .custom-nav button{
    display: none;
  }
}


/* 4.FOOTER */

footer .social-icons {
  padding: 40px 0px;
}
footer .social-icons .head h2 {
  text-align: center;
  letter-spacing: 1px;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 400;
}
footer .social-icons ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
footer .social-icons ul li a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  background-color: black;
  color: white;
  font-size: 14px;
  padding: 10px;
}

footer .footer-main {
  background-color: black;
  padding: 70px 0px 40px 0px;
}
footer .footer-main .footer-widget {
  margin-bottom: 30px;
}
footer .footer-main .footer-widget h2 {
  color: white;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 25px;
  border-bottom: solid 1px var(--color-one);
  width: max-content;
}
footer .footer-main .footer-widget .list-one li a {
  font-size: 14px;
  color: white;
}
footer .footer-main .footer-widget .list-one li {
  margin-bottom: 12px;
}
footer .footer-main .footer-widget p {
  font-size: 14px;
  color: white;
  margin-bottom: 20px;
}
footer .footer-main .footer-widget .list-two li {
  margin-bottom: 10px;
}
footer .footer-main .footer-widget .list-two li a {
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
}
footer .footer-main .footer-widget .list-two li a i {
  background-color: var(--color-one);
  font-size: 12px;
  border-radius: 50%;
  padding: 11px;
  height: 35px;
  width: 35px;
}
footer .footer-main .footer-widget .list-two li a span {
  font-size: 14px;
}
footer .footer-main .footer-widget .newsletter-form h3 {
  font-size: 15px;
  color: white;
  font-weight: 400;
  margin-bottom: 15px;
}
footer .footer-main .footer-widget .newsletter-form form .form-control {
  background-color: #f9f9f9;
  width: 100%;
  padding: 6px;
}
footer .footer-main .footer-widget .newsletter-form form .checkbox {
  display: flex;
  align-items: center;
  margin: 15px 0px;
  gap: 5px;
}
footer .footer-main .footer-widget .newsletter-form form .checkbox label{
  font-size: 14px;
  color: white;
}
footer .footer-main .footer-widget .newsletter-form form .checkbox span {
  color: white;
  font-size: 12px;
  font-weight: 400;
}
footer .footer-main .footer-widget .newsletter-form form button {
  border: none;
  background-color: var(--color-one);
  padding: 10px 30px;
  color: white;
  font-size: 14px;
  letter-spacing: 1px;
}
footer .copyright {
  background-color: black;
}
footer .copyright .container {
  padding: 20px 0px;
  border-top: solid 1px #d6d6d652;
}
footer .copyright p {
  color: white;
  font-size: 14px;
  text-align: center;
}
footer .copyright p a {
  color: var(--color-one);
  font-size: 14px;
}

@media (max-width: 768px) {
  footer .footer-main .footer-widget {
    margin-bottom: 30px;
  }
  footer .footer-main .footer-widget .newsletter-form h3 {
    margin-bottom: 15px;
  }
}

/* 5.PRODUCT LIST ONE */

.product-list-one .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.product-list-one .head h2 {
  font-size: 38px;
  font-weight: 600;
  text-transform: uppercase;
}

/* product list */
.products-list .product-card {
  border: solid 1px #e3e3e3;
  padding: 12px;
}
.products-list .product-card .product-image {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 5px;
  overflow: hidden;
}
.products-list .product-card .product-image img {
  height: 100%;
  object-fit: cover;
  height: 180px;

}
.products-list .product-card .product-name {
  font-size: 14px;
  min-height: 41px;
  color: #535353;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 6px;
}
.products-list .product-card .product-price {
  display: flex;
  gap: 10px;
  align-items: center;
}
.products-list .product-card .product-price .price-one {
  color: var(--color-one);
  font-size: 16px;
  font-weight: 500;
}
.products-list .product-card .product-price .price-two {
  color: #626262;
  font-size: 13px;
  text-decoration: line-through;
}
.products-list .col-md-2 {
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  /* .products-list .product-card .product-image {
    height: 130px;
  } */
  .product-list-one .head {
    margin-bottom: 20px;
  }
  .products-list .col-md-2 {
    padding-left: 4px;
    padding-right: 4px;
    margin-bottom: 8px;
  }
  .products-list .product-card .product-name {
    margin-bottom: 4px;
  }
  .product-list-one .head h2 {
    font-size: 15px;
    letter-spacing: 0px;
  }
  .product-list-one .head .btn-three {
    padding: 10px 12px;
  }
  .product-list-one .head .btn-three span {
    font-size: 12px;
    white-space: nowrap;
  }
  .product-list-one .head .btn-three i {
    font-size: 12px;
  }
  .products-list .product-card .product-price .price-one{
    font-size: 13px;
  }
  .products-list .product-card .product-price .price-two{
    font-size: 12px;
  }
}

/* 6.BLOG LIST */

.blog-list-one .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.blog-list-one .col-md-2 {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 10px;
}
.blog-list-one .head h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.blog-lists .col-md-3 {
  margin-bottom: 20px;
}
.blog-lists .blog-card img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}
.blog-lists .blog-card h3 {
  font-size: 18px;
  margin-top: 5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 50px;
}
.blog-lists .blog-card .readmore-btn {
  color: var(--color-one);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .blog-lists .blog-card h3 {
    font-size: 16px;
    min-height: auto;
    margin-bottom: 5px;
  }
  .blog-lists .blog-card img{
    height: 200px;
  }
  .blog-list-one .head h2 {
    font-size: 15px;
    letter-spacing: 0px;
  }
  .blog-list-one .head .btn-three {
    padding: 10px 12px;
  }
  .blog-list-one .head .btn-three span {
    font-size: 12px;
  }
  .blog-list-one .head .btn-three i {
    font-size: 12px;
  }
}

@media (min-width: 992px) and (max-width: 1300px) {
  .blog-lists .blog-card img {
    height: 160px;
  }
  .blog-lists .blog-card h3 {
    font-size: 15px;
    margin: 0px;
    min-height: 40px;
  }
}

/* 7.ABOUT BULLTEK */

.about-bulltek .content {
  margin-bottom: 20px;
}
.about-bulltek .content h2 {
  font-size: 22px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.about-bulltek .content p {
  font-size: 15px;
  line-height: 32px;
}

@media (max-width: 768px) {
  .about-bulltek .content h2 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .about-bulltek .content p {
    font-size: 14px;
    line-height: 28px;
  }
}

/* 8.BREADCRUMB */

.breadcrumb-sec .container{
  background-color: #f2f2f2;
  padding: 25px 20px;
  margin-top: 20px;
}
.breadcrumb-sec .content h1 {
  font-size: 30px;
  color: var(--color-one);
  font-weight: 500;
}
.breadcrumb-sec .content .breadcrumb li i {
  font-size: 14px;
}
.breadcrumb-sec .content .breadcrumb li,
.breadcrumb-sec .content .breadcrumb li a {
  font-size: 15px;
  font-weight: 500;
}
.breadcrumb-sec .content .breadcrumb {
  display: flex;
  align-items: center;
  margin: 20px 0px 0px 0px;
  gap: 10px;
}


@media (max-width:768px) {
  .breadcrumb-sec .container{
    margin-top: 0px;
}
.breadcrumb-sec .content h1{
  font-size: 15px;
}
.breadcrumb-sec .content .breadcrumb li, .breadcrumb-sec .content .breadcrumb li a{
  font-size: 12px;
}
.breadcrumb-sec .content .breadcrumb{
  gap: 3px;
  flex-flow: row wrap;
}
.breadcrumb-sec .content .breadcrumb i{
  font-size: 12px;
}
    .breadcrumb-sec .container{
      padding: 25px 15px;
    }
}
/* 9.MAIN FORM */

.main-form .content {
  display: flex;
  justify-content: center;
}
.main-form .content .form-box {
  max-width: 600px;
  width: 100%;
  padding: 30px;
  box-shadow: 0 3px 30px 0 rgb(0 0 0 / 10%);
}
.main-form .content .form-box h2 {
  text-align: center;
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 10px;
}
.main-form .content .form-box .para{
  text-align: center;
  margin-bottom: 20px;
}
.main-form .content form .form-group {
  margin-bottom: 20px;
}
.main-form .content form .form-group .input-group.password{
  display: flex;
}
.main-form .content form .form-group .input-group.password button{
    width: 60px;
    background: transparent;
    border: solid 1px #bdbdbd;
    border-left: none;
    color: black;
}
.main-form .content form .form-group label {
  font-size: 15px;
  color: #424242;
  margin-bottom: 5px;
  line-height: 30px;
}
.main-form .content form .form-group .form-control {
  padding: 12px;
  width: 100%;
  border: solid 1px #bdbdbd;
}
.main-form .content form .form-group button {
  border: none;
  background-color: var(--color-one);
  color: white;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  padding: 14px;
}
.main-form .content form .form-group button:hover {
  background-color: black;
}
.main-form .content .form-box .link-bottom {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-form .content .form-box .link-bottom p {
  font-size: 15px;
  color: #9e9e9e;
}
.main-form .content .form-box .link-bottom a {
  color: var(--color-one);
  font-size: 15px;
  font-weight: 500;
}

.login-with-google {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.login-with-google a{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    border: solid 1px #9e9e9e;
    padding: 12px;
    width: 100%;
}
.login-with-google img {
  width: 20px;
}



@media (max-width: 768px) {
  .main-form .content .form-box {
    padding: 12px;
  }
  .main-form .content .form-box .link-bottom p {
    font-size: 12px;
  }
    .main-form .content .form-box .link-bottom  a{
      font-size: 12px;
    }

}

/* 10.PRODUCTS */

.products-list-main .form-filter {
  padding: 20px 0px;
  border-bottom: solid 1px #e9e9e9;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.products-list-main .form-filter .form-group .form-control {
  padding: 10px;
  width: 100%;
  border: solid 1px #e9e9e9;
  color: black;
  border-radius: 0px;
  height: 44px;
}
.products-list-main .form-filter .left {
  width: 100%;
}
.products-list-main .form-filter .right .form-group {
  width: 200px;
}
.products-list-main .form-filter .left .price-select {
  display: flex;
  gap: 10px;
}
.products-list-main .form-filter .left .reset-filters{
  border: none;
  padding: 11px 20px;
  border: solid 1px black;
  background-color: black;
  color: white;
}
.products-list-main .filter-btn {
  padding: 12px;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
  color: black;
}
.products-list-main .filter-btn i {
  font-size: 14px;
}

.products-list-main .form-filter .left .filter-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background-color: #f5f5f5;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
}
.products-list-main .form-filter .left .filter-sidebar .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
  border-bottom: solid 1px rgb(185, 185, 185);
}
.products-list-main .form-filter .left .filter-sidebar .head h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0px;
}
.products-list-main .form-filter .left .filter-sidebar #filterClose {
  background: none;
  border: none;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 10px;
}

/* Animations */
@keyframes filterIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes filterOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (min-width: 992px) {
  .products-list-main .filter-btn,
  .products-list-main .form-filter .left .filter-two {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  .products-list-main .form-filter .left .filter-btn {
    display: flex;
  }
  .products-list-main .form-filter .left .filter-one {
    display: none;
  }
  .products-list-main .form-filter .left .form-filter {
    margin-bottom: 8px;
    padding: 8px 0px;
  }
  .products-list-main .form-filter .left .filter-sidebar {
    display: none;
  }

  .products-list-main .form-filter .left .filter-sidebar.active {
    display: flex !important;
    animation: filterIn 0.4s forwards;
  }
}

@media (max-width: 991px) {
  .products-list-main .form-filter {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}

/* 11.BLOG PAGE */

.blog-card-list .left {
  border: solid 1px #e3e3e3;
  padding: 15px;
}
.blog-card-list .left .search-bar {
  margin-bottom: 10px;
}
.blog-card-list .left .search-bar .form-group {
  display: flex;
  align-items: center;
  width: 100%;
  border: solid 1px #e3e3e3;
  overflow: hidden;
}

.blog-card-list .left .search-bar .form-group input {
  flex: 1;
  padding: 8px 10px;
  border: none;
  font-size: 14px;
  outline: none;
}

.blog-card-list .left .search-bar .form-group button {
  background-color: var(--color-one);
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
}
.blog-lists .col-md-4 {
  margin-bottom: 20px;
}
.blog-card-list .left .category {
  margin-bottom: 20px;
}
.blog-card-list .left .category h3 {
  border-bottom: solid 1px #e3e3e3;
  padding: 10px 0px 2px 0px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-card-list .left .category ul li {
  margin-bottom: 10px;
}
.blog-card-list .left .category ul li a {
  padding: 10px;
  background-color: #c3c3c32b;
  color: var(--color-one);
  width: 100%;
  display: block;
  font-size: 15px;
}
.blog-card-list .left .recent-blogs h3 {
  border-bottom: solid 1px #e3e3e3;
  padding: 10px 0px 2px 0px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-card-list .left .recent-blogs .recent-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.blog-card-list .left .recent-blogs .recent-list .recent-card {
  display: flex;
  gap: 10px;
}
.blog-card-list .left .recent-blogs .recent-list .recent-card img {
  width: 65px;
  height: 65px;
  object-fit: cover;
}
.blog-card-list .left .recent-blogs .recent-list .recent-card .title h4 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: black;
}
.blog-card-list .left .recent-blogs .recent-list .recent-card .title span {
  font-size: 13px;
  font-weight: 400;
  color: rgb(97, 97, 97);
}

@media (max-width: 768px) {
  .blog-card-list .left {
    margin-bottom: 20px;
  }
}

/* 12.PROPERTY DETAILS */

.product-details {
  padding: 40px 0px 0px 0px;
}
.product-details .left .tab-gallery {
  position: relative;
}
.product-details .left{
  margin-right: 30px;
}
.product-details .left .tab-gallery .mySlides {
  display: none;
}
.product-details .left .tab-gallery .mySlides img {
  height: 550px;
  width: 100% !important;
  object-fit: cover;
   border: solid 1px #ebebeb;
}
.product-details .left .tab-gallery .cursor {
  cursor: pointer;
}

.product-details .left .tab-gallery .prev,
.product-details .left .tab-gallery .next {
  background-color: var(--color-one);
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.product-details .left .tab-gallery .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.product-details .left .tab-gallery .prev:hover,
.product-details .left .tab-gallery .next:hover {
  background-color: var(--color-one);
}
.product-details .left .tab-gallery .row {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}
.product-details .left .tab-gallery .row:after {
  content: "";
  display: table;
  clear: both;
}

.product-details .left .tab-gallery .column {
  width: 23%;
  display: flex;
  justify-content: center;
}

.product-details .left .tab-gallery .demo {
  opacity: 0.6;
}

.product-details .left .tab-gallery .active,
.product-details .left .tab-gallery .demo:hover {
  opacity: 1;
}

.product-details .left .thumbnail-swiper {
  margin-top: 10px;
}
.product-details .left .thumbnail-swiper .swiper-slide {
  /* width: 80px; */
  flex-shrink: 0;
}
.product-details .left .thumbnail-swiper img {
  width: 100%;
  border: 2px solid #c7c7c7;
  cursor: pointer;
  height: 70px;
  object-fit: cover;
}
.product-details .left .thumbnail-swiper img.active {
  border-color: #333;
}

.product-details .left .thumbnail-swiper .swiper-button-next,
.product-details .left .thumbnail-swiper .swiper-button-prev {
  background-color: var(--color-one);
  color: white;
  width: 25px;
  height: 40px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.product-details .left .thumbnail-swiper .swiper-button-next:hover,
.product-details .left .thumbnail-swiper .swiper-button-prev:hover {
  background-color: var(--color-one);
  transform: scale(1.1);
}

.product-details .left .thumbnail-swiper .swiper-button-next::after,
.product-details .left .thumbnail-swiper .swiper-button-prev::after {
  font-size: 16px;
}

.product-details .left .thumbnail-swiper .swiper-button-prev {
  left: 1px;
}
.product-details .left .thumbnail-swiper .swiper-button-next {
  right: 1px;
}

.product-details .right .head span {
  background-color: black;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.product-details .right .head h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 20px;
}
.product-details .right .head {
  border-bottom: solid 1px #e3e3e3;
}

.product-details .right .price-sec {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0px;
}
.product-details .right .price-sec h3 {
  font-size: 25px;
  font-weight: 600;
  color: var(--color-one);
}
.product-details .right .price-sec span {
  font-size: 18px;
  font-weight: 400;
  color: #858585;
  text-decoration: line-through;
}
.product-details .right .category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.product-details .right .category h4 {
  font-size: 16px;
  color: #3c3939;
  /* text-transform: uppercase; */
  font-weight: 400;
}
.product-details .right .category span {
  color: var(--color-two);
  background: linear-gradient(to right, #bc222c36, #ffffff);
  padding: 8px 12px;
}
.product-details .right .share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.product-details .right .share h5 {
  margin: 0px;
  color: #3c3939;
  font-size: 14px;
  font-weight: 400;
}
.product-details .right .share ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-details .right .share ul li a {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  border: solid 1px #e3e3e3;
  font-size: 14px;
  color: black;
  padding: 10px;
}
.product-details .right .buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: solid 1px #e3e3e3;
}

.product-details .right .download-instructions button {
  border: none;
  background-color: var(--color-one);
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-details .right .buttons .btn {
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: none;
  width: 100%;
  cursor: pointer;
}
.product-details .right .buttons .btn {
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease; /* smooth transition */
}

.product-details .right .buttons .btn:hover {
 opacity: .8;

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* soft shadow */
}

.product-details .right .buttons .btn i {
  font-size: 18px;
  color: white;
}
.product-details .right .buttons .btn span {
  font-size: 16px;
  color: white;
  text-transform: uppercase;
}
.product-details .right .buttons .btn-enquire {
  background-color: black;
}
.product-details .right .buttons .whatsapp-now {
  background-color: #006217;
}
.product-details .right .other-details {
  margin-top: 20px;
}
.product-details .right .other-details ul li {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 10px;
}
.product-details .right .other-details ul li h6 {
  font-size: 16px;
  color: #3c3939;
  font-weight: 500;
  margin-bottom: 0px;
}
.product-details .right .other-details ul li span {
  font-size: 15px;
  color: #3c3939;
  font-weight: 400;
}
.product-details .right .other-details ul li button {
  color: var(--color-one);
  border: none;
  background-color: transparent;
  font-size: 16px;
}
.product-details .right {
  max-width: 600px;
}

.product-details .details-tab {
  padding: 15px;
  border-radius: 5px;
}

.product-details .tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  border-bottom: solid 1px #e3e3e3;
  padding: 10px 0px;
}

.product-details .tab-btn {
  padding: 12px 25px;
  background: transparent;
  color: black;
  text-transform: uppercase;
  border: none;
  border: solid 1px black;
  cursor: pointer;
  border-radius: 3px;
  transition: 0.3s;
}

.product-details .tab-btn.active {
  background: #000000;
  color: #fff;
}

.product-details .tab-content {
  display: none;
}

.product-details .tab-content.active {
  display: block;
}
.product-details .tab-content h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}
.product-details .tab-content p,
.product-details .tab-content li {
  font-size: 15px;
  line-height: 28px;
}
.product-details .tab-content ul {
  margin-bottom: 20px;
}
.product-details .tab-content h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.product-details .tab-content h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.product-details .tab-content h5,
.product-details .tab-content h6 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.product-details .tab-content.content-2 li span {
  font-weight: 500;
}
.product-details .tab-content.content-2 li {
  margin-bottom: 15px;
}


.product-details .right .stock {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.product-details .right .stock h4{
  font-size: 16px;
    color: #3c3939;
    /* text-transform: uppercase; */
    font-weight: 400;
}
.product-details .right .stock-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 16px;
}

.product-details .right .stock-status .icon {
        width: 20px;
    height: 20px;
    border: solid 1px;
    border-radius: 50%;
    padding: 3px;

}

.product-details .right .in-stock {
    color: #28a745; /* green */
}

.product-details .right .out-stock {
    color: #dc3545; /* red */
}


@media (max-width: 768px) {
  .product-details .left {
    margin-bottom: 20px;
  }
  .product-details .left{
    margin-right: 0px;
  }
  .product-details .left .tab-gallery {
    margin: 0px;
  }
  .product-details .left .tab-gallery .row {
    flex-direction: column;
  }
  .product-details .left .tab-gallery .column {
    width: 100%;
    margin-bottom: 10px;
  }
  .product-details .left .tab-gallery img {
    max-height: 300px;
  }
  .product-details .right {
    max-width: 100%;
  }
  .product-details .right .head h2 {
    font-size: 18px;
    margin-bottom: 5px;
    margin-top: 15px;
  }
  .product-details .right .price-sec {
    margin: 10px 0px;
  }
  .product-details .right .category h4 {
    font-size: 14px;
  }
  .product-details .right .buttons .btn {
    padding: 10px;
  }
    .product-details .right .buttons .btn span{
      font-size: 14px;
    }
    .product-details .right .buttons .btn i{
      font-size: 14px;
    }
  .product-details .right .category span {
    font-size: 14px;
  }
  .product-details .details-tab {
    padding: 0px;
  }
  .product-details .tab-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
  .product-details .details-tab {
    padding: 7px;
  }
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup-overlay h2 {
  font-size: 25px !important;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.popup-overlay .popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 100%;
  max-width: 900px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.popup-overlay .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 35px;
  cursor: pointer;
}
.popup-overlay .form-group {
  margin-bottom: 12px;
}
.popup-overlay .form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.popup-overlay .form-group input,
.popup-overlay .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #d7d7d7;
    font-size: 14px;
    min-height: 34px !important;
    font-size: 14px;
    border-radius: 4px;
}
.popup-overlay .submit-btn {
  background: var(--color-one);
  color: white;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  text-transform: uppercase;
  border-radius: 4px;
}



@media (max-width:768px) {
  .popup-overlay .form-group input, .popup-overlay .form-group textarea{

    padding: 10px;
    font-size: 12px;
  }
  .popup-overlay .form-group label{
    font-size: 12px;
    margin-bottom: 0px;
  }
  .popup-overlay .form-group {
    margin-bottom: 15px;
  }
  .popup-overlay h2{
    font-size: 16px !important;
  }
  .popup-overlay h2 {
    margin-bottom: 10px;
  }
  .popup-overlay .close-btn {
    font-size: 30px ;
  }
  .popup-overlay .submit-btn{
    width: 100%;
  }

}
/* SWIPER */

.product-list-one .buttons {
  display: flex;
  gap: 8px;
}

.product-list-one .swipe-prev,
.product-list-one .swipe-next {
  background: var(--primary-color, #ff6600);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

/* Hover effect */
.product-list-one .swipe-prev:hover,
.product-list-one .swipe-next:hover {
  background: #333;
}

/* Remove Swiper's default arrow symbols */
.product-list-one .swipe-prev::after,
.product-list-one .swipe-next::after {
  display: none;
}

/* BLOG DETAILS */

.blog-details-sec .head {
  border-bottom: solid 1px #e3e3e3;
  margin-bottom: 20px;
  padding-bottom: 20px;
  padding: 5px 0px;
}
.blog-details-sec .head h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}
.blog-details-sec .head .share-blog {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-details-sec .head .share-blog span {
  font-size: 16px;
  color: #3c3939;
  font-weight: 500;
}
.blog-details-sec .head .share-blog ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-details-sec .head .share-blog ul li a {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  border: solid 1px #e3e3e3;
  font-size: 14px;
  color: black;
  padding: 10px;
}
.blog-details-sec .blog-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  margin-bottom: 20px;
}
.blog-details-sec .blog-content p {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 20px;
}
.blog-details-sec .blog-content h2 {
  font-size: 23px;
  font-weight: 600;
}
.blog-details-sec .blog-content h3 {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 15px;
}
.blog-details-sec .blog-content h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.blog-details-sec .blog-content h5,
.blog-details-sec .blog-content h6 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}
.blog-details-sec .blog-content li {
  font-size: 15px;
}

/* CONTACT US */

.contact-form {
  padding: 40px 0px;
}
.contact-form .left h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}
.contact-form .left .address {
  margin-bottom: 30px;
}
.contact-form .left h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.contact-form .left .address p {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 10px;
}
.contact-form .left .contact-info {
  margin-bottom: 30px;
}
.contact-form .left .contact-info ul li {
  margin-bottom: 15px;
}
.contact-form .left .contact-info ul li a {
  font-size: 16px;
}
.contact-form .left .social-links ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-form .left .social-links ul li a {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  border: solid 1px #e3e3e3;
  font-size: 14px;
  color: black;
  padding: 10px;
}
.contact-form .right .head h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-form .right .head p {
  font-size: 15px;
  color: #9e9e9e;
  margin-bottom: 20px;
}
.contact-form .right .form-group {
  margin-bottom: 20px;
}
.contact-form .right .form-group label {
  font-size: 15px;
  color: #424242;
  margin-bottom: 5px;
}
.contact-form .right .form-group .form-control {
  font-size: 14px;
  color: #424242;
  padding: 10px;
  border: solid 1px #bdbdbd;
  width: 100%;
}
.contact-form .right .form-group button {
  border: none;
  background-color: var(--color-one);
  color: white;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  padding: 12px;
}
.contact-form .right .form-group button:hover {
  background-color: black;
}

/* ABOUT US */

.about-sec .left h2 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
}
.about-sec .left p {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 30px;
}
.about-sec .right img {
  max-height: 350px;
  object-fit: cover;
}

.mission-vision {
  background-color: #f7f7f7;
}
.mission-vision .head {
  text-align: center;
  margin-bottom: 40px;
}
.mission-vision .head h2 {
  font-size: 30px;
  font-weight: 600;
}

.mission-vision .card {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.mission-vision .card h3 {
  margin-bottom: 15px;
  color: #333;
  font-size: 20px;
  font-weight: 600;
  margin: 0px;
}

.mission-vision .card p {
  color: #555;
  line-height: 1.6;
}

.mission-vision .card .sub-head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.mission-vision .card .sub-head img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* ERROR PAGE */

.error-sec {
  height: 100vh;
  background: linear-gradient(to right, #ff7e00, #bc222c);
}
.error-sec .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.error-sec .error-container {
  text-align: center;
  max-width: 900px;
  background-color: #ffffff14;
  padding: 130px;
  border-radius: 10px;
}
.error-sec .error-container img {
  width: 150px;
  margin-bottom: 20px;
}
.error-sec .error-container h1 {
  font-size: 40px;
  color: white;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.error-sec .error-container p {
  font-size: 16px;
  margin-bottom: 20px;
  color: white;
}
.error-sec .error-container .btn {
  background-color: white;
  padding: 12px 25px;
  color: var(--color-two);
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .error-sec .error-container {
    padding: 50px 20px;
  }
  .error-sec .error-container h1 {
    font-size: 20px;
  }
  .error-sec .error-container p {
    font-size: 14px;
  }
}

.error-text {
  color: red;
  font-size: 14px;
  margin-top: 4px;
}



.suggestions-box {
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 999;
}
.suggestions-box li {
    padding: 8px;
    cursor: pointer;
}
.suggestions-box li:hover {
    background: #f0f0f0;
}


.verification-card {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.verification-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.verification-card .icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.verification-card.success .icon {
    color: #28a745; /* green */
}

.verification-card.error .icon {
    color: #dc3545; /* red */
}

.verification-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.verification-card p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown button (round flag button) */
.language-dropdown .languahe_button {
    display: flex;
    align-items: center;
    justify-content: center; /* center flag inside circle */
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 45px;
    width: 45px;
    transition: background 0.2s ease-in-out;
    padding: 0; /* keep flag centered */
}

.language-dropdown .languahe_button:hover {
    background-color: #f5f5f5;
}

/* Flag inside button */
.language-dropdown .languahe_button .flag {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
}

/* Hide text inside button */
.language-dropdown .languahe_button p {
    display: none;
}

/* Dropdown menu */
.language-dropdown .dropdown-menu {
    position: absolute;
    top: 110%;
    right: 0;  /* align neatly under button */
    min-width: 140px; /* narrower so it looks good on mobile */
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    margin-top: 4px;
    padding: 4px 0;
}

/* Show menu when dropdown is active */
.language-dropdown.show .dropdown-menu {
    display: block;
}

/* Menu items */
.language-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}

.language-dropdown .dropdown-item img {
    width: 22px;
    height: 16px;
    border-radius: 4px;
}

.language-dropdown .dropdown-item:hover {
    background-color: #f0f0f0;
}

/* Selected language inside menu */
.language-dropdown .dropdown-item.active {
    font-weight: bold;
    background-color: #e0e0e0;
}

/* 📱 Mobile adjustments */
@media (max-width: 768px) {
  .language-dropdown .languahe_button {
    width: 40px;
    height: 40px;
  }
  .language-dropdown .languahe_button .flag {
    width: 24px;
    height: 24px;
  }
  .language-dropdown .dropdown-menu {
    min-width: 120px; /* smaller for mobile */
    right: 0; 
    left: auto;
  }
  .language-dropdown .dropdown-item {
    font-size: 13px;
    padding: 6px 8px;
  }
}
