﻿/* ----------------------------------------------------
   Google Font
---------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@600;700&display=swap');
/* GLOBAL FIX: prevents horizontal overflow from ANY section */

* {
    max-width: 100% !important;
    box-sizing: border-box !important;
}



body{
    font-family: 'Nunito', sans-serif;
}
/* ----------------------------------------------------
   Root Colors
---------------------------------------------------- */
:root{
  --main: #1B74A6;
  --dark: #0f1724;
  --muted: #6b7280;
  --glass: rgba(255,255,255,0.92);
  --shadow: 0 12px 36px rgba(2,6,23,0.12);
}

/* ----------------------------------------------------
   HEADER BASE (Floating Center Header)
---------------------------------------------------- */
.center-header{
  position: fixed;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: min(1100px, calc(100% - 36px));
  background: var(--glass);
  border-radius: 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  z-index: 9999;
  transition: all 260ms ease;
  border: 1px solid rgba(27,116,166,0.06);
}

/* ----------------------------------------------------
   Inner layout: left | center | right
---------------------------------------------------- */
.ch-inner{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
}

/* ----------------------------------------------------
   Logo
---------------------------------------------------- */
.ch-left { justify-self: start; }


/* Logo container */
.ch-left {
  display: flex;
  align-items: center;
}

/* Logo image styling */
.ch-logo-img {
  height: 55px;          /* Adjust as per your layout */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Add a subtle hover effect */
.ch-logo:hover .ch-logo-img {
  transform: scale(1.05);
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .ch-logo-img {
    height: 45px;
  }
}

/* ----------------------------------------------------
   DESKTOP NAVIGATION
---------------------------------------------------- */
.ch-nav { justify-self: center; }

.ch-menu {
  list-style:none;
  display:flex;
  gap:18px;
  align-items:center;
  margin:0;
  padding:0;
}

.ch-menu li { position: relative; }

.ch-menu a, .ch-dd-btn {
  font-family: 'Nunito', sans-serif;
  font-weight:600;
  color:var(--dark);
  background:transparent;
  border:none;
  padding:8px 10px;
  border-radius:8px;
  cursor:pointer;
  text-decoration:none;
}

.ch-menu a:hover,
.ch-dd-btn:hover {
  color:var(--main);
  background: rgba(27,116,166,0.04);
}

/* ----------------------------------------------------
   DROPDOWN (Desktop)
---------------------------------------------------- */
.ch-dd {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 16px 50px rgba(2,6,23,0.12);
  padding: 8px 0;

  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.995);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  z-index: 40;
}

.ch-dd li a {
  display:block;
  padding:10px 14px;
  color:var(--dark);
  text-decoration:none;
  border-radius:6px;
}

.ch-dd li a:hover {
  background: rgba(27,116,166,0.04);
  color:var(--main);
}

.has-dd.open > .ch-dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* ----------------------------------------------------
   RIGHT SIDE (CTA + Burger)
---------------------------------------------------- */
.ch-right {
  justify-self: end;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
}

.ch-cta {
  background: linear-gradient(90deg,var(--main), #15597F);
  color:#fff;
  padding:8px 14px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  font-family: 'Nunito', sans-serif;
}

.ch-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(27,116,166,0.14);
}

/* Burger Icon */
.ch-burger {
  display:none;
  width:44px;
  height:38px;
  border:none;
  background:transparent;
  cursor:pointer;
  padding:6px;
}

.ch-burger span {
  display:block;
  height:3px;
  width:22px;
  background:var(--main);
  margin:4px 0;
  border-radius:3px;
}

/* ----------------------------------------------------
   MOBILE PANEL (overlay)
---------------------------------------------------- */
.ch-mobile {
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,0.45);
  display:none;
  align-items:flex-start;
  justify-content:center;
  z-index:9998;
}

.ch-mobile.open {
  display:flex;
}

/* ----------------------------------------------------
   PREMIUM MOBILE MENU DESIGN
---------------------------------------------------- */
.ch-mobile-inner {
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  background: #fff;
  padding: 28px 24px;
  box-sizing: border-box;
}

/* Header inside mobile */
.ch-mobile-head {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:22px;
}

.ch-mobile-logo {
  font-size:22px;
  font-weight:700;
  color:var(--main);
  text-decoration:none;
}

.ch-mobile-close {
  font-size:26px;
  background:transparent;
  border:none;
  cursor:pointer;
  color:var(--dark);
}

