a {
    text-decoration: none;
    color: inherit;
}

.logo {
    width: 200px;
    /* height: 45px; */
    /* object-fit: contain; */
}

.navbar-custom {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(11, 31, 51, 0.05);
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
}

/* Scrolled state uses Deep Navy #0B1F33 */
.navbar-custom.scrolled {
    background: #0B1F33;
    padding: 0.75rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-link {
    color: #0B1F33 !important;
    /* Navy Blue */
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 15px;
    position: relative;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled .nav-link {
    color: #FFFFFF !important;
    opacity: 0.7;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: #00B4D8 !important;
    /* Aqua Blue */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00B4D8, #0077B6);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 80%;
}

.brand-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-ripple-wrapper {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00B4D8;
    border-radius: 50%;
    opacity: 0.2;
    animation: ripple-effect 2.5s infinite;
}

@keyframes ripple-effect {
    0% {
        transform: scale(0.8);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.brand-text-main {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0B1F33;
    line-height: 1;
    letter-spacing: -0.5px;
    transition: color 0.4s ease;
}

.navbar-custom.scrolled .brand-text-main {
    color: #FFFFFF;
}

.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00B4D8;
    font-weight: 600;
    margin-top: 2px;
}

.btn-premium {
    background: linear-gradient(90deg, #00B4D8, #0077B6);
    color: #FFFFFF !important;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
    filter: brightness(1.1);
}

.whatsapp-icon {
    color: #25D366;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.navbar-custom.scrolled .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.navbar-custom.scrolled .text-navy {
    color: #FFFFFF !important;
}

.hamburger-icon span {
    display: block;
    height: 3px;
    width: 28px;
    background: #0B1F33;
    border-radius: 3px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.navbar-custom.scrolled .hamburger-icon span {
    background: #FFFFFF;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #FFFFFF;
        margin-top: 15px;
        border-radius: 20px;
        padding: 25px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .navbar-custom.scrolled .navbar-collapse {
        background: #0B1F33;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        margin: 10px 0;
        text-align: center;
        color: #0B1F33 !important;
    }

    .navbar-custom.scrolled .nav-link {
        color: #FFFFFF !important;
    }

    .nav-link::after {
        display: none;
    }
}

/* hero */

.rkr-banner-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Background image with soft light overlay for readability */
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.98) 35%, rgba(255, 255, 255, 0.3) 100%),
        url('../img/banner.webp');
    background-size: cover;
    background-position: center;
    font-family: 'Inter', sans-serif;
}

.rkr-banner-content {
    z-index: 2;
    padding: 100px 0;
}

.rkr-tagline {
    color: #00B4D8;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1.25rem;
    padding: 4px 12px;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 4px;
}

.rkr-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #0B1F33;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.rkr-title span {
    color: #00B4D8;
}

.rkr-subtitle {
    font-family: 'Manrope', sans-serif;
    color: #0B1F33;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.rkr-description {
    color: #4A5568;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.rkr-service-badge {
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-right: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0B1F33;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.rkr-service-badge i {
    color: #00B4D8;
    margin-right: 8px;
}

.rkr-btn-main {
    background: linear-gradient(90deg, #00B4D8, #0077B6);
    color: #FFFFFF !important;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 180, 216, 0.2);
    text-decoration: none;
    display: inline-block;
}

.rkr-btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 180, 216, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .rkr-banner-container {
        text-align: center;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
            url('../img/banner.webp');
    }

    .rkr-description {
        margin-left: auto;
        margin-right: auto;
    }
}

/* banner bottom section */
.rkr-stats-horizon {
    padding: 30px 0;
    background-color: transparent;
    /* Blends with your container */
    font-family: 'Inter', sans-serif;
}

.rkr-pill-card {
    background: #ffffff;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0, 180, 216, 0.15);
    box-shadow: 0 4px 12px rgba(11, 31, 51, 0.05);
    transition: all 0.3s ease;
    height: 65px;
    /* Minimal height */
    margin: 5px auto;
    max-width: 280px;
}

.rkr-pill-card:hover {
    transform: translateY(-2px);
    border-color: #00B4D8;
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.12);
}

.rkr-icon-box1 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00B4D8, #0077B6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    position: relative;
    flex-shrink: 0;
}

/* Soft water ripple effect */
.rkr-icon-box1::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #00B4D8;
    animation: rkr-pulse 2s infinite;
    opacity: 0;
}

@keyframes rkr-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.rkr-text-content {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.rkr-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0B1F33;
}

.rkr-stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .rkr-pill-card {
        max-width: 100%;
    }
}

/* about */
.rkr-about-enhanced {
    padding: 100px 0;
    /* Subtle Gradient Background with Water Texture Feel */
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Subtle background water ripple element */
.rkr-about-enhanced::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.rkr-about-visual {
    position: relative;
    z-index: 1;
}

.rkr-main-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 40px 180px 40px 40px;
    box-shadow: 30px 30px 60px rgba(0, 119, 182, 0.1);
    border: 4px solid #ffffff;
}

