
html,
body {
  height: 100%
}

body {
  font: normal 300 1.4rem/1.86 "Poppins", sans-serif;
  color: #666;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden
}


.vs-topbar-wrapper{
    background:#2e3192;
    padding:7px 25px;
    font-size:14px;
}

.vs-topbar-address{
    display:flex;
    align-items:center;
    gap:10px;
}

.vs-topbar-address i{
    font-size:16px;
    flex-shrink:0;
}

.vs-topbar-right{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:25px;
}

.vs-topbar-contact{
    display:flex;
    align-items:center;
    gap:20px;
}

.vs-topbar-contact a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.vs-topbar-contact a:hover{
    color:#f4f4f4;
}

.vs-topbar-contact i{
    margin-right:6px;
}

.vs-topbar-social{
    display:flex;
    gap:10px;
}

.vs-topbar-social a{
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,0.25);
    border-radius:50%;
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.vs-topbar-social a:hover{
    background:#fff;
    color:#2e3192;
}

/* Hide on Mobile & Tablet */
@media (max-width: 991px){
    .vs-topbar-wrapper{
        display:none;
    }
}


:root{
    --gt-primary:#2e3192;
    --gt-secondary:#ff0202;
}

/* ==========================
   Navbar
========================== */

.gt-navbar-wrapper{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.gt-navbar{
    height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
}

.gt-logo-area img{
    max-height:65px;
}

/* ==========================
   Center Menu
========================== */

.gt-nav-menu{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
}

.gt-menu-list{
    display:flex;
    align-items:center;
    gap:40px;
    margin:0;
    padding:0;
    list-style:none;
}

.gt-menu-list li{
    position:relative;
}

.gt-menu-list li a{
    text-decoration:none;
    color:var(--gt-primary);
    font-size:16px;
    font-weight:600;
    transition:.35s;
    display:flex;
    align-items:center;
    gap:7px;
    padding:10px 0;
}

.gt-menu-list li a:hover{
    color:var(--gt-secondary);
}

/* Underline Animation */

.gt-menu-list > li > a::after{
    content:"";
    position:absolute;
    bottom:-6px;
    left:0;
    width:0;
    height:3px;
    background:var(--gt-secondary);
    transition:.4s;
    border-radius:50px;
}

.gt-menu-list > li:hover > a::after{
    width:100%;
}

/* ==========================
   Dropdown
========================== */

.gt-dropdown-icon{
    font-size:11px;
    transition:.4s;
}

.gt-dropdown:hover .gt-dropdown-icon{
    transform:rotate(180deg);
}

.gt-dropdown-menu{
    position:absolute;
    top:120%;
    left:0;
    min-width:280px;
    background:#fff;
    border-radius:12px;
    padding:12px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);

    opacity:0;
    visibility:hidden;
    transform:translateY(20px);

    transition:.4s ease;
}

.gt-dropdown:hover .gt-dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.gt-dropdown-menu li{
    margin:0;
}

.gt-dropdown-menu li a{
    padding:6px 15px;
    border-radius:8px;
    display:flex;
    align-items:center;
    gap:12px;
}

.gt-dropdown-menu li a i{
    color:var(--gt-secondary);
}

.gt-dropdown-menu li a:hover{
    background:#f5f7ff;
    padding-left:22px;
}

/* ==========================
   Quote Button
========================== */

.gt-quote-btn{
    background:var(--gt-primary);
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
    display:inline-block;
}

.gt-quote-btn:hover{
    background:var(--gt-secondary);
    color:#fff;
    transform:translateY(-3px);
}

/* ==========================
   Mobile Toggle
========================== */

.gt-mobile-toggle{
    display:none;
    border:none;
    background:none;
    font-size:28px;
    color:var(--gt-primary);
}

/* ==========================
   Mobile
========================== */

@media(max-width:576px){

    .gt-navbar{
        height:80px;
    }

    .gt-mobile-toggle{
        display:block;
    }

    .gt-nav-menu{
        position:fixed;
        top:80px;
        left:-100%;
        width:300px;
        height:100vh;
        background:#fff;
        transform:none;
        transition:.4s;
        box-shadow:0 0 25px rgba(0,0,0,.15);
        overflow-y:auto;
    }

    .gt-nav-menu.active{
        left:0;
    }

    .gt-menu-list{
        flex-direction:column;
        gap:0;
        align-items:flex-start;
        padding:20px;
    }

    .gt-menu-list li{
        width:100%;
    }

    .gt-menu-list li a{
        width:100%;
        padding:15px;
        border-bottom:1px solid #eee;
    }

    .gt-dropdown-menu{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
        box-shadow:none;
        padding-left:15px;
        min-width:100%;
    }

    .gt-dropdown.active .gt-dropdown-menu{
        display:block;
    }

    .gt-quote-area{
        display:none;
    }
}

