h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea {
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5{
 font-family: "Open Sans", sans-serif;
}
p,a,span,button, h6,li,small {
   font-family: "Poppins", sans-serif;
}

* {
	margin: 0;
	padding: 0;
}
a:hover {
	text-decoration: none;
}
a:focus {
	text-decoration: none;
}
body {

}

:root {
    --primary-color: #1A97CE;
}

.container{
	max-width: 1780px;
}

/* ************************************ */
/*RESPONSIVE NAVIGATION — Redesigned*/
.mobile-menu {
  display: none;
  background: #fff;
}

/* Hamburger circle trigger */
.mobile-menu .circle {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-color);
  color: #fff;
  font-size: 17px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: background 0.2s;
}
.mobile-menu .circle:hover {
  background: #0e6d9a;
}

/* Close (X) button */
.mobile-menu .mobile-cross {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f4f6f8;
  color: #333;
  font-size: 15px;
  position: absolute;
  right: 20px;
  top: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  cursor: pointer;
  border: 1.5px solid #e0e6ed;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mobile-menu .mobile-cross:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

/* Full-screen drawer — light theme */
.mobile-menu .nveMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transform: translateY(-12px);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.32s ease,
              visibility 0.32s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 0;
}
.mobile-menu .nveMenu.is-opened {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Drawer header */
.mobile-menu .nveMenu > a:first-of-type {
  display: block;
  padding: 20px 24px 18px;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-menu .nveMenu > a:first-of-type img {
  height: 42px;
  width: auto;
  filter: none;
}

/* Overlay — hidden for full screen */
.mobile-menu .overlay,
.mobile-menu .overlay.is-on {
  display: none;
}

/* Nav area */
.mobile-nav {
  flex: 1;
  padding: 8px 0 32px;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu li {
  margin: 0;
  border-bottom: 1px solid #f4f4f4;
}
.mobile-menu li a {
  display: block;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}
.mobile-menu li a:hover {
  color: var(--primary-color);
  background: #f8f9fb;
  padding-left: 30px;
}
.mobile-menu li.current-menu-item > a {
  color: var(--primary-color);
  border-left: 3px solid var(--primary-color);
  background: #f0f7fb;
}

/* Sub-menu */
.mobile-nav .sub-menu {
  display: none;
  padding: 0;
  background: #f8f9fb;
  border-left: 3px solid var(--primary-color);
  margin-left: 24px;
}
.mobile-nav .has-sub.active > .sub-menu {
  display: block;
}
.mobile-nav .sub-menu li {
  border-bottom: 1px solid #efefef;
}
.mobile-nav .sub-menu li a {
  font-size: 13px;
  font-weight: 500;
  padding: 12px 20px;
  color: #555;
}
.mobile-nav .sub-menu li a:hover {
  color: var(--primary-color);
  background: #edf4f8;
  padding-left: 28px;
}

/* Parent link with toggle arrow */
.mobile-nav .mobile-parent-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mobile-nav .mobile-parent-link > a {
  flex: 1;
}
.mobile-nav .submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f0f4f8;
  color: #888;
  cursor: pointer;
  margin-right: 16px;
  transition: background 0.2s, transform 0.25s, color 0.2s;
  flex-shrink: 0;
}
.mobile-nav .submenu-toggle:hover {
  background: #e2eaf0;
  color: #333;
}
.mobile-nav .has-sub.active > .mobile-parent-link .submenu-toggle {
  transform: rotate(180deg);
  background: #ddeef7;
  color: var(--primary-color);
}

.btn-contact {
  display: block;
  text-align: center;
  background: var(--primary-color);
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  margin: 16px;
  transition: opacity 0.2s;
}
.btn-contact:hover {
  opacity: 0.88;
  color: #fff !important;
}
/*RESPONSIVE NAVIGATION*/

/* PRELOADER START */
.preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-image: url('../images/preloader.gif');
  background-repeat: no-repeat;
  background-color: #FFF;
  background-position: center;
}
/* PRELOADER END */
.active-class{
  border-bottom: 2px solid #000;
}
/* ************************************ */


/* TOP HEADER */
.top-header {
    /* background: #F0F0F0; */
    font-size: 13px;
    padding: 10px 0;
}

.top-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.top-links li {
    margin-right: 15px;
}

.top-links a {
    color: #848484;
    text-decoration: none;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
}

/* SEARCH */
.search-box {
    display: flex;
}

.search-box input {
    border-radius: 4px 0 0 4px;
}

/* .search-box button {
    border-radius: 0 4px 4px 0;
} */

/* HEADER ICONS */
.header-icon {
    color: #848484;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

/* MAIN MENU */
.main-menu-header {
    background: #fff;
    /* border-top: 1px solid #eee; */
    padding: 10px 0;
    position: relative;
    z-index: 1001;
}

.navbar-nav .nav-link {
    padding: 12px 17px !important;
    font-weight: 400;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    color: #848484;
}

.main-menu-header .navbar-nav .sub-menu {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    border: 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 1002;
}

.main-menu-header .navbar-nav > .menu-item,
.main-menu-header .navbar-nav > .nav-item {
    position: relative;
}

.main-menu-header .navbar-nav .menu-item-has-children:hover > .sub-menu,
.main-menu-header .navbar-nav .dropdown:hover > .sub-menu {
    display: block;
}

.main-menu-header .navbar-nav .sub-menu .dropdown-item {
    display: block;
    padding: 9px 14px;
    font-size: 14px;
    color: #4a5568;
    white-space: nowrap;
}

.main-menu-header .navbar-nav .sub-menu .dropdown-item:hover {
    background: rgba(26, 151, 206, 0.08);
    color: #1A97CE;
}

/* =============================================
   MEGA MENU REDESIGN
   ============================================= */
.mega-dropdown {
    position: static !important;
}

.dropdown-menu.mega-menu {
    width: 100%;
    padding: 0;
    margin-top: 0; /* remove Bootstrap's default 2px gap that causes flicker */
    border: none;
    border-top: 3px solid #1A97CE;
    box-shadow: 0 20px 50px rgba(0,0,0,0.14);
    background: #fff;
    display: none;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    left: 0;
}

.main-menu-header .mega-dropdown:hover > .dropdown-menu.mega-menu,
.main-menu-header .mega-dropdown.is-nav-hovered > .dropdown-menu.mega-menu {
    display: block;
    z-index: 1003;
}

/* Regular (non-mega) dropdown: remove gap + support delay class */
.main-menu-header .navbar-nav .sub-menu.dropdown-menu {
    margin-top: 0;
}
.main-menu-header .navbar-nav .dropdown.is-nav-hovered > .sub-menu.dropdown-menu {
    display: block;
}

.dropdown-menu.mega-menu--grid {
    border-top: 0;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 18px 40px rgba(2, 30, 51, 0.16);
}

.dropdown-menu.mega-menu--grid .row {
    margin: 0;
}

.dropdown-menu.mega-menu--grid .mega-col {
    margin: 0;
    padding: 0 20px;
}

.dropdown-menu.mega-menu--grid .mega-col > a {
    display: block;
    padding: 8px 12px;
    color: #4a5568;
    background: transparent;
    border: 0;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.dropdown-menu.mega-menu--grid .mega-col > a:hover {
    background: rgba(26, 151, 206, 0.07);
    color: #1A97CE;
    padding-left: 18px;
    box-shadow: none;
    transform: none;
}

@media (max-width: 1400px) {
    .dropdown-menu.mega-menu--grid .mega-col { padding: 0 12px; }
}

@media (max-width: 1160px) {
    .dropdown-menu.mega-menu--grid .mega-col { padding: 0 8px; }
}

/* Banner header strip inside mega menu */
.mega-menu-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: linear-gradient(135deg, #0B4E69 0%, #1A97CE 100%);
    color: #fff;
}

.mega-menu-banner-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mega-menu-banner-left > i {
    font-size: 24px;
    opacity: 0.9;
}

.mega-menu-banner-left strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Poppins", sans-serif;
}

.mega-menu-banner-left span {
    font-size: 12px;
    opacity: 0.8;
    font-family: "Poppins", sans-serif;
}

.mega-menu-banner-link {
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    border: 1px solid rgba(255,255,255,0.45);
    padding: 6px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    font-family: "Poppins", sans-serif;
    white-space: nowrap;
}

.mega-menu-banner-link:hover {
    background: rgba(255,255,255,0.18);
    color: #fff !important;
}

/* Grid row that holds the category cards */
.mega-cards-row {
    padding: 20px 18px 12px;
}

/* MEGA COLUMN — each becomes a category card */
.mega-col {
    margin-bottom: 8px;
    padding: 5px;
}

.mega-col h6 {
    margin: 0;
}

.mega-col h6 a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 10px;
    background: #f8fafc;
    border: 1.5px solid #e8ecf0;
    border-radius: 10px;
    transition: all 0.25s ease;
    text-decoration: none !important;
    color: #2d3748;
    font-size: 13px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    min-height: 56px;
    line-height: 1.4;
}

.mega-col h6 a:hover {
    background: #fff;
    border-color: #1A97CE;
    color: #1A97CE;
    box-shadow: 0 4px 16px rgba(26, 151, 206, 0.15);
    transform: translateY(-2px);
}

/* Generic sub-links (currently commented out in HTML) */
.mega-col a {
    display: block;
    font-size: 13px;
    color: #848484;
    padding: 3px 0;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

/* SERVICE LIST */
.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px 12px;
    padding: 20px 4px;
    list-style: none;
    margin: 0;
}

.service-list li a {
    display: block;
    padding: 8px 12px;
    color: #4a5568;
    text-decoration: none !important;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-family: "Poppins", sans-serif;
}

.service-list li a:hover {
    background: rgba(26, 151, 206, 0.07);
    color: #1A97CE;
    padding-left: 18px;
}

.dropdown-menu.mega-menu--grid .product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px 12px;
    padding: 20px 4px;
    list-style: none;
    margin: 0;
    max-height: 500px;
    overflow-y: auto;
}