.rkr-experience-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: linear-gradient(135deg, #0B1F33 0%, #1a3a5a 100%);
    color: #ffffff;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(11, 31, 51, 0.3);
    text-align: center;
    min-width: 170px;
    animation: rkrFloating 4s ease-in-out infinite;
}

/* Soft pulse ripple behind the badge */
.rkr-experience-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    background: rgba(0, 180, 216, 0.4);
    z-index: -1;
    animation: rkrRipple 3s linear infinite;
}

@keyframes rkrFloating {

    0%,
    100% {
        transform: translateY(0);
    }

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

@keyframes rkrRipple {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.rkr-experience-badge h4 {
    background: linear-gradient(90deg, #00B4D8, #90E0EF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
}

.rkr-tag {
    color: #00B4D8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.rkr-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #0B1F33;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

/* Gradient highlight for Coimbatore */
.rkr-gradient-text {
    background: linear-gradient(90deg, #00B4D8, #0077B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.rkr-text {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.rkr-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.rkr-feature-item {
    background: #ffffff;
    padding: 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 180, 216, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.rkr-feature-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #00B4D8;
    box-shadow: 0 15px 30px rgba(0, 180, 216, 0.15);
}

.rkr-feature-item i {
    color: #00B4D8;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.rkr-feature-item:hover i {
    transform: rotate(15deg);
}

.rkr-feature-item span {
    font-weight: 600;
    color: #0B1F33;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .rkr-about-enhanced {
        padding: 80px 0;
    }

    .rkr-main-img {
        height: 420px;
        border-radius: 40px 120px 40px 40px;
        margin-bottom: 50px;
    }

    .rkr-experience-badge {
        right: 10px;
        bottom: 20px;
    }

    .rkr-heading {
        font-size: 2.2rem;
    }
}

/* service */
.rkr-services-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Subtle water-themed background element */
.rkr-services-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.rkr-section-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.rkr-service-tag {
    color: #00B4D8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.rkr-service-title {
    font-family: 'Poppins', sans-serif;
    color: #0B1F33;
    font-weight: 700;
    font-size: 2.5rem;
}

.rkr-service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 180, 216, 0.1);
    border-radius: 30px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(11, 31, 51, 0.03);
}

/* Floating background number */
.rkr-service-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(0, 180, 216, 0.05);
    transition: all 0.5s ease;
    line-height: 1;
}

.rkr-service-card:hover .rkr-service-number {
    color: rgba(0, 180, 216, 0.12);
    transform: translateY(-10px);
}

.rkr-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #00B4D8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 20px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 180, 216, 0.1);
}

.rkr-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 180, 216, 0.12);
    border-color: #00B4D8;
}

.rkr-service-card:hover .rkr-service-icon {
    background: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

/* Liquid ripple effect in the corner on hover */
.rkr-service-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(144, 224, 239, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
    opacity: 0;
}

.rkr-service-card:hover::after {
    opacity: 1;
    transform: scale(3);
}

.rkr-card-heading {
    font-family: 'Poppins', sans-serif;
    color: #0B1F33;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.rkr-card-text {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rkr-services-section {
        padding: 70px 0;
    }

    .rkr-service-title {
        font-size: 2rem;
    }
}

/* customer */
/* Scoped container to prevent interference */
.rkr-minimal-commitment {
    padding: 60px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #0B1F33;
}

.rkr-min-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Minimalist header layout */
.rkr-min-header {
    text-align: center;
    margin-bottom: 50px;
}

.rkr-min-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00B4D8;
    margin-bottom: 10px;
}

.rkr-min-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 20px;
}

.rkr-min-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* Sleek Horizontal Grid using Flex utilities logic */
.rkr-min-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 40px 0;
    margin-top: 20px;
}

.rkr-min-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Subtle Vertical Divider */
.rkr-min-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #e2e8f0;
}

.rkr-min-icon {
    font-size: 1.4rem;
    color: #00B4D8;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.rkr-min-item:hover .rkr-min-icon {
    transform: translateY(-5px);
}

.rkr-min-label {
    font-weight: 600;
    font-size: 1rem;
    color: #0B1F33;
    margin-bottom: 5px;
}

.rkr-min-sub {
    font-size: 0.85rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .rkr-min-grid {
        flex-direction: column;
        gap: 40px;
    }

    .rkr-min-item::after {
        display: none;
    }

    .rkr-min-title {
        font-size: 1.6rem;
    }
}

/* why choose us */