/* ----------------------------------------------------
   MOBILE NAVIGATION
---------------------------------------------------- */
.ch-mobile-nav ul {
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.ch-mobile-nav > ul > li > a {
  display:block;
  padding:14px 10px;
  background:#f6f7fb;
  color:var(--dark);
  font-size:17px;
  font-weight:700;
  text-decoration:none;
  border-radius:10px;
  transition:0.2s;
}

.ch-mobile-nav > ul > li > a:hover {
  background:rgba(27,116,166,0.1);
  color:var(--main);
}

/* Accordion Buttons */
.m-toggle {
  width:100%;
  text-align:left;
  padding:14px 10px;
  background:#f6f7fb;
  color:var(--dark);
  font-size:17px;
  font-weight:700;
  border-radius:10px;
  border:none;
  cursor:pointer;
  transition:0.2s;
}

.m-toggle:hover {
  background:rgba(27,116,166,0.1);
  color:var(--main);
}

/* Submenu */
.m-sub {
  max-height:0;
  overflow:hidden;
  transition:max-height 260ms ease;
  padding-left:14px;
  border-left:2px solid rgba(27,116,166,0.15);
}

.m-sub.open {
  max-height:500px;
}

.m-sub li a {
  display:block;
  padding:10px 8px;
  font-size:15px;
  color:var(--muted);
  border-radius:8px;
}

.m-sub li a:hover {
  background:rgba(27,116,166,0.08);
  color:var(--main);
}

/* Mobile CTA */
.mobile-cta-wrap {
  margin-top:10px;
}

.mobile-cta {
  display:block;
  padding:14px 10px;
  background: linear-gradient(90deg, var(--main), #15597F);
  text-align:center;
  color:#fff;
  font-size:17px;
  font-weight:700;
  border-radius:10px;
  text-decoration:none;
}

/* ----------------------------------------------------
   MOBILE BREAKPOINT
---------------------------------------------------- */
@media (max-width:920px) {

  .ch-menu { display:none !important; }
  .ch-cta { display:none !important; }
  .ch-burger { display:block !important; }
  .ch-inner { grid-template-columns:auto 1fr auto; }
}

/* ----------------------------------------------------
   ACCESSIBILITY FOCUS
---------------------------------------------------- */
.ch-dd-btn:focus,
.ch-burger:focus,
.m-toggle:focus {
  outline: 3px solid rgba(27,116,166,0.12);
  outline-offset: 3px;
  border-radius:6px;
}



.topbar {
    width: 100%;
    background: var(--main);
    padding: 7px 0;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    position: relative; /* stays below fixed header */
    z-index: 1;
}

.topbar-inner {
    width: min(1200px, 92%);
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    margin-right: 12px;
    font-weight: 600;
}
.topbar {
    background: var(--main);
    color: #fff;
}

.topbar a, .topbar a i {
    color: #fff !important;
}

/* MOBILE HEADER FIX */
@media (max-width: 920px) {

    /* Make the header full width & centered */
    .center-header {
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
        top: 0 !important;
    }

    /* Fix inner alignment */
    .ch-inner {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 12px 16px !important;
        box-sizing: border-box !important;
        gap: 0 !important;
    }

    /* Always show burger on mobile */
    .ch-burger {
        display: block !important;
    }

    /* Fix right area alignment */
    .ch-right {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        width: auto !important;
    }

    /* Prevent logo & toggle overflow */
    .ch-left, .ch-right {
        flex: 0 0 auto !important;
    }
}
html, body {
    overflow-x: hidden !important;
}
/* TOPBAR FIX MOBILE */
@media (max-width: 920px) {

    .topbar {
        padding: 10px 0 !important;
        text-align: center !important;
    }

    .topbar-inner {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
        text-align: center !important;
    }

    .tb-left, .tb-right {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    /* Fix icon spacing */
    .tb-left a, .tb-right a {
        font-size: 14px !important;
        margin: 0 6px !important;
    }
}

/* REMOVE BULLETS FROM ALL DROPDOWN UL ELEMENTS */
.ch-dd,
.ch-dd li,
.ch-dd li a,
.m-sub,
.m-sub li,
.m-sub li a {
    list-style: none !important;
}

/* REMOVE DEFAULT UL PADDING THAT CAUSES LEFT DOTS */
.ch-dd,
.m-sub {
    padding-left: 0 !important;
    margin-left: 0 !important;
}


/* FIX: allow Font Awesome icons to render properly */
.fa-solid, .fa-regular, .fa-light, .fa-duotone {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}


   
/* ============================
   RK Mart — Split + Floating Island
   (Paste into your .aspx page)
   ============================ */
/* GLOBAL */
.rkx-slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 20px;
}

.rkx-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    display: flex;
    align-items: center;
    padding: 40px;
    transition: all 0.9s cubic-bezier(.25,.8,.25,1);
}

/* ACTIVE SLIDE */
.rkx-slide.active {
    left: 0;
}
.rkx-slide.prev {
    left: -100%;
}

/* -----------------------------------
   SLIDE 1 — WATER BOTTLE
----------------------------------- */
.water-slide {
    background: linear-gradient(135deg,#057CA4,#0aa7c5);
    color: #fff;
}

.water-bg {
    position: absolute;
    inset: 0;
    background: url('images/water-flow.gif');
    background-size: cover;
    opacity: 0.28;
}

.glass-disc {
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    position: absolute;
    left: 55%;
    top: 53%;
    transform: translate(-50%,-50%);
    backdrop-filter: blur(6px);
    animation: rotateDisc 12s linear infinite;
}

@keyframes rotateDisc {
    from { transform: translate(-50%,-50%) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg); }
}

/* BUBBLES */
.bubble {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    position: absolute;
    animation: bubbleUp 4s infinite ease-in;
}

@keyframes bubbleUp {
    0%   { transform: translateY(40px) scale(0.7); opacity: 0; }
    50%  { opacity: 1; }
    100% { transform: translateY(-120px) scale(1); opacity: 0; }
}

.b1 { left: 60%; bottom: 60px; animation-delay: 0s; }
.b2 { left: 66%; bottom: 80px; animation-delay: .8s; }
.b3 { left: 53%; bottom: 70px; animation-delay: 1.4s; }

/* Product Image */
.rkx-product.bottle {
    width: 340px;
    position: absolute;
    left: 55%;
    top: 52%;
    transform: translate(-50%,-50%);
    animation: floatBottle 4.6s ease-in-out infinite;
}

@keyframes floatBottle {
    0%,100% { transform: translate(-50%,-50%) translateY(0); }
    50%     { transform: translate(-50%,-50%) translateY(-14px); }
}

/* -----------------------------------
   SLIDE 2 — MASSAGER
----------------------------------- */
.massager-slide {
    background: linear-gradient(135deg,#c95a0b,#f38a3b);
    color: #fff;
}

.massager-blob {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at 30% 30%,#fff2,#fff1);
    border-radius: 50%;
    filter: blur(10px);
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
}

/* Pulse Rings */
.pulse-ring {
    width: 300px;
    height: 300px;
    border: 4px solid rgba(255,255,255,0.45);
    border-radius: 50%;
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
    animation: pulseRings 4s infinite ease-out;
}

@keyframes pulseRings {
    from { transform: translateY(-50%) scale(0.7); opacity: 1; }
    to   { transform: translateY(-50%) scale(1.25); opacity: 0; }
}

.r1 { animation-delay: 0s; }
.r2 { animation-delay: .8s; }
.r3 { animation-delay: 1.6s; }

/* Product Image */
.rkx-product.massager {
    width: 360px;
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
    animation: massagerVibrate 0.25s infinite alternate;
}

@keyframes massagerVibrate {
    0% { transform: translateY(-50%) translateX(-2px); }
    100% { transform: translateY(-50%) translateX(2px); }
}

/* Background for Slide 3 */

.soft-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.soft-bg .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures it fills the entire section */
  z-index: -1;
  opacity: 0.6; /* adjust visibility as needed */
}

/* Slide 3 Image */
.rkm-img3 {
  border-radius: 5px;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.rkm-img3:hover {
  transform: scale(1.03);
}


/* -----------------------------------
   TEXT AREA
----------------------------------- */
.rkx-content {
    width: 40%;
    z-index: 10;
    position: relative;
}

.rkx-content.right {
    margin-left: auto;
    text-align: right;
}

.rkx-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.rkx-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.rkx-btn {
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    color: #111;
    font-weight: 700;
    text-decoration: none;
}

/* -----------------------------------
   CONTROLS
----------------------------------- */
.rkx-prev, .rkx-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffffdd;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
}
.rkx-prev { left: 20px; }
.rkx-next { right: 20px; }

.products-section {
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color:#cfefea;
    border-radius: 12px;    
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.row1{
background-color:#e65a0eb2;
}

.product-image {
    padding:15px;
}
.product-image img {
    width: 420px;
    height:400px;
    display:block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.product-content {
    flex: 1;
    min-width: 300px;
    padding:25px;
}

.product-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.product-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #000;
}

.product-content ul {
    margin-bottom: 20px;
}

.product-content ul li {
    margin-bottom: 8px;
    color: #000;
}

.btn-buy {
    display: inline-block;
    background: #1B74A6;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 17px;
    text-decoration: none;
}

/*Why choose section*/
/* Why RK Mart Section */
.why-section {
    padding: 70px 20px;
    background: #f5faff;
}

.why-section .section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.why-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #1B74A6;
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.why-card p {
    color: #444;
    font-size: 15px;
}

/* mission vision Section */
.mission-vision-section {
    padding: 70px 20px;
    background: #fff;
}

.mv-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.mv-box {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background: #ccdcec;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    text-align: center;
}

.mv-box h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1B74A6;
    font-weight: 700;
}

.mv-box p {
    font-size: 16px;
    color: #444;
}

/*  join  Section */
.rkmart-family-section {
    background: teal;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.family-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.family-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 25px auto;
    line-height: 1.6;
}

.family-btn {
    display: inline-block;
    background: #FFA500;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.family-btn:hover {
    background: #ff8c00;
}

/* Footer Section */
.rk-footer {
    background: #14597f;
    color: #fff;
    padding: 60px 20px 20px 20px;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size:1.4rem;
}

.footer-col p {
    color: #fff;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #FFA500;
}

.footer-bottom {
    border-top: 1px solid #2e3b4e;
    text-align: center;
    padding-top: 15px;
}

.footer-bottom p {
    color: #aaa;
    font-size: 14px;
}
/* Go To Top Button Wrapper (40px small size) */
.go-top-btn {
    position: fixed !important;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EDF4F6;
    z-index: 999999 !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.25s ease;
}

/* Show button */
.go-top-btn.show {
    opacity: 1;
    pointer-events: auto;
}

/* Hover animation */
.go-top-btn:hover {
    transform: translateY(-4px) scale(1.06);
}

/* Icon size reduced */
.go-top-btn i {
    color: #155a81;
    font-size: 14px;
    position: absolute;
    z-index: 3;
}

/* PROGRESS RING */
.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

/* Background circle */
.progress-bg {
    fill: none;
    stroke: rgba(223, 197, 164, 0.32);
    stroke-width: 3;
}

/* Progress circle */
.progress-value {
    fill: none;
    stroke: #155a81;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 95;
    stroke-dashoffset: 95;
    transition: stroke-dashoffset 0.25s linear;
}

/* Remove stacking issues in ASPX */
form, form > div {
    position: static !important;
}

/* ===============================
   RK MART — MODERN HERO SLIDER
   =============================== */

.rkm-hero {
    width: 100%;
    height: 540px;
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Slide container */
.rkm-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.rkm-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 5;
}

/* Left content */
.rkm-left {
    width: 45%;
}

.rkm-left h1 {
    font-size: 42px;
    font-weight: 800;
    color: #144e73;
    margin-bottom: 12px;
}

.rkm-left p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 22px;
    color: #222;
}
/* ========================================= */
/* TABLET VIEW (Between 992px and 768px wide) */
/* ========================================= */
@media (max-width: 992px) {
  .rkm-left h1 {
    font-size: 32px; /* slightly smaller for tablets */
    margin-bottom: 10px;
  }

  .rkm-left p {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .rkm-right img {
    width: 30%;
    margin: 0 auto;
  }

  .rkm-left {
    padding: 0 20px;
    text-align: center;
  }
}

/* ========================================= */
/* MOBILE VIEW (Below 768px wide) */
/* ========================================= */
@media (max-width: 768px) {
  .rkm-left h1 {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
  }

  .rkm-left p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0 auto 18px;
    text-align: center;
    max-width: 90%;
  }

  .rkm-left .rkm-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .rkm-right {
    text-align: center;
    margin-top: 15px;
  }

  .rkm-right img {
    width: 40%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
  }
}