.dropdown-menu.mega-menu--grid .product-list li a {
    display: block;
    padding: 8px 12px;
    color: #4a5568;
    text-decoration: none !important;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-family: "Poppins", sans-serif;
}

.dropdown-menu.mega-menu--grid .product-list li a:hover {
    background: rgba(26, 151, 206, 0.07);
    color: #1A97CE;
    padding-left: 18px;
}

.secure-text {
  color: var(--primary-color);
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}
.need-help {
  color: #848484;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}
.need-help a{
  color: var(--primary-color);
}
.user-account a i{
  color: #0B4E69;
}
.user-account a{
  position: relative;
}
.user-account span{
  position: absolute;
  top: -13px;
  right: 26px;
  font-size: 12px;
  background: #1a97ce;
  width: 18px;
  height: 18px;
  border-radius: 25px;
  color: #fff;
  text-align: center;
  line-height: 17px;
}
.support-center{
  display: flex;
  justify-content: end;
  gap: 12px;
}
.search-box input{
  border-radius: 8px;
  border: 2px solid #0B4E69;
  height: 49px;
}

.search-box {
  position: relative;
}
.search-button{
  background-color: var(--primary-color);
  border-radius: 6px;
  font-size: 14px;
  color: #fff;
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 8px 20px;
  font-family: "Poppins", sans-serif;
}

.support-number a{
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}
.support-center span{
  font-size: 14px;
  color: #848484;
}


.logo-bar {
    border-top: 1px solid #F0F0F0;
    border-bottom: 1px solid #F0F0F0;
}
.home-banner {
  background: url('http://naqshdesign.com/wp-content/uploads/2026/03/home-banner-3.png');
  background-position: center;
  background-size: cover;
  height: 610px;
  display: flex;
  align-items: center;      
  justify-content: center;  
}
/* .home-banner {
  background: url('http://naqshdesign.com/newdemo/wp-content/uploads/2026/03/home-banner-img-2.png');
  background-position: center;
  background-size: cover;
  height: 610px;
  display: flex;
  align-items: center;      
  justify-content: center;  
} */
.banner-content h1 {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  line-height: 48px;
}

.banner-content p {
  font-size: 20px;
  font-weight: 400;
  color: #F0F0F0;
  margin-top: 10px;
  line-height: 30px;
  width: 80%;
}

.navbar-nav .nav-item.active > .nav-link,
.navbar-nav .nav-link.active {
    color: var(--primary-color)   ; /* blue */
    font-weight: 700;
}


.primary-btn {
  background-color: #178BBC;
  padding: 12px 20px 12px 20px;
  line-height: 10px;
  color: #fff;
  border-radius: 12px;
  font-size: 18px;
  margin-top: 40px;
  font-weight: 400;
  transition:0.3s;
  border: 1px solid transparent;
}

.primary-btn:hover {
  color: #178BBC;
  background-color: #fff;
  border: 1px solid #178BBC;
}


.secondary-btn {
  background-color: #ffffff00;
  padding: 11px 20px 11px 20px;
  line-height: 10px;
  color: #fff;
  border-radius: 12px;
  font-size: 18px;
  border: 2px solid #bababa;
  margin-left: 15px;
  transition: 0.3s;
}


.secondary-btn:hover {
  color: #fff;
  background-color: #178BBC;
  border: 1px solid #178BBC;
}
.wrap-2{
  padding: 100px 0;
}
.wrap-2 img{
  border-radius: 20px;
  height: 220px;
  width: 100%;
  object-fit: cover;
}
.primary-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 45px;
    color: var(--primary-color);
    padding-bottom: 30px;
  }


