﻿ *{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
 body{

 }
 /*Navbar*/
 .navbar {
  color: white;
  position: fixed;
  width: 100%;
  z-index: 1000;
  background-color:#fff;
}

.containerr {
  max-width: 1200px;
  width:100%;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

/* Logo */
.logo img {
    width:138px;
    height:auto;
}

/* Menu Links */
.nav-menu .bar {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-bottom:0;
}

.nav-menu a {
  color: #111;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: rgb(200, 155, 60);
}
.dropdown-menu{
    background:#111;

}
.dropdown-item:hover{
    background-color:#625522;
}


/* Button */
.nav-menu .btn-primary {
  background: rgb(212, 152, 25);
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.nav-menu .btn-primary:hover {
  background: #fff;
  color:#222;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: black;
  transition: 0.3s;
}
.rightside{
    display:flex;
    column-gap:30px;
    align-items:center;
}
.rightside a{
    font-weight:600;
}

/* Responsive Styles */
@media (max-width: 768px) {
    
    .container{
        height:50px;
    }
  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    width: 50%;
    height:50vh;
    padding: 20px;
    background-color:black;
    border-radius:15px;
    transform: translateX(100%); 
    transition: transform 350ms cubic-bezier(.2,.8,.2,1);
    will-change: transform;
    z-index: 999; 
  }
  .nav-menu .active{
      color:#ffd633!important;
  }
  .nav-menu a{
      color:white;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
  }
 

  .nav-menu.show {
    transform: translateX(0); 
  }

  .menu-toggle {
    display: flex;
  }

   .rightside{
    flex-direction: column;
    justify-content:center;
    align-items:center;
    gap: 15px; 
}
   .btn-primary {
  background: #fff;
  color:black!important;
}
  .rightside .bar{
     display:flex;
     flex-direction:column;
     justify-content:center;
     align-items:flex-start;
   }
 }  
@media (max-width: 991.98px) {

  .navbar-nav .dropdown-menu {
    position: static;      /* keeps it inside menu */
    width: 100%;
    margin-top: 0;
    box-shadow: none;
    border: 0;
  }

  .navbar-nav .dropdown-item {
    padding: 10px 20px;
  }

  .navbar-nav .dropdown-menu .dropdown-item {
    padding-left: 30px;
  }
}

/*Hero Section*/
.swiper {
   width: 100%;
   height: 100vh;
 }
.swiper-slide img {
   width: 100%;
   height: 100%;
   object-fit: cover;
  }  
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 5%; /* Adjust distance from left */
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
}
.swiper-button-next, .swiper-button-prev {
    color:#ecc701;
}

.sli1 {
  position: absolute;
  top: 50%;
  right: 5%; /* Adjust distance from left */
  transform: translateY(-50%);
  text-align: right;
  color: #fff;
}
/* Heading and paragraph styling */
.carousel-caption h1 {
  font-size: 4rem;
  font-family:"Inter", serif;
  margin-bottom: 10px;
  font-weight:600;
}

.carousel-caption p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* Shop Now button */
.btn-shop {
  display: inline-block;
  padding: 10px 25px;
  background-color: #43afb2; 
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-shop:hover {
  background-color: #ff3b2f;
}

/*Category section*/
.categories{
    padding:70px 0;
    background:#fff;
}

.section-heading{
    text-align:center;
    margin-bottom:40px;
}

.section-heading h2{
    font-size:40px;
    color:#0c2145;
    font-weight:600;
    margin-bottom:50px;
}

.section-heading p{
    color:#777;
}

.category-list{
    display:flex;
    gap:25px;
}

.category-card{
    flex:1;
    display:flex;
    align-items:center;
    gap:18px;
    padding:18px 15px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:16px;
    transition:.3s;
    cursor:pointer;
}

.category-card:hover{
    transform:translateY(-6px);
    border-color:#d4af37;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.category-card img{
    width:100px;
    height:100px;
    object-fit:contain;
    flex-shrink:0;
}

.category-card h3{
    font-size:20px;
    color:#0c2145;
    margin-bottom:6px;
}

.category-card p{
    font-size:14px;
    color:#666;
    line-height:1.3;
    margin-bottom:0;
}

@media(max-width:992px){

.category-list{
    flex-direction:column;
}

}

/*How It works*/
.process-section{
    padding:40px 0;
    background:#061c3aed;
}

.section-heading{
    text-align:center;
    margin-bottom:40px;
}

.section-heading span:first-child{
    display:inline-block;
    color:#c89b3c;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:5px;
}

.process-section h2{
   font-size: 42px;
  font-weight: 600;
  color: #fff;
}

.section-heading h2 span{
    color:#c89b3c;
}

.section-heading p{
    color:#666;
    font-size:18px;
}

.process-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-top:90px;
}

.process-item{
    width:260px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:50px 10px 10px;
    text-align:center;
    position:relative;
    transition:.35s;
}

.process-item:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.step-number{
    position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ecc70138;
  color: #cbab00;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box{
    width:100px;
    height:100px;
    margin:auto;
    border-radius:50%;
    background:#0b2954;
    display:flex;
    align-items:center;
    justify-content:center;
    border:3px dashed #d4af37;
}

.icon-box i{
    font-size:42px;
    color:#d4af37;
}

.process-item h3{
    margin: 25px 0 12px;
  color: #0b2954;
  font-size: 22px;
  font-family: poppins;
  font-weight: 500;
}

.line{
    width:70px;
    height:3px;
    background:#d4af37;
    margin:0 auto 18px;
    border-radius:10px;
}

.process-item p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

.arrow{
    font-size:40px;
    color:#d4af37;
}

@media(max-width:1200px){

.process-wrapper{
    flex-wrap:wrap;
}

.arrow{
    display:none;
}

}

@media(max-width:768px){

.section-heading h2{
    font-size:36px;
}

.process-item{
    width:100%;
}
}

/*Product Section*/
.featured-products{
    padding:90px 0 40px;
    background:#865e091c;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#d4af37;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2{
    margin:12px 0;
    font-size:46px;
    color:#08254d;
}

.section-title p{
    color:#666;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    border:1px solid #ececec;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.product-image{
    height:220px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#ffffff;
    padding:25px;
}

.product-image img{
    max-width:100%;
    max-height:180px;
    transition:.4s;
}

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

.product-info{
    padding:25px;
}

.category{
    display:inline-block;
    background:#08254d;
    color:#fff;
    font-size:13px;
    padding:5px 14px;
    border-radius:30px;
    margin-bottom:15px;
}

.product-info h3{
    color:#08254d;
    font-size:22px;
    margin-bottom:18px;
}

.product-info a{
    color:#d4af37;
    text-decoration:none;
    font-weight:600;
}

.product-info a i{
    margin-left:8px;
    transition:.3s;
}

.product-info a:hover i{
    transform:translateX(5px);
}

.btn-products{
    display:inline-block;
    padding:14px 18px;
    background:#08254d;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    transition:.3s;
    font-size:14px;
}

.btn-products:hover{
    background:#d4af37;
    color:#08254d;
}

@media(max-width:1200px){

.product-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.product-grid{
grid-template-columns:1fr;
}

.section-title h2{
font-size:34px;
}

}

/*plans*/
.membership-section{
    padding:60px 0 50px;
    background:#f7f9fc;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#d4af37;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    margin: 0px 0;
  font-size: 48px;
  color: #08254d;
  font-weight: 600;
}

.section-title p{
    color:#666;
    margin: 5px 0px;
}

.plans{
    display:flex;
    gap:35px;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    margin-top: 100px;
}

.plan-card{
    width:340px;
    background:#fff;
    border-radius:25px;
    padding:35px 20px;
    position:relative;
    text-align:center;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    transition:.4s;
    border:2px solid transparent;
}

.plan-card:hover{
    transform:translateY(-12px);
    border-color:#d4af37;
}

.plan-card.active{
    transform:scale(1.06);
    border:2px solid #d4af37;
}

.active:hover{
    transform:scale(1.06) translateY(-10px);
}

.dark{
    background:linear-gradient(135deg,#08254d,#123d78);
    color:#fff;
}

.dark h3,
.dark .price{
    color:#fff;
}

.dark ul li{
    color:#ecf0f1;
}

.popular{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#d4af37;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.plan-icon{
    width:90px;
    height:90px;
    margin:auto;
    background:#08254d;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.dark .plan-icon{
    background:#d4af37;
}

.plan-icon i{
    color:#d4af37;
    font-size:34px;
}

.dark .plan-icon i{
    color:#08254d;
}

.plan-card h3, .dark h3{
    margin: 20px 0 0px;
  color: #be9100;
  font-size: 20px;
  font-weight: 600;
}

.price{
    font-size:42px;
    font-weight:600;
    color:#08254d;
    margin-bottom:10px;
}

.plan-card ul{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}

.plan-card ul li{
    padding:10px 0;
    color:#555;
    border-bottom:1px solid #eee;
}

.plan-card ul li i{
    color:#d4af37;
    margin-right:10px;
}

.plan-btn{
    display:inline-block;
    width:100%;
    padding:15px;
    border-radius:50px;
    text-decoration:none;
    background:#08254d;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.plan-btn:hover{
    background:#d4af37;
    color:#08254d;
}

.dark .plan-btn{
    background:#d4af37;
    color:#08254d;
}

.dark .plan-btn:hover{
    background:#fff;
}
.dark ul li {
  padding: 10px 0;
  color: #fff;
}


@media(max-width:992px){

.plan-card{
    width:100%;
}

.active{
    transform:none;
}

.active:hover{
    transform:translateY(-10px);
}

}

/*Tour section*/
.achievement-plan{
    padding:50px 0;
    background:#fff;
}

.sub-title{
    color:#d4af37;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.achievement-plan h2{
    margin: 0px 0;
  font-size: 40px;
  color: #08254d;
  font-weight: 600;
}

.achievement-plan p{
    color:#666;
}

.achievement-item{
    display:flex;
    gap:20px;
    align-items:flex-start;
    margin-bottom:30px;
}

.achievement-item i{

    width:60px;
    height:60px;
    border-radius:50%;
    background:#08254d;
    color:#d4af37;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:24px;

    flex-shrink:0;
}

.achievement-item h5{
    color:#08254d;
    margin-bottom:6px;
    font-size:22px;
}

.trophy-img{
    max-width:450px;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}

/*Tour*/
.tour-section{
    padding:50px 0;
    background:#111;
}
.tour-section h2 {
  margin: 0px 0;
  font-size: 48px;
  color: #fff;
  font-weight: 600;
}

.tour-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.tour-card{
    position:relative;
    height:420px;
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.tour-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.tour-card:hover img{
    transform:scale(1.12);
}

.tour-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
    background:linear-gradient(to top, rgb(0, 0, 0), transparent, #0000);
    color:#fff;
}

.members{
    display: inline-block;
  width: max-content;
  background: #d4af37;
  color: #000;
  padding: 6px 12px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 12px;
}

.tour-overlay h3{
    font-size:30px;
    margin-bottom:10px;
}

.tour-overlay p{
    margin:0;
    opacity:.9;
    line-height:1.6;
}

@media(max-width:1200px){

.tour-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.tour-grid{
grid-template-columns:1fr;
}

.tour-card{
height:350px;
}

}

/*Benefits*/
.benefits-section{
    padding:100px 0;
    background:#f8fafc;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:60px;
}

.benefit-card{
    display:flex;
    align-items:center;
    gap:20px;
    background:rgb(8, 37, 77);
    padding:28px;
    border-radius:18px;
    border:1px solid #ececec;
    transition:.35s;
}

.benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
    border-color:#d4af37;
}

.benefit-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background: #ecc70142;
    color: #d8b703;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    flex-shrink:0;
    transition:.3s;
}

.benefit-card:hover .benefit-icon{
    background:#dab801;
    color:#08254d;
}

.benefit-content h4{
    margin:0 0 8px;
    color:#fff;
    font-size:20px;
}

.benefit-content p{
    margin:0;
    color:rgb(147, 147, 147);
    line-height:1.6;
    font-size:15px;
}

@media(max-width:991px){

.benefits-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:767px){

.benefits-grid{
    grid-template-columns:1fr;
}

.benefit-card{
    padding:22px;
}

}

/*Footer*/
.footer{

    background:#2d2d2d;
    color:#fff;
    padding:80px 0 25px;

}

.footer-logo{

    width:130px;
    margin-bottom:20px;
    border-radius:5px;

}

.footer-about{

    color:#cfd8e3;
    line-height:1.8;

}

.footer h5{

    color:#fff;
    margin-bottom:25px;
    font-size:22px;
    position:relative;

}

.footer h5::after{

    content:"";
    width:45px;
    height:3px;
    background:#d4af37;
    display:block;
    margin-top:10px;
    border-radius:20px;

}

.footer ul{

    list-style:none;
    padding:0;

}

.footer ul li{

    margin-bottom:14px;

}

.footer ul li a{

    color:#cfd8e3;
    text-decoration:none;
    transition:.3s;

}

.footer ul li a:hover{

    color:#d4af37;
    padding-left:8px;

}

.contact-item{

    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:18px;

}

.contact-item i{

    color:#d4af37;
    font-size:18px;
    margin-top:4px;

}

.social-links{

    margin-top:30px;
    display:flex;
    gap:12px;

}

.social-links a{

    width:45px;
    height:45px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    transition:.35s;

}

.social-links a:hover{

    background:#d4af37;
    color:#08254d;
    transform:translateY(-5px);

}

.footer hr{

    margin:20px 0 20px;
    border-color:rgba(255,255,255,.15);

}

.copyright{

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;

}

.copyright p{

    margin:0;
    color:#cfd8e3;

}
.copyright a{
  color: #cfd8e3;
  text-decoration: none;
  transition: .3s;
}
.copyright a:hover{
  color: rgb(212, 175, 55);
  text-decoration: underline;
  transition: .3s;
}

.footer-links{

    display:flex;
    gap:25px;

}

.footer-links a{

    color:#cfd8e3;
    text-decoration:none;
    transition:.3s;

}

.footer-links a:hover{

    color:#d4af37;

}

@media(max-width:768px){

.copyright{

flex-direction:column;
text-align:center;

}

.footer-links{

justify-content:center;

}

}

/*Breadcrumb*/
.about-banner{
    background:linear-gradient(rgb(183, 161, 120),rgb(84, 69, 23)), url('../images/world-map.png');
    background-size:cover;
    background-position:center;
    padding:120px 0px 60px;
    text-align:center;
    color:#fff;
}

.about-banner h1{
    font-size:50px;
    font-weight:600;
    margin-bottom:15px;
}

.about-banner p{
    font-size:18px;
    color:#ddd;
}
.about-banner a{
    font-size:18px;
    text-decoration:none;
    color:#ddd;
}

.about-banner span{
    color:#d4af37;
    margin:0 8px;
}

/*About page*/
.about-company{
    padding:60px 0;
}

.sub-title{

    color:#d4af37;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;

}

.about-company h2{

    font-size:46px;
    color:#08254d;
    margin:15px 0 25px;

}

.about-company p{

    color:#666;
    line-height:1.9;
    margin-bottom:25px;

}

.about-list{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;

}

.about-list div{

    font-weight:600;
    color:#08254d;

}

.about-list i{

    color:#d4af37;
    margin-right:10px;

}

/*y join*/
.why-join-section{
    padding:100px 0;
    background:#222;
}
.why-join-section h2{
    margin: 0px;
  font-size: 48px;
  color: #fff;
  font-weight: 600;
}

.join-list{
    position:relative;
}

.join-list::before{
    content:"";
    position:absolute;
    left:18px;
    top:20px;
    bottom:50px;
    width:3px;
    background:#d4af37;
}

.join-item{
    display:flex;
    gap:25px;
    margin-bottom:20px;
    position:relative;
}

.circle{

    width:40px;
    height:40px;

    border-radius:50%;
    background:rgb(212, 175, 55);

    display:flex;
    justify-content:center;
    align-items:center;

    color:#08254d;
    font-size:18px;

    flex-shrink:0;

    z-index:2;
}

.content h5{
    color:#fff;
    margin-bottom:0px;
}

.content p{

    margin:0;
    color:#666;
    line-height:1.7;
}

.why-img{
    max-width:400px;
    border-radius:10px;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0);
}

}