/* ========================================= */
/* SMALL MOBILE VIEW (Below 480px wide) */
/* ========================================= */
@media (max-width: 480px) {
  .rkm-left h1 {
    font-size: 22px;
  }

  .rkm-left p {
    font-size: 14px;
    line-height: 1.4;
  }

  .rkm-right img {
    width: 75%;
    max-width: 250px;
  }
}
.rkm-btn {
    background: #155a81;
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 17px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s ease;
}

.rkm-btn:hover {
    background: #0f4768;
}

/* Right product area */
.rkm-right {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Floating product image */
.rkm-img {
    width: 300px;
    height: auto;
    animation: float 4s ease-in-out infinite;
    z-index: 3;
}

/* Floating animation */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-14px); }
}

/* Water bubble (Bottle Slide) */
.rkm-bubble {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, #d4f1f9, #a0d9e9);
    border-radius: 50%;
    filter: blur(8px);
    position: absolute;
    z-index: 1;
    animation: bubble-fade 6s infinite alternate;
}

@keyframes bubble-fade {
    0% { transform: scale(1); opacity: 0.85; }
    100% { transform: scale(1.15); opacity: 1; }
}

/* Pulse ring (Massager Slide) */
.rkm-pulse {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 3px solid rgba(243,140,60,0.55);
    position: absolute;
    animation: pulse 2.4s infinite ease-out;
    z-index: 1;
}