.product-card {
    /* border: 1px solid #eee; */
    /* padding: 15px; */
    border-radius: 12px;
    background: #fff;
    margin-bottom: 20px;
}

.product-img img{
    /* background: #e0e0e0; */
    height: 300px;
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.rating {
    font-size: 14px;
    color: #f5b301;
    margin: 5px 0 17px;
}

.rating span {
    color: #555;
    font-size: 12px;
    margin-left: 5px;
}

.product-card a{
  padding: 0px 0px;
  color: var(--primary-color);
  /* border-radius: 10px; */
  font-size: 18px;
  line-height: 20px;
  border-bottom: 1px solid var(--primary-color);
}


.wrap-3{padding: 0px 0 0px;}
/* about us scroll */

.approach-section {
  padding: 100px 0;
}

.approach-left {
  position: sticky;
  top: 120px;
  /* width: 90%; */
}

.approach-left h2 {
  color: #1A97CE;
  font-weight: 700;
  font-size: 42px;
  padding-bottom: 20px;
  line-height: 45px;
}

.steps {
  position: relative;
  padding-left: 40px;
  border-left: 1px solid #000000;
}

.step {
  padding: 0px 0 60px;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  left: -48px;
  top: 0px;
  width: 15px;
  height: 15px;
  background: #1A97CE;
  border-radius: 50%;
}

.step span {
  color: #1A97CE;
  font-weight: 700;
  font-size: 30px;
  line-height: 15px;
}

.step-img {
  margin-top: 20px;
  opacity: 0;
  transform: translateY(30px) scale(0.92);
  transition: 
    opacity 0.8s ease,
    transform 0.8s ease,
    max-height 0.8s ease;
  max-height: 0;
  overflow: hidden;
}

/* ACTIVE STEP IMAGE */
.step.active .step-img {
  opacity: 1;
  transform: translateY(0) scale(1);
  max-height: 400px;
}

.step-img img {
  width: 100%;
  height: 350px;
  border-radius: 20px;
  object-fit:cover;
  background: #e0e0e0;
  transition: transform 0.8s ease;
}

/* INACTIVE IMAGE slightly smaller */
.step:not(.active) .step-img img {
  transform: scale(0.92);
}


/* ACTIVE STEP */
/* .step.active .step-img {
  display: block;
}
 */

.approach-left p{
  font-size: 20px;
  color: #848484;
}
.approach-section p{
  font-size: 20px;
  color: #848484;
}


.step.active .step-img {
  opacity: 1;
  transform: translateY(0);
  max-height: 500px;
}


.approach-section h4{
  font-size: 45px;
  font-weight: 700;
  padding-bottom: 6px;
}



.content {
    font-size: 20px;
  color: #848484;
}


.wrap-4 {
  padding: 100px 0 100px;
}


.wrap-4 .primary-heading{
  padding-bottom: 15px;
}

.Creating_Memorable {
  background: url('../images/about-bg.png');
  background-position: center;
  background-size: cover;
  height: 515px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Creating_Memorable{
  text-align: center;
}
.Creating_Memorable h5{
   font-size: 18px;
   font-weight: 400;
   color: #fff;
}
.Creating_Memorable p{
   font-size: 24px;
   font-weight: 300;
   color: #F0F0F0;
}

.Creating_Memorable h4{
   font-size: 55px;
   font-weight: 700;
   color: #fff;
   line-height: 55px;
   padding: 10px 0 20px;
}

.wrap-4 .corporate img{width: 100%;border-radius: 20px; height: 450px;}

/* ============================================
   NEWSLETTER — Redesigned
   ============================================ */
.nl-wrap {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.nl-wrap::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(26, 151, 206, 0.1);
  pointer-events: none;
}
.nl-wrap::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(26, 151, 206, 0.07);
  pointer-events: none;
}
.nl-icon-box {
  width: 58px;
  height: 58px;
  background: rgba(26, 151, 206, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.nl-icon-box i {
  font-size: 22px;
  color: #1A97CE;
}
.nl-heading {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.25;
}
.nl-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}
.nl-input-row {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.nl-input-row i {
  color: rgba(255, 255, 255, 0.55);
  padding: 0 14px 0 22px;
  font-size: 16px;
  flex-shrink: 0;
}
.nl-input-row input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  padding: 15px 0;
  min-width: 0;
}
.nl-input-row input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.nl-input-row button {
  background: #1A97CE;
  color: #fff;
  border: none;
  padding: 13px 28px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  margin: 5px;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nl-input-row button:hover {
  background: #1580b0;
}
.nl-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 10px;
  margin-bottom: 0;
}

/* ============================================
   FOOTER — Light theme
   ============================================ */
.footer {
  background: #f8f9fb;
  border-top: 1px solid #e8edf2;
  padding: 70px 0 0;
  color: #666;
  font-size: 14px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 18px;
  display: block;
  filter: none;
}

.footer-tagline {
  font-size: 14px;
  color: #777;
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer h6 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
}
.footer h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: #1A97CE;
  border-radius: 2px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li {
  margin-bottom: 11px;
}
.footer ul li a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s, padding-left 0.25s;
  display: inline-block;
}
.footer ul li a:hover {
  color: #1A97CE;
  padding-left: 4px;
}

/* Contact items */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(26, 151, 206, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A97CE;
  font-size: 13px;
}
.footer-contact-text {
  font-size: 13px;
  color: #666;
  line-height: 1.55;
  padding-top: 8px;
}
.footer-contact-text a {
  color: #666;
  text-decoration: none;
  transition: color 0.25s;
}
.footer-contact-text a:hover {
  color: #1A97CE;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-icons a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  background: #fff;
  border: 1px solid #e0e6ed;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 14px;
  transition: all 0.3s;
  text-decoration: none;
}
.social-icons a:hover {
  background: #1A97CE;
  border-color: #1A97CE;
  color: #fff;
  transform: translateY(-3px);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #e8edf2;
  margin-top: 50px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  color: #999;
  font-size: 13px;
  margin: 0;
}
.payments img {
  height: 26px;
  margin-left: 8px;
  opacity: 0.7;
  filter: grayscale(0.3);
  transition: opacity 0.3s;
}
.payments img:hover {
  opacity: 1;
}

.brand {
  color: #1A97CE;
  font-weight: 700;
}

footer p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}
.work-card{
   background: #F0F0F0;
   border-bottom-left-radius: 20px;
   border-bottom-right-radius: 20px;
}
.work-card img{
  border-radius: 20px;
  height: 320px;
}
.work-card h4{
  padding: 20px;
  /* background: #F0F0F0; */
  font-size: 20px;
  font-weight: 600;
}

