 :root {
     --primary: #6C0938;
     --primary-dk: #4a0626;
     --primary-lt: #8e0f4a;
     --white: #FFFFFF;
     --off-white: #f9f5f6;
     --light-pink: #fdf0f4;
     --text-dark: #1a1a2e;
     --text-muted: #6b6b7d;
     --gold: #c9a96e;
     --shadow: 0 8px 40px rgba(108, 9, 56, .15);
     --radius: 12px;
     --transition: all .35s cubic-bezier(.4, 0, .2, 1);
 }

 html {
    overflow-x: hidden !important;
}


 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'DM Sans', sans-serif;
     font-weight: 400;
     color: var(--text-dark);
     background: var(--white);
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 h5 {
     font-family: 'Cormorant Garamond', serif;
 }

 .section-title {
     font-size: clamp(2rem, 4vw, 3rem);
     font-weight: 700;
     color: var(--primary);
     letter-spacing: -.5px;
 }

 .section-subtitle {
     font-size: 1rem;
     color: var(--text-muted);
     max-width: 560px;
     margin: .75rem auto 0;
 }

 .divider {
     width: 60px;
     height: 3px;
     background: linear-gradient(90deg, var(--primary), var(--gold));
     margin: 1rem auto 2rem;
     border-radius: 2px;
 }

 .btn-primary-custom {
     background: var(--primary);
     color: var(--white);
     border: 2px solid var(--primary);
     padding: .75rem 2rem;
     border-radius: 50px;
     font-family: 'DM Sans', sans-serif;
     font-weight: 600;
     letter-spacing: .5px;
     font-size: .95rem;
     transition: var(--transition);
     text-decoration: none;
     display: inline-block;
 }

 .btn-primary-custom:hover {
     background: transparent;
     color: var(--primary);
     transform: translateY(-2px);
     box-shadow: 0 10px 30px rgba(108, 9, 56, .3);
 }

 .btn-outline-custom {
     background: transparent;
     color: var(--primary);
     border: 2px solid var(--primary);
     padding: .75rem 2rem;
     border-radius: 50px;
     font-family: 'DM Sans', sans-serif;
     font-weight: 600;
     font-size: .95rem;
     transition: var(--transition);
     text-decoration: none;
     display: inline-block;
 }

 .btn-outline-custom:hover {
     background: var(--primary);
     color: var(--white);
     transform: translateY(-2px);
 }

 section {
     padding: 90px 0;
 }

 /* ============================================================
       NAVBAR
    ============================================================ */
 .navbar {
     background: var(--off-white);
     padding: 1rem 0;
     position: sticky;
     top: 0;
     z-index: 1050;
     box-shadow: 0 4px 20px rgba(108, 9, 56, .35);
 }

 .navbar-brand {
     font-family: 'Cormorant Garamond', serif;
     font-size: 1.6rem;
     font-weight: 700;
     color: var(--white) !important;
     letter-spacing: -.3px;
 }

 .navbar-brand span {
     color: var(--gold);
 }

 .navbar-toggler {
     border: 2px solid rgba(255, 255, 255, .6);
     padding: .3rem .6rem;
 }

 .cursorPointer {
    color: #6C0938;
    cursor: pointer;
    font-size: 30px !important;
 }

 /* Offcanvas */
 .offcanvas {
     background: var(--primary-dk) !important;
     max-width: 280px;
     color: white !important;
 }

 .offcanvas-header {
     border-bottom: 1px solid rgba(255, 255, 255, .1);
 }

 .offcanvas-title {
     font-family: 'Cormorant Garamond', serif;
     color: var(--white) !important;
     font-size: 1.4rem;
 }

 .btn-close {
     filter: invert(1);
 }

 .nav-link {
     color: #6C0938 !important;
     font-weight: 900 !important;
     font-size: .92rem;
     letter-spacing: .3px;
     padding: .5rem 1rem !important;
     transition: var(--transition);
     position: relative;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 1rem;
     width: 0;
     height: 2px;
     background: var(--gold);
     transition: var(--transition);
 }

 .nav-link:hover {
     color: #4a0626 !important;
 }

 .nav-link:hover::after {
     width: calc(100% - 2rem);
 }

 .offcanvas .nav-link {
     border-bottom: 1px solid rgba(255, 255, 255, .08);
     padding: .8rem 1.2rem !important;
 }

 .offcanvas .nav-link::after {
     display: none;
 }

 .offcanvas-body a{
    color: white !important;
 }

 .offcanvas-body a:hover{
    color: #eeee !important;
 }

 /* ============================================================
       HERO SECTION
    ============================================================ */
 #hero {
     position: relative;
     display: flex;
     align-items: center;
     overflow: hidden;
     padding: 0;
     background-color: #6C0938 !important;
     color: white !important;
 }

 .hero-bg {
     position: absolute;
     inset: 0;
     background:
         linear-gradient(135deg, rgba(108, 9, 56, .92) 0%, rgba(26, 26, 46, .88) 100%),
 }

 .hero-pattern {
     position: absolute;
     inset: 0;
     background-image:
         radial-gradient(circle at 20% 80%, rgba(201, 169, 110, .08) 0%, transparent 50%),
         radial-gradient(circle at 80% 20%, rgba(201, 169, 110, .06) 0%, transparent 50%);
     pointer-events: none;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     padding: 120px 0 80px;
 }

 .hero-badge {
     display: inline-block;
     background: rgba(201, 169, 110, .2);
     color: var(--gold);
     border: 1px solid rgba(201, 169, 110, .4);
     padding: .35rem 1.2rem;
     border-radius: 50px;
     font-size: .82rem;
     font-weight: 600;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     margin-bottom: 1.5rem;
 }

 .hero-title {
     font-size: clamp(2.8rem, 6vw, 5rem);
     color: var(--white);
     font-weight: 700;
     line-height: 1.1;
     margin-bottom: 1.5rem;
 }

 .hero-title span {
     color: var(--gold);
 }

 .hero-desc {
     font-size: 1.1rem;
     color: rgba(255, 255, 255, .82);
     line-height: 1.8;
     max-width: 560px;
     margin-bottom: 2.5rem;
 }

 .hero-stats {
     display: flex;
     gap: 2.5rem;
     margin-top: 3rem;
     flex-wrap: wrap;
 }

 .stat-item {
     text-align: center;
 }

 .stat-num {
     font-family: 'Cormorant Garamond', serif;
     font-size: 2.2rem;
     font-weight: 700;
     color: var(--gold);
     display: block;
 }

 .stat-label {
     font-size: .8rem;
     color: rgba(255, 255, 255, .7);
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .hero-image-wrap {
     position: relative;
     padding: 2rem;
 }

 .hero-image-wrap img {
     border-radius: 20px;
     box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
     width: 100%;
     height: 480px;
     object-fit: cover;
 }

 .hero-image-badge {
     position: absolute;
     bottom: 2.5rem;
     left: .5rem;
     background: var(--white);
     border-radius: 12px;
     padding: .8rem 1.2rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
     display: flex;
     align-items: center;
     gap: .8rem;
 }

 .hero-image-badge i {
     color: var(--primary);
     font-size: 1.4rem;
 }

 .hero-image-badge .hb-text strong {
     display: block;
     font-size: .9rem;
     color: var(--primary);
 }

 .hero-image-badge .hb-text span {
     font-size: .75rem;
     color: var(--text-muted);
 }

 .scroll-indicator {
     position: absolute;
     bottom: 2rem;
     left: 50%;
     transform: translateX(-50%);
     z-index: 2;
     animation: bounce 2s infinite;
     color: rgba(255, 255, 255, .6);
     font-size: 1.5rem;
     cursor: pointer;
 }

 @keyframes bounce {

     0%,
     100% {
         transform: translateX(-50%) translateY(0);
     }

     50% {
         transform: translateX(-50%) translateY(-10px);
     }
 }

 /* ============================================================
       ABOUT SECTION
    ============================================================ */
 #about {
     background: var(--off-white);
 }

 .about-img-wrap {
     position: relative;
 }

 .about-img-wrap img {
     border-radius: var(--radius);
     width: 100%;
     height: 420px;
     object-fit: cover;
     box-shadow: var(--shadow);
 }

 .about-accent-box {
     position: absolute;
     bottom: -1.5rem;
     right: -1.5rem;
     background: var(--primary);
     color: var(--white);
     padding: 1.5rem 2rem;
     border-radius: var(--radius);
     text-align: center;
     box-shadow: 0 10px 30px rgba(108, 9, 56, .4);
 }

 .about-accent-box .num {
     font-family: 'Cormorant Garamond', serif;
     font-size: 2.5rem;
     font-weight: 700;
     color: var(--gold);
     display: block;
 }

 .about-accent-box .label {
     font-size: .8rem;
     opacity: .9;
 }

 .about-features {
     margin-top: 1.8rem;
 }

 .about-feat-item {
     display: flex;
     align-items: flex-start;
     gap: 1rem;
     margin-bottom: 1.2rem;
 }

 .feat-icon {
     width: 42px;
     height: 42px;
     background: var(--light-pink);
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .feat-icon i {
     color: var(--primary);
     font-size: 1rem;
 }

 .feat-text strong {
     display: block;
     font-size: .95rem;
     margin-bottom: .2rem;
 }

 .feat-text span {
     font-size: .85rem;
     color: var(--text-muted);
 }

 /* ============================================================
       WHY CHOOSE US
    ============================================================ */
 #why {
     background: var(--white);
 }

 .why-img img {
     border-radius: var(--radius);
     width: 100%;
     height: 480px;
     object-fit: cover;
     box-shadow: var(--shadow);
 }

 /* Accordion custom style */
 .accordion-item {
     border: none !important;
     margin-bottom: 1rem;
     border-radius: var(--radius) !important;
     overflow: hidden;
     box-shadow: 0 4px 20px rgba(108, 9, 56, .08);
 }

 .accordion-button {
     font-family: 'DM Sans', sans-serif;
     font-weight: 600;
     font-size: 1rem;
     color: var(--text-dark) !important;
     background: var(--white) !important;
     padding: 1.2rem 1.5rem;
     border-radius: var(--radius) !important;
 }

 .accordion-button:not(.collapsed) {
     background: var(--primary) !important;
     color: var(--white) !important;
     box-shadow: none !important;
 }

 .accordion-button:not(.collapsed) i {
     color: var(--gold) !important;
 }

 .accordion-button::after {
     display: none;
 }

 .accordion-button .acc-arrow {
     margin-left: auto;
     transition: var(--transition);
 }

 .accordion-button:not(.collapsed) .acc-arrow {
     transform: rotate(180deg);
 }

 .accordion-body {
     font-size: .92rem;
     color: var(--text-muted);
     line-height: 1.7;
     background: var(--off-white);
     padding: 1.2rem 1.5rem;
 }

 .acc-icon {
     color: var(--primary);
     margin-right: .8rem;
     font-size: 1.1rem;
 }

 /* ============================================================
       SERVICES SECTION
    ============================================================ */
 #services {
     background: var(--light-pink);
 }

 .service-card {
     background: var(--white);
     border-radius: var(--radius);
     padding: 2.5rem 2rem;
     text-align: center;
     box-shadow: 0 4px 24px rgba(108, 9, 56, .08);
     transition: var(--transition);
     height: 100%;
     position: relative;
     overflow: hidden;
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, var(--primary), var(--gold));
     transform: scaleX(0);
     transition: var(--transition);
 }

 .service-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 60px rgba(108, 9, 56, .18);
 }

 .service-card:hover::before {
     transform: scaleX(1);
 }

 .service-icon-wrap {
     width: 80px;
     height: 80px;
     background: var(--light-pink);
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem;
     transition: var(--transition);
 }

 .service-card:hover .service-icon-wrap {
     background: var(--primary);
 }

 .service-icon-wrap i {
     font-size: 2rem;
     color: var(--primary);
     transition: var(--transition);
 }

 .service-card:hover .service-icon-wrap i {
     color: var(--white);
 }

 .service-card h5 {
     font-size: 1.3rem;
     font-weight: 700;
     color: var(--primary);
     margin-bottom: .8rem;
 }

 .service-card p {
     font-size: .9rem;
     color: var(--text-muted);
     line-height: 1.7;
 }

 /* ============================================================
       PRODUCTS SECTION
    ============================================================ */
 #products {
     background: var(--white);
 }

 .product-label {
     display: inline-block;
     font-size: .72rem;
     font-weight: 700;
     letter-spacing: 1px;
     text-transform: uppercase;
     padding: .25rem .8rem;
     border-radius: 50px;
     margin-bottom: .8rem;
 }

 .label-official {
     background: rgba(108, 9, 56, .1);
     color: var(--primary);
 }

 .label-client {
     background: rgba(201, 169, 110, .18);
     color: #7a5c20;
 }

 .product-card {
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: 0 4px 24px rgba(108, 9, 56, .08);
     transition: var(--transition);
     background: var(--white);
     height: 100%;
 }

 .product-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 20px 50px rgba(108, 9, 56, .15);
 }

 .product-card img {
     width: 100%;
     height: 300px;
     object-fit: cover;
     transition: var(--transition);
 }

 .product-card:hover img {
     transform: scale(1.05);
 }

 .product-img-wrap {
     overflow: hidden;
 }

 .product-body {
     padding: 1.5rem;
 }

 .product-body h5 {
     font-size: 1.15rem;
     font-weight: 700;
     color: var(--text-dark);
     margin-bottom: .5rem;
 }

 .product-body p {
     font-size: .88rem;
     color: var(--text-muted);
     margin-bottom: 1.2rem;
     line-height: 1.6;
 }

 /* ============================================================
       PRICING SECTION
    ============================================================ */
 #pricing {
     background: var(--off-white);
 }

 .pricing-card {
     background: var(--white);
     border-radius: 20px;
     padding: 2.5rem 2rem;
     text-align: center;
     box-shadow: 0 4px 24px rgba(108, 9, 56, .08);
     transition: var(--transition);
     position: relative;
     overflow: hidden;
     height: 100%;
 }

 .pricing-card.featured {
     background: var(--primary);
     color: var(--white);
     transform: scale(1.04);
     box-shadow: 0 20px 60px rgba(108, 9, 56, .35);
 }

 .pricing-card:not(.featured):hover {
     transform: translateY(-6px);
     box-shadow: 0 20px 50px rgba(108, 9, 56, .18);
 }

 .pricing-badge {
     position: absolute;
     top: 1.2rem;
     right: 1.2rem;
     background: var(--gold);
     color: #fff;
     font-size: .72rem;
     font-weight: 700;
     letter-spacing: 1px;
     padding: .2rem .8rem;
     border-radius: 50px;
     text-transform: uppercase;
 }

 .pricing-plan {
     font-size: .82rem;
     font-weight: 700;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     color: var(--text-muted);
     margin-bottom: .5rem;
 }

 .pricing-card.featured .pricing-plan {
     color: rgba(255, 255, 255, .7);
 }

 .pricing-amount {
     font-family: 'Cormorant Garamond', serif;
     font-size: 3rem;
     font-weight: 700;
     color: var(--primary);
     line-height: 1;
 }

 .pricing-card.featured .pricing-amount {
     color: var(--gold);
 }

 .pricing-amount sup {
     font-size: 1.4rem;
     vertical-align: top;
     margin-top: .5rem;
 }

 .pricing-divider {
     height: 1px;
     background: rgba(108, 9, 56, .12);
     margin: 1.5rem 0;
 }

 .pricing-card.featured .pricing-divider {
     background: rgba(255, 255, 255, .2);
 }

 .pricing-features {
     list-style: none;
     padding: 0;
     text-align: left;
     margin-bottom: 2rem;
 }

 .pricing-features li {
     padding: .45rem 0;
     font-size: .9rem;
     display: flex;
     align-items: center;
     gap: .7rem;
     color: var(--text-dark);
 }

 .pricing-card.featured .pricing-features li {
     color: rgba(255, 255, 255, .9);
 }

 .pricing-features li i {
     color: var(--primary);
     font-size: .85rem;
     flex-shrink: 0;
 }

 .pricing-card.featured .pricing-features li i {
     color: var(--gold);
 }

 .btn-pricing {
     width: 100%;
     padding: .85rem;
     border-radius: 50px;
     font-weight: 600;
     font-size: .95rem;
     transition: var(--transition);
     border: 2px solid var(--primary);
     background: transparent;
     color: var(--primary);
     cursor: pointer;
 }

 .btn-pricing:hover {
     background: var(--primary);
     color: var(--white);
 }

 .pricing-card.featured .btn-pricing {
     background: var(--gold);
     border-color: var(--gold);
     color: var(--white);
 }

 .pricing-card.featured .btn-pricing:hover {
     background: #b8923e;
     border-color: #b8923e;
 }

 /* ============================================================
       TEAM SECTION
    ============================================================ */
 #team {
     background: var(--white);
 }

 .team-card {
     text-align: center;
     padding: 2.5rem 1.5rem;
     background: var(--off-white);
     border-radius: var(--radius);
     transition: var(--transition);
     position: relative;
     overflow: hidden;
 }

 .team-card::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, var(--primary), var(--gold));
     transform: scaleX(0);
     transition: var(--transition);
 }

 .team-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 20px 50px rgba(108, 9, 56, .15);
     background: var(--white);
 }

 .team-card:hover::after {
     transform: scaleX(1);
 }

 .team-avatar {
     width: 120px;
     height: 120px;
     border-radius: 50%;
     object-fit: cover;
     border: 4px solid var(--white);
     box-shadow: 0 8px 24px rgba(108, 9, 56, .2);
     /* margin: 0 auto 1.5rem; */
     background: #e8d4dc;
     display: block;
 }

 .avatar-placeholder {
     width: 120px;
     height: 120px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--primary), var(--primary-lt));
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem;
     box-shadow: 0 8px 24px rgba(108, 9, 56, .3);
 }

 .avatar-placeholder i {
     font-size: 2.5rem;
     color: rgba(255, 255, 255, .8);
 }

 .team-card h5 {
     font-size: 1.25rem;
     font-weight: 700;
     color: var(--primary);
     margin-bottom: .3rem;
 }

 .team-role {
     font-size: .85rem;
     color: var(--text-muted);
     font-weight: 500;
     margin-bottom: 1rem;
 }

 .team-socials {
     display: flex;
     justify-content: center;
     gap: .6rem;
 }

 .team-socials a {
     width: 36px;
     height: 36px;
     background: var(--light-pink);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary);
     font-size: .85rem;
     transition: var(--transition);
     text-decoration: none;
 }

 .team-socials a:hover {
     background: var(--primary);
     color: var(--white);
 }

 /* ============================================================
       CONTACT SECTION
    ============================================================ */
 #contact {
     background: var(--light-pink);
 }

 .contact-info-item {
     display: flex;
     align-items: flex-start;
     gap: 1rem;
     margin-bottom: 1.8rem;
 }

 .contact-icon {
     width: 50px;
     height: 50px;
     background: var(--primary);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .contact-icon i {
     color: var(--white);
     font-size: 1.1rem;
 }

 .contact-info-text strong {
     display: block;
     font-size: .92rem;
     margin-bottom: .2rem;
 }

 .contact-info-text span {
     font-size: .85rem;
     color: var(--text-muted);
 }

 .contact-form-wrap {
     background: var(--white);
     border-radius: 20px;
     padding: 2.5rem;
     box-shadow: var(--shadow);
 }

 .form-control {
     border: 2px solid rgba(108, 9, 56, .15);
     border-radius: 10px;
     padding: .8rem 1rem;
     font-size: .92rem;
     transition: var(--transition);
 }

 .form-control:focus {
     border-color: var(--primary);
     box-shadow: 0 0 0 3px rgba(108, 9, 56, .1);
 }

 .form-label {
     font-weight: 600;
     font-size: .88rem;
     color: var(--text-dark);
     margin-bottom: .4rem;
 }

 /* ============================================================
       FOOTER
    ============================================================ */
 footer {
     background: var(--primary-dk);
     color: rgba(255, 255, 255, .8);
     padding: 60px 0 0;
 }

 .footer-brand {
     font-family: 'Cormorant Garamond', serif;
     font-size: 1.7rem;
     font-weight: 700;
     color: var(--white);
 }

 .footer-brand span {
     color: var(--gold);
 }

 .footer-desc {
     font-size: .88rem;
     line-height: 1.8;
     margin: 1rem 0 1.5rem;
     color: rgba(255, 255, 255, .65);
 }

 .footer-social {
     display: flex;
     gap: .6rem;
 }

 .footer-social a {
     width: 38px;
     height: 38px;
     background: rgba(255, 255, 255, .08);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: rgba(255, 255, 255, .7);
     font-size: .9rem;
     transition: var(--transition);
     text-decoration: none;
 }

 .footer-social a:hover {
     background: var(--gold);
     color: var(--white);
     transform: translateY(-2px);
 }

 .footer-heading {
     font-family: 'Cormorant Garamond', serif;
     font-size: 1.1rem;
     font-weight: 700;
     color: var(--white);
     margin-bottom: 1.2rem;
     position: relative;
     padding-bottom: .6rem;
 }

 .footer-heading::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 30px;
     height: 2px;
     background: var(--gold);
 }

 .footer-links {
     list-style: none;
     padding: 0;
 }

 .footer-links li {
     margin-bottom: .5rem;
 }

 .footer-links a {
     color: rgba(255, 255, 255, .65);
     text-decoration: none;
     font-size: .88rem;
     transition: var(--transition);
 }

 .footer-links a:hover {
     color: var(--gold);
     padding-left: 4px;
 }

 .footer-links a::before {
     content: '› ';
     color: var(--gold);
 }

 .footer-contact-item {
     display: flex;
     align-items: flex-start;
     gap: .8rem;
     margin-bottom: .9rem;
 }

 .footer-contact-item i {
     color: var(--gold);
     margin-top: .15rem;
     font-size: .9rem;
 }

 .footer-contact-item span {
     font-size: .85rem;
     color: rgba(255, 255, 255, .65);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, .1);
     padding: 1.2rem 0;
     margin-top: 3rem;
     text-align: center;
     font-size: .82rem;
     color: rgba(255, 255, 255, .45);
 }

 .footer-bottom a {
     color: var(--gold);
     text-decoration: none;
 }

 /* ============================================================
       BACK TO TOP
    ============================================================ */
 #backToTop {
     position: fixed;
     bottom: 2rem;
     right: 2rem;
     width: 45px;
     height: 45px;
     background: var(--primary);
     color: var(--white);
     border: none;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1rem;
     cursor: pointer;
     box-shadow: 0 4px 16px rgba(108, 9, 56, .4);
     transition: var(--transition);
     opacity: 0;
     pointer-events: none;
     z-index: 999;
 }

 #backToTop.show {
     opacity: 1;
     pointer-events: all;
 }

 #backToTop:hover {
     background: var(--primary-dk);
     transform: translateY(-3px);
 }

 /* ============================================================
       RESPONSIVE TWEAKS
    ============================================================ */
 @media (max-width: 991px) {
     .pricing-card.featured {
         transform: scale(1);
     }

     .about-accent-box {
         right: .5rem;
         bottom: .5rem;
     }
 }

 @media (max-width: 767px) {
     section {
         padding: 60px 0;
     }

     .hero-stats {
         gap: 1.5rem;
     }

     .hero-image-wrap {
         display: none;
     }
 }

 /* ===============================
   Floating WhatsApp – Dock Style
================================ */