@keyframes pulse {
    0% { transform: scale(0.7); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Navigation arrows */
.rkm-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffffdd;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    color: #155a81;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transition: 0.3s ease;
    z-index: 10;
}

.rkm-nav:hover {
    background: #ffffff;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dots */
.rkm-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.rkm-dot {
    width: 12px;
    height: 12px;
    background: #c0d8e4;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.rkm-dot.active {
    background: #155a81;
    transform: scale(1.2);
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 980px) {
    .rkm-slide {
        flex-direction: column-reverse;
        padding: 40px 20px;
        text-align: center;
    }

    .rkm-left, .rkm-right {
        width: 100%;
    }

    .rkm-img {
        width: 240px;
    }
}
/* Bubble wrapper */
.rk-bubbles {
    position: absolute;
    inset: 0;
    z-index: 8; /* ABOVE background, BELOW text */
    pointer-events: auto; /* IMPORTANT – allow hover & click */
}

/* Bubble style */
.bubble {
    position: absolute;
    bottom: -120px;

    /* visible & clean bubble */
    background: radial-gradient(circle, #ffffff 45%, #c7edff 90%);
    border-radius: 50%;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));

    opacity: 1;
    width: var(--size, 30px);
    height: var(--size, 30px);
    left: var(--left, 50%);

    animation: bubbleRise var(--speed, 8s) infinite ease-out;
    transition: 0.3s ease;
}

/* Animation */
@keyframes bubbleRise {
    0%   { transform: translateY(0) scale(1); opacity: 0.6; }
    40%  { opacity: 1; }
    100% { transform: translateY(-600px) scale(1.1); opacity: 0; }
}

/* Hover effect */
.bubble:hover {
    transform: scale(1.35) translateY(-30px) !important;
    filter: brightness(1.35) drop-shadow(0 6px 16px rgba(0,0,0,0.3));
}

/* Keep text above bubbles */
.rkm-left,
.rkm-right {
    z-index: 20;
}
.water-bg {
    position: absolute;
    inset: 0;
    background: url('../images/water-43.gif');
    background-size: cover;
    opacity: 0.28;
}

/* MAIN HEAT BACKGROUND */
.heat-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffb483, #ff8a4c, #ff6d2e);
    background-size: 240% 240%;
    animation: heatMove 7s ease-in-out infinite;
    opacity: 0.75;
    z-index: 1;
    filter: blur(8px);
}