.wrap-5 {
  padding: 0px 0 100px;
}





.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  left: 15px;
  top: 52%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
}

.input-icon input:focus {
  outline: none;
}
.inner-banner-content{
  width: 60%;
}
.inner-banner-section{
  background: url('http://naqshdesign.com/newdemo/wp-content/uploads/2026/03/about-us-page-img-1.png');
  background-position: center;
  background-size: cover;
  height: 300px;
  display: flex;
  align-items: center;      /* vertical center */
  justify-content: space-between;  /* horizontal center */
/*   padding-bottom: 50px; */
}

/* .inner-banner-section{
  background: url('../images/inner-banner.png');
  background-position: center;
  background-size: cover;
  height: 300px;
  display: flex;
  align-items: center;  
  justify-content: space-between;  

} */

/* .inner-banner{display: flex;
	align-items: flex-end;      
	justify-content: space-between; } */


.inner-banner h1 {
  font-size: 55px;
  color: #fff;
  font-weight: 700;

}

.inner-banner p {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin-top: 10px;
  line-height: 30px;
}

.features-section {
  padding-bottom: 50px;
  background: #fff;
}

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 20px;
  height: 100%;
  box-shadow: 0 8px 20px #00000021;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.icon-box{
  margin-bottom: 20px;
}

.icon-box img{
  width: 55px;
  height: 55px;
}

.icon-box i {
  font-size: 22px;
  color: #000;
}

.feature-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 22px;
  /* font-weight: 600; */
  color: #1B1B1B;
}

