
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-secondary {
    color: var(--bs-white);
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
    0%  {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}

    25% {border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;}

    50% {border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;}

    75% {border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;}

    100% {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}
}
/*** Icon Animation End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color:#fff
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: .5s;
    opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}
/*** Navbar End ***/

/*** Carousel Header Start ***/
.carousel .carousel-item img {
    object-fit: cover;
}

.carousel .carousel-item,
.carousel .carousel-item img {
    height: 700px;
}

.carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
}

.carousel .carousel-indicators {
    left: 75%;
    top: 50%;
    margin-right: 25%;
    transform: translateY(-50%);
    flex-direction: column;
}

.carousel-indicators [data-bs-target] {
    display: flex;
    width: 15px;
    height: 15px;
    border: 6px solid var(--bs-white);
    border-radius: 15px;
    padding: 0;
    margin-top:10px;
    margin-bottom:10px;
    background-color: var(--bs-secondary);
    opacity: 1;
    transition: 0.5s;
}

.carousel-indicators [data-bs-target].active {
    background-color: var(--bs-primary);
}

@media (max-width: 992px) {
    .carousel-indicators [data-bs-target] {
        display: none;
    }
}
/*** Carousel Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** About Start ***/
.about .about-item .about-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.about .about-item .about-item-inner .about-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.about .about-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    
}

.about .about-img .img-1 {
    height: 85%;
    margin-right: 50px;
}

.about .about-img .img-2 {
    position: absolute;
    width: 100%; 
    bottom: 0; 
    right: 0;
    padding-left: 50px;
    border-radius: 10px;
}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 98%;
    top: 0;
    right: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    z-index: -1;
}

.about .about-item .text-item {
    position: relative;
    padding-left: 25px;
}

.about .about-item .text-item::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
}
/*** About End ***/

/*** Cars Categories Start ***/
.categories .categories-item {
    position: relative;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item:hover {
    border: 1px solid var(--bs-primary);
}

.categories .categories-item .categories-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
    box-shadow: 0 0 50px rgba(234, 0, 30, .3);
}

.categories .categories-item-inner .categories-img {
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
    border-top: 4px solid var(--bs-white);
    text-align: center;
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: var(--bs-primary);
    border-radius: 50px;
    transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
    right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** Cars Categories End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}  

.blog .blog-item .blog-content {
    position: relative;
    background: var(--bs-light);
}

.blog .blog-item .blog-content .blog-date {
    position: absolute;
    top: 0; 
    left: 25px; 
    transform: translateY(-50%);
    padding: 12px 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.blog .blog-item .blog-content .blog-comment {
    display: flex;
    justify-content: space-between;
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    text-align: center;
    border-radius: 10px;
    margin-top: 100px;
    background: var(--bs-light);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
    z-index: 2;
    transition: 0.5s;
}

.team .team-item:hover::after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    z-index: 5;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white);
}
.team .team-item:hover .team-content p {
    color: var(--bs-white);
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    top: -100px;
    margin-bottom: -100px;
    border-radius: 10px;
    z-index: 3;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .3);
    z-index: 4;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}
/*** Team End ***/

/*** Contact Start ***/
.contact .contact-add-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: #1f2e4e;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: #1f2e4e;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: #1f2e4e !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/
.vehicle-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scroll-padding: 10px;
  transition: all 0.7s ease-in-out; /* ✅ smooth sliding feel */
}
.vehicle-row::-webkit-scrollbar { display: none; }