@keyframes heatMove {
    0% { background-position: 0% 40%; }
    50% { background-position: 100% 60%; }
    100% { background-position: 0% 40%; }
}

/* SPARKS — GLOW PARTICLES */
.heat-sparks {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2;
}

.heat-sparks::before,
.heat-sparks::after {
    content: "";
    position: absolute;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle, rgba(255,255,255,0.4), transparent 70%);
    top: -30%;
    left: -30%;
    animation: sparkRotate 14s linear infinite;
    opacity: 0.25;
}

.heat-sparks::after {
    animation-duration: 20s;
    opacity: 0.3;
}

@keyframes sparkRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* FLOATING WARM BLOBS */
.heat-blobs {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.heat-blobs span {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.35), rgba(255,255,255,0.05));
    border-radius: 50%;
    filter: blur(25px);
    animation: blobFloat 10s ease-in-out infinite;
}

.heat-blobs span:nth-child(1) {
    top: 18%;
    left: 20%;
    animation-duration: 12s;
}

.heat-blobs span:nth-child(2) {
    bottom: 15%;
    right: 18%;
    animation-duration: 10s;
}

.heat-blobs span:nth-child(3) {
    top: 35%;
    right: 40%;
    animation-duration: 14s;
}

@keyframes blobFloat {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-18px) scale(1.05); }
    100% { transform: translateY(0) scale(1); }
}
/* =====================================================
   GLOBAL RESET (Fix unwanted ASPX inherited margins)
===================================================== */
.rk-why-banner,
.rk-content,
.rk-content h1,
.rk-content p {
    margin: 0 !important;
    padding: 0 !important;
}

/* =====================================================
   FULL WIDTH & CENTER FIX (Force perfect alignment)
===================================================== */
.rk-why-banner,
.rk-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* FORCE CENTER TEXT */
.rk-content h1,
.rk-content p {
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    overflow-wrap: break-word;
}

/* REMOVE any hidden left padding that affects layout */
.rk-why-banner * {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* FIX background layers centering */
.rk-bg-center,
.rk-wc-bg,
.rk-wc-wave,
.rk-bubbles {
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
}

/* =====================================================
   MAIN BANNER
===================================================== */
.rk-why-banner {
    position: relative;
    width: 100%;
    min-height: 280px;
    padding: 100px 20px !important;

    background: linear-gradient(135deg, #dff7ff, #bde8f7, #a9dff3);

    display: grid;
    place-items: center;
    text-align: center;

    overflow: hidden;
}

/* Background Glow */
.rk-bg-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 480px;
    height: 480px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,255,255,0.85), rgba(255,255,255,0));
    filter: blur(10px);
    z-index: 1;
}

/* =====================================================
   BEAUTIFUL FLOATING DOT BUBBLES
===================================================== */
.rk-bubbles span {
    position: absolute;
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    animation: smallFloat 7s infinite ease-in-out;
    filter: blur(1px);
    z-index: 2;
}

/* Soft bubble animation */
@keyframes smallFloat {
    0%   { transform: translateY(0) }
    50%  { transform: translateY(-15px) }
    100% { transform: translateY(0) }
}

/* Dot positions – AWAY FROM TEXT */
.rk-bubbles span:nth-child(1) { top: 10%; left: 12%; }
.rk-bubbles span:nth-child(2) { top: 20%; right: 10%; }
.rk-bubbles span:nth-child(3) { bottom: 20%; left: 20%; }
.rk-bubbles span:nth-child(4) { bottom: 25%; right: 18%; }
.rk-bubbles span:nth-child(5) { top: 50%; right: 5%; }

/* =====================================================
   CONTENT
===================================================== */
.rk-content {
    position: relative;
    z-index: 10;
    max-width: 650px !important;
    width: 100%;
    text-align: center;
    margin: 0 auto !important;
}

/* Title */
.rk-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #0d5370;
    margin-bottom: 12px !important;
}

/* Paragraph */
.rk-content p {
    font-size: 18px;
    color: #0f4a61;
    line-height: 1.6;
    margin-top: 5px !important;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */
@media (max-width: 600px) {
    .rk-why-banner {
        padding: 80px 12px !important;
    }

    .rk-content h1 {
        font-size: 28px;
    }

    .rk-content p {
        font-size: 15px;
        line-height: 1.45;
    }
}

@media (max-width: 350px) {
    .rk-content h1 {
        font-size: 22px;
    }

    .rk-content p {
        font-size: 14px;
    }

    /* hide bubbles on ultra small screens */
    .rk-bubbles span {
        display: none;
    }
}

@media (max-width: 300px) {
    .rk-why-banner {
        padding: 55px 10px !important;
    }

    .rk-content h1 {
        font-size: 20px;
    }

    .rk-content p {
        font-size: 13px;
    }

    .rk-bubbles span {
        display: none;
    }
}


/* =============================
   RK MART – WHY CHOOSE SECTION 1
============================= */

.rkm-choose-section {
    padding: 20px 20px;
    border-radius: 16px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

/* Section Title */
.rkm-choose-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #0d5370;
    margin-bottom: 10px;
}

/* Subtitle */
.rkm-choose-subtitle {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px auto;
    font-size: 18px;
    color: #276a83;
}

/* Main grid */
.rkm-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: auto;
}