.feature-card p {
  font-size: 18px;
  color: #848484;
  margin: 0;
}
.navbar-nav .nav-item.active > .nav-link,
.navbar-nav .nav-link.active-link {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.shop-page-wrap {
  padding: 120px 0;
}


.category-list {
  list-style: none;
  padding: 20px;
  box-shadow: 2px -2px 20px #00000040;
  border-radius: 20px;
  margin-right: 50px;
}

.category-list li {
  margin-bottom: 6px;
}

.category-list a {
  text-decoration: none;
  color: #848484;
  font-size: 18px;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: #1A97CE;
}

.category-list h3{
    font-size: 30px;
    font-weight: 700;
    line-height: 50px;
    color: var(--primary-color);
    padding-bottom: 10px;

}
.service-page-section{
  padding: 100px 0;
}

.service-card{
  background: #fff;
  margin-bottom: 15px;
}
.service-card h4{
    padding: 15px 0px;
}

.service-card img {
    border-radius: 20px;
    height: 240px;
    width: 100%;
}
.feature-list {
  margin-left: 20px;
}
.feature-list li{
   font-family: "Poppins", sans-serif;
   font-size: 20px;
   color: #1B1B1B;
}
.uv-printing{
  padding: 100px 0 0;
}
.FeaturedUseCases{
  padding: 50px 0;
}


.thumbnail-list img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbnail-list img.active {
  border-color: #333;
}

.main-image img {
    width: 800px;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    background: #eee;
}

.product-title {
  font-weight: 600;
}

.rating i {
  color: #FFC633;
}

.product-features {
  padding-left: 25px;
}

.product-features li {
  margin-bottom: 6px;
  color: #848484;
  font-size: 20px;
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  cursor: pointer;
  border: 2px solid transparent;
}

.color-dot.active {
  border-color: var(--primary-color);
}

.black {background: #4F4631;}
.green {background: #314F4A;}
.navy {background: #31344F;}

.qty-box {
  display: flex;
  align-items: center;
  border-radius: 20px;
  border: 1px solid #ccc;
  overflow: hidden;
}

.qty-box button {
  background: #f1f1f1;
  border: none;
  width: 35px;
  height: 35px;
  font-size: 18px;
  outline: none;
}

.qty-box input {
  width: 40px;
  border: none;
  text-align: center;
}

.single-product-section{
  padding: 100px 0 50px;
}

.single-product-section .primary-heading{
  padding-bottom: 0;
}

.dark-btn {
  background: #000;
  color: #fff;
  border-radius: 30px;
  padding: 10px 30px;
  text-decoration: none;
}

.single-product-section small{
  color: #00000099;
  font-size: 20px;
  margin-bottom: 5px;
  display: block;
}

hr {
    /* margin-top: 1rem; */
    /* margin-bottom: 1rem; */
    border: 0;
    border-top: 1px solid #848484;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.category-card img {
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

/* Overlay */
.category-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 39%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-card:hover .category-overlay {
  opacity: 1;
}





.about-page-wrap-1 img{
  height: 400px;
}


.Creating_Memorable.about-us-full-section  {
    height: 415px;
}


.search-box form {
    width: 100%;
}
.what-we-do-carousel a{
	color: #000;
}
.service-page-section a{
	color: #000;
}
.category-list li {
    margin-bottom: 12px;
    border-bottom: 1px solid #848484;
}

/* bootstrap classes editing */

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {

    padding-right: 11px;
    padding-left: 11px;
}

.wrap-4-content{
  width: 80%;
}

.wrap-4-2-content {
  margin-left: 50px;
}


.wrap-4 .wp-block-heading {
	   font-size: 28px;
    font-weight: 700;
    line-height: 45px;
    color: var(--primary-color);
    padding: 10px 0;
}

/* ============================================================
   PRODUCT CARD — redesigned (.pc-*)
   ============================================================ */

.pc-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #f0f0f0;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.pc-card:hover {
	box-shadow: 0 12px 40px rgba(0,0,0,0.10);
	transform: translateY(-4px);
}

/* Image */
.pc-img-wrap {
	position: relative;
	overflow: hidden;
	background: #fff;
	border-bottom: 1px solid #f0f0f0;
}

.pc-img {
	width: 100%;
	height: 240px;
	object-fit: contain;
	object-position: center;
	display: block;
	padding: 16px;
	transition: transform 0.4s ease;
}

.pc-card:hover .pc-img {
	transform: scale(1.04);
}

.pc-img-link {
	display: block;
	border-bottom: none !important;
}

/* Category tag */
.pc-cat-tag {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(255,255,255,0.92);
	color: #555;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	padding: 3px 10px;
	border-radius: 20px;
	backdrop-filter: blur(4px);
	z-index: 2;
}

/* Hover overlay */
.pc-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.38);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 3;
}

.pc-card:hover .pc-overlay {
	opacity: 1;
}

.pc-action-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	color: #1a1a1a;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, transform 0.2s;
	transform: translateY(10px);
	text-decoration: none !important;
}

.pc-card:hover .pc-action-btn {
	transform: translateY(0);
}

.pc-action-btn:nth-child(2) {
	transition-delay: 0.05s;
}

.pc-action-btn:hover,
.pc-action-btn:focus {
	background: var(--primary-color);
	color: #fff;
}

.pc-cart-btn:hover {
	background: #1a1a1a !important;
	color: #fff !important;
}

/* Body */
.pc-body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

/* Color swatches */
.pc-swatches {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 9px;
}

.pc-swatch {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	display: inline-block;
	border: 1.5px solid rgba(0,0,0,0.12);
	flex-shrink: 0;
}

.pc-swatch-more {
	font-size: 10px;
	color: #888;
	font-weight: 600;
}

/* Title */
.pc-title {
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1.4;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.pc-title a {
	color: #1a1a1a !important;
	text-decoration: none;
	border-bottom: none !important;
	font-size: 14px !important;
	transition: color 0.2s;
}

.pc-title a:hover {
	color: var(--primary-color) !important;
}

/* Rating */
.pc-rating {
	display: flex;
	align-items: center;
	gap: 2px;
	margin-bottom: 12px;
	font-size: 12px;
	color: #FFC633;
}

.pc-rating-val {
	color: #888;
	font-size: 11px;
	margin-left: 4px;
}

/* Price */
.pc-price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 8px;
}
.pc-price-regular,
.pc-price-sale {
	font-size: 15px;
	font-weight: 700;
	color: var(--primary-color);
}
.pc-price-original {
	font-size: 12px;
	color: #aaa;
}

/* Footer */
.pc-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid #f0f0f0;
}

