
:root{
  --primary:#f98816;
  --dark:#111;
}

/* 🔥 MARQUEE */
.custom-marquee{
  background: var(--primary);
  overflow:hidden;
}
.marquee-track{
  display:flex;
  width:max-content;
  animation: marquee 12s linear infinite;
}
.marquee-item{
  padding:8px 30px;
  color:#fff;
  font-size:13px;
  white-space:nowrap;
}
@keyframes marquee{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

/* NAVBAR */
.navbar{
  background:#fff;
  border-bottom:1px solid #eee;
}

.navbar-nav .nav-link{
  color:var(--dark);
  font-weight:500;
}
.navbar-nav .nav-link:hover{
  color:var(--primary);
}

.nav-icons i{
  font-size:20px;
  margin-left:15px;
  cursor:pointer;
}

/* HERO */
.hero {
    height: 100vh;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Dark overlay */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

/* Gradient layer (IMPORTANT) */
.gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.8) 20%,
        rgba(0,0,0,0.2) 60%,
        transparent 100%
    );
}

/* Content */
.hero-slider-content {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Title */
.hero-title {
    font-size: 60px;
    font-weight: 700;
}

.hero-title span {
    color: #ff8c00;
}

/* Subtitle */
.hero-sub {
    font-size: 18px;
    margin: 15px 0 25px;
}

/* Features */
.hero-features span {
    margin-right: 20px;
    font-size: 14px;
    opacity: 0.9;
}


p{
    margin: 0px !important;
}
/* .hero::before{
  content:'';
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(255, 255, 255, 0.226);
}

.hero-content{
  position:relative;
  z-index:2;
} */

.hero h1{
  font-size:3.5rem;
  font-weight:700;
}

/* .hero span{
  color:var(--primary);
} */

/* MOBILE */
@media(max-width:600px){
  .hero-slide {
      height: 250px !important;
  }
}
@media(max-width:992px){

  /* hide desktop nav */
  .desktop-menu{
    display:none;
  }

  .hero{
    height:auto;
    padding:0;
    text-align:center;
  }

  .hero-slide {
      height: 350px;
  }

  .hero h1{
    font-size:2.2rem;
  }
}

.btn-main{
    background-color: #000 !important;
    color: #fff !important;
}
.btn-main:hover{
    background-color: #000 !important;
    color: #fff !important;
}
.head-sec{
    display:flex;
    justify-content: space-between;

}
.head-sec a{
    text-decoration: none;
    color: #000;
    border-bottom: 2px solid #000;
}



/* HEADING */
.section-title{
  font-size:32px;
  font-weight:700;
}

/* BUTTON */
.btn-premium{
 
  padding:10px 20px;
  border-radius:50px;
  font-size:14px;
  text-decoration:none;
}

.btn-premium:hover{
  background:#a97c50;
  color:#fff;
}
.section-title a{
    font-size: 20px;
}
/* CARD */
.feature-card{
  padding:25px;
  border-radius:15px;
  background:#f5f2f0;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:.3s;
  height: 100%;
}

.feature-card:hover{
  transform:translateY(-8px);
}

/* ICON */
.icon-circle{
  width:70px;
  height:70px;
  margin:auto;
  border-radius:50%;
 border: solid 2px #000;
  display:flex;
  align-items:center;
  justify-content:center;
}

.icon-circle img{
 width:100%;
  color:#fff;
}

/* TEXT */
.feature-card p{
  font-size:14px;
  color:#666;
}

/* RESPONSIVE */
@media(max-width:768px){
  .section-title{
    font-size:24px;
  }
}


















.transformation-section {
    padding: 80px 0;
   
    background-image: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9') center/cover no-repeat;
}


.timeline-container {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid #ddd;
}

.timeline-step {
    position: relative;
    margin-bottom: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5; /* Non-active steps are faded */
}

.timeline-step.active {
    opacity: 1;
    transform: translateX(10px);
}

.timeline-step .dot {
    position: absolute;
    left: -41px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 3px solid #f98816;
    border-radius: 50%;
    transition: background 0.3s;
}

.timeline-step.active .dot {
    background: #ffffff;
}

.timeline-step h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.image-wrapper img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out; /* Smooth transition for image */
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .timeline-container { border-left: none; padding-left: 0; }
    .timeline-step .dot { display: none; }
    .timeline-step { text-align: center; margin-bottom: 20px; }
}