/* Each card */
.rkm-choose-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    border-top: 5px solid #0d5370;
}

/* Hover effect */
.rkm-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

/* Card icon */
.rkm-choose-icon {
    font-size: 42px;
    color: #0d5370;
    margin-bottom: 15px;
}

/* Headline */
.rkm-choose-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f6884;
}

/* Card text */
.rkm-choose-card p {
    color: #3c4f57;
    font-size: 16px;
    line-height: 1.6;
}

/* Background subtle circles */
.rkm-choose-section::before,
.rkm-choose-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    filter: blur(40px);
    z-index: 0;
}

.rkm-choose-section::before {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -60px;
}

.rkm-choose-section::after {
    width: 250px;
    height: 250px;
    bottom: -60px;
    right: -40px;
}

/* Ensuring cards stay above the glow */
.rkm-choose-grid,
.rkm-choose-title,
.rkm-choose-subtitle {
    position: relative;
    z-index: 5;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .rkm-choose-title { font-size: 32px; }
    .rkm-choose-subtitle { font-size: 16px; }
}
/* =======================
   ABOUT US – BANNER
======================= */

/* Reset offsets */
.rk-about-banner,
.rk-about-content,
.rk-about-content * {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}

.rk-about-banner {
    position: relative;
    width: 100%;
    min-height: 300px;
    padding: 110px 22px !important;

    /* NEW ABOUT-US BACKGROUND */
    background: linear-gradient(135deg, #f7fcff, #d4f0ff, #bfe7fa);

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    border-radius: 18px;
}

/* Soft ambient glow */
.rk-about-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255,255,255,0.95), rgba(255,255,255,0));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(12px);
    z-index: 1;
}

/* Smooth gradient wave */
.rk-about-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.35),
        rgba(255,255,255,0.10),
        rgba(255,255,255,0.35)
    );
    animation: aboutWave 10s linear infinite;
    z-index: 2;
    opacity: 0.5;
}
@keyframes aboutWave {
    0% { transform: translateX(-20%); }
    100% { transform: translateX(20%); }
}

/* Floating dots */
.rk-about-dots span {
    position: absolute;
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.65);
    border-radius: 50%;
    animation: aboutDotFloat 7s infinite ease-in-out;
    z-index: 3;
}
@keyframes aboutDotFloat {
    0% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(-20px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0.7; }
}

/* Dot positions */
.rk-about-dots span:nth-child(1) { top: 15%; left: 18%; }
.rk-about-dots span:nth-child(2) { top: 25%; right: 12%; }
.rk-about-dots span:nth-child(3) { bottom: 22%; left: 25%; }
.rk-about-dots span:nth-child(4) { bottom: 28%; right: 20%; }
.rk-about-dots span:nth-child(5) { top: 50%; right: 8%; }

/* Content */
.rk-about-content {
    position: relative;
    z-index: 10;
    max-width: 750px;
    width: 100%;
}

.rk-about-content h1 {
    font-size: 44px;
    font-weight: 800;
    color: #0d5170;
    margin-bottom: 14px !important;
}

.rk-about-content p {
    font-size: 18px;
    color: #16495c;
    line-height: 1.6;
}

/* =======================
     RESPONSIVE
======================= */

@media (max-width: 600px) {
    .rk-about-banner {
        padding: 80px 16px !important;
    }
    .rk-about-content h1 {
        font-size: 30px;
    }
    .rk-about-content p {
        font-size: 15px;
    }
}

@media (max-width: 350px) {
    .rk-about-content h1 {
        font-size: 24px;
    }
    .rk-about-content p {
        font-size: 14px;
    }
    .rk-about-dots span {
        display: none;
    }
}
/* ============================
   ABOUT US – SECTION
============================ */

.rk-about-hero {
    width: 100%;
    padding: 90px 25px;
    background: #f8fcff;
    display: flex;
    justify-content: center;
}

.rk-ah-wrapper {
    max-width: 1150px;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    flex-wrap: wrap;
}

/* TEXT AREA */
.rk-ah-text {
    flex: 1 1 500px;
}

.rk-ah-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0d5370;
    margin-bottom: 12px;
}

.rk-ah-text p {
    font-size: 17px;
    line-height: 1.75;
    color: #184b61;
    margin-bottom: 18px;
}

/* IMAGE AREA */
.rk-ah-visual {
    position: relative;
    flex: 1 1 420px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Glow Circle */
.rk-ah-circle {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #e0f7ff, transparent 65%);
    border-radius: 50%;
    filter: blur(12px);
    position: absolute;
    z-index: 1;
}

/* Abstract Shape */
.rk-ah-shape {
    width: 300px;
    height: 260px;
    background: linear-gradient(135deg, #89d5ef, #5ab4cf);
    border-radius: 40px 25px 70px 25px;
    transform: rotate(10deg);
    position: absolute;
    z-index: 1;
    opacity: 0.85;
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

/* Main Image Styles */
.rk-ah-img {
    position: absolute;
    z-index: 5;
    animation: float 4s infinite ease-in-out;
}

/* Image 1 */
.img-one {
    width: 230px;
    left: 0;
}

/* Image 2 */
.img-two {
    width: 230px;
    right: 0;
    transform: translateY(30px);
    animation-delay: 1s;
}

/* Floating Animation */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-12px); }
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .rk-ah-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .rk-ah-img {
        position: relative;
        width: 220px;
    }

    .img-one, .img-two {
        left: auto;
        right: auto;
        transform: translateY(0);
    }

    .rk-ah-visual {
        height: auto;
    }
}