/* Base */
.floatingWhatsApp.dockSplit {
    position: fixed;
    bottom: clamp(18px, 4vw, 28px);
    right: 18px;

    display: flex;
    align-items: center;

    text-decoration: none;
    z-index: 9999;
}

/* WhatsApp Logo – Left Circle */
.waIconWrap {
    width: 56px;
    height: 56px;

    background: rgba(34, 255, 78, 0.95);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(34, 255, 78, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    z-index: 2;
    animation: waZoomPulse 2.2s ease-in-out infinite;
}

.fa-whatsapp {
    font-size: 2rem !important;
}

.waIcon {
    width: 30px;
    height: 30px;
}

.waBadge {
    margin-left: -14px;
    padding: 6px 18px 6px 26px;
    background: rgba(5, 163, 19, 0.95);

    color: #ffffff;
    font-size: 15px !important;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 0 999px 999px 0;
    box-shadow: 0 10px 25px rgba(34, 255, 78, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .3s ease, box-shadow .3s ease;
}

@media (max-width: 568px) {

    .floatingWhatsApp.dockSplit {
        right: 14px;
        bottom: 18px;
    }

    /* Icon slightly smaller */
    .waIconWrap {
        width: 52px;
        height: 52px;
        animation-duration: 2.8s;
        /* slower = premium */
    }

    .fa-whatsapp {
        font-size: 1.8rem !important;
    }

    /* Hide text badge */
    .waBadge {
        margin-left: -14px;
        padding: 6px 18px 6px 26px;
        background: rgba(5, 163, 19, 0.95);
        color: #fff;
        font-size: 11px !important;
        font-weight: 500;
        white-space: nowrap;
        border-radius: 0 999px 999px 0;
        box-shadow: 0 10px 25px rgba(34, 255, 78, 0.35);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transition: transform .3s ease, box-shadow .3s ease;
    }

}


/* Hover feel */
@media (hover: hover) {
    .floatingWhatsApp.dockSplit:hover .waIconWrap {
        transform: scale(1.08);
        box-shadow: 0 18px 35px rgba(34, 255, 78, 0.389);
    }

    .floatingWhatsApp.dockSplit:hover .waBadge {
        transform: translateX(-4px);
        box-shadow: 0 18px 35px rgba(34, 255, 78, 0.234);
    }
}




/* Zoom in / out */
@keyframes waZoomPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 450px) {

    .hero-content h1{
        font-size: 28px !important;
        text-align: center !important;
    }
    .badgeHero{
       padding-left: 50px !important;
    }

    .hero-content p{
        font-size: 12px !important;
        text-align: center !important;
        width: 80% !important;
        margin: auto;
    }
    .floatingWhatsApp .waBadge {
        display: none !important;
    }

    .about-img-wrap img{
        height: fit-content !important;
    }
    .why-img img {
        height: fit-content !important;
    }
    .product-card img{
        height: fit-content !important;
    }


}

@media (max-width: 768px) {
   
#hero{
    min-height: fit-content !important;
}
    
}


/***************************************Navbar style start****************************************/

#preloader {
    position: fixed;
    inset: 0;
    background: #6C0938; /* theme */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* FIX: flex column to center logo + ring */
.preloaderInner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    transform: scale(1);
    transition: transform .6s ease;
}

.preloaderLogo {
    margin-bottom: 16px;
}

/* Ring Loader */
.loaderRing {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 34, 104, 0.2);
    border-top-color: #fa0079;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* EXIT animation */
#preloader.hide {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
}

#preloader.hide .preloaderInner {
    transform: scale(0.92);
}

/* width of the scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

/* scrollbar track (background) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* scrollbar handle (thumb) */
::-webkit-scrollbar-thumb {
    background: #6C0938;
    /* your brand color */
    border-radius: 10px;
}

/* hover effect */
::-webkit-scrollbar-thumb:hover {
    background: #821f4d;
}

@media (max-width: 455px) {
    .floatingWhatsApp .waBadge {
        display: none !important;
    }
}