.pc-moq {
	font-size: 12px;
	color: #888;
	display: flex;
	align-items: center;
	gap: 5px;
}

.pc-moq i {
	color: var(--primary-color);
}

.pc-view-btn {
	background: var(--primary-color);
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 20px;
	text-decoration: none;
	border-bottom: none !important;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: background 0.2s;
}

.pc-view-btn:hover {
	background: #1480b0;
	color: #fff !important;
}

/* Per-card toast notification */
.pc-toast {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #2e7d32;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 8px 14px;
	display: flex;
	align-items: center;
	gap: 6px;
	z-index: 10;
}

/* Shop page */
.shop-page-wrap {
	padding: 50px 0 80px;
}

.shop-header {
	margin-bottom: 25px;
}

/* ============================================
   SERVICE PAGE — Redesigned
   ============================================ */

/* Shared eyebrow label */
.svc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(26, 151, 206, 0.1);
	color: #1A97CE;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 16px;
}
.svc-eyebrow i {
	font-size: 11px;
}

/* Shared section heading */
.svc-section-heading {
	font-size: 34px;
	font-weight: 700;
	color: #1B1B1B;
	line-height: 1.2;
	margin-bottom: 14px;
}
.svc-section-sub {
	font-size: 16px;
	color: #666;
	line-height: 1.7;
	margin: 0;
}

/* ── WHY CHOOSE ── */
.svc-why-section {
	padding: 90px 0;
	background: #fff;
}
.svc-main-heading {
	font-size: 38px;
	font-weight: 700;
	color: #1B1B1B;
	line-height: 1.2;
	margin-bottom: 18px;
}
.svc-main-desc {
	font-size: 16px;
	color: #555;
	line-height: 1.8;
	margin-bottom: 26px;
}
.svc-check-list {
	list-style: none;
	padding: 0;
	margin: 0 0 10px;
}
.svc-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15px;
	color: #333;
	margin-bottom: 13px;
	line-height: 1.5;
}
.svc-check-icon {
	width: 24px;
	height: 24px;
	min-width: 24px;
	background: #1A97CE;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 10px;
	margin-top: 1px;
}
.svc-primary-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #1A97CE;
	color: #fff !important;
	padding: 13px 28px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: background 0.3s, transform 0.2s;
}
.svc-primary-btn:hover {
	background: #1580b0;
	transform: translateY(-2px);
}

/* Image wrap */
.svc-img-wrap {
	position: relative;
	display: inline-block;
	width: 100%;
}
.svc-why-img {
	border-radius: 20px;
	width: 100%;
	height: 460px;
	object-fit: cover;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.svc-img-badge {
	position: absolute;
	bottom: 28px;
	left: -20px;
	background: #fff;
	border-radius: 14px;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.svc-img-badge i {
	font-size: 28px;
	color: #1A97CE;
}
.svc-img-badge strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #1B1B1B;
}
.svc-img-badge span {
	font-size: 12px;
	color: #888;
}

/* ── PROCESS STEPS — Horizontal flow timeline ── */
.svc-process-section {
	padding: 90px 0;
	background: #f8fafc;
}

/* Outer wrapper keeps horizontal scroll on small screens */
.svc-flow-wrap {
	overflow-x: auto;
	padding-bottom: 8px;
}

/* Flow row */
.svc-flow {
	display: flex;
	align-items: flex-start;
	gap: 0;
	min-width: 600px;
}

/* Each step item */
.svc-flow-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 12px;
}

/* Node = circle badge + horizontal line */
.svc-flow-node {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 28px;
}

.svc-flow-badge {
	width: 60px;
	height: 60px;
	min-width: 60px;
	background: #1A97CE;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 800;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	box-shadow: 0 0 0 8px rgba(26, 151, 206, 0.12), 0 6px 20px rgba(26, 151, 206, 0.3);
	position: relative;
	z-index: 1;
}

/* Connecting dashed line between badges */
.svc-flow-line {
	flex: 1;
	height: 2px;
	background: repeating-linear-gradient(
		to right,
		#1A97CE 0px,
		#1A97CE 8px,
		transparent 8px,
		transparent 16px
	);
	margin: 0 4px;
}

/* Card below the node */
.svc-flow-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
	border: 1px solid #eef2f6;
	transition: transform 0.3s, box-shadow 0.3s;
	width: 100%;
}
.svc-flow-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 40px rgba(26, 151, 206, 0.13);
}

.svc-flow-img {
	width: 100%;
	height: 180px;
	overflow: hidden;
}
.svc-flow-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.svc-flow-card:hover .svc-flow-img img {
	transform: scale(1.07);
}

.svc-flow-title {
	font-size: 15px;
	font-weight: 700;
	color: #1B1B1B;
	margin: 16px 16px 8px;
	line-height: 1.3;
}

.svc-flow-desc {
	font-size: 13px;
	color: #666;
	line-height: 1.65;
	margin: 0 16px 18px;
}

/* ── APPLICATIONS ── */
.svc-apps-section {
	padding: 90px 0;
	background: #fff;
}
.svc-app-card {
	background: #f8fafc;
	border-radius: 18px;
	padding: 32px 24px;
	height: 100%;
	text-align: center;
	border: 1px solid #eef2f6;
	transition: all 0.3s;
}
.svc-app-card:hover {
	background: #fff;
	border-color: #1A97CE;
	box-shadow: 0 10px 40px rgba(26, 151, 206, 0.1);
	transform: translateY(-4px);
}
.svc-app-icon-wrap {
	width: 72px;
	height: 72px;
	background: rgba(26, 151, 206, 0.1);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	transition: background 0.3s;
}
.svc-app-card:hover .svc-app-icon-wrap {
	background: #1A97CE;
}
.svc-app-icon-wrap img {
	width: 38px;
	height: 38px;
	object-fit: contain;
	transition: filter 0.3s;
}
.svc-app-card:hover .svc-app-icon-wrap img {
	filter: brightness(10);
}
.svc-app-icon-fa i {
	font-size: 28px;
	color: #1A97CE;
	transition: color 0.3s;
}
.svc-app-card:hover .svc-app-icon-fa i {
	color: #fff;
}
.svc-app-title {
	font-size: 16px;
	font-weight: 700;
	color: #1B1B1B;
	margin-bottom: 10px;
}
.svc-app-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.65;
	margin: 0;
}