.vehicle-card {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.vehicle-card:hover { 
  transform: translateY(-10px); 
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
}

/* ✅ Button Gradient Style */
.btn-gradient {
  background: linear-gradient(135deg, #1f2e4e, #1f2e4e);
  border: none;
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  background: linear-gradient(135deg, #1f2e4e, #1f2e4e);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

/* ✅ Scroll Buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #1f2e4e, #1f2e4e);
  color: #fff;
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0.9;
}
.scroll-btn.left { left: 15px; }
.scroll-btn.right { right: 15px; }

.scroll-btn:hover {
  background: linear-gradient(135deg, #1f2e4e, #1f2e4e);
  transform: translateY(-50%) scale(1.15);
  opacity: 1;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .vehicle-card { flex: 0 0 100%; }
  .scroll-btn { display: none; }
}
.destination-card {
    position: relative;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
  }

  .destination-card:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }

  .destination-img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    transition: transform 0.8s ease;
  }

  .destination-card:hover .destination-img {
    transform: scale(1.1);
  }

  .offer-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    color: #fff;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    z-index: 2;
  }

  .offer-tag.small {
    font-size: 13px;
    padding: 5px 10px;
  }

  .destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
    opacity: 1;
    transition: opacity 0.6s ease;
  }

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

  .wow {
    visibility: visible !important;
  }

   .step-card {
    background: #fff;
    transition: all 0.5s ease;
  }

  .step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.15);
  }

  .icon-wrap {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.3);
    transition: all 0.4s ease;
  }

  .step-card:hover .icon-wrap {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 0 30px rgba(13, 110, 253, 0.4);
  }

  .step-card h5 {
    font-family: 'Poppins', sans-serif;
  }

  .step-card p {
    font-size: 15px;
    line-height: 1.6;
  }
  .service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card .image-box {
  position: relative;
  overflow: hidden;
  clip-path: polygon(5% 0%, 95% 0%, 100% 90%, 0% 100%);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card .content {
  padding: 20px;
  text-align: center;
}

.service-card h4 {
  color: #1b2a4e;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.about-hero-section .sub-title {
  font-weight: 600;
  letter-spacing: 1px;
  color: #9f1212;
  font-size: 1rem;
}

.floating-image {
  display: inline-block;
  transition: transform 0.6s ease, box-shadow 0.4s ease;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(0,123,255,0.3);
}

.floating-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.floating-image:hover img {
  transform: scale(1.08) rotate(-1deg);
}

.floating-image:hover {
  box-shadow: 0 25px 50px rgba(0,123,255,0.6);
}

.floating-sm {
  position: absolute;
  bottom: 10%;
  left: 15%;
  width: 120px;
}

.feature-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(0,123,255,0.15);
  box-shadow: 0 15px 30px rgba(0,123,255,0.5);
  transform: translateY(-10px);
}

.btn-primary:hover {
  background: #7f0f0f;
  box-shadow: 0 8px 20px rgba(159,18,18,0.5);
}
h5{
    color: #fff;
}
.about-wrapper {
  background: linear-gradient(135deg, #000c21, #1f2e4e);
  color: #fff;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.about-container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT CONTENT */
.about-content {
  flex: 1 1 55%;
}

.about-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 0 20px #1f2e4e;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
}

/* RIGHT CARD */
.about-card {
  flex: 1 1 35%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 0 25px #000c21;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px #000c21;
}

.about-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 700;
}

.about-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-card ul li {
  font-size: 1.05rem;
  color: #f5f5f5;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-card ul li i {
  color: #9f1212; /* red accent from your site theme */
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-content, .about-card {
    flex: 1 1 100%;
  }
}


.features-section .quad-card {
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  border-radius: 25px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.features-section .card-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  opacity: 0.3;
  transition: all 0.5s ease;
}

.features-section .quad-card:hover .card-bg {
  opacity: 0.6;
  transform: scale(1.1);
  filter: brightness(1.2);
}

.features-section .quad-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px #1f2e4e;
}

.features-section .quad-card h4 {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features-section .sub-title {
  font-size: 1rem;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 15px;
}
.f-card {
    position: relative;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: all 0.4s ease;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 80% 100%, 0 100%);
}
.f-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(102,86,234,0.4);
}

h4{
  color: #fff ;
}
.f-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.f-card:hover img { transform: scale(1.1); }
.info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
    padding: 60px 20px 30px;
    text-align: center;
    color: white;
}
.tag {
    background: #ff006e;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}
.info h4 {
    font-size: 2rem;
    font-weight: 900;
    margin: 8px 0;
}
.info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.book-now {
    background: white;
    color: black;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}
.book-now:hover {
    background: #ff006e;
    color: white;
    transform: scale(1.08);
}
.tab-btn {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 12px 35px;
    margin: 0 10px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}
.tab-btn.active {
    background: #667eea;
    border-color: transparent;
}
.cards-grid:not(.active) { display: none; }
<!-- Premium CSS - Tumhare Site Ke Hisaab Se -->

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.service-box {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px 28px;
    color: white;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 24px;
}

.service-box:hover::before {
    opacity: 1;
}

.service-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(102, 86, 234, 0.25);
    border-color: rgba(102,126,234,0.4);
}

.icon-bg {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 16px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 8px 20px rgba(102,126,234,0.3);
}

.icon-bg::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>') no-repeat center;
    background-size: contain;
}

.service-box h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.4;
}

.service-box p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
}

/* Responsive */
@media (max-width: 576px) {
    .service-box {
        padding: 24px 20px;
    }
    .service-box h3 {
        font-size: 1.25rem;
    }
}