.content h3{
    color: var(--primary);
}




.transform-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    width: 100%;
}

.transform-img.active {
    opacity: 1;
    visibility: visible;
    position: relative; /* Pehli image space legi */
}

.timeline-step { cursor: pointer; padding: 15px; transition: 0.3s; }
.timeline-step.active { background: #f5d090; border-radius: 10px; }
.timeline-step.active h3 { color: #030303; }

.testimonial-section {   background-color: #fdf0e37d; overflow: hidden; }

.testi-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 194, 203, 0.08);
    border: 1px solid #eef2f5;
    height: 100%;
    transition: 0.3s;
    margin: 10px;
}

.testi-card:hover { transform: translateY(-10px); }

.testi-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.testi-body { padding: 25px; text-align: left; }

.stars { font-size: 14px; margin-bottom: 10px; }

.testi-body p {
    font-size: 0.95rem;
    color: #555;
    min-height: 70px;
    line-height: 1.5;
}

.testi-body h6 { font-weight: 700; color: #222; margin-top: 15px; }

.know-more-btn {
    display: inline-block;
    margin-top: 15px;
    color: #f98816;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #f98816;
    padding-bottom: 2px;
    transition: 0.3s;
}

.know-more-btn:hover { color: #000; border-color: #008a91; }

/* Swiper Bullet Color */
.swiper-pagination-bullet-active { background: #f98816 !important; }

.testi-content{
  padding:20px;
}

.know-more-btn{
  background:#c89b6d;
  color:#fff;
  padding:10px 20px;
  border-radius:30px;
  text-decoration:none;
}

.know-more-btn:hover{
  background:#a97c50;
  color:#fff;
}

.testi-card-horizontal {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: 0.3s;
    height: 100%;
}

.testi-card-horizontal:hover { transform: translateY(-5px); }

/* Before/After Slider */
.comparison-slider {
    position: relative;
    width: 100%;
    height: 220px; /* Adjust height as per your images */
    overflow: hidden;
}

.comparison-slider img { width: 100%; height: 100%; object-fit: cover; }

.img-before {
    position: absolute;
    top: 0; left: 0;
    width: 50%; height: 100%;
    background-size: cover;
    background-position: left center;
    border-right: 2px solid #fff;
    z-index: 1;
}

.slider-handler {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0; cursor: ew-resize;
    z-index: 10;
}

.slider-button {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 25px; height: 25px;
    background: #f98816;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 9;
    pointer-events: none;
}

/* Badges */
.badge-before, .badge-after {
    position: absolute;
    bottom: 5px;
    font-size: 10px;
    text-transform: uppercase;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    z-index: 5;
}
.badge-before { left: 5px; }
.badge-after { right: 5px; }

.testi-body { padding: 25px; }
.stars i { color: #ffcc00; font-size: 14px; margin-bottom: 10px; }
.testi-body p { font-size: 0.95rem; color: #444; line-height: 1.5; margin-bottom: 15px; }
.know-more-link { color: #f98816; text-decoration: none; font-weight: 600; font-size: 0.9rem;position: relative; }
.know-more-link::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #f98816;
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: 0.3s;
}

.know-more-link:hover::after {
  width: 100%;
}
@media (max-width: 576px) {
    .comparison-slider { height: 200px; }
}



.trust-section {
    background-color: #fdfdfd;
    overflow: hidden;
}

.text-cyan {
    color: #f98816;
}

.content-wrapper p {
    line-height: 1.8;
    color: #555;
}

.italic-text {
    font-style: italic;
    color: #333;
}

.btn-cyan-outline {
    background-color: #000;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cyan-outline:hover {
    background-color: #00c2cb;
    color: #fff;
    transform: translateY(-3px);
}

/* Certificate Styling */
.certificate-box {
    position: relative;
    padding: 20px;
    z-index: 1;
}

.certificate-inner {
    transition: transform 0.5s ease;
}

.certificate-inner:hover {
    transform: scale(1.02) rotate(1deg);
}

.certificate-inner img {
    border: 1px solid #eee;
    background: #fff;
    display: block;
    margin: 0 auto;
}
.btn-cyan-outline{
    background-color: #000 !important;
    color: #fff !important;
    border-radius: 4px;
}
/* Background design element like in screenshot */
.bg-shape {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 80%;
    height: 80%;
    background: rgba(0, 194, 203, 0.05);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    filter: blur(40px);
}

@media (max-width: 768px) {
    .trust-section { text-align: center; }
    .certificate-box { margin-top: 40px; }
}

.founder-section {
    background: linear-gradient(135deg, #fbc392 0%, #ff6a00 100%); /* Premium Orange Gradient */
    color: #fff; /* White text for contrast */
  
}

.founder-img-wrapper {
    position: relative;
    overflow: hidden;
  
}

.founder-img-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.founder-img-wrapper:hover img {
    transform: scale(1.05);
}

.ls-2 {
    letter-spacing: 2px;
}

.story-content h5 {
    color: #ffd4b3; /* Light peach for sub-heading */
}

.story-text p {
    line-height: 1.8;
    opacity: 0.95;
    font-size: 1.05rem;
}

/* Optional Play Button for Video feel */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6a00;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .founder-section {
        padding: 60px 0;
        text-align: center;
    }
    .story-content ps-md-5 {
        padding-left: 0 !important;
        margin-top: 30px;
    }
}

    .video-section {
        background-color: #fdf0e37d; /* Light blue background as per your screenshot */
        padding: 80px 0;
    }

    /* Video Card Styling */
    .video-card {
        border-radius: 25px;
        overflow: hidden;
        border: none;
        position: relative;
        background: #000;
        aspect-ratio: 9/16; /* TikTok/Reel vertical ratio */
        transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
        cursor: pointer;
    }

    .video-card:hover {
        transform: scale(1.03) translateY(-10px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    }

    /* Actual Video/Thumbnail */
    .video-card video, .video-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.9;
        transition: opacity 0.3s;
    }

    .video-card:hover video, .video-card:hover img {
        opacity: 1;
    }

    /* Play Button Overlay */
    .play-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(255,255,255,0.2);
        backdrop-filter: blur(5px);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        transition: all 0.3s;
    }

    .video-card:hover .play-overlay {
        background: #fff;
        width: 70px;
        height: 70px;
    }

    /* Product Mini-Bar at bottom */
    .product-mini-bar {
        position: absolute;
        bottom: 15px;
        left: 15px;
        right: 15px;
        background: rgba(255,255,255,0.95);
        border-radius: 12px;
        padding: 10px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 3;
    }

    .mini-img {
        width: 35px;
        height: 35px;
        border-radius: 6px;
        margin-right: 10px;
    }

    .add-btn-small {
        background: #000;
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 10px;
        padding: 5px 12px;
        font-weight: 700;
    }

    .section-header h2 {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        color: #1a1a1a;
    }

    
    .step-section {
        background-color: #000;
        color: #fff;
    }

    .step-column {
        position: relative;
        min-height: 550px; /* Desktop height */
        overflow: hidden;
        padding: 0;
    }

    /* Background Image setup */
    .step-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: transform 0.8s ease;
        z-index: 1;
    }

    /* Image zoom on hover */
    .step-column:hover .step-bg {
        transform: scale(1.1);
    }

    /* Overlay for text readability */
    .step-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
        z-index: 2;
    }

    /* Content Styling */
    .step-content {
        position: relative;
        z-index: 3;
        padding: 50px 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .step-number {
        font-family: 'Inter', sans-serif;
        font-size: 1.5rem;
        font-weight: 300;
        margin-bottom: 5px;
    }

    .step-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .step-desc {
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        font-weight: 300;
        max-width: 250px;
        line-height: 1.4;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .step-column {
            min-height: 400px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .step-title {
            font-size: 2.2rem;
        }
    }


    .product-card {
        border: none;
        border-radius: 20px;
        overflow: hidden;
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
        background: #f8f9fa;
        position: relative;
    }

    .product-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    /* Glassmorphism Info Overlay */
    .product-info-glass {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 15px;
        padding: 15px;
        text-align: center;
    }

    /* Sale Badge - Premium Pill Style */
    .sale-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: linear-gradient(45deg, #000, #444);
        color: white;
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 600;
        z-index: 2;
    }

    .product-img {
        transition: transform 0.6s ease;
        width: 100%;
        display: block;
    }

    .product-card:hover .product-img {
        transform: scale(1.08);
    }

    .btn-premium {
        background: #000;
        color: #fff;
        border-radius: 5px;
        padding: 8px 25px;
        font-weight: 500;
        transition: all 0.3s;
        border: none;
    }

    .btn-premium:hover {
        background: #333;
        transform: scale(1.05);
        color: white;
    }

    .price-old {
        color: #999;
        text-decoration: line-through;
        font-size: 0.9rem;
        margin-right: 8px;
    }

    .price-new {
        font-weight: 700;
        color: #000;
        font-size: 1.1rem;
    }

    .price-text .price-date {
        font-size: 14px;
		color: #999;
        margin-right: 8px;
    }

    .price-text .price-old {
        font-size: 14px;
    }

    .price-text .price-new {
        font-size: 15px;
    }

    .section-title {
        font-family: 'Playfair Display', serif; /* Optional: Use a Serif font for luxury feel */
        font-weight: 700;
        margin-bottom: 40px;
    }


    .blog-section {
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

.blog-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
}

.blog-subtitle {
  color: #777;
  font-size: 16px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  position: relative;
}

.blog-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.blog-img {
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.5s;
}

.blog-card:hover img {
  transform: scale(1.1);
}

.blog-content {
  padding: 20px;
}

.blog-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.blog-content p {
  font-size: 14px;
  color: #666;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #f98816;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.read-more::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #f98816;
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: 0.3s;
}

.read-more:hover::after {
  width: 100%;
}

.footer-section {
  background: linear-gradient(90deg, #f98816, #f98816);
  color: #fff;
 
}

/* Title */
.footer-title {
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
}

.footer-links a i {
  margin-right: 6px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(6px);
  letter-spacing: 1px;
}

.footer-links a:hover i {
  color: #000;
}

/* Social Icons Circle */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #fff;
  color: #f98816;
  transform: translateY(-5px) scale(1.1);
}

/* Subscribe Box */
.subscribe-box {
  display: flex;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  overflow: hidden;
  transition: 0.3s;
}

.subscribe-box:hover {
  background: rgba(255,255,255,0.25);
}

.subscribe-box input {
  border: none;
  padding: 12px 15px;
  width: 100%;
  background: transparent;
  color: #fff;
  outline: none;
}

.subscribe-box input::placeholder {
  color: #fff;
}

.subscribe-box button {
  border: none;
  background: #fff;
  color: #f98816;
  padding: 0 18px;
  transition: 0.3s;
}

.subscribe-box button:hover {
  background: #000;
  color: #fff;
}

/* Bottom */
.footer-bottom {
  background: #000;
  padding: 12px;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .social-icons a {
    margin-bottom: 10px;
  }
}


.terms-section {
  background: #f8f9fb;
}

.terms-box {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.terms-item {
  margin-bottom: 30px;
}

.terms-item h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.terms-item p {
  color: #555;
  line-height: 1.7;
}

.terms-item ul {
  padding-left: 20px;
}

.terms-item ul li {
  margin-bottom: 6px;
  color: #555;
}

.terms-item.highlight {
  background: #fff8e6;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #ffb400;
}

.terms-contact {
  margin-top: 40px;
  padding: 25px;
  background: #000;
  color: #fff;
  border-radius: 12px;
}

.terms-contact h4 {
  margin-bottom: 15px;
}
.terms-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)),
              url('../image/about-page.jpg'); /* apni image laga */
  background-size: cover;
  background-position: center;
  height: 30vh;
  display: flex;
  align-items: center;
  color: #fff;
}

.terms-hero h1 {
  font-size: 48px;
  font-weight: 700;
}

.terms-hero h1 span {
  font-style: italic;
}

.terms-hero p {
  font-size: 16px;
}
.text-white{
    color: #fff !important;
}


/* Glassmorphism & Soft Aesthetics */
:root {
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --primary-gradient: linear-gradient(135deg, #1a1a1a 0%, #434343 100%);
    --soft-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Section Spacing Fix */
.mt-n5 {
    margin-top: -80px !important; /* Hero ke thoda upar overlap karega premium look ke liye */
    position: relative;
    z-index: 10;
}

/* Contact Cards Transformation */
.contact-card {
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: rgba(239, 205, 131, 0.525) 0px 3px 8px;
}

.contact-card:hover {
    transform: translateY(-12px);
    background: #fff;
   box-shadow:  rgba(239, 205, 131, 0.525) 0px 3px 8px;
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color:#f98816;
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Premium Form Styling */
.form-container {
    background: #ffffff;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--soft-shadow);
}

.form-control {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    padding: 18px 25px;
    border-radius: 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: #fff;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.03);
    transform: translateY(-2px);
}

.btn-send {
    background: var(--primary-gradient);
    padding: 18px;
    border-radius: 15px;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
}

.btn-send:hover {
    color: #fff;
   box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* Map Styling */
.map-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    border: 8px solid #f5d09052; /* Polaroid effect */
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.contact-card .icon-box i {
    color: #fff;
    animation: float 3s ease-in-out infinite;
}


.privacy-section {
  background: #f8f9fb;
}

.privacy-box {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.privacy-item {
  margin-bottom: 30px;
}

.privacy-item h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.privacy-item p {
  color: #555;
  line-height: 1.7;
}

.privacy-item ul {
  padding-left: 20px;
}

.privacy-item ul li {
  margin-bottom: 6px;
  color: #555;
}

.privacy-item.highlight {
  background: #fff8e6;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #ffb400;
}

.privacy-contact {
  margin-top: 40px;
  padding: 25px;
  background: #000;
  color: #fff;
  border-radius: 12px;
}
.about-modern {
  background: #f8f9fb;
}

/* LEFT SIDE IMAGES */
.about-img-wrapper {
  position: relative;
}

.img-main {
  width: 100%;
}

.img-small {
  position: absolute;
  width: 140px;
}

.img-1 {
  bottom: -20px;
  left: 20px;
}

.img-2 {
  top: 20px;
  right: -20px;
}

/* EXPERIENCE BADGE */
.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #000;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.experience-badge h4 {
  margin: 0;
  font-weight: bold;
}

/* RIGHT CONTENT */
.about-content-card {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.about-content-card .tag {
  font-size: 12px;
  color: #999;
  letter-spacing: 1px;
}

.about-content-card h2 {
  font-weight: 700;
}

.about-content-card h2 span {
  color: #000;
  font-style: italic;
}

.about-content-card p {
  color: #555;
  line-height: 1.7;
}

/* HOVER EFFECT */
.about-img-wrapper img {
  transition: 0.4s;
}

.about-img-wrapper img:hover {
  transform: scale(1.05);
}

.mini-img {
  width: 38px !important;
  height: 38px !important;
  object-fit: cover;
  border-radius: 8px;
}

.product-title{
  font-size: 15px;
}


.checkout-section .order-info .order-product .single-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	margin-bottom: 12px;
	padding: 7px 12px;
}

.checkout-section .order-info .order-product .single-item .product-box {
	position: relative;
	display: flex;
	align-items: center;
}

.checkout-section .order-info .order-product .single-item .product-box .image-box {
	position: relative;
	display: inline-block;
	width: 70px;
	height: 70px;
	margin-bottom:0;
}

.checkout-section .order-info .order-product .single-item .product-box .image-box img {
	width: 100%;
	height: 100%;
}

.checkout-section .order-info .order-product .single-item h6 {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	max-width: 190px;
}

.checkout-section .order-info h4 {
	font-size: 16px;
	line-height: 26px;
}

.checkout-section .order-info .total-box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 33px;
	border-top: 1px solid #aaa;
	padding-top: 10px;
}

.checkout-section .order-info .title-box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 9px;
}

.checkout-section .order-info .title-box .text {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--title-color);
}

.theme-btn {
	width: 100%;
	border-radius: 25px;
	background-color: #f98816;
	font-weight: 600;
}

.check-box-two input {
	display: none;
}

.checkout-section .billing-content label {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: var(--title-color);
    margin-bottom: 5px;
	padding-left: 24px;
	cursor: pointer;
}

.check-box-two label:before {
	position: absolute;
	content: '';
	left: 0px;
	top: 6px;
	width: 16px;
	height: 16px;
	border-radius: 2px;
	border-style: solid;
	border-width: 1px;
	border-color: #DDDDDD;
	background: transparent;
}

.check-box-two label:after {
    position: absolute;
    content: '\e928';
    font-family: 'icomoon';
    left: 3px;
    top: 2px;
    opacity: 0;
    font-size: 8px;
    color: #fff;
}

.check-box-two input:checked + label:after {
    opacity: 1;
}


.btn-login{
  background-color: var(--primary);
  color: #fff;
}
.btn-login:hover{
  background-color: var(--primary);
  color: #fff;
}
.forgot{
  color: #f98816;
}
.register{
  color: #f98816;
}
.login-card h3{
  color: #f98816;
}
.register-card h3{
  color: #f98816;
}

.btn-register{
    background-color: var(--primary);
  color: #fff;
}
.btn-register:hover{
    background-color: var(--primary);
  color: #fff;
}
.logged{
  color: #f98816;
}

 .form-card {
	max-width: 500px;
	margin: auto;
	margin-top: 100px;
	padding: 30px 25px 25px;
	border-radius: 15px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
	background: #fff;
	position: relative;
	text-align: center;
}

 .profile-card {
	max-width: 800px;
	margin: auto;
	margin-top: 100px;
	padding: 30px 25px 25px;
	border-radius: 15px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
	background: #fff;
	position: relative;
	text-align: center;
}

    /* Profile Icon */
    .profile-icon {
      width: 90px;
      height: 90px;
      background: linear-gradient(135deg, #ff6a00, #ff8c00);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 40px;
      position: absolute;
      top: -45px;
      left: 50%;
      transform: translateX(-50%);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      border: 4px solid #fff;
    }

    .profile-icon img {
      	width: 85px;
		height: 85px;
		border-radius: 50%;
    }

    .btn-orange {
      background: #f98816;
      color: #fff;
    }

    .btn-orange:hover {
      background: #f98816;
      color: #fff;
    }
.custom-sec{
   background: #fff;
   padding: 10px 0px;
}
.custom-tabs {
  display: flex;
  gap: 10px;
  background: #faefe4;
  border: solid 2px #f8c795b6;
  padding: 10px;
  border-radius: 50px;
  width: fit-content;
}

.tab-link {
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  color: #f98816;
  font-weight: 500;
  transition: 0.3s;
}

/* Active Button */
.tab-link.active {
  background: #f98816;
  color: #fff;
}

/* Hover */
.tab-link:hover {
  background: #ffeddb;
}