@media (max-width: 600px) {
    .rk-ah-text h2 { font-size: 30px; }
    .rk-ah-text p { font-size: 15px; }
}


/* ==========================================================
   PREMIUM IMAGE SHOWCASE — Glass + 3D + Hover Tilt
   ========================================================== */

/* MAIN WRAPPER */
.rk-ah-visual {
    position: relative;
    flex: 1 1 500px;
    height: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1600px; /* enables 3D tilt */
}

/* ==========================================================
   GLOW BASE LAYER (Premium)
   ========================================================== */

.rk-ah-circle {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(165,224,250,0.1));
    border-radius: 50%;
    filter: blur(20px);
    position: absolute;
    z-index: 1;
}

/* GLASS REFLECTION PANEL */
.rk-ah-shape {
    width: 350px;
    height: 260px;
    border-radius: 40px;
    position: absolute;
    z-index: 2;
    backdrop-filter: blur(12px);
    background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0.08));
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    transform: rotate(6deg);
}

/* ==========================================================
   GLOBAL FLOATING & TILTING ANIMATION
   ========================================================== */

.rk-ah-img {
    position: absolute;
    z-index: 5;
    transform-style: preserve-3d;
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* FLOAT */
@keyframes float3D {
    0%,100% { transform: translateY(0) rotate3d(1,0,0,0deg); }
    50%     { transform: translateY(-14px) rotate3d(1,0,0,3deg); }
}

/* ==========================================================
   IMAGE 1 — Vertical Product (Bottle)
   ========================================================== */

.img-one {
    width: 385px;
    left: 8%;
    bottom: 8%;
    animation: float3D 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,0.22));
}

/* LIGHT RIM (vertical image) */
.img-one::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: 0 0 35px rgba(88,198,255,0.7);
    opacity: 0.35;
    pointer-events: none;
}

/* ==========================================================
   IMAGE 2 — Horizontal Product (Massager)
   ========================================================== */

.img-two {
    width: 280px;
    right: 4%;
    top: 10%;
    transform: rotate(-8deg);
    animation: float3D 4.8s ease-in-out infinite;
    filter: drop-shadow(0 14px 22px rgba(0,0,0,0.25));
}

/* LIGHT RIM (horizontal image) */
.img-two::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    box-shadow: 0 0 30px rgba(109,198,255,0.6);
    opacity: 0.25;
    pointer-events: none;
}

/* ==========================================================
   PREMIUM HOVER TILT (desktop only)
   ========================================================== */

@media (hover:hover) {

    .rk-ah-visual:hover .rk-ah-img {
        transform: translateY(-12px) rotate3d(1,1,0,10deg) scale(1.05);
        filter: brightness(1.08);
    }

    .rk-ah-visual:hover .img-two {
        transform: translateY(-12px) rotate(-4deg) rotate3d(1,1,0,12deg) scale(1.06);
    }
}

/* ==========================================================
   RESPONSIVE VERSION
   ========================================================== */

@media (max-width: 900px) {

    .rk-ah-visual {
        height: auto;
        padding: 20px 0;
    }

    /* Reset both images on mobile → clean stack */
    .img-one,
    .img-two {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        margin: 10px auto;
        transform: none !important;
        animation: float3D 4s ease-in-out infinite;
    }

    .img-one { width: 180px; }
    .img-two { width: 240px; }

    .rk-ah-circle,
    .rk-ah-shape {
        display: none !important;
    }
}



/* ============================
   ABOUT US – UNIQUE ZIG-ZAG CARDS
============================ */

.rk-about-uniquecards {
    width: 100%;
    padding: 80px 25px;
    background: #ffffff;
}

.rk-au-title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: #0d5370;
    margin-bottom: 45px;
}

/* Zig-Zag Layout */
.rk-au-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 35px;
}

.rk-au-card {
    padding: 28px 24px;
    background: #f3fbff;
    border-radius: 16px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.07);
    max-width: 650px;
}

/* Zig-Zag positions */
.rk-au-card.left {
    justify-self: flex-start;
}

.rk-au-card.right {
    justify-self: flex-end;
}

.rk-au-card h3 {
    font-size: 22px;
    color: #0f4e65;
    margin-bottom: 8px;
    font-weight: 700;
}

.rk-au-card p {
    color: #184b61;
    line-height: 1.6;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .rk-au-card,
    .rk-au-card.left,
    .rk-au-card.right {
        justify-self: center;
        text-align: center;
    }
}
/* ============================
   CONTACT US – TOP BANNER
============================ */