/* ── EDITOR CONTENT ── */
.svc-content-section {
	padding: 60px 0;
	background: #fff;
}
.svc-content-section p,
.svc-content-section li {
	font-size: 16px;
	color: #444;
	line-height: 1.8;
}

/* ── CTA SECTION ── */
.svc-cta-section {
	padding: 90px 0;
	background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
	position: relative;
	overflow: hidden;
}
.svc-cta-section::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(26, 151, 206, 0.08);
	pointer-events: none;
}
.svc-cta-inner {
	position: relative;
	z-index: 1;
}
.svc-cta-icon {
	width: 72px;
	height: 72px;
	background: rgba(26, 151, 206, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
}
.svc-cta-icon i {
	font-size: 28px;
	color: #1A97CE;
}
.svc-cta-section h2 {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 14px;
}
.svc-cta-section p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.7;
	margin-bottom: 34px;
}
.svc-cta-btns {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
.svc-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #1A97CE;
	color: #fff !important;
	padding: 14px 30px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: background 0.3s, transform 0.2s;
}
.svc-btn-primary:hover {
	background: #1580b0;
	transform: translateY(-2px);
}
.svc-btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: #fff !important;
	border: 2px solid rgba(255, 255, 255, 0.4);
	padding: 14px 30px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s;
}
.svc-btn-outline:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

/* =============================================
   SHOP PAGE — Product Archive
   ============================================= */

/* Filter bar */
.shop-filter-bar {
	background: #f8fafc;
	border-bottom: 1px solid #e8ecf0;
	padding: 14px 0;
}

.shop-filter-tabs {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.shop-filter-tab {
	display: inline-flex;
	align-items: center;
	padding: 7px 18px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 500;
	color: #555;
	text-decoration: none !important;
	border: 1.5px solid #e0e0e0;
	background: #fff;
	transition: all 0.2s ease;
	font-family: "Poppins", sans-serif;
	white-space: nowrap;
}

.shop-filter-tab:hover,
.shop-filter-tab.active {
	background: #1A97CE;
	border-color: #1A97CE;
	color: #fff !important;
}

.shop-results-count {
	font-size: 13px;
	color: #888;
	font-family: "Poppins", sans-serif;
}

.shop-results-count strong {
	color: #333;
}

/* Shop main section (override old duplicate) */
.shop-page-wrap {
	padding: 40px 0 80px;
}

/* Sidebar */
.shop-sidebar {
	position: sticky;
	top: 60px;
	padding-right: 12px;
}

.shop-sidebar-title {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #333;
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid #1A97CE;
	font-family: "Poppins", sans-serif;
}

.shop-sidebar-title i {
	color: #1A97CE;
	margin-right: 4px;
}

.shop-cat-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.shop-cat-list li {
	border-bottom: 1px solid #f0f0f0;
}

.shop-cat-list li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9px 8px;
	color: #555;
	text-decoration: none !important;
	font-size: 13px;
	font-family: "Poppins", sans-serif;
	transition: all 0.2s ease;
	border-radius: 6px;
}

.shop-cat-list li a span {
	font-size: 11px;
	background: #f0f0f0;
	color: #888;
	padding: 2px 7px;
	border-radius: 20px;
	min-width: 24px;
	text-align: center;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.shop-cat-list li a:hover,
.shop-cat-list li a.active {
	color: #1A97CE;
	background: rgba(26, 151, 206, 0.06);
	padding-left: 14px;
}

.shop-cat-list li a:hover span,
.shop-cat-list li a.active span {
	background: #1A97CE;
	color: #fff;
}

/* Pagination */
.shop-pagination {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

.shop-pagination .nav-links {
	display: flex;
	align-items: center;
	gap: 6px;
}

.shop-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 8px;
	font-size: 14px;
	font-family: "Poppins", sans-serif;
	text-decoration: none !important;
	color: #555;
	background: #f8fafc;
	border: 1.5px solid #e8ecf0;
	transition: all 0.2s ease;
}

.shop-pagination .page-numbers.current,
.shop-pagination .page-numbers:hover {
	background: #1A97CE;
	border-color: #1A97CE;
	color: #fff !important;
}

.shop-pagination .page-numbers.dots {
	background: none;
	border: none;
}

/* Empty state */
.shop-empty {
	padding: 60px 20px;
}

.shop-empty-icon {
	font-size: 64px;
	color: #ddd;
	margin-bottom: 20px;
}

.shop-empty h4 {
	font-size: 22px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
	font-family: "Poppins", sans-serif;
}

.shop-empty p {
	color: #888;
	margin-bottom: 24px;
	font-family: "Poppins", sans-serif;
}

/* ==========================================================
   CORPORATE SECTION — REDESIGN
   ========================================================== */

.corp-section {
	padding: 90px 0;
	background: #f8fafc;
}

.corp-eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #1A97CE;
	background: rgba(26, 151, 206, 0.1);
	padding: 5px 14px;
	border-radius: 50px;
	margin-bottom: 14px;
}

.corp-heading {
	font-size: clamp(1.7rem, 3vw, 2.3rem);
	font-weight: 700;
	color: #111827;
	font-family: "Poppins", sans-serif;
	line-height: 1.25;
	margin-bottom: 16px;
}