@media(max-width:991px){

.join-list{
margin-bottom:60px;
}

}

/*Contact*/
.contact-sec{
    padding:70px 0 50px;
    background: #0a235412;
}
.contact-sec h2{
    text-align:center;
    margin-bottom:50px;
}
.contact-info {
    text-align: left;
}

.info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    align-items: flex-start;
}

.info-box i {
    font-size: 20px;
    color: #011e4a;
    margin-top: 5px;
}

.info-box h4 {
    margin-bottom: 5px;
}

.info-box p {
    color: #555;
    font-size: 0.95rem;
}

/* Highlight box */
.info-box.highlight {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}

/* Form */
.contact-form {
    border-radius: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact-form .contact-btn{
    width: 100%;
    padding: 12px;
    background: #011e4a;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.contact-form .contact-btn:hover {
    background: #071934;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}


.disclaimer-sec{
    padding:40px 0;
    background:#f8f9fc;
}

.disclaimer-box{
    display:flex;
    align-items:center;
    gap:35px;
    background:#fff;
    border-left:6px solid #d4af37;
    border-radius:20px;
    padding:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.disclaimer-icon{
    width:90px;
    height:90px;
    min-width:90px;
    border-radius:50%;
    background:#08254d;
    color:#d4af37;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:40px;
}

.disclaimer-content span{
    color:#d4af37;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.disclaimer-content h2{
    margin:10px 0 15px;
    color:#08254d;
    font-size:38px;
}

.disclaimer-content p{
    margin:0;
    color:#666;
    line-height:1.9;
    font-size:16px;
}

@media(max-width:768px){

.disclaimer-box{
    flex-direction:column;
    text-align:center;
    padding:30px 25px;
}

.disclaimer-content h2{
    font-size:30px;
}

}

/*Shop*/

.shop-banner h1{
    font-size:58px;
}

.shop-banner p{
    color:#ddd;
    max-width:650px;
    margin:auto;
}

.shop-filter{
    padding:50px 0;
}

.filter-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.filter-buttons button{
    border:none;
    background:#eee;
    padding:12px 30px;
    border-radius:40px;
    transition:.3s;
}

.filter-buttons .active,
.filter-buttons button:hover{
    background:#08254d;
    color:#fff;
}

.shop-products{
    padding-bottom:100px;
    background:#e9e9e9;
}

.productcard{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.product-img{
    height:260px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f8f9fc;
    padding:30px;
}

.product-img img{
    max-height:200px;
    transition:.4s;
}

.productcard:hover img{
    transform:scale(1.08);
}

.product-content{
    padding:30px;
}

.product-content span{
    display:inline-block;
    background:#d4af37;
    color:#08254d;
    padding:6px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.product-content h4{
    margin:18px 0;
    color:#08254d;
}

.view-btn{
    display:inline-block;
    text-decoration:none;
    color:#08254d;
    font-weight:600;
}

.view-btn:hover{
    color:#917415;
}