.rk-contact-banner {
    position: relative;
    width: 100%;
    padding: 120px 25px;
    border-radius: 18px;
    overflow: hidden;

    background: linear-gradient(135deg, #dff9ff, #c0ecf7, #a7dceb);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Background Mist */
.rk-contact-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.8), transparent 65%),
                radial-gradient(circle at 70% 30%, rgba(255,255,255,0.6), transparent 60%);
    filter: blur(10px);
    z-index: 1;
}

/* Soft Glow */
.rk-contact-glow {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,255,255,0.75), transparent 70%);
    filter: blur(18px);
    z-index: 2;
}

/* Floating dots */
.rk-contact-dots span {
    position: absolute;
    background: rgba(255,255,255,0.7);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    filter: blur(1px);
    animation: contactFloat 8s infinite ease-in-out;
    z-index: 3;
}

/* dot positions */
.rk-contact-dots span:nth-child(1) { top: 15%; left: 18%; }
.rk-contact-dots span:nth-child(2) { top: 25%; right: 12%; }
.rk-contact-dots span:nth-child(3) { bottom: 22%; left: 28%; }
.rk-contact-dots span:nth-child(4) { bottom: 18%; right: 22%; }
.rk-contact-dots span:nth-child(5) { top: 55%; right: 8%; }

@keyframes contactFloat {
    0%   { transform: translateY(0); opacity: 0.7; }
    50%  { transform: translateY(-20px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0.7; }
}

/* CONTENT */
.rk-contact-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.rk-contact-content h1 {
    font-size: 46px;
    font-weight: 800;
    color: #0f5068;
    margin-bottom: 12px;
}

.rk-contact-content p {
    font-size: 18px;
    color: #133f52;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .rk-contact-banner { padding: 85px 20px; }
    .rk-contact-content h1 { font-size: 32px; }
    .rk-contact-content p { font-size: 15px; }
    .rk-contact-dots span { width: 10px; height: 10px; }
}
/* RESET */
.rk-contact-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* PAGE WRAPPER */
.rk-contact-wrapper {
    width: 100%;
    padding: 60px 25px;
    font-family: 'Nunito', sans-serif;
}

/* HEADER SECTION */
.rk-contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.rk-contact-header h1 {
    font-size: 42px;
    color: #0d5370;
    font-weight: 800;
}

.rk-contact-header p {
    margin-top: 10px;
    font-size: 18px;
    color: #0f4a61;
}

/* MAIN TWO COLUMN LAYOUT */
.rk-contact-main {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

/* LEFT COLUMN */
.rk-contact-details {
    flex: 1;
    min-width: 300px;
}

.rk-detail-card {
    background: #f1fbff;
    padding: 22px;
    border-radius: 12px;
    margin-bottom: 18px;
    display: flex;
    gap: 18px;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.rk-detail-card i {
    font-size: 26px;
    color: #0d5370;
}

.rk-detail-card h3 {
    font-size: 20px;
    color: #0d5370;
}

.rk-detail-card p {
    font-size: 15px;
    color: #145a72;
}

/* RIGHT COLUMN */
.rk-contact-form-area {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.07);
}

.rk-contact-form-area h2 {
    color: #0d5370;
    font-size: 26px;
    margin-bottom: 22px;
}

.rk-form-field {
    margin-bottom: 18px;
}

.rk-input, .rk-select, .rk-textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #b4d7e7;
    font-size: 15px;
}

.rk-textarea {
    height: 130px;
}

.rk-submit-btn {
    background: #0d5370;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    font-size: 17px;
    margin-top: 10px;
}

.rk-submit-btn:hover {
    background: #093d54;
}

/* SUPPORT SECTION */
.rk-support-info {
    text-align: center;
    margin-bottom: 60px;
}

.rk-support-info h2 {
    font-size: 32px;
    color: #0d5370;
    margin-bottom: 25px;
}

.rk-support-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.rk-support-box {
    background: #e9f7ff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.rk-support-box h3 {
    font-size: 20px;
    color: #0d5370;
    margin-bottom: 10px;
}

.rk-support-box p {
    font-size: 15px;
    color: #0f4a61;
}

/* SOCIAL */
.rk-contact-social {
    text-align: center;
}

.rk-contact-social h2 {
    font-size: 26px;
    color: #0d5370;
    margin-bottom: 12px;
}

.rk-social-row a {
    font-size: 28px;
    margin: 0 12px;
    color: #0d5370;
}

.rkmart-products {
  padding: 80px 20px;
  background: #fafafa;
  text-align: center;
}

.rkmart-product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.rkmart-product-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rkmart-product-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.rkmart-product-img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.rkmart-product-info {
  padding: 20px;
}

.rkmart-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #10233e;
  margin-bottom: 15px;
}
.rk-pro{
    background: linear-gradient(90deg,var(--main), #15597F);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
}

/* Responsive */
@media (max-width: 992px) {
  .rkmart-product-box {
    width: 280px;
  }
  .rkmart-product-img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .rkmart-product-grid {
    flex-direction: column;
    align-items: center;
  }
  .rkmart-product-box {
    width: 90%;
  }
  .rkmart-product-img {
    height: 200px;
  }
}

.included-set {
  margin-top: 15px;
}

.included-set h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 10px;
}

.included-items {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 15px;
}

.included-items img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.included-items img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .included-items img {
    width: 55px;
    height: 55px;
  }
}