.rkr-why-section {
    padding: 100px 0;
    /* Premium Gradient Background: Soft flow from white to a very light aqua-blue */
    background: linear-gradient(160deg, #FFFFFF 0%, #F4F9FC 40%, #E0F2FE 100%);
    overflow: hidden;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.rkr-why-section h2,
.rkr-why-section h3 {
    font-family: 'Poppins', sans-serif;
    color: #0B1F33;
}

/* Background Water Blobs */
.rkr-water-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(144, 224, 239, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(40px);
}

.rkr-blob-1 {
    top: -10%;
    right: -5%;
}

.rkr-blob-2 {
    bottom: -10%;
    left: -5%;
}

.rkr-feature-card {
    background: #ffffff;
    border: 1px solid #f0f4f8;
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.rkr-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(11, 31, 51, 0.08);
    border-color: #00B4D8;
}

/* The "Liquid Fill" Background on Hover */
.rkr-feature-card::after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(144, 224, 239, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    transition: bottom 0.5s ease;
    z-index: -1;
}

.rkr-feature-card:hover::after {
    bottom: 0;
}

/* Droplet Icon Container */
.rkr-icon-box {
    width: 70px;
    height: 70px;
    background: #F4F9FC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    /* Unique Droplet Shape */
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    position: relative;
}

.rkr-feature-card:hover .rkr-icon-box {
    background: #00B4D8;
    border-radius: 50% 50% 50% 50%;
    transform: rotate(360deg);
}

.rkr-icon-box i {
    font-size: 1.8rem;
    color: #00B4D8;
    transition: color 0.4s ease;
}

.rkr-feature-card:hover .rkr-icon-box i {
    color: #ffffff;
}

.rkr-header-subtitle {
    color: #00B4D8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.rkr-section-desc {
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.rkr-card-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.rkr-card-text {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Micro Animation for numbers */
.rkr-number-tag {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: rgba(11, 31, 51, 0.03);
    transition: color 0.3s ease;
}

.rkr-feature-card:hover .rkr-number-tag {
    color: rgba(0, 180, 216, 0.1);
}

/* faq */
.rkr-faq-wrapper {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Abstract Background Elements */
.rkr-faq-bg-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.rkr-shape-1 {
    top: -100px;
    right: -100px;
}

.rkr-shape-2 {
    bottom: -100px;
    left: -100px;
}

.rkr-faq-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.rkr-faq-card {
    border: none !important;
    background: #ffffff !important;
    border-radius: 20px !important;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(11, 31, 51, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9 !important;
}

.rkr-faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 180, 216, 0.08);
    border-color: rgba(0, 180, 216, 0.2) !important;
}

.rkr-faq-header {
    padding: 0 !important;
    background: transparent !important;
}

.rkr-faq-button {
    width: 100%;
    padding: 25px 30px;
    background: transparent !important;
    border: none !important;
    display: flex;
    align-items: center;
    text-align: left;
    color: #0B1F33 !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: none !important;
    position: relative;
}

/* Custom Icon Indicator */
.rkr-faq-icon-box {
    width: 45px;
    height: 45px;
    background: #f0f9ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #00B4D8;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.rkr-faq-button:not(.collapsed) .rkr-faq-icon-box {
    background: #00B4D8;
    color: #ffffff;
    box-shadow: 0 8px 15px rgba(0, 180, 216, 0.3);
}

/* Chevron Rotation */
.rkr-faq-chevron {
    margin-left: auto;
    transition: transform 0.3s ease;
    color: #cbd5e1;
}

.rkr-faq-button:not(.collapsed) .rkr-faq-chevron {
    transform: rotate(180deg);
    color: #00B4D8;
}

.rkr-faq-body {
    padding: 0 30px 30px 95px;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.rkr-accent-text {
    color: #00B4D8;
    font-weight: 600;
}

@media (max-width: 768px) {
    .rkr-faq-body {
        padding: 0 25px 25px 25px;
    }

    .rkr-faq-button {
        padding: 20px;
        font-size: 1rem;
    }

    .rkr-faq-icon-box {
        width: 35px;
        height: 35px;
        margin-right: 15px;
        font-size: 0.9rem;
    }
}


/* footer */
.rkr-footer-main {
    background-color: #0B1F33;
    /* Deep Navy Blue */
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
}

/* Abstract background glow for visual depth */
.rkr-footer-main::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, rgba(11, 31, 51, 0) 70%);
    pointer-events: none;
}

.rkr-footer-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rkr-footer-brand i {
    color: #00B4D8;
    /* Aqua Blue */
    filter: drop-shadow(0 0 8px rgba(0, 180, 216, 0.5));
}

.rkr-footer-text {
    color: #94a3b8;
    /* Muted Slate */
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.rkr-footer-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.rkr-footer-heading::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: #00B4D8;
    border-radius: 10px;
}

.rkr-contact-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rkr-contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
    color: #00B4D8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.rkr-contact-box:hover .rkr-contact-icon {
    background: #00B4D8;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 180, 216, 0.3);
}

.rkr-contact-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.rkr-contact-info {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
}

.rkr-map-frame-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    height: 280px;
}

.rkr-map-frame-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.2) contrast(1.1) brightness(0.9);
}

.rkr-footer-bottom {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: #64748b;
}

.rkr-webbitech-link {
    color: #00B4D8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.rkr-webbitech-link:hover {
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .rkr-footer-main {
        text-align: center;
    }

    .rkr-footer-brand {
        justify-content: center;
    }

    .rkr-footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .rkr-contact-box {
        justify-content: center;
        text-align: left;
    }
}