@media (max-width: 576px) {

    .gt-navbar {
        height: 75px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .gt-logo-area {
        flex: 1;
    }

    .gt-logo-area img {
        max-height: 50px;
        width: auto;
    }

    .gt-mobile-toggle {
        display: block;
        font-size: 28px;
        color: var(--gt-primary);
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .gt-nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 300px;
        height: calc(100vh - 75px);
        background: #fff;
        transition: left 0.4s ease;
        overflow-y: auto;
        z-index: 9999;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .gt-nav-menu.active {
        left: 0;
    }

    .gt-menu-list {
        flex-direction: column;
        width: 100%;
        padding: 15px;
    }

    .gt-menu-list li {
        width: 100%;
    }

    .gt-menu-list li a {
        padding: 15px;
        display: flex;
        
        align-items: center;
    }

    .gt-quote-area {
        display: none;
    }
}
@media (max-width: 991px) {

    .gt-dropdown-menu {
        position: static;
        display: block;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: #f8f9ff;
        border-radius: 10px;

        max-height: 0;
        overflow: hidden;

        transition:
            max-height 0.45s ease,
            padding 0.35s ease;

        padding: 0 10px;
        margin-left: 10px;
    }

    .gt-dropdown.active .gt-dropdown-menu {
        max-height: 500px;
        padding: 8px 10px;
    }

    .gt-dropdown-menu li a {
        font-size: 14px;
        padding: 12px;
        border-bottom: 1px solid #ececec;
    }

    .gt-dropdown-menu li:last-child a {
        border-bottom: none;
    }

    .gt-dropdown-icon {
        transition: transform .4s ease;
    }

    .gt-dropdown.active .gt-dropdown-icon {
        transform: rotate(180deg);
    }
}


.premium-showcase-section{
    padding:40px 0;
    background:linear-gradient(135deg,#f7faff,#ffffff);
    overflow:hidden;
}

.premium-content-box{
    animation:slideLeft 1s ease;
}

.premium-tag{
    display:inline-block;
    background:#eef2ff;
    color:#2e3192;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:10px;
}

.premium-heading{
    font-size:38px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:14px;
}

.premium-text{
    font-size:16px;
    line-height:1.8;
    color:#666;
    margin-bottom:16px;
}

.premium-btn{
    display:inline-flex;
    align-items:center;
    padding:14px 35px;
    background:#2e3192;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:.4s;
    font-weight:600;
}

.premium-btn:hover{
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(46,49,146,.3);
}

/* Slider */

.premiumSwiper{
    overflow:hidden;
    border-radius:25px;
}

.premiumSwiper .swiper-slide{
    overflow:hidden;
    border-radius:25px;
}

.premiumSwiper img{
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:25px;
    transition:all .8s ease;
}

.premiumSwiper .swiper-slide:hover img{
    transform:scale(1.08);
}

/* Animations */

@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* Tablet */

@media(max-width:991px){

    .premium-heading{
        font-size:38px;
        text-align:center;
    }

    .premium-content-box{
        text-align:center;
    }

    .premiumSwiper img{
        height:450px;
    }
}

/* Mobile */

@media(max-width:767px){

    .premium-showcase-section{
        padding:70px 0;
    }

    .premium-heading{
        font-size:30px;
    }

    .premium-text{
        font-size:15px;
    }

    .premiumSwiper img{
        height:280px;
    }
}


html {
    scroll-behavior: smooth !important;
}


    :root {
      --gt-primary: #2e3192;
      --gt-secondary: #ff0202;
      --gt-light: #f5f6ff;
      --gt-dark: #1a1a2e;
      --gt-card-bg: #ffffff;
      --gt-soft-bg: #f0f1fa;
      --gt-shadow-sm: 0 15px 30px rgba(0, 0, 0, 0.05);
      --gt-shadow-hover: 0 28px 45px rgba(46, 49, 146, 0.18), 0 0 0 2px rgba(255, 2, 2, 0.25);
      --gt-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

  .cate-section{
       background: linear-gradient(160deg, #f3f4fc 0%, #e8eaf6 100%);
      font-family: 'Poppins', Roboto, system-ui, -apple-system, sans-serif;
      padding: 3rem 1rem;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
  }

    /* unique main container */
    .product-section-unique {
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
    }

    /* unique header styling */
    .section-header-unique {
      text-align: center;
      margin-bottom: 2rem;
      animation: headerSlideIn 0.85s ease-out;
    }

    @keyframes headerSlideIn {
      0% { opacity: 0; transform: translateY(-30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    .header-tag-unique {
      display: inline-block;
      background: rgba(46, 49, 146, 0.1);
      color: var(--gt-primary);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 1.8px;
      padding: 0.5rem 1.8rem;
      border-radius: 40px;
      margin-bottom: 0.9rem;
      text-transform: uppercase;
      border: 1px solid rgba(46, 49, 146, 0.25);
      backdrop-filter: blur(4px);
    }

    .section-header-unique h2 {
      font-size: 2.9rem;
      font-weight: 700;
      color: var(--gt-primary);
      margin-bottom: 0.4rem;
      letter-spacing: -0.6px;
      text-shadow: 0 2px 5px rgba(46,49,146,0.08);
    }

    .header-divider-unique {
      width: 100px;
      height: 5px;
      background: var(--gt-secondary);
      margin: 0.9rem auto 1.2rem;
      border-radius: 10px;
      transition: width 0.3s;
    }

    .section-header-unique:hover .header-divider-unique {
      width: 130px;
    }

    .section-header-unique .subtitle-unique {
      color: #3e3e5c;
      font-size: 16px;
      max-width: 620px;
      margin: 0 auto;
      font-weight: 400;
      opacity: 0.9;
    }

    /* grid uses bootstrap row but custom cards */
    .category-grid-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
    }

    /* unique card class */
    .category-card-unique {
      background: var(--gt-card-bg);
      border-radius: 34px;
      padding: 0.8rem 1.5rem 0.8rem;
      box-shadow: var(--gt-shadow-sm);
      transition: var(--gt-transition);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.7);
      position: relative;
      overflow: hidden;
      animation: cardFloatIn 0.75s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
      opacity: 0;
      transform: translateY(40px);
      backdrop-filter: blur(2px);
    }

    /* staggered animation delays */
    .category-card-unique:nth-child(1) { animation-delay: 0.08s; }
    .category-card-unique:nth-child(2) { animation-delay: 0.2s; }
    .category-card-unique:nth-child(3) { animation-delay: 0.32s; }
    .category-card-unique:nth-child(4) { animation-delay: 0.44s; }
    .category-card-unique:nth-child(5) { animation-delay: 0.56s; }
    .category-card-unique:nth-child(6) { animation-delay: 0.68s; }

    @keyframes cardFloatIn {
      0% { opacity: 0; transform: translateY(45px) scale(0.94); }
      100% { opacity: 1; transform: translateY(0) scale(1); }
    }

    /* image wrapper unique */
    .img-frame-unique {
      width: 100%;
      aspect-ratio: 1 / 0.95;
      border-radius: 26px;
      background: linear-gradient(145deg, #f4f5ff, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      overflow: hidden;
      position: relative;
      box-shadow: 0 12px 22px rgba(46, 49, 146, 0.1);
      transition: var(--gt-transition);
    }

    .img-frame-unique::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 30%, rgba(255,2,2,0.06) 0%, transparent 75%);
      opacity: 0;
      transition: opacity 0.45s ease;
      z-index: 2;
      border-radius: 26px;
    }

    .category-card-unique:hover .img-frame-unique::before {
      opacity: 1;
    }

    /* Anchor tag styling for image */
    .image-link-unique {
      display: block;
      width: 100%;
      height: 100%;
      position: relative;
      z-index: 3;
      text-decoration: none;
    }

    .product-image-unique {
      width: 80%;
      height: 80%;
      object-fit: contain;
      transition: transform 0.5s ease, filter 0.35s;
      filter: drop-shadow(0 10px 12px rgba(0,0,0,0.12));
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border-radius:26px;
    }

    .category-card-unique:hover .product-image-unique {
      transform: translate(-50%, -50%) scale(1.09) rotate(1.5deg);
      filter: drop-shadow(0 16px 18px rgba(46, 49, 146, 0.4));
    }

    /* card hover lift */
    .category-card-unique:hover {
      transform: translateY(-14px);
      box-shadow: var(--gt-shadow-hover);
      border-color: rgba(255, 2, 2, 0.3);
      background: #ffffff;
    }

    /* Anchor tag for heading */
    .heading-link-unique {
      text-decoration: none;
      display: inline-block;
      position: relative;
      transition: all 0.3s ease;
    }

    .product-title-unique {
      font-size: 24px;
      font-weight: 700;
      color: var(--gt-primary);
      margin-bottom: 0.35rem;
      letter-spacing: -0.2px;
      transition: color 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .category-card-unique:hover .product-title-unique {
      color: var(--gt-secondary);
    }

    /* Arrow indicator styling */
    .arrow-indicator-unique {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      background: rgba(46, 49, 146, 0.1);
      border-radius: 50%;
      font-size: 0.9rem;
      color: var(--gt-primary);
      transition: all 0.35s ease;
      margin-left: 0.3rem;
      opacity: 0.7;
      transform: translateX(0);
    }

    .category-card-unique:hover .arrow-indicator-unique {
      background: var(--gt-secondary);
      color: white;
      opacity: 1;
      transform: translateX(5px);
      box-shadow: 0 4px 12px rgba(255, 2, 2, 0.4);
    }

    /* decorative accent line */
    .accent-line-unique {
      width: 45px;
      height: 4px;
      background: var(--gt-secondary);
      margin: 0.4rem auto 0.9rem;
      border-radius: 5px;
      transition: width 0.35s ease, background 0.3s;
    }

    .category-card-unique:hover .accent-line-unique {
      width: 75px;
      background: var(--gt-primary);
    }

    /* category badge */
    .badge-category-unique {
      font-size: 14px;
      font-weight: 700;
      background: rgba(46, 49, 146, 0.08);
      color: var(--gt-primary);
      padding: 0.4rem 1.4rem;
      border-radius: 30px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      border: 1px solid transparent;
      margin-top: 0.2rem;
    }

    .category-card-unique:hover .badge-category-unique {
      background: var(--gt-primary);
      color: white;
      border-color: var(--gt-primary);
      box-shadow: 0 6px 12px rgba(46,49,146,0.3);
    }

    /* View category link at bottom */
    .view-category-link-unique {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 0.8rem;
      padding: 0.5rem 1.4rem;
      background: transparent;
      color: var(--gt-primary);
      border: 2px solid rgba(46, 49, 146, 0.3);
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.35s ease;
      opacity: 0;
      transform: translateY(10px);
      pointer-events: none;
    }

    .category-card-unique:hover .view-category-link-unique {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
      background: var(--gt-primary);
      color: white;
      border-color: var(--gt-primary);
      box-shadow: 0 8px 20px rgba(46, 49, 146, 0.3);
    }

    .view-category-link-unique .arrow-icon-unique {
      transition: transform 0.3s ease;
    }

    .view-category-link-unique:hover .arrow-icon-unique {
      transform: translateX(4px);
    }

    /* enhanced hover glow effect */
    .category-card-unique::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,2,2,0.04) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.5s;
      pointer-events: none;
    }

    .category-card-unique:hover::after {
      opacity: 1;
    }

    /* responsive column control */
    .col-category-unique {
      flex: 0 0 auto;
      width: 100%;
      max-width: 100%;
      padding: 0;
    }

    @media (min-width: 576px) {
      .col-category-unique {
        width: calc(50% - 1rem);
      }
    }

    @media (min-width: 992px) {
      .col-category-unique {
        width: calc(33.3333% - 1.34rem);
      }
    }

    @media (min-width: 1200px) {
      .col-category-unique {
        width: calc(33.3333% - 1.5rem);
      }
    }

    @media (max-width: 768px) {
      .section-header-unique h2 {
        font-size: 2.3rem;
      }
      .category-card-unique {
        border-radius: 28px;
        padding: 1.5rem 1.2rem 1.7rem;
      }
      .view-category-link-unique {
        opacity: 0.9;
        transform: translateY(0);
        pointer-events: auto;
        background: rgba(46, 49, 146, 0.05);
      }
    }


@media only screen and (max-width: 576px) {
    
     .premium-showcase-section {
    padding-top: 111px;
  }
    .premium-heading {
    font-size: 26px;
    margin-bottom:10px;
  }
  .premium-tag {
 
  margin-bottom: 5px;
  }
}