.corp-body p {
	font-size: 15px;
	color: #5a6677;
	line-height: 1.8;
	margin-bottom: 10px;
}

.corp-checklist {
	list-style: none;
	padding: 0;
	margin: 24px 0 32px;
}

.corp-checklist li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: #374151;
	font-family: "Poppins", sans-serif;
	margin-bottom: 13px;
}

.corp-check-icon {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(26, 151, 206, 0.12);
	color: #1A97CE;
	font-size: 11px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.corp-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #0B4E69;
	color: #fff !important;
	padding: 13px 26px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none !important;
	font-family: "Poppins", sans-serif;
	transition: all 0.25s ease;
}

.corp-cta:hover {
	background: #1A97CE;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(26, 151, 206, 0.35);
}

/* Image side */
.corp-img-wrap {
	position: relative;
	padding: 16px 0 16px 16px;
}

.corp-img-accent {
	position: absolute;
	top: 0;
	left: 0;
	width: 75%;
	height: 75%;
	background: linear-gradient(135deg, #1A97CE 0%, #0B4E69 100%);
	border-radius: 20px;
	opacity: 0.12;
	z-index: 0;
}

.corp-img {
	position: relative;
	z-index: 1;
	width: 100%;
	border-radius: 18px;
	box-shadow: 0 20px 56px rgba(0, 0, 0, 0.13);
	display: block;
}

@media (max-width: 767px) {
	.corp-section {
		padding: 60px 0;
	}

	.corp-img-wrap {
		padding: 12px 0 0 12px;
	}
}

/* ====================================================
   AUTH PAGES — Login & Register
   ==================================================== */
.auth-section {
	min-height: calc(100vh - 140px);
	background: #f4f5f7;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
}
.auth-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 8px 40px rgba(0,0,0,0.10);
	padding: 48px 44px;
	width: 100%;
	max-width: 460px;
}
.auth-card--wide {
	max-width: 620px;
}

/* Logo */
.auth-logo {
	text-align: center;
	margin-bottom: 28px;
}
.auth-logo img {
	height: 48px;
	width: auto;
}

/* Heading */
.auth-title {
	font-size: 26px;
	font-weight: 700;
	color: #1a1a1a;
	text-align: center;
	margin-bottom: 6px !important;
	font-family: 'Poppins', sans-serif;
}
.auth-subtitle {
	font-size: 14px;
	color: #6b7280;
	text-align: center;
	margin-bottom: 28px !important;
	font-family: 'Poppins', sans-serif;
}

/* Alert */
.auth-alert {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 13.5px;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 20px;
}
.auth-alert--error {
	background: #fef2f2;
	color: #dc2626;
	border: 1px solid #fecaca;
}
.auth-alert--success {
	background: #f0fdf4;
	color: #16a34a;
	border: 1px solid #bbf7d0;
}

/* Form rows */
.auth-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.auth-field {
	margin-bottom: 18px;
}
.auth-field label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 7px;
	font-family: 'Poppins', sans-serif;
}
.auth-field label span {
	color: var(--primary-color);
}
.auth-forgot {
	font-size: 12.5px;
	font-weight: 500;
	color: var(--primary-color);
	text-decoration: none;
}
.auth-forgot:hover { text-decoration: underline; }

/* Input */
.auth-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
}
.auth-input-wrap > i:first-child {
	position: absolute;
	left: 14px;
	color: #9ca3af;
	font-size: 14px;
	pointer-events: none;
}
.auth-input-wrap input {
	width: 100%;
	height: 48px;
	border: 1.5px solid #e5e7eb;
	border-radius: 10px;
	padding: 0 44px 0 40px;
	font-size: 14px;
	color: #1a1a1a;
	font-family: 'Poppins', sans-serif;
	background: #fff;
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none;
}
.auth-input-wrap input:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 0,120,180), 0.12);
}
.auth-input-wrap input::placeholder { color: #d1d5db; }

/* Eye toggle */
.auth-eye {
	position: absolute;
	right: 12px;
	background: none;
	border: none;
	cursor: pointer;
	color: #9ca3af;
	font-size: 14px;
	padding: 4px;
	transition: color 0.2s;
}
.auth-eye:hover { color: #374151; }

/* Remember / Terms */
.auth-remember,
.auth-terms {
	margin-bottom: 20px;
}
.auth-remember label,
.auth-terms label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #374151;
	font-family: 'Poppins', sans-serif;
	cursor: pointer;
}
.auth-terms label a {
	color: var(--primary-color);
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Submit button */
.auth-btn {
	width: 100%;
	height: 50px;
	background: var(--primary-color);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: opacity 0.2s, transform 0.2s;
	margin-bottom: 24px;
}
.auth-btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

/* Switch link */
.auth-switch {
	text-align: center;
	font-size: 13.5px;
	color: #6b7280;
	font-family: 'Poppins', sans-serif;
}
.auth-switch a {
	color: var(--primary-color);
	font-weight: 600;
	text-decoration: none;
	margin-left: 4px;
}
.auth-switch a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 575px) {
	.auth-card { padding: 32px 24px; }
	.auth-row  { grid-template-columns: 1fr; gap: 0; }
}

/* ========================================
   AUTO LOAD MORE — Sentinel Spinner
   ======================================== */
#shop-loadmore-sentinel {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 0 10px;
	width: 100%;
}
.shop-loadmore-spinner {
	opacity: 0;
	transition: opacity 0.3s;
	font-size: 24px;
	color: var(--primary-color);
}
#shop-loadmore-sentinel.is-loading .shop-loadmore-spinner {
	opacity: 1;
}
