* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
    --rayan-blue: #0872b9;
    --rayan-dark: #061f33;
    --rayan-deep: #031522;
    --rayan-orange: #f7941d;
    --rayan-yellow: #ffc400;
    --rayan-white: #ffffff;
}

/* ===============================
   Clean Sticky Header
================================ */

.rayan-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    border-bottom: 1px solid rgba(6, 31, 51, 0.08);
    transition: all 0.35s ease;
}

.rayan-header.header-scrolled {
    box-shadow: 0 14px 38px rgba(3, 21, 34, 0.14);
}

/* Hide old logo background shape */
.logo-bg-shape {
    display: none !important;
}

/* SVG */
.rayan-header-svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.rayan-header .rayan-icon {
    display: inline-block;
    flex: 0 0 auto;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* ===============================
   Navbar
================================ */

.rayan-navbar {
    position: relative;
    background: #ffffff;
    padding: 12px 0px;
}

.rayan-navbar .container {
    position: relative;
    z-index: 3;
}

.rayan-nav-wrap {
    position: relative;
    width: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.35s ease;
}

.header-scrolled .rayan-nav-wrap {
    min-height: 76px;
}

/* ===============================
   Logo
================================ */

.rayan-logo {
    position: relative;
    width: 250px;
    height: 90px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    z-index: 4;
    transition: all 0.35s ease;
}

.header-scrolled .rayan-logo {
    height: 76px;
}

.logo-white-box {
    width: 220px;
    height: 58px;
    /* background: #ffffff;
    border: 1px solid rgba(6, 31, 51, 0.08);
    border-radius: 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    /* box-shadow: 0 12px 30px rgba(6, 31, 51, 0.12); */
    transition: all 0.35s ease;
}

.logo-white-box img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.rayan-logo:hover .logo-white-box {
    transform: translateY(-3px);
    /* box-shadow: 0 18px 42px rgba(6, 31, 51, 0.18); */
}

.header-scrolled .logo-white-box {
    height: 50px;
}

.header-scrolled .logo-white-box img {
    max-height: 39px;
}

/* ===============================
   Menu Button Style
================================ */

.rayan-menu {
    gap: 10px;
}

.rayan-menu .nav-link {
    position: relative;
    min-height: 44px;
    padding: 12px 18px !important;
    border-radius: 4px;
    color: var(--rayan-dark);
    background: #ffffff;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.35s ease;
}

.rayan-menu .nav-link span {
    position: relative;
    z-index: 3;
}

/* soft button background */
.rayan-menu .nav-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f2f5f8 100%);
    opacity: 0;
    z-index: 1;
    transition: all 0.35s ease;
}

/* bottom active line */
.rayan-menu .nav-link::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    height: 3px;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--rayan-orange), var(--rayan-blue));
    transform: scaleX(0);
    transform-origin: right;
    z-index: 2;
    transition: transform 0.35s ease;
}

.rayan-menu .nav-link:hover,
.rayan-menu .nav-link.active {
    color: var(--rayan-blue);
    border-color: rgba(8, 114, 185, 0.10);
    box-shadow: 0 10px 24px rgba(6, 31, 51, 0.08);
    transform: translateY(-2px);
}

.rayan-menu .nav-link:hover::after,
.rayan-menu .nav-link.active::after {
    opacity: 1;
}

.rayan-menu .nav-link:hover::before,
.rayan-menu .nav-link.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* ===============================
   Desktop Call Button
================================ */

.rayan-call-btn {
    position: relative;
    min-height: 52px;
    padding: 13px 25px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--rayan-orange), #ffad3a);
    color: #ffffff;
    font-size: 15px;
    font-weight: 950;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 16px 38px rgba(247, 148, 29, 0.30);
    transition: all 0.35s ease;
}

.rayan-call-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--rayan-blue), var(--rayan-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.42s ease;
    z-index: -2;
}

.rayan-call-btn::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -75%;
    width: 55%;
    height: 180%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: rotate(25deg);
    transition: left 0.65s ease;
    z-index: -1;
}

.rayan-call-btn .rayan-icon {
    position: relative;
    z-index: 2;
    width: 28px;
    height: 28px;
    padding: 7px;
    border-radius: 50%;
    color: var(--rayan-dark);
    background: #ffffff;
    transition: all 0.35s ease;
}

.rayan-call-btn span {
    position: relative;
    z-index: 2;
}

.rayan-call-btn:hover {
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(8, 114, 185, 0.36);
}

.rayan-call-btn:hover::before {
    transform: scaleX(1);
}

.rayan-call-btn:hover::after {
    left: 125%;
}

.rayan-call-btn:hover .rayan-icon {
    color: #ffffff;
    background: var(--rayan-orange);
    transform: rotate(-18deg) scale(1.08);
    animation: callPulse 0.8s ease infinite alternate;
}

@keyframes callPulse {
    from {
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12);
    }

    to {
        box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.03);
    }
}

/* ===============================
   Mobile Phone + Toggle
================================ */

.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 6;
}

.mobile-call-number {
    height: 40px;
    padding: 0 12px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--rayan-orange), #ffad3a);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 24px rgba(247, 148, 29, 0.30);
    transition: all 0.35s ease;
}

.mobile-call-number::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--rayan-blue), var(--rayan-dark));
    transform: translateX(-105%);
    transition: transform 0.35s ease;
}

.mobile-call-number .rayan-icon,
.mobile-call-number span {
    position: relative;
    z-index: 2;
}

.mobile-call-number .rayan-icon {
    width: 14px;
    height: 14px;
    color: #ffffff;
}

.mobile-call-number:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(8, 114, 185, 0.28);
}

.mobile-call-number:hover::before {
    transform: translateX(0);
}

.mobile-call-number:hover .rayan-icon {
    animation: mobilePhoneShake 0.45s ease;
}

@keyframes mobilePhoneShake {
    0%, 100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-14deg);
    }

    50% {
        transform: rotate(14deg);
    }

    75% {
        transform: rotate(-8deg);
    }
}

/* Hamburger */
.rayan-toggler {
    width: 42px;
    height: 40px;
    border: 0;
    background: var(--rayan-dark);
    border-radius: 8px;
    padding: 9px;
    box-shadow: none !important;
    position: relative;
    z-index: 6;
}

.rayan-toggler span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    margin: 5px 0;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.rayan-toggler.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.rayan-toggler.active span:nth-child(2) {
    opacity: 0;
}

.rayan-toggler.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===============================
   Responsive
================================ */

@media (max-width: 1199px) {
    .rayan-logo {
        width: 220px;
    }

    .logo-white-box {
        width: 190px;
    }

    .rayan-menu {
        gap: 6px;
    }

    .rayan-menu .nav-link {
        padding: 11px 13px !important;
        font-size: 14px;
    }

    .rayan-call-btn {
        padding: 12px 20px;
    }
}

@media (max-width: 991px) {
    .rayan-navbar {
        box-shadow: 0 10px 26px rgba(3, 21, 34, 0.10);
    }

    .rayan-nav-wrap {
        min-height: 74px;
    }

    .header-scrolled .rayan-nav-wrap {
        min-height: 68px;
    }

    .rayan-logo {
        width: 185px;
        height: 74px;
    }

    .header-scrolled .rayan-logo {
        height: 68px;
    }

    .logo-white-box {
        width: 155px;
        height: 46px;
        padding: 6px 9px;
        border-radius: 8px;
        box-shadow: 0 8px 18px rgba(6, 31, 51, 0.12);
    }

    .logo-white-box img {
        max-height: 35px;
    }

    .header-scrolled .logo-white-box {
        height: 42px;
    }

    .header-scrolled .logo-white-box img {
        max-height: 32px;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        margin: 0;
        padding: 14px;
        border-top: 1px solid rgba(6, 31, 51, 0.08);
        border-radius: 0 0 18px 18px;
        box-shadow: 0 20px 36px rgba(3, 21, 34, 0.16);
        z-index: 20;
    }

    .navbar-collapse.collapsing {
        position: absolute;
        height: auto;
        overflow: hidden;
        transition: height 0.25s ease;
    }

    .rayan-menu {
        align-items: stretch !important;
        gap: 8px;
    }

    .rayan-menu .nav-link,
    .header-scrolled .rayan-menu .nav-link {
        width: 100%;
        min-height: 46px;
        padding: 13px 15px !important;
        justify-content: flex-start;
        border-radius: 8px;
        background: linear-gradient(180deg, #ffffff, #f4f7fa);
        border: 1px solid rgba(6, 31, 51, 0.07);
        box-shadow: none;
    }

    .rayan-menu .nav-link::before {
        left: 15px;
        right: auto;
        bottom: 7px;
        width: 42px;
    }

    .rayan-menu .nav-link::after {
        display: none;
    }

    .rayan-menu .nav-link:hover,
    .rayan-menu .nav-link.active {
        color: var(--rayan-blue);
        background: linear-gradient(180deg, #ffffff, #eef6fb);
        transform: none;
        box-shadow: 0 10px 22px rgba(6, 31, 51, 0.07);
    }
}

@media (max-width: 575px) {
    .rayan-nav-wrap {
        min-height: 68px;
    }

    .header-scrolled .rayan-nav-wrap {
        min-height: 64px;
    }

    .rayan-logo {
        width: 145px;
        height: 68px;
    }

    .header-scrolled .rayan-logo {
        height: 64px;
    }

    .logo-white-box {
        width: 125px;
        height: 40px;
        padding: 5px 7px;
    }

    .logo-white-box img {
        max-height: 29px;
    }

    .mobile-call-number {
        height: 38px;
        padding: 0 10px;
        font-size: 12px;
    }

    .rayan-toggler {
        width: 40px;
        height: 43px;
    }
}

@media (max-width: 420px) {
    .rayan-logo {
        width: 125px;
    }

    .logo-white-box {
        width: 108px;
        height: 38px;
    }

    .logo-white-box img {
        max-height: 27px;
    }

    .mobile-call-number span {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .rayan-logo {
        width: 112px;
    }

    .logo-white-box {
        width: 96px;
        height: 36px;
    }

    .logo-white-box img {
        max-height: 25px;
    }

    .mobile-call-number {
        padding: 0 8px;
    }
}

/* ======================================
   Header Final Fix
   Logo Bigger + Menu Normal Shadow
====================================== */

/* Logo size increase */
.rayan-logo {
    width: 300px !important;
    height: 96px !important;
}

.logo-white-box {
    width: 270px !important;
    height: 70px !important;
    padding: 9px 16px !important;
    /* border-radius: 10px !important; */
    /* border: 1px solid rgba(6, 31, 51, 0.08); */
}

.logo-white-box img {
    max-height: 100px !important;
    max-width: 100% !important;
}

.rayan-logo:hover .logo-white-box {
    transform: none !important;
    box-shadow: none !important;
}

.header-scrolled .rayan-logo {
    height: 82px !important;
}

.header-scrolled .logo-white-box {
    height: 62px !important;
    width: 250px !important;
    box-shadow: none !important;
}

.header-scrolled .logo-white-box img {
    max-height: 100px !important;
}

/* Navbar height adjust for bigger logo */
.rayan-nav-wrap {
    min-height: 96px !important;
}

.header-scrolled .rayan-nav-wrap {
    min-height: 82px !important;
}

/* Menu items normal shadow */
.rayan-menu .nav-link {
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%) !important;
    border: 1px solid rgba(6, 31, 51, 0.08) !important;
    box-shadow: 0 8px 22px rgba(6, 31, 51, 0.07) !important;
    color: var(--rayan-dark) !important;
}

/* Menu hover / active more premium */
.rayan-menu .nav-link:hover,
.rayan-menu .nav-link.active {
    color: var(--rayan-blue) !important;
    border-color: rgba(8, 114, 185, 0.22) !important;
    background: linear-gradient(180deg, #ffffff 0%, #eef7fd 100%) !important;
    box-shadow: 
        0 14px 34px rgba(8, 114, 185, 0.14),
        inset 0 0 0 1px rgba(255, 255, 255, 0.75) !important;
    transform: translateY(-3px);
}

/* Hover/active bottom line stronger */
.rayan-menu .nav-link::before {
    bottom: 5px !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--rayan-orange), var(--rayan-blue)) !important;
}

/* Hover e light shine effect */
.rayan-menu .nav-link::after {
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(247, 148, 29, 0.08) 45%,
        rgba(8, 114, 185, 0.10) 100%
    ) !important;
}

/* Mobile responsive logo */
@media (max-width: 1199px) {
    .rayan-logo {
        width: 260px !important;
    }

    .logo-white-box {
        width: 230px !important;
        height: 64px !important;
    }

    .logo-white-box img {
        max-height: 52px !important;
    }
}

@media (max-width: 991px) {
    .rayan-nav-wrap {
        min-height: 78px !important;
    }

    .header-scrolled .rayan-nav-wrap {
        min-height: 72px !important;
    }

    .rayan-logo {
        width: 210px !important;
        height: 78px !important;
    }

    .header-scrolled .rayan-logo {
        height: 72px !important;
    }

    .logo-white-box {
        width: 185px !important;
        height: 54px !important;
        padding: 6px 10px !important;
        box-shadow: none !important;
    }

    .logo-white-box img {
        max-height: 43px !important;
    }

    .header-scrolled .logo-white-box {
        width: 175px !important;
        height: 50px !important;
    }

    .header-scrolled .logo-white-box img {
        max-height: 40px !important;
    }

    .rayan-menu .nav-link,
    .header-scrolled .rayan-menu .nav-link {
        box-shadow: 0 8px 20px rgba(6, 31, 51, 0.07) !important;
    }

    .rayan-menu .nav-link:hover,
    .rayan-menu .nav-link.active {
        transform: translateX(4px) !important;
        box-shadow: 0 12px 28px rgba(8, 114, 185, 0.13) !important;
    }
}

@media (max-width: 575px) {
    .rayan-logo {
        width: 165px !important;
        height: 68px !important;
    }

    .logo-white-box {
        width: 145px !important;
        height: 46px !important;
        padding: 5px 8px !important;
    }

    .logo-white-box img {
        max-height: 36px !important;
    }

    .header-scrolled .logo-white-box {
        width: 138px !important;
        height: 44px !important;
    }

    .header-scrolled .logo-white-box img {
        max-height: 68px !important;
    }
}

@media (max-width: 420px) {
    .rayan-logo {
        width: 145px !important;
    }

    .logo-white-box {
        width: 128px !important;
        height: 42px !important;
    }

    .logo-white-box img {
        max-height: 68px !important;
    }
}

@media (max-width: 360px) {
    .rayan-logo {
        width: 128px !important;
    }

    .logo-white-box {
        width: 112px !important;
        height: 40px !important;
    }

    .logo-white-box img {
        max-height: 30px !important;
    }
}

/* ======================================
   Menu Button Stronger Box Shadow
====================================== */

.rayan-menu .nav-link {
    box-shadow:
        0 10px 26px rgba(6, 31, 51, 0.12),
        0 3px 8px rgba(6, 31, 51, 0.06) !important;
}

/* Hover / Active Shadow More Premium */
.rayan-menu .nav-link:hover,
.rayan-menu .nav-link.active {
    box-shadow:
        0 18px 42px rgba(8, 114, 185, 0.20),
        0 8px 18px rgba(247, 148, 29, 0.10),
        inset 0 0 0 1px rgba(255, 255, 255, 0.85) !important;
    transform: translateY(2px) !important;
}

/* Mobile menu shadow */
@media (max-width: 991px) {
    .rayan-menu .nav-link,
    .header-scrolled .rayan-menu .nav-link {
        box-shadow:
            0 10px 26px rgba(6, 31, 51, 0.12),
            0 3px 8px rgba(6, 31, 51, 0.06) !important;
    }

    .rayan-menu .nav-link:hover,
    .rayan-menu .nav-link.active {
        box-shadow:
            0 15px 34px rgba(8, 114, 185, 0.18),
            0 6px 14px rgba(247, 148, 29, 0.10) !important;
        transform: translateX(5px) !important;
    }
}

/* ===============================
   Header Language Button
================================ */

.header-action-group {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.rayan-lang-wrap {
    position: relative;
    z-index: 50;
}

.rayan-lang-btn {
    position: relative;
    min-height: 52px;
    padding: 13px 18px;
    border: 1px solid rgba(6, 31, 51, 0.10);
    border-radius: 9px;
    color: var(--rayan-dark);
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    font-size: 14px;
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow:
        0 10px 26px rgba(6, 31, 51, 0.12),
        0 3px 8px rgba(6, 31, 51, 0.06);
    transition: all 0.35s ease;
}

.rayan-lang-btn:hover,
.rayan-lang-wrap.lang-open .rayan-lang-btn {
    color: var(--rayan-blue);
    border-color: rgba(8, 114, 185, 0.22);
    background: linear-gradient(180deg, #ffffff 0%, #eef7fd 100%);
    box-shadow:
        0 18px 42px rgba(8, 114, 185, 0.20),
        0 8px 18px rgba(247, 148, 29, 0.10);
    transform: translateY(-4px);
}

.rayan-lang-globe {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rayan-orange), var(--rayan-yellow));
    display: inline-grid;
    place-items: center;
    font-size: 14px;
}

.rayan-lang-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.rayan-lang-wrap.lang-open .rayan-lang-arrow {
    transform: rotate(180deg);
}

.rayan-lang-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: 230px;
    max-height: 330px;
    overflow-y: auto;
    padding: 10px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(6, 31, 51, 0.08);
    box-shadow: 0 24px 60px rgba(6, 31, 51, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.35s ease;
}

.rayan-lang-wrap.lang-open .rayan-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rayan-lang-dropdown button {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--rayan-dark);
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 850;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rayan-lang-dropdown button:hover,
.rayan-lang-dropdown button.active {
    color: var(--rayan-blue);
    background: linear-gradient(180deg, #ffffff, #eef7fd);
    box-shadow: 0 8px 20px rgba(6, 31, 51, 0.08);
}

/* Hide Google default top banner */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt {
    display: none !important;
}

body {
    top: 0 !important;
}

.skiptranslate {
    display: none !important;
}

/* Mobile */
@media (max-width: 991px) {
    .header-action-group {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
        margin-left: 0 !important;
    }

    .header-action-group .rayan-call-btn {
        display: none;
    }

    .rayan-lang-wrap {
        width: 100%;
    }

    .rayan-lang-btn {
        width: 100%;
        justify-content: space-between;
        min-height: 46px;
        border-radius: 8px;
        transform: none !important;
    }

    .rayan-lang-dropdown {
        position: static;
        width: 100%;
        max-height: 260px;
        margin-top: 10px;
        opacity: 0;
        visibility: hidden;
        display: none;
        transform: none;
        box-shadow: 0 14px 32px rgba(6, 31, 51, 0.14);
    }

    .rayan-lang-wrap.lang-open .rayan-lang-dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}


:root {
    --rec-blue: #0872b9;
    --rec-dark: #061f33;
    --rec-deep: #031522;
    --rec-orange: #f7941d;
    --rec-yellow: #ffc400;
    --rec-white: #ffffff;
}

/* ===============================
   Hero Banner Slider
================================ */

.rec-banner-hero {
    position: relative;
    overflow: hidden;
    background: var(--rec-deep);
}

.rec-banner-hero .carousel,
.rec-banner-hero .carousel-inner,
.rec-banner-hero .carousel-item,
.rec-banner-slide {
    min-height: 720px;
}

.rec-banner-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dark overlay */
.rec-banner-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            rgba(3, 21, 34, 0.95) 0%,
            rgba(6, 31, 51, 0.88) 42%,
            rgba(6, 31, 51, 0.58) 70%,
            rgba(3, 21, 34, 0.82) 100%);
    z-index: 1;
}

/* Grid overlay */
.rec-banner-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.35;
    z-index: 2;
    pointer-events: none;
}

/* Color glow */
.rec-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 25%, rgba(247, 148, 29, 0.22), transparent 34%),
        radial-gradient(circle at 86% 78%, rgba(8, 114, 185, 0.28), transparent 38%);
    z-index: 3;
    pointer-events: none;
}

.rec-banner-slide .container {
    position: relative;
    z-index: 5;
}

/* ===============================
   Layout
================================ */

.rec-banner-height {
    min-height: 720px;
    padding: 90px 0 105px;
    display: flex;
    align-items: center;
}

.rec-banner-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
    align-items: center;
    gap: 58px;
}

/* ===============================
   Left Content
================================ */

.rec-banner-content {
    max-width: 780px;
    text-align: left;
}

.rec-banner-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 17px;
    border-radius: 50px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(12px);
    font-size: 14px;
    font-weight: 850;
    margin-bottom: 22px;
    transition: all 0.35s ease;
}

.rec-banner-label:hover {
    background: rgba(247, 148, 29, 0.22);
    border-color: rgba(247, 148, 29, 0.55);
    transform: translateY(-3px);
}

.rec-hero-icon {
    width: 18px;
    height: 18px;
    color: var(--rec-yellow);
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex: 0 0 auto;
}

.rec-banner-content h1,
.rec-banner-content h2 {
    color: #ffffff;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.06;
    font-weight: 950;
    letter-spacing: -1.7px;
    margin-bottom: 22px;
    text-align: left;
}

.rec-banner-content h1::after,
.rec-banner-content h2::after {
    content: "";
    display: block;
    width: 110px;
    height: 5px;
    margin: 22px 0 0;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--rec-orange), var(--rec-yellow));
}

.rec-banner-content p {
    max-width: 720px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.75;
    text-align: left;
}

/* ===============================
   Hero Buttons
================================ */

.rec-banner-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.rec-btn-primary,
.rec-btn-outline {
    position: relative;
    min-height: 56px;
    padding: 15px 28px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: 0.2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    overflow: hidden;
    isolation: isolate;
    transition: all 0.4s ease;
}

.rec-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--rec-orange), #ffb13b);
    border: 1px solid rgba(255, 196, 0, 0.35);
    box-shadow:
        0 18px 42px rgba(247, 148, 29, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.rec-btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--rec-blue), var(--rec-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.42s ease;
    z-index: -2;
}

.rec-btn-primary::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -80%;
    width: 48%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: rotate(25deg);
    transition: left 0.75s ease;
    z-index: -1;
}

.rec-btn-primary:hover {
    color: #ffffff;
    transform: translateY(-5px);
    border-color: rgba(8, 114, 185, 0.45);
    box-shadow:
        0 24px 56px rgba(8, 114, 185, 0.42),
        0 10px 22px rgba(247, 148, 29, 0.18);
}

.rec-btn-primary:hover::before {
    transform: scaleX(1);
}

.rec-btn-primary:hover::after {
    left: 130%;
}

.rec-btn-outline {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(14px);
    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.rec-btn-outline::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    transform: translateY(105%);
    transition: transform 0.38s ease;
    z-index: -1;
}

.rec-btn-outline::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 9px;
    width: 0;
    height: 3px;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--rec-orange), var(--rec-blue));
    transform: translateX(-50%);
    transition: width 0.38s ease;
    z-index: 2;
}

.rec-btn-outline:hover {
    color: var(--rec-deep);
    transform: translateY(-5px);
    border-color: #ffffff;
    box-shadow:
        0 24px 52px rgba(255, 255, 255, 0.18),
        0 12px 30px rgba(8, 114, 185, 0.22);
}

.rec-btn-outline:hover::before {
    transform: translateY(0);
}

.rec-btn-outline:hover::after {
    width: calc(100% - 46px);
}

.rec-btn-primary span,
.rec-btn-primary svg,
.rec-btn-outline span,
.rec-btn-outline svg {
    position: relative;
    z-index: 2;
}

.rec-btn-icon {
    width: 19px;
    height: 19px;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: transform 0.35s ease;
}

.rec-btn-primary:hover .rec-btn-icon {
    transform: translateX(7px);
}

/* ===============================
   Stats Table
================================ */

.rec-banner-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 690px;
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.rec-banner-stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(247, 148, 29, 0.12), transparent 42%),
        linear-gradient(315deg, rgba(8, 114, 185, 0.14), transparent 48%);
    pointer-events: none;
}

.rec-banner-stats div {
    position: relative;
    z-index: 2;
    min-height: 88px;
    padding: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    text-align: center;
    overflow: hidden;
    transition: all 0.42s ease;
}

.rec-banner-stats div:last-child {
    border-right: 0;
}

.rec-banner-stats div::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--rec-orange), var(--rec-blue));
    opacity: 0;
    transition: opacity 0.42s ease;
    z-index: -2;
}

.rec-banner-stats div::after {
    content: "";
    position: absolute;
    top: -70%;
    left: -85%;
    width: 55%;
    height: 240%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    transform: rotate(25deg);
    transition: left 0.75s ease;
    z-index: -1;
}

.rec-banner-stats div:hover {
    transform: translateY(-6px);
}

.rec-banner-stats div:hover::before {
    opacity: 1;
}

.rec-banner-stats div:hover::after {
    left: 130%;
}

.rec-banner-stats strong {
    display: block;
    color: var(--rec-yellow);
    font-size: 25px;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 9px;
    transition: all 0.35s ease;
}

.rec-banner-stats span {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.25;
    transition: all 0.35s ease;
}

.rec-banner-stats div:hover strong,
.rec-banner-stats div:hover span {
    color: #ffffff;
}

/* ===============================
   Product Image Card
================================ */

.rec-banner-product {
    position: relative;
    z-index: 6;
    display: flex;
    justify-content: flex-end;
}

.rec-product-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 18px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(16px);
    box-shadow: 0 32px 95px rgba(0, 0, 0, 0.34);
    overflow: hidden;
    isolation: isolate;
    transition: all 0.45s ease;
}

.rec-product-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 26px;
    border: 1px dashed rgba(255, 255, 255, 0.22);
    pointer-events: none;
    z-index: 3;
}

.rec-product-card::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 148, 29, 0.42), transparent 70%);
    z-index: -1;
}

.rec-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 44px 115px rgba(0, 0, 0, 0.42);
}

.rec-product-tag {
    position: absolute;
    left: 32px;
    top: 32px;
    z-index: 5;
    display: inline-flex;
    color: var(--rec-dark);
    background: linear-gradient(135deg, var(--rec-orange), var(--rec-yellow));
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 12px 30px rgba(247, 148, 29, 0.34);
}

.rec-product-img {
    position: relative;
    height: 330px;
    border-radius: 26px;
    overflow: hidden;
    background: #ffffff;
}

.rec-product-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(3, 21, 34, 0.72) 100%);
}

.rec-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.85s ease;
}

.rec-product-card:hover .rec-product-img img {
    transform: scale(1.08);
}

.rec-product-info {
    position: relative;
    z-index: 4;
    padding: 18px 10px 5px;
    text-align: center;
}

.rec-product-info h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 950;
    line-height: 1.2;
    margin-bottom: 8px;
}

.rec-product-info p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    text-align: center;
}

/* ===============================
   Controls + Indicators
================================ */

.rec-hero-control {
    width: 54px;
    height: 54px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 10;
}

.rec-hero-prev {
    left: 34px;
}

.rec-hero-next {
    right: 34px;
}

.rec-hero-control span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
}

.rec-hero-control:hover span {
    background: var(--rec-orange);
    border-color: var(--rec-orange);
    transform: scale(1.08);
}

.rec-control-icon {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.rec-hero-indicators {
    right: auto;
    left: 50%;
    bottom: 42px;
    margin: 0;
    transform: translateX(-50%);
    gap: 9px;
    z-index: 10;
}

.rec-hero-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.55);
    opacity: 1;
    transition: all 0.35s ease;
}

.rec-hero-indicators [data-bs-target]:hover {
    background: var(--rec-yellow);
    transform: scale(1.2);
}

.rec-hero-indicators .active {
    width: 42px;
    background: var(--rec-orange);
}

/* ===============================
   Animation
================================ */

.carousel-item.active .rec-banner-label,
.carousel-item.active .rec-banner-content h1,
.carousel-item.active .rec-banner-content h2,
.carousel-item.active .rec-banner-content p,
.carousel-item.active .rec-banner-actions,
.carousel-item.active .rec-banner-stats {
    animation: recFadeUp 0.85s ease both;
}

.carousel-item.active .rec-banner-content h1,
.carousel-item.active .rec-banner-content h2 {
    animation-delay: 0.12s;
}

.carousel-item.active .rec-banner-content p {
    animation-delay: 0.22s;
}

.carousel-item.active .rec-banner-actions {
    animation-delay: 0.32s;
}

.carousel-item.active .rec-banner-stats {
    animation-delay: 0.42s;
}

.carousel-item.active .rec-banner-product {
    animation: recProductIn 0.95s ease both;
    animation-delay: 0.28s;
}

@keyframes recFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes recProductIn {
    from {
        opacity: 0;
        transform: translateX(45px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* ===============================
   Responsive
================================ */

@media (max-width: 1199px) {
    .rec-banner-grid {
        grid-template-columns: 1fr 380px;
        gap: 36px;
    }

    .rec-product-card {
        max-width: 380px;
    }

    .rec-product-img {
        height: 300px;
    }

    .rec-banner-content h1,
    .rec-banner-content h2 {
        font-size: clamp(38px, 5vw, 62px);
    }
}

@media (max-width: 991px) {
    .rec-banner-hero .carousel,
    .rec-banner-hero .carousel-inner,
    .rec-banner-hero .carousel-item,
    .rec-banner-slide {
        min-height: auto;
    }

    .rec-banner-height {
        min-height: auto;
        padding: 76px 0 96px;
    }

    .rec-banner-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .rec-banner-content {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .rec-banner-content h1,
    .rec-banner-content h2,
    .rec-banner-content p {
        text-align: center;
    }

    .rec-banner-content h1::after,
    .rec-banner-content h2::after {
        margin-left: auto;
        margin-right: auto;
    }

    .rec-banner-actions {
        justify-content: center;
    }

    .rec-banner-stats {
        margin-left: auto;
        margin-right: auto;
    }

    .rec-banner-product {
        justify-content: center;
    }

    .rec-product-card {
        max-width: 420px;
    }

    .rec-product-img {
        height: 280px;
    }

    .rec-hero-control {
        display: none;
    }

    .rec-hero-indicators {
        bottom: 30px;
    }
}

@media (max-width: 767px) {
    .rec-banner-height {
        padding: 58px 0 84px;
    }

    .rec-banner-label {
        font-size: 12px;
        padding: 9px 13px;
        margin-bottom: 18px;
    }

    .rec-banner-content h1,
    .rec-banner-content h2 {
        font-size: 31px;
        line-height: 1.14;
        letter-spacing: -0.6px;
    }

    .rec-banner-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .rec-banner-actions {
        gap: 12px;
        margin-bottom: 28px;
    }

    .rec-btn-primary,
    .rec-btn-outline {
        width: 100%;
        max-width: 320px;
        min-height: 52px;
        border-radius: 13px;
        padding: 13px 22px;
    }

    .rec-banner-stats {
        grid-template-columns: 1fr;
        max-width: 330px;
        border-radius: 20px;
    }

    .rec-banner-stats div {
        min-height: auto;
        padding: 16px 14px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .rec-banner-stats div:last-child {
        border-bottom: 0;
    }

    .rec-banner-stats div:hover {
        transform: translateY(-4px);
    }

    .rec-banner-stats strong {
        font-size: 23px;
    }

    .rec-product-card {
        max-width: 330px;
        padding: 14px;
        border-radius: 26px;
    }

    .rec-product-card::before {
        inset: 9px;
        border-radius: 20px;
    }

    .rec-product-img {
        height: 220px;
        border-radius: 20px;
    }

    .rec-product-tag {
        left: 24px;
        top: 24px;
        font-size: 10.5px;
        padding: 7px 11px;
    }

    .rec-product-info h3 {
        font-size: 19px;
    }

    .rec-product-info p {
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .rec-banner-content h1,
    .rec-banner-content h2 {
        font-size: 27px;
    }

    .rec-product-card {
        max-width: 300px;
    }

    .rec-product-img {
        height: 195px;
    }
}


/* ===============================
   Premium Highlight Strip
================================ */

.highlight-strip {
  position: relative;
  padding: 82px 0;
  background:
    linear-gradient(135deg, #f5f9fc 0%, #ffffff 48%, #eef6fb 100%);
  overflow: hidden;
}

.highlight-strip::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: rgba(247, 148, 29, 0.12);
  border-radius: 50%;
}

.highlight-strip::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  background: rgba(8, 114, 185, 0.10);
  border-radius: 50%;
}

.highlight-strip .container {
  position: relative;
  z-index: 2;
}

/* Header */
.highlight-header {
  max-width: 780px;
  margin: 0 auto 42px;
}

.highlight-header span {
  display: inline-flex;
  color: #f7941d;
  background: rgba(247, 148, 29, 0.10);
  border: 1px solid rgba(247, 148, 29, 0.18);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.highlight-header h2 {
  color: #061f33;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.highlight-header p {
  color: #5d6d7d;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* Cards */
.highlight-box {
  position: relative;
  height: 100%;
  min-height: 270px;
  padding: 30px 24px 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(6, 31, 51, 0.08);
  box-shadow: 0 18px 45px rgba(6, 31, 51, 0.08);
  overflow: hidden;
  transition: all 0.4s ease;
}

.highlight-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #061f33, #0872b9);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.highlight-box::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -80%;
  width: 60%;
  height: 220%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
  transform: rotate(25deg);
  transition: all 0.75s ease;
  z-index: 2;
}

.highlight-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(6, 31, 51, 0.18);
  border-color: transparent;
}

.highlight-box:hover::before {
  opacity: 1;
}

.highlight-box:hover::after {
  left: 125%;
}

.highlight-icon,
.highlight-box span,
.highlight-box h4,
.highlight-box p {
  position: relative;
  z-index: 3;
}

/* Icon */
.highlight-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(247, 148, 29, 0.16), rgba(8, 114, 185, 0.12));
  color: #f7941d;
  font-size: 25px;
  margin-bottom: 22px;
  transition: all 0.4s ease;
}

.highlight-box:hover .highlight-icon {
  background: #ffffff;
  color: #0872b9;
  transform: rotate(-6deg) scale(1.06);
}

/* Number */
.highlight-box span {
  display: block;
  color: #0872b9;
  font-size: 36px;
  font-weight: 950;
  line-height: 1;
  margin-bottom: 10px;
  transition: all 0.35s ease;
}

.highlight-box h4 {
  color: #061f33;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 12px;
  transition: all 0.35s ease;
}

.highlight-box p {
  color: #657282;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  transition: all 0.35s ease;
}

.highlight-box:hover span {
  color: #ffc400;
}

.highlight-box:hover h4,
.highlight-box:hover p {
  color: #ffffff;
}

/* ===============================
   Responsive
================================ */

@media (max-width: 991px) {
  .highlight-strip {
    padding: 68px 0;
  }

  .highlight-box {
    min-height: 250px;
  }
}

@media (max-width: 767px) {
  .highlight-strip {
    padding: 54px 0;
  }

  .highlight-header {
    margin-bottom: 30px;
  }

  .highlight-header h2 {
    font-size: 28px;
  }

  .highlight-header p {
    font-size: 15px;
  }

  .highlight-box {
    min-height: 230px;
    padding: 24px 18px;
    border-radius: 20px;
    text-align: center;
  }

  .highlight-icon {
    width: 54px;
    height: 54px;
    font-size: 22px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
  }

  .highlight-box span {
    font-size: 30px;
  }

  .highlight-box h4 {
    font-size: 16px;
  }

  .highlight-box p {
    font-size: 13px;
    line-height: 1.55;
  }
}

@media (max-width: 420px) {
  .highlight-strip .row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }

  .highlight-box {
    padding: 22px 14px;
    min-height: 220px;
  }

  .highlight-box p {
    font-size: 12.5px;
  }
}



/* ===============================
   About Section V3
================================ */

.about-section-v3 {
  position: relative;
  padding: 95px 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(247, 148, 29, 0.11), transparent 28%),
    radial-gradient(circle at 90% 85%, rgba(8, 114, 185, 0.12), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f5f9fc 48%, #eef6fb 100%);
  overflow: hidden;
}

.about-section-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 31, 51, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 31, 51, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.6;
  pointer-events: none;
}

.about-section-v3 .container {
  position: relative;
  z-index: 2;
}

/* Equal Height Columns */
.about-equal-row {
  align-items: stretch;
}

.about-equal-row>[class*="col-"] {
  display: flex;
}

.about-visual-card-v3,
.about-text-card-v3 {
  width: 100%;
  height: 100%;
}

/* ===============================
   Left Image Card
================================ */

.about-visual-card-v3 {
  position: relative;
  min-height: 650px;
  border-radius: 34px;
  overflow: hidden;
  background: #061f33;
  box-shadow: 0 30px 90px rgba(6, 31, 51, 0.20);
  isolation: isolate;
  transition: all 0.45s ease;
}

.about-visual-card-v3::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  z-index: 4;
  pointer-events: none;
}

.about-visual-card-v3::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 21, 34, 0.05) 0%, rgba(3, 21, 34, 0.85) 100%),
    radial-gradient(circle at 20% 20%, rgba(247, 148, 29, 0.28), transparent 32%);
  z-index: 2;
}

.about-visual-card-v3:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 110px rgba(6, 31, 51, 0.28);
}

.about-image-v3 {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.about-image-v3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.9s ease;
}

.about-visual-card-v3:hover .about-image-v3 img {
  transform: scale(1.08);
}

/* Image Text Overlay */
.about-image-content-v3 {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 5;
  padding: 24px;
  border-radius: 24px;
  background: rgba(3, 21, 34, 0.80);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  transition: all 0.45s ease;
}

.about-image-content-v3 span {
  display: inline-flex;
  color: #ffc400;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.about-image-content-v3 h3 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 950;
  line-height: 1.15;
  margin-bottom: 10px;
}

.about-image-content-v3 p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.about-visual-card-v3:hover .about-image-content-v3 {
  transform: translateY(-8px);
}

/* Experience Circle */
.about-exp-box-v3 {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 6;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: #f7941d;
  color: #ffffff;
  border: 6px solid #ffffff;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 22px 45px rgba(247, 148, 29, 0.36);
  transition: all 0.45s ease;
}

.about-exp-box-v3 strong {
  display: block;
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.about-exp-box-v3 span {
  display: block;
  max-width: 78px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 4px;
}

.about-exp-box-v3:hover {
  background: #0872b9;
  transform: rotate(-8deg) scale(1.06);
}

/* Certificate Box */
.about-cert-box-v3 {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 50px rgba(6, 31, 51, 0.20);
  animation: aboutFloatV3 4s ease-in-out infinite;
  transition: all 0.45s ease;
}

.about-cert-box-v3 i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #061f33;
  background: linear-gradient(135deg, #f7941d, #ffc400);
  font-size: 18px;
}

.about-cert-box-v3 strong {
  display: block;
  color: #061f33;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.2;
}

.about-cert-box-v3 span {
  display: block;
  color: #657282;
  font-size: 12px;
  font-weight: 700;
  margin-top: 3px;
}

.about-cert-box-v3:hover {
  transform: translateY(-8px);
}

/* ===============================
   Right Text Card
================================ */

.about-text-card-v3 {
  position: relative;
  padding: 44px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(6, 31, 51, 0.08);
  box-shadow: 0 30px 90px rgba(6, 31, 51, 0.12);
  overflow: hidden;
  transition: all 0.45s ease;
}

.about-text-card-v3::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(8, 114, 185, 0.08);
}

.about-text-card-v3::after {
  content: "";
  position: absolute;
  left: -130px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(247, 148, 29, 0.10);
}

.about-text-card-v3:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 105px rgba(6, 31, 51, 0.18);
}

.about-text-card-v3>* {
  position: relative;
  z-index: 2;
}

.about-heading-v3 span {
  display: inline-flex;
  color: #f7941d;
  background: rgba(247, 148, 29, 0.10);
  border: 1px solid rgba(247, 148, 29, 0.18);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 15px;
}

.about-heading-v3 h2 {
  color: #061f33;
  font-size: 42px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.about-heading-v3 h2::after {
  content: "";
  display: block;
  width: 94px;
  height: 5px;
  background: linear-gradient(90deg, #f7941d, #ffc400);
  border-radius: 50px;
  margin-top: 18px;
}

.about-lead-v3 {
  color: #0872b9;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.65;
  margin-bottom: 17px;
  text-align: justify;
}

.about-text-card-v3 p {
  color: #5f6f7f;
  font-size: 15px;
  line-height: 1.72;
  margin-bottom: 14px;
  text-align: justify;
  text-align-last: left;
}

/* ===============================
   Feature Points
================================ */

.about-points-v3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.about-point-v3 {
  position: relative;
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(6, 31, 51, 0.08);
  box-shadow: 0 12px 32px rgba(6, 31, 51, 0.07);
  overflow: hidden;
  transition: all 0.4s ease;
}

.about-point-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #061f33, #0872b9);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.about-point-v3::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -90%;
  width: 55%;
  height: 250%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.30), transparent);
  transform: rotate(25deg);
  transition: all 0.75s ease;
  z-index: 2;
}

.about-point-v3:hover {
  transform: translateY(-7px);
  border-color: transparent;
  box-shadow: 0 22px 55px rgba(6, 31, 51, 0.17);
}

.about-point-v3:hover::before {
  opacity: 1;
}

.about-point-v3:hover::after {
  left: 125%;
}

.about-point-v3 i,
.about-point-v3 h4,
.about-point-v3 p {
  position: relative;
  z-index: 3;
}

.about-point-v3 i {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #f7941d;
  background: rgba(247, 148, 29, 0.13);
  font-size: 18px;
  transition: all 0.4s ease;
}

.about-point-v3 h4 {
  color: #061f33;
  font-size: 15px;
  font-weight: 950;
  margin-bottom: 5px;
  transition: all 0.35s ease;
}

.about-point-v3 p {
  color: #657282;
  font-size: 12.8px;
  line-height: 1.48;
  margin: 0;
  text-align: left;
  transition: all 0.35s ease;
}

.about-point-v3:hover i {
  color: #061f33;
  background: #ffc400;
  transform: rotate(-8deg) scale(1.08);
}

.about-point-v3:hover h4,
.about-point-v3:hover p {
  color: #ffffff;
}

/* ===============================
   Buttons
================================ */

.about-action-v3 {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.about-btn-main-v3,
.about-btn-outline-v3 {
  position: relative;
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.about-btn-main-v3 {
  color: #ffffff;
  background: linear-gradient(135deg, #f7941d, #d87508);
  box-shadow: 0 16px 34px rgba(247, 148, 29, 0.30);
}

.about-btn-main-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0872b9, #061f33);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 1;
}

.about-btn-main-v3 span,
.about-btn-main-v3 i,
.about-btn-outline-v3 span {
  position: relative;
  z-index: 2;
}

.about-btn-main-v3:hover {
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(8, 114, 185, 0.34);
}

.about-btn-main-v3:hover::before {
  transform: scaleX(1);
}

.about-btn-main-v3 i {
  transition: transform 0.35s ease;
}

.about-btn-main-v3:hover i {
  transform: translateX(6px);
}

.about-btn-outline-v3 {
  color: #061f33;
  background: #ffffff;
  border: 1px solid rgba(6, 31, 51, 0.12);
}

.about-btn-outline-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #061f33;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  z-index: 1;
}

.about-btn-outline-v3:hover {
  color: #ffffff;
  transform: translateY(-4px);
  border-color: #061f33;
}

.about-btn-outline-v3:hover::before {
  transform: translateY(0);
}

/* ===============================
   Fade Left / Fade Right Animation
================================ */

.fade-left,
.fade-right {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-left {
  transform: translateX(-55px);
}

.fade-right {
  transform: translateX(55px);
}

.fade-left.animate-show,
.fade-right.animate-show {
  opacity: 1;
  transform: translateX(0);
}

@keyframes aboutFloatV3 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ===============================
   Responsive
================================ */

@media (max-width: 1199px) {
  .about-visual-card-v3 {
    min-height: 700px;
  }

  .about-text-card-v3 {
    padding: 36px;
  }

  .about-heading-v3 h2 {
    font-size: 37px;
  }
}

@media (max-width: 991px) {
  .about-section-v3 {
    padding: 74px 0;
  }

  .about-equal-row>[class*="col-"] {
    display: block;
  }

  .about-visual-card-v3,
  .about-text-card-v3 {
    height: auto;
  }

  .about-visual-card-v3 {
    min-height: 560px;
  }

  .about-text-card-v3 {
    margin-top: 8px;
  }

  .about-heading-v3 {
    text-align: center;
  }

  .about-heading-v3 h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .about-action-v3 {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .about-section-v3 {
    padding: 58px 0;
  }

  .about-visual-card-v3 {
    min-height: auto;
    border-radius: 24px;
    padding-bottom: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .about-visual-card-v3::before,
  .about-visual-card-v3::after {
    display: none;
  }

  .about-image-v3 {
    position: relative;
    height: 330px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 65px rgba(6, 31, 51, 0.18);
  }

  .about-image-v3::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(3, 21, 34, 0.70) 100%);
  }

  .about-image-content-v3 {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 12px;
    text-align: center;
    border-radius: 20px;
  }

  .about-exp-box-v3 {
    width: 92px;
    height: 92px;
    top: 14px;
    right: 14px;
    border-width: 4px;
  }

  .about-exp-box-v3 strong {
    font-size: 27px;
  }

  .about-exp-box-v3 span {
    font-size: 10px;
  }

  .about-cert-box-v3 {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 12px;
    justify-content: center;
    animation: none;
  }

  .about-text-card-v3 {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .about-heading-v3 span {
    font-size: 12px;
    padding: 8px 14px;
  }

  .about-heading-v3 h2 {
    font-size: 28px;
  }

  .about-lead-v3 {
    font-size: 16px;
  }

  .about-text-card-v3 p {
    font-size: 14.5px;
    line-height: 1.68;
    text-align: justify;
  }

  .about-points-v3 {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .about-point-v3 {
    text-align: left;
  }

  .about-btn-main-v3,
  .about-btn-outline-v3 {
    width: 100%;
    max-width: 320px;
  }

  .fade-left,
  .fade-right {
    transform: translateY(35px);
  }
}

@media (max-width: 420px) {
  .about-image-v3 {
    height: 285px;
  }

  .about-heading-v3 h2 {
    font-size: 25px;
  }

  .about-text-card-v3 {
    padding: 24px 16px;
  }
}

.about-equal-row {
  align-items: stretch;
}

.about-equal-row>[class*="col-"] {
  display: flex;
}

.about-visual-card-v3,
.about-text-card-v3 {
  width: 100%;
  height: 100%;
}


/* ===============================
   Products Section Slider
================================ */

.products-section-v2 {
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(247, 148, 29, 0.10), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(8, 114, 185, 0.11), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f5f9fc 48%, #eef6fb 100%);
  overflow: hidden;
}

.product-svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.products-section-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 31, 51, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 31, 51, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.55;
  pointer-events: none;
}

.products-section-v2 .container {
  position: relative;
  z-index: 2;
}

.product-section-title span {
  display: inline-flex;
  color: #f7941d;
  background: rgba(247, 148, 29, 0.10);
  border: 1px solid rgba(247, 148, 29, 0.18);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 15px;
}

.product-section-title h2 {
  color: #061f33;
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 15px;
}

.product-section-title h2::after {
  content: "";
  display: block;
  width: 95px;
  height: 5px;
  margin: 18px auto 0;
  border-radius: 50px;
  background: linear-gradient(90deg, #f7941d, #ffc400);
}

.product-section-title p {
  color: #5f6f7f;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 720px;
}

/* Slider Equal Height */
.product-slider-wrap {
  position: relative;
}

.rayanProductSwiper {
  padding: 8px 4px 56px;
}

.rayanProductSwiper .swiper-wrapper {
  align-items: stretch;
}

.rayanProductSwiper .swiper-slide {
  height: auto;
  display: flex;
}

.product-card-v2 {
  width: 100%;
  height: 100%;
  min-height: 535px;
  position: relative;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(6, 31, 51, 0.08);
  box-shadow: 0 18px 48px rgba(6, 31, 51, 0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.45s ease;
}

.product-card-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #061f33, #0872b9);
  opacity: 0;
  transition: all 0.45s ease;
  z-index: 1;
}

.product-card-v2::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -85%;
  width: 55%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: rotate(25deg);
  transition: all 0.75s ease;
  z-index: 2;
}

.product-card-v2:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 78px rgba(6, 31, 51, 0.20);
  border-color: transparent;
}

.product-card-v2:hover::before {
  opacity: 1;
}

.product-card-v2:hover::after {
  left: 130%;
}

/* Image */
.product-img-v2 {
  position: relative;
  height: 235px;
  min-height: 235px;
  overflow: hidden;
  z-index: 3;
}

.product-img-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(3, 21, 34, 0.48) 100%);
}

.product-img-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s ease;
}

.product-card-v2:hover .product-img-v2 img {
  transform: scale(1.08);
}

.product-number {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f7941d;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 950;
  border: 3px solid #ffffff;
  box-shadow: 0 12px 28px rgba(247, 148, 29, 0.34);
}

/* Content Equal Height */
.product-content-v2 {
  position: relative;
  z-index: 3;
  padding: 24px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-svg-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #f7941d;
  background: rgba(247, 148, 29, 0.12);
  border: 1px solid rgba(247, 148, 29, 0.18);
  margin-bottom: 15px;
  transition: all 0.4s ease;
}

.product-svg-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.product-category {
  display: inline-flex;
  width: fit-content;
  color: #0872b9;
  background: rgba(8, 114, 185, 0.09);
  border: 1px solid rgba(8, 114, 185, 0.12);
  padding: 7px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 13px;
  transition: all 0.35s ease;
}

.product-content-v2 h3 {
  color: #061f33;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.25;
  min-height: 50px;
  margin-bottom: 12px;
  transition: all 0.35s ease;
}

.product-content-v2 p {
  color: #657282;
  font-size: 14px;
  line-height: 1.62;
  margin-bottom: 18px;
  min-height: 68px;
  transition: all 0.35s ease;
}

.product-content-v2 a {
  margin-top: auto;
  color: #f7941d;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.35s ease;
}

.product-content-v2 a svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform 0.35s ease;
}

.product-card-v2:hover .product-svg-icon {
  background: #ffffff;
  color: #0872b9;
  transform: rotate(-7deg) scale(1.08);
}

.product-card-v2:hover .product-category {
  color: #061f33;
  background: #ffc400;
  border-color: #ffc400;
}

.product-card-v2:hover .product-content-v2 h3,
.product-card-v2:hover .product-content-v2 p,
.product-card-v2:hover .product-content-v2 a {
  color: #ffffff;
}

.product-card-v2:hover .product-content-v2 a svg {
  transform: translateX(6px);
}

/* Navigation */
.product-slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.product-prev,
.product-next {
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: #061f33;
  display: grid;
  place-items: center;
  transition: all 0.35s ease;
}

.product-prev svg,
.product-next svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.product-prev:hover,
.product-next:hover {
  background: #f7941d;
  transform: translateY(-4px);
}

/* Pagination */
.product-pagination {
  position: relative;
  margin-top: 18px;
  text-align: center;
}

.product-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(6, 31, 51, 0.30);
  opacity: 1;
  transition: all 0.35s ease;
}

.product-pagination .swiper-pagination-bullet-active {
  width: 34px;
  border-radius: 50px;
  background: #f7941d;
}

/* Tags */
.product-tags-v2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.product-tags-v2 span {
  color: #061f33;
  background: #ffffff;
  border: 1px solid rgba(6, 31, 51, 0.08);
  border-radius: 50px;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(6, 31, 51, 0.06);
  transition: all 0.35s ease;
}

.product-tags-v2 span:hover {
  color: #ffffff;
  background: #0872b9;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 991px) {
  .products-section-v2 {
    padding: 74px 0;
  }

  .product-card-v2 {
    min-height: 520px;
  }

  .product-img-v2 {
    height: 220px;
    min-height: 220px;
  }
}

@media (max-width: 767px) {
  .products-section-v2 {
    padding: 58px 0;
  }

  .product-section-title h2 {
    font-size: 29px;
  }

  .product-section-title p {
    font-size: 15px;
  }

  .rayanProductSwiper {
    padding-bottom: 48px;
  }

  .product-card-v2 {
    min-height: 500px;
    border-radius: 22px;
  }

  .product-img-v2 {
    height: 210px;
    min-height: 210px;
  }

  .product-content-v2 {
    padding: 22px 20px 24px;
    text-align: center;
  }

  .product-svg-icon,
  .product-category {
    margin-left: auto;
    margin-right: auto;
  }

  .product-content-v2 h3 {
    font-size: 19px;
    min-height: auto;
  }

  .product-content-v2 p {
    min-height: auto;
  }

  .product-content-v2 a {
    justify-content: center;
  }

  .product-tags-v2 {
    margin-top: 28px;
  }
}

@media (max-width: 420px) {
  .product-card-v2 {
    min-height: 485px;
  }

  .product-img-v2 {
    height: 190px;
    min-height: 190px;
  }

  .product-section-title h2 {
    font-size: 26px;
  }

  .product-tags-v2 span {
    font-size: 12px;
    padding: 9px 12px;
  }
}

.rayanProductSwiper .swiper-slide {
  height: auto;
  display: flex;
}

.product-card-v2 {
  height: 100%;
  min-height: 535px;
  display: flex;
  flex-direction: column;
}

.product-content-v2 {
  flex: 1;
  display: flex;
  flex-direction: column;
}



/* ===============================
   Quality Section V4 - Compact Unique Design
================================ */

.quality-v4-section {
    position: relative;
    padding: 72px 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(247, 148, 29, 0.22), transparent 26%),
        radial-gradient(circle at 88% 82%, rgba(8, 114, 185, 0.24), transparent 34%),
        linear-gradient(135deg, #031522 0%, #061f33 48%, #092f4a 100%);
    overflow: hidden;
}

.quality-v4-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.55;
    pointer-events: none;
}

.quality-v4-section::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 8%;
    width: 2px;
    height: 84%;
    background: linear-gradient(180deg, transparent, rgba(247, 148, 29, 0.55), transparent);
    opacity: 0.5;
    pointer-events: none;
}

.quality-v4-section .container {
    position: relative;
    z-index: 2;
}

.quality-svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* ===============================
   Section Title
================================ */

.quality-v4-title {
    max-width: 850px;
    margin: 0 auto 36px;
    text-align: center;
}

.quality-v4-title span {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 50px;
    color: #ffc400;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    margin-bottom: 14px;
}

.quality-v4-title h2 {
    color: #ffffff;
    font-size: clamp(30px, 4.2vw, 48px);
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -1.2px;
    margin-bottom: 12px;
}

.quality-v4-title h2::after {
    content: "";
    display: block;
    width: 104px;
    height: 5px;
    margin: 16px auto 0;
    border-radius: 50px;
    background: linear-gradient(90deg, #f7941d, #ffc400);
}

.quality-v4-title p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* ===============================
   Left Core Card
================================ */

.quality-v4-core-card {
    position: relative;
    height: 100%;
    min-height: auto;
    padding: 30px;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    overflow: hidden;
    isolation: isolate;
    transition: all 0.45s ease;
}

.quality-v4-core-card::before {
    content: "";
    position: absolute;
    inset: 15px;
    border-radius: 24px;
    border: 1px dashed rgba(255, 255, 255, 0.20);
    pointer-events: none;
    z-index: 2;
}

.quality-v4-core-card::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 290px;
    height: 290px;
    background: radial-gradient(circle, rgba(247, 148, 29, 0.28), transparent 68%);
    border-radius: 50%;
    transition: all 0.55s ease;
    z-index: -1;
}

.quality-v4-core-card:hover {
    transform: translateY(-8px);
    border-color: rgba(247, 148, 29, 0.46);
    box-shadow: 0 38px 100px rgba(0, 0, 0, 0.45);
}

.quality-v4-core-card:hover::after {
    transform: scale(1.22);
}

/* Top */
.qv4-core-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.qv4-core-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #061f33;
    background: linear-gradient(135deg, #f7941d, #ffc400);
    box-shadow: 0 16px 38px rgba(247, 148, 29, 0.34);
    transition: all 0.4s ease;
}

.qv4-core-icon svg {
    width: 31px;
    height: 31px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.quality-v4-core-card:hover .qv4-core-icon {
    transform: rotate(-8deg) scale(1.08);
}

.qv4-core-top span {
    display: block;
    color: #ffc400;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.9px;
}

.qv4-core-top strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 950;
    margin-top: 3px;
}

/* Display */
.qv4-control-display {
    position: relative;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    margin-bottom: 18px;
    overflow: hidden;
}

.qv4-control-display::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #f7941d, #ffc400);
}

.qv4-control-display span {
    display: block;
    color: #ffc400;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    margin-bottom: 10px;
}

.qv4-control-display h3 {
    color: #ffffff;
    font-size: 26px;
    line-height: 1.18;
    font-weight: 950;
    margin-bottom: 12px;
}

.qv4-control-display p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 14.5px;
    line-height: 1.6;
    text-align: justify;
    margin: 0;
}

/* Gauge */
.qv4-gauge-wrap {
    display: grid;
    grid-template-columns: 98px 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.qv4-gauge {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background:
        conic-gradient(#ffc400 0deg, #f7941d 275deg, rgba(255, 255, 255, 0.16) 275deg);
    display: grid;
    place-items: center;
    animation: qv4GaugePulse 2.5s ease-in-out infinite alternate;
}

.qv4-gauge::before {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 50%;
    background: #09263c;
}

.qv4-gauge-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.qv4-gauge-inner strong {
    display: block;
    color: #ffc400;
    font-size: 23px;
    font-weight: 950;
    line-height: 1;
}

.qv4-gauge-inner span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 800;
}

.qv4-gauge-text h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 950;
    margin-bottom: 6px;
}

.qv4-gauge-text p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
}

/* Checklist */
.qv4-check-list {
    display: grid;
    gap: 9px;
}

.qv4-check-list div {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 750;
}

.qv4-check-list svg {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    padding: 6px;
    border-radius: 50%;
    color: #061f33;
    background: #ffc400;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Stats */
.qv4-core-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.qv4-core-stats div {
    padding: 16px 14px;
    border-radius: 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: all 0.35s ease;
}

.qv4-core-stats div:hover {
    background: #f7941d;
    transform: translateY(-6px);
}

.qv4-core-stats strong {
    display: block;
    color: #ffc400;
    font-size: 22px;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 7px;
    transition: all 0.35s ease;
}

.qv4-core-stats span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 800;
    transition: all 0.35s ease;
}

.qv4-core-stats div:hover strong,
.qv4-core-stats div:hover span {
    color: #ffffff;
}

/* ===============================
   Right Bento Process Grid
================================ */

.quality-v4-process-grid {
    height: 100%;
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 14px;
}

.qv4-process-card {
    position: relative;
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    transition: all 0.45s ease;
}

.qv4-card-large {
    grid-row: span 1;
}

.qv4-card-wide {
    grid-column: span 2;
    min-height: auto;
}

.qv4-process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 12%, rgba(255, 196, 0, 0.28), transparent 28%),
        linear-gradient(135deg, #f7941d, #0872b9);
    opacity: 0;
    transition: all 0.45s ease;
    z-index: 1;
}

.qv4-process-card::after {
    content: "";
    position: absolute;
    top: -70%;
    left: -90%;
    width: 55%;
    height: 250%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    transform: rotate(25deg);
    transition: all 0.75s ease;
    z-index: 2;
}

.qv4-process-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 75px rgba(0, 0, 0, 0.30);
}

.qv4-process-card:hover::before {
    opacity: 1;
}

.qv4-process-card:hover::after {
    left: 130%;
}

.qv4-step-count,
.qv4-step-icon,
.qv4-process-card h4,
.qv4-process-card p {
    position: relative;
    z-index: 3;
}

.qv4-step-count {
    position: absolute;
    right: 18px;
    top: 14px;
    color: rgba(6, 31, 51, 0.08);
    font-size: 42px;
    font-weight: 950;
    line-height: 1;
    transition: all 0.35s ease;
}

.qv4-step-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #f7941d;
    background: rgba(247, 148, 29, 0.12);
    margin-bottom: 14px;
    transition: all 0.4s ease;
}

.qv4-step-icon svg {
    width: 27px;
    height: 27px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.qv4-process-card h4 {
    color: #061f33;
    font-size: 18px;
    font-weight: 950;
    margin-bottom: 8px;
    transition: all 0.35s ease;
}

.qv4-process-card p {
    color: #657282;
    font-size: 13.5px;
    line-height: 1.55;
    text-align: justify;
    margin: 0;
    transition: all 0.35s ease;
}

.qv4-process-card:hover .qv4-step-count {
    color: rgba(255, 255, 255, 0.24);
}

.qv4-process-card:hover .qv4-step-icon {
    color: #061f33;
    background: #ffffff;
    transform: rotate(-8deg) scale(1.08);
}

.qv4-process-card:hover h4,
.qv4-process-card:hover p {
    color: #ffffff;
}

/* ===============================
   Animation
================================ */

.qv4-reveal-left,
.qv4-reveal-right,
.qv4-reveal-up {
    opacity: 0;
    transition: opacity 0.95s ease, transform 0.95s ease;
}

.qv4-reveal-left {
    transform: translateX(-60px);
}

.qv4-reveal-right {
    transform: translateX(60px);
}

.qv4-reveal-up {
    transform: translateY(45px);
}

.qv4-show {
    opacity: 1;
    transform: translate(0);
}

@keyframes qv4GaugePulse {
    from {
        filter: drop-shadow(0 0 0 rgba(255, 196, 0, 0));
    }

    to {
        filter: drop-shadow(0 0 18px rgba(255, 196, 0, 0.42));
    }
}

/* ===============================
   Responsive
================================ */

@media (max-width: 1199px) {
    .quality-v4-core-card,
    .quality-v4-process-grid {
        min-height: auto;
    }

    .qv4-control-display h3 {
        font-size: 24px;
    }

    .qv4-process-card {
        padding: 21px;
    }
}

@media (max-width: 991px) {
    .quality-v4-section {
        padding: 62px 0;
    }

    .quality-v4-section::after {
        display: none;
    }

    .quality-v4-title {
        margin-bottom: 30px;
    }

    .quality-v4-core-card,
    .quality-v4-process-grid {
        min-height: auto;
        height: auto;
    }

    .quality-v4-process-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .quality-v4-section {
        padding: 48px 0;
    }

    .quality-v4-title {
        margin-bottom: 26px;
    }

    .quality-v4-title h2 {
        font-size: 27px;
    }

    .quality-v4-title p {
        font-size: 14.5px;
    }

    .quality-v4-core-card {
        padding: 22px 16px;
        border-radius: 26px;
    }

    .qv4-core-top {
        justify-content: center;
        text-align: left;
        margin-bottom: 20px;
    }

    .qv4-control-display {
        padding: 18px 15px;
        border-radius: 22px;
        text-align: center;
        margin-bottom: 16px;
    }

    .qv4-control-display h3 {
        font-size: 22px;
    }

    .qv4-gauge-wrap {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
        margin-bottom: 16px;
    }

    .qv4-gauge {
        width: 88px;
        height: 88px;
        margin: 0 auto;
    }

    .qv4-core-stats {
        grid-template-columns: 1fr;
        margin-top: 16px;
        gap: 10px;
    }

    .quality-v4-process-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .qv4-card-large,
    .qv4-card-wide {
        grid-row: auto;
        grid-column: auto;
    }

    .qv4-process-card {
        min-height: auto;
        padding: 20px 16px;
        border-radius: 22px;
        text-align: center;
    }

    .qv4-step-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .qv4-step-count {
        font-size: 36px;
    }

    .qv4-process-card p {
        text-align: justify;
    }

    .qv4-reveal-left,
    .qv4-reveal-right {
        transform: translateY(35px);
    }
}

@media (max-width: 420px) {
    .quality-v4-title h2 {
        font-size: 24px;
    }

    .qv4-core-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
    }

    .qv4-core-top strong {
        font-size: 16px;
    }

    .qv4-control-display h3 {
        font-size: 21px;
    }

    .qv4-process-card h4 {
        font-size: 18px;
    }
}


/* ===============================
   Contact Section V3
================================ */

.contact-v3-section {
    position: relative;
    padding: 88px 0;
    background:
        radial-gradient(circle at 10% 16%, rgba(247, 148, 29, 0.11), transparent 30%),
        radial-gradient(circle at 90% 84%, rgba(8, 114, 185, 0.13), transparent 34%),
        linear-gradient(135deg, #f7fbfe 0%, #eef6fb 50%, #e7f1f8 100%);
    overflow: hidden;
}

.contact-v3-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(6, 31, 51, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 31, 51, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.55;
    pointer-events: none;
}

.contact-v3-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -160px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(247, 148, 29, 0.10);
    transform: translateX(-50%);
    pointer-events: none;
}

.contact-v3-section .container {
    position: relative;
    z-index: 2;
}

.contact-v3-svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* Heading */
.contact-v3-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.contact-v3-heading span {
    display: inline-flex;
    color: #f7941d;
    background: rgba(247, 148, 29, 0.10);
    border: 1px solid rgba(247, 148, 29, 0.18);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.contact-v3-heading h2 {
    color: #061f33;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 950;
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.contact-v3-heading h2::after {
    content: "";
    display: block;
    width: 96px;
    height: 5px;
    border-radius: 50px;
    background: linear-gradient(90deg, #f7941d, #ffc400);
    margin: 18px auto 0;
}

.contact-v3-heading p {
    color: #5f6f7f;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Main Wrapper */
.contact-v3-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 26px;
    align-items: stretch;
}

/* ===============================
   Left Panel
================================ */

.contact-v3-info {
    position: relative;
    padding: 30px;
    border-radius: 34px;
    background: linear-gradient(135deg, #061f33 0%, #0872b9 100%);
    box-shadow: 0 30px 85px rgba(6, 31, 51, 0.22);
    overflow: hidden;
    isolation: isolate;
    transition: all 0.45s ease;
}

.contact-v3-info::before {
    content: "";
    position: absolute;
    inset: 13px;
    border-radius: 26px;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    pointer-events: none;
    z-index: 2;
}

.contact-v3-info::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -130px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 148, 29, 0.45), transparent 68%);
    z-index: -1;
    transition: all 0.5s ease;
}

.contact-v3-info:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 105px rgba(6, 31, 51, 0.32);
}

.contact-v3-info:hover::after {
    transform: scale(1.22);
}

.contact-v3-brand-card,
.contact-v3-list {
    position: relative;
    z-index: 3;
}

.contact-v3-brand-card {
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 18px;
}

.contact-v3-brand-card span {
    display: inline-flex;
    color: #ffc400;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.contact-v3-brand-card h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 950;
    line-height: 1.16;
    margin: 0;
}

/* Contact Items */
.contact-v3-list {
    display: grid;
    gap: 13px;
}

.contact-v3-item {
    position: relative;
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-v3-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    transform: translateX(-105%);
    transition: transform 0.4s ease;
    z-index: 1;
}

.contact-v3-item:hover {
    transform: translateX(7px);
    border-color: #ffffff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.20);
}

.contact-v3-item:hover::before {
    transform: translateX(0);
}

.contact-v3-icon,
.contact-v3-item h4,
.contact-v3-item p,
.contact-v3-item em {
    position: relative;
    z-index: 2;
}

.contact-v3-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #061f33;
    background: linear-gradient(135deg, #f7941d, #ffc400);
    transition: all 0.4s ease;
}

.contact-v3-icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.contact-v3-item h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 950;
    margin-bottom: 5px;
    transition: all 0.35s ease;
}

.contact-v3-item p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0;
    word-break: break-word;
    transition: all 0.35s ease;
}

.contact-v3-item em {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #061f33;
    background: #ffc400;
    font-style: normal;
    transition: all 0.35s ease;
}

.contact-v3-item em svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.contact-v3-item:not(a) {
    grid-template-columns: 52px 1fr;
}

.contact-v3-item:hover .contact-v3-icon {
    color: #ffffff;
    background: #0872b9;
    transform: rotate(-8deg) scale(1.08);
}

.contact-v3-item:hover h4 {
    color: #061f33;
}

.contact-v3-item:hover p {
    color: #5f6f7f;
}

.contact-v3-item:hover em {
    color: #ffffff;
    background: #061f33;
    transform: translateX(4px);
}

/* ===============================
   Right Form Card
================================ */

.contact-v3-form-card {
    position: relative;
    padding: 36px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(6, 31, 51, 0.08);
    box-shadow: 0 30px 85px rgba(6, 31, 51, 0.12);
    overflow: hidden;
    transition: all 0.45s ease;
}

.contact-v3-form-card::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(8, 114, 185, 0.08);
}

.contact-v3-form-card::after {
    content: "";
    position: absolute;
    left: -130px;
    bottom: -130px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(247, 148, 29, 0.10);
}

.contact-v3-form-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 105px rgba(6, 31, 51, 0.18);
}

.contact-v3-form-card > * {
    position: relative;
    z-index: 2;
}

.contact-v3-form-title {
    margin-bottom: 24px;
}

.contact-v3-form-title span {
    display: inline-flex;
    color: #f7941d;
    background: rgba(247, 148, 29, 0.10);
    border: 1px solid rgba(247, 148, 29, 0.18);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 13px;
}

.contact-v3-form-title h3 {
    color: #061f33;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 950;
    line-height: 1.12;
    letter-spacing: -0.8px;
    margin: 0;
}

.contact-v3-form-title h3::after {
    content: "";
    display: block;
    width: 82px;
    height: 5px;
    border-radius: 50px;
    background: linear-gradient(90deg, #f7941d, #ffc400);
    margin-top: 16px;
}

/* Form */
.contact-v3-form .form-label {
    color: #061f33;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 7px;
}

.contact-v3-form .form-control,
.contact-v3-form .form-select {
    height: 52px;
    border-radius: 15px;
    border: 1px solid rgba(6, 31, 51, 0.12);
    background: #f8fbfd;
    color: #061f33;
    font-size: 14px;
    font-weight: 650;
    padding: 12px 15px;
    box-shadow: none;
    transition: all 0.35s ease;
}

.contact-v3-form textarea.form-control {
    height: auto;
    min-height: 138px;
    resize: none;
}

.contact-v3-form .form-control::placeholder {
    color: #94a1ad;
}

.contact-v3-form .form-control:focus,
.contact-v3-form .form-select:focus {
    background: #ffffff;
    border-color: #0872b9;
    box-shadow: 0 0 0 4px rgba(8, 114, 185, 0.12);
    transform: translateY(-2px);
}

/* Submit */
.contact-v3-submit {
    position: relative;
    min-height: 54px;
    padding: 14px 28px;
    border: 0;
    border-radius: 50px;
    color: #ffffff;
    background: linear-gradient(135deg, #f7941d, #d87508);
    font-size: 15px;
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(247, 148, 29, 0.30);
    transition: all 0.35s ease;
}

.contact-v3-submit::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0872b9, #061f33);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.contact-v3-submit span,
.contact-v3-submit svg {
    position: relative;
    z-index: 2;
}

.contact-v3-submit svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: transform 0.35s ease;
}

.contact-v3-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(8, 114, 185, 0.32);
}

.contact-v3-submit:hover::before {
    transform: scaleX(1);
}

.contact-v3-submit:hover svg {
    transform: translateX(5px) translateY(-2px);
}

/* ===============================
   Animation
================================ */

.contact-v3-fade-left,
.contact-v3-fade-right,
.contact-v3-fade-up {
    opacity: 0;
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.contact-v3-fade-left {
    transform: translateX(-55px);
}

.contact-v3-fade-right {
    transform: translateX(55px);
}

.contact-v3-fade-up {
    transform: translateY(42px);
}

.contact-v3-show {
    opacity: 1;
    transform: translate(0);
}

/* ===============================
   Responsive
================================ */

@media (max-width: 991px) {
    .contact-v3-section {
        padding: 68px 0;
    }

    .contact-v3-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .contact-v3-section {
        padding: 54px 0;
    }

    .contact-v3-heading {
        margin-bottom: 30px;
    }

    .contact-v3-heading h2 {
        font-size: 28px;
    }

    .contact-v3-heading p {
        font-size: 14.5px;
    }

    .contact-v3-info,
    .contact-v3-form-card {
        padding: 24px 16px;
        border-radius: 24px;
    }

    .contact-v3-info::before {
        inset: 9px;
        border-radius: 18px;
    }

    .contact-v3-brand-card {
        padding: 20px;
        text-align: center;
        border-radius: 20px;
    }

    .contact-v3-brand-card h3 {
        font-size: 23px;
    }

    .contact-v3-item {
        grid-template-columns: 46px 1fr;
        padding: 14px;
        border-radius: 17px;
    }

    .contact-v3-item em {
        display: none;
    }

    .contact-v3-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .contact-v3-icon svg {
        width: 23px;
        height: 23px;
    }

    .contact-v3-item:hover {
        transform: translateY(-5px);
    }

    .contact-v3-form-title {
        text-align: center;
    }

    .contact-v3-form-title h3::after {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-v3-submit {
        width: 100%;
    }

    .contact-v3-fade-left,
    .contact-v3-fade-right {
        transform: translateY(35px);
    }
}

@media (max-width: 420px) {
    .contact-v3-heading h2,
    .contact-v3-form-title h3 {
        font-size: 25px;
    }

    .contact-v3-brand-card h3 {
        font-size: 21px;
    }

    .contact-v3-item p {
        font-size: 13px;
    }
}



/* ===============================
   Rayan Footer Professional Design
================================ */

.rayan-footer {
    position: relative;
    padding: 70px 0 24px;
    background:
        radial-gradient(circle at 12% 18%, rgba(247, 148, 29, 0.16), transparent 28%),
        radial-gradient(circle at 90% 88%, rgba(8, 114, 185, 0.20), transparent 34%),
        linear-gradient(135deg, #031522 0%, #061f33 50%, #092f4a 100%);
    overflow: hidden;
}

.rayan-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.52;
    pointer-events: none;
}

.rayan-footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #f7941d, #ffc400, #0872b9);
}

.rayan-footer .container {
    position: relative;
    z-index: 2;
}

.rayan-footer-svg {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* ===============================
   Top Strip
================================ */

.rayan-footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    margin-bottom: 26px;
    overflow: hidden;
    position: relative;
}

.rayan-footer-top::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 7px;
    background: linear-gradient(180deg, #f7941d, #ffc400);
}

.rayan-footer-top-content {
    padding-left: 12px;
}

.rayan-footer-top-content span {
    display: inline-flex;
    color: #f7941d;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.rayan-footer-top-content h3 {
    color: #061f33;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 950;
    line-height: 1.22;
    margin: 0;
}

.rayan-footer-top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.rayan-footer-top-actions a {
    position: relative;
    min-height: 50px;
    padding: 13px 22px;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #0872b9, #061f33);
    font-size: 14px;
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.rayan-footer-top-actions a:first-child {
    background: linear-gradient(135deg, #f7941d, #d87508);
}

.rayan-footer-top-actions a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #061f33;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: 1;
}

.rayan-footer-top-actions a:first-child::before {
    background: #0872b9;
}

.rayan-footer-top-actions a svg,
.rayan-footer-top-actions a span {
    position: relative;
    z-index: 2;
}

.rayan-footer-top-actions a svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.rayan-footer-top-actions a:hover {
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(6, 31, 51, 0.20);
}

.rayan-footer-top-actions a:hover::before {
    transform: scaleX(1);
}

/* ===============================
   Main Footer
================================ */

.rayan-footer-main {
    padding: 42px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 76px rgba(0, 0, 0, 0.22);
}

.rayan-footer-widget {
    height: 100%;
}

.rayan-footer-logo {
    width: 218px;
    height: 66px;
    padding: 10px 15px;
    border-radius: 14px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    transition: all 0.35s ease;
}

.rayan-footer-logo img {
    max-width: 100%;
    max-height: 46px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.rayan-footer-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
}

.rayan-footer-about p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.rayan-footer-badge {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(247, 148, 29, 0.14);
    border: 1px solid rgba(247, 148, 29, 0.28);
    transition: all 0.35s ease;
}

.rayan-footer-badge strong {
    color: #ffc400;
    font-size: 13px;
    font-weight: 950;
}

.rayan-footer-badge span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 800;
}

.rayan-footer-badge:hover {
    background: #f7941d;
    transform: translateY(-4px);
}

.rayan-footer-badge:hover strong,
.rayan-footer-badge:hover span {
    color: #ffffff;
}

/* Social Media */
.rayan-footer-social {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.rayan-footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: all 0.35s ease;
}

.rayan-footer-social a svg {
    width: 21px;
    height: 21px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.rayan-footer-social a:hover {
    background: linear-gradient(135deg, #f7941d, #ffc400);
    color: #061f33;
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

/* Widget Headings */
.rayan-footer-widget h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 950;
    margin-bottom: 22px;
}

.rayan-footer-widget h4::after {
    content: "";
    display: block;
    width: 58px;
    height: 4px;
    border-radius: 50px;
    background: linear-gradient(90deg, #f7941d, #ffc400);
    margin-top: 12px;
}

/* Product List */
.rayan-footer-list,
.rayan-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rayan-footer-list {
    display: grid;
    gap: 11px;
}

.rayan-footer-list li {
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 750;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: all 0.35s ease;
}

.rayan-footer-list li svg {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    color: #ffc400;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.rayan-footer-list li:hover {
    color: #ffffff;
    transform: translateX(6px);
}

/* Menu */
.rayan-footer-menu {
    display: grid;
    gap: 10px;
}

.rayan-footer-menu a {
    position: relative;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    width: fit-content;
    transition: all 0.35s ease;
}

.rayan-footer-menu a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    border-radius: 50px;
    background: #ffc400;
    transition: width 0.35s ease;
}

.rayan-footer-menu a:hover {
    color: #ffc400;
    transform: translateX(6px);
}

.rayan-footer-menu a:hover::before {
    width: 100%;
}

/* Contact */
.rayan-footer-contact-list {
    display: grid;
    gap: 12px;
}

.rayan-footer-contact {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border-radius: 16px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    transition: all 0.35s ease;
}

.rayan-footer-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    transform: translateX(-105%);
    transition: transform 0.35s ease;
    z-index: 1;
}

.rayan-footer-contact:hover {
    transform: translateY(-5px);
    border-color: #ffffff;
}

.rayan-footer-contact:hover::before {
    transform: translateX(0);
}

.rayan-footer-contact span,
.rayan-footer-contact div {
    position: relative;
    z-index: 2;
}

.rayan-footer-contact > span {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: linear-gradient(135deg, #f7941d, #ffc400);
    color: #061f33;
    display: grid;
    place-items: center;
    transition: all 0.35s ease;
}

.rayan-footer-contact span svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.rayan-footer-contact small {
    display: block;
    color: rgba(255, 255, 255, 0.60);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    transition: all 0.35s ease;
}

.rayan-footer-contact strong {
    display: block;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 850;
    line-height: 1.35;
    word-break: break-word;
    transition: all 0.35s ease;
}

.rayan-footer-contact:hover > span {
    background: #0872b9;
    color: #ffffff;
    transform: rotate(-8deg) scale(1.07);
}

.rayan-footer-contact:hover small {
    color: #0872b9;
}

.rayan-footer-contact:hover strong {
    color: #061f33;
}

/* Bottom */
.rayan-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding-top: 24px;
    margin-top: 24px;
}

.rayan-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.rayan-footer-bottom a {
    color: #ffc400;
    font-size: 14px;
    font-weight: 950;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.35s ease;
}

.rayan-footer-bottom a svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transform: rotate(-90deg);
}

.rayan-footer-bottom a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

/* Animation */
.rayan-footer-animate {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.rayan-footer-show {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   Responsive
================================ */

@media (max-width: 1199px) {
    .rayan-footer-main {
        padding: 36px 28px;
    }

    .rayan-footer-logo {
        width: 200px;
        height: 62px;
    }

    .rayan-footer-contact {
        grid-template-columns: 40px 1fr;
        gap: 10px;
    }

    .rayan-footer-contact > span {
        width: 40px;
        height: 40px;
    }

    .rayan-footer-contact strong {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .rayan-footer {
        padding: 60px 0 22px;
    }

    .rayan-footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px 24px;
    }

    .rayan-footer-top-content {
        padding-left: 0;
    }

    .rayan-footer-top-actions {
        justify-content: center;
    }

    .rayan-footer-main {
        padding: 34px 26px;
    }

    .rayan-footer-main .row {
        row-gap: 34px;
    }

    .rayan-footer-about,
    .rayan-footer-widget {
        text-align: center;
    }

    .rayan-footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .rayan-footer-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .rayan-footer-social {
        justify-content: center;
    }

    .rayan-footer-widget h4::after {
        margin-left: auto;
        margin-right: auto;
    }

    .rayan-footer-list {
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
    }

    .rayan-footer-list li {
        justify-content: flex-start;
        text-align: left;
    }

    .rayan-footer-menu a {
        margin-left: auto;
        margin-right: auto;
    }

    .rayan-footer-contact-list {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .rayan-footer-contact {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .rayan-footer {
        padding: 50px 0 20px;
    }

    .rayan-footer-top {
        border-radius: 22px;
        padding: 24px 18px;
        margin-bottom: 22px;
    }

    .rayan-footer-top-content span {
        justify-content: center;
        font-size: 12px;
    }

    .rayan-footer-top-content h3 {
        font-size: 21px;
        line-height: 1.35;
    }

    .rayan-footer-top-actions a {
        width: 100%;
        justify-content: center;
    }

    .rayan-footer-main {
        padding: 28px 18px;
        border-radius: 24px;
    }

    .rayan-footer-logo {
        width: 190px;
        height: 58px;
    }

    .rayan-footer-logo img {
        max-height: 40px;
    }

    .rayan-footer-about p {
        text-align: center;
        font-size: 14.5px;
    }

    .rayan-footer-social {
        justify-content: center;
        margin-top: 18px;
    }

    .rayan-footer-social a {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .rayan-footer-widget h4 {
        margin-bottom: 18px;
    }

    .rayan-footer-list {
        max-width: 300px;
    }

    .rayan-footer-list li {
        justify-content: center;
        font-size: 14px;
    }

    .rayan-footer-menu {
        align-items: center;
        text-align: center;
    }

    .rayan-footer-contact-list {
        gap: 10px;
    }

    .rayan-footer-contact {
        grid-template-columns: 38px 1fr;
        padding: 12px;
        gap: 10px;
        border-radius: 14px;
    }

    .rayan-footer-contact > span {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .rayan-footer-contact span svg {
        width: 20px;
        height: 20px;
    }

    .rayan-footer-contact small {
        font-size: 10.5px;
    }

    .rayan-footer-contact strong {
        font-size: 12.8px;
        line-height: 1.4;
    }

    .rayan-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding-top: 20px;
        margin-top: 20px;
    }

    .rayan-footer-bottom p,
    .rayan-footer-bottom a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .rayan-footer-top {
        padding: 22px 14px;
        border-radius: 20px;
    }

    .rayan-footer-top-content h3 {
        font-size: 19px;
    }

    .rayan-footer-top-actions {
        gap: 10px;
    }

    .rayan-footer-top-actions a {
        min-height: 48px;
        font-size: 13px;
        padding: 12px 18px;
    }

    .rayan-footer-main {
        padding: 22px 13px;
        border-radius: 22px;
    }

    .rayan-footer-logo {
        width: 178px;
        height: 56px;
    }

    .rayan-footer-logo img {
        max-height: 38px;
    }

    .rayan-footer-widget h4 {
        font-size: 18px;
    }

    .rayan-footer-contact {
        grid-template-columns: 36px 1fr;
        padding: 11px;
    }

    .rayan-footer-contact > span {
        width: 36px;
        height: 36px;
    }

    .rayan-footer-contact strong {
        font-size: 12.5px;
    }

    .rayan-footer-address strong {
        font-size: 12.2px;
    }
}

@media (max-width: 380px) {
    .rayan-footer-social a {
        width: 39px;
        height: 39px;
    }

    .rayan-footer-social a svg {
        width: 19px;
        height: 19px;
    }

    .rayan-footer-contact strong {
        font-size: 12px;
    }
}


/* ===============================
   Production Responsive Fixes
================================ */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #061f33;
    overflow-x: hidden;
    background: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.rayan-menu .nav-link {
    font-family: "Montserrat", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

section[id] {
    scroll-margin-top: 115px;
}

a,
button,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(247, 148, 29, 0.45);
    outline-offset: 3px;
}

.form-control,
.form-select,
button,
a {
    touch-action: manipulation;
}

.rayan-footer-contact strong,
.contact-v3-item p,
.footer-contact-link strong,
.topbar-right a {
    word-break: break-word;
}

/* Prevent mobile horizontal overflow */
.rec-banner-hero,
.highlight-strip,
.about-section-v3,
.products-section-v2,
.quality-v4-section,
.contact-v3-section,
.rayan-footer {
    max-width: 100%;
    overflow-x: hidden;
}

/* Better mobile section spacing */
@media (max-width: 767px) {
    section[id] {
        scroll-margin-top: 84px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .rec-banner-height {
        min-height: calc(100vh - 68px);
        display: flex;
        align-items: center;
    }

    .highlight-strip,
    .about-section-v3,
    .products-section-v2,
    .quality-v4-section,
    .contact-v3-section {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .rec-banner-content h1,
    .rec-banner-content h2,
    .highlight-header h2,
    .about-heading-v3 h2,
    .product-section-title h2,
    .quality-v4-title h2,
    .contact-v3-heading h2 {
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .contact-v3-form .form-control,
    .contact-v3-form .form-select {
        font-size: 16px;
    }
}

/* Reduce animation for users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===============================
   WhatsApp Icon + Popup
================================ */

.rayan-wa-widget {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 99999;
}

.rayan-wa-toggle {
    width: 62px;
    height: 62px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: #25d366;
    display: grid;
    place-items: center;
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.42);
    cursor: pointer;
    transition: all 0.35s ease;
    animation: waIconPulse 1.6s ease-in-out infinite;
}

.rayan-wa-toggle svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

.rayan-wa-toggle:hover {
    transform: translateY(-6px) scale(1.05);
    background: #18b957;
}

/* Popup */
.rayan-wa-popup {
    position: absolute;
    right: 0;
    bottom: 78px;
    width: 315px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(6, 31, 51, 0.28);
    border: 1px solid rgba(6, 31, 51, 0.08);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(0.96);
    transform-origin: left bottom;
    transition: all 0.35s ease;
}

.rayan-wa-widget.wa-open .rayan-wa-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.rayan-wa-popup-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #061f33, #0872b9);
}

.rayan-wa-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #ffffff;
    padding: 6px;
    display: grid;
    place-items: center;
    flex: 0 0 48px;
}

.rayan-wa-logo img {
    max-width: 100%;
    max-height: 34px;
    object-fit: contain;
}

.rayan-wa-popup-head strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 950;
    line-height: 1.2;
}

.rayan-wa-popup-head small {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 700;
    margin-top: 3px;
}

.rayan-wa-message {
    padding: 18px 16px;
    background:
        radial-gradient(circle at 12% 16%, rgba(37, 211, 102, 0.12), transparent 30%),
        #f7fbfe;
}

.rayan-wa-message p {
    width: fit-content;
    max-width: 100%;
    padding: 12px 14px;
    border-radius: 15px 15px 15px 4px;
    color: #061f33;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(6, 31, 51, 0.10);
    font-size: 15px;
    font-weight: 850;
    margin: 0 0 10px;
}

.rayan-wa-message small {
    display: block;
    color: #657282;
    font-size: 13px;
    line-height: 1.5;
}

.rayan-wa-chat-btn {
    margin: 0 16px 16px;
    min-height: 48px;
    border-radius: 50px;
    color: #ffffff;
    background: #25d366;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 950;
    transition: all 0.35s ease;
}

.rayan-wa-chat-btn svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.rayan-wa-chat-btn:hover {
    color: #ffffff;
    background: #18b957;
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.30);
}

.rayan-wa-popup-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 50%;
    color: #061f33;
    background: #ffffff;
    font-size: 18px;
    line-height: 1;
    display: grid;
    place-items: center;
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rayan-wa-popup-close:hover {
    color: #ffffff;
    background: #f7941d;
    transform: rotate(90deg);
}

@keyframes waIconPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.42), 0 18px 42px rgba(37, 211, 102, 0.36);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 18px 42px rgba(37, 211, 102, 0.36);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 18px 42px rgba(37, 211, 102, 0.36);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .rayan-wa-widget {
        right: 16px;
        bottom: 16px;
    }

    .rayan-wa-toggle {
        width: 56px;
        height: 56px;
    }

    .rayan-wa-toggle svg {
        width: 31px;
        height: 31px;
    }

    .rayan-wa-popup {
        width: calc(100vw - 32px);
        max-width: 315px;
        bottom: 70px;
    }
}

/* ===============================
   Header SVG Icon Styling
================================ */

.rayan-header-svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.rayan-header .rayan-icon {
    display: inline-block;
    flex: 0 0 auto;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Topbar SVG Icons */
.topbar-left .rayan-icon,
.topbar-right .rayan-icon {
    width: 16px;
    height: 16px;
    color: var(--rayan-yellow);
}

/* Mobile Phone SVG */
.mobile-call-number .rayan-icon {
    position: relative;
    z-index: 2;
    width: 14px;
    height: 14px;
    color: #ffffff;
}

.mobile-call-number:hover .rayan-icon {
    animation: mobilePhoneShake 0.45s ease;
}

/* Desktop Call Button SVG */
.rayan-call-btn .rayan-icon {
    position: relative;
    z-index: 2;
    width: 28px;
    height: 28px;
    padding: 7px;
    border-radius: 50%;
    color: var(--rayan-dark);
    background: #ffffff;
    transition: all 0.35s ease;
}

.rayan-call-btn:hover .rayan-icon {
    color: #ffffff;
    background: var(--rayan-orange);
    transform: rotate(-18deg) scale(1.08);
    animation: callPulse 0.8s ease infinite alternate;
}

/* Optional: hide old Font Awesome spacing if any old icon remains */
.rayan-header i {
    line-height: 1;
}

/* ===============================
   Hero SVG Icon Styling
================================ */

.rec-hero-svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.rec-hero-icon {
    width: 18px;
    height: 18px;
    color: var(--rec-yellow);
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex: 0 0 auto;
}

.rec-btn-icon {
    position: relative;
    z-index: 2;
    width: 19px;
    height: 19px;
    color: currentColor;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: transform 0.35s ease;
}

.rec-btn-primary:hover .rec-btn-icon {
    transform: translateX(6px);
}

.rec-control-icon {
    width: 22px;
    height: 22px;
    color: currentColor;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Remove old Font Awesome dependency spacing if any old icon remains */
.rec-banner-hero i {
    line-height: 1;
}

/* ===============================
   Highlight SVG Icons
================================ */

.highlight-svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.highlight-icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: all 0.35s ease;
}

.highlight-box:hover .highlight-icon svg {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .highlight-icon svg {
        width: 26px;
        height: 26px;
    }
}


/* ===============================
   About SVG Icons
================================ */

.about-svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* Certificate Box SVG */
.about-cert-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 13px;
    color: #061f33;
    background: linear-gradient(135deg, #f7941d, #ffc400);
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Feature Point SVG */
.about-point-icon {
    position: relative;
    z-index: 3;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    padding: 11px;
    border-radius: 13px;
    color: #f7941d;
    background: rgba(247, 148, 29, 0.13);
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: all 0.4s ease;
}

.about-point-v3:hover .about-point-icon {
    color: #061f33;
    background: #ffc400;
    transform: rotate(-8deg) scale(1.08);
}

/* Button Arrow SVG */
.about-btn-icon {
    position: relative;
    z-index: 2;
    width: 18px;
    height: 18px;
    color: currentColor;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: transform 0.35s ease;
}

.about-btn-main-v3:hover .about-btn-icon {
    transform: translateX(6px);
}

/* Hide old icon dependency if old CSS remains */
.about-cert-box-v3 i,
.about-point-v3 i,
.about-btn-main-v3 i {
    display: none;
}

@media (max-width: 767px) {
    .about-cert-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .about-point-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }
}

/* =====================================================
   HERO BANNER FINAL WORKING CSS
   Paste at the END of main.css
===================================================== */

:root {
    --rec-blue: #0872b9;
    --rec-dark: #061f33;
    --rec-deep: #031522;
    --rec-orange: #f7941d;
    --rec-yellow: #ffc400;
}

/* Main Section */
.rec-banner-hero {
    position: relative !important;
    overflow: hidden !important;
    background: var(--rec-deep) !important;
}

.rec-banner-hero .carousel,
.rec-banner-hero .carousel-inner,
.rec-banner-hero .carousel-item,
.rec-banner-slide {
    min-height: 720px !important;
}

.rec-banner-slide {
    position: relative !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden !important;
    isolation: isolate !important;
}

/* Dark Overlay */
.rec-banner-slide::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
        105deg,
        rgba(3, 21, 34, 0.94) 0%,
        rgba(6, 31, 51, 0.88) 42%,
        rgba(6, 31, 51, 0.62) 72%,
        rgba(3, 21, 34, 0.82) 100%
    ) !important;
    z-index: 1 !important;
}

/* Grid Texture */
.rec-banner-slide::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) !important;
    background-size: 50px 50px !important;
    opacity: 0.36 !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

/* Glow Layer */
.rec-banner-overlay {
    position: absolute !important;
    inset: 0 !important;
    background:
        radial-gradient(circle at 18% 25%, rgba(247, 148, 29, 0.24), transparent 34%),
        radial-gradient(circle at 86% 78%, rgba(8, 114, 185, 0.28), transparent 38%) !important;
    z-index: 3 !important;
    pointer-events: none !important;
}

.rec-banner-slide .container {
    position: relative !important;
    z-index: 5 !important;
}

/* Layout */
.rec-banner-height {
    min-height: 720px !important;
    padding: 90px 0 105px !important;
    display: flex !important;
    align-items: center !important;
}

.rec-banner-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr) !important;
    align-items: center !important;
    gap: 56px !important;
}

/* Left Content */
.rec-banner-content {
    position: relative !important;
    z-index: 6 !important;
    max-width: 780px !important;
    margin: 0 !important;
    text-align: left !important;
}

.rec-banner-label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    padding: 10px 17px !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.14) !important;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    backdrop-filter: blur(12px) !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    margin-bottom: 22px !important;
}

.rec-hero-icon {
    width: 18px !important;
    height: 18px !important;
    color: var(--rec-yellow) !important;
    stroke: currentColor !important;
    stroke-width: 1.9 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    fill: none !important;
}

.rec-banner-content h1,
.rec-banner-content h2 {
    color: #ffffff !important;
    font-size: clamp(42px, 5vw, 70px) !important;
    line-height: 1.06 !important;
    font-weight: 950 !important;
    letter-spacing: -1.4px !important;
    margin: 0 0 22px !important;
    text-align: left !important;
}

.rec-banner-content h1::after,
.rec-banner-content h2::after {
    content: "" !important;
    display: block !important;
    width: 110px !important;
    height: 5px !important;
    margin: 22px 0 0 !important;
    border-radius: 50px !important;
    background: linear-gradient(90deg, var(--rec-orange), var(--rec-yellow)) !important;
}

.rec-banner-content p {
    max-width: 720px !important;
    margin: 0 0 30px !important;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 17px !important;
    line-height: 1.75 !important;
    text-align: left !important;
}

/* Buttons */
.rec-banner-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
    margin-bottom: 34px !important;
}

.rec-btn-primary,
.rec-btn-outline {
    position: relative !important;
    min-height: 56px !important;
    padding: 15px 28px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    font-weight: 950 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 11px !important;
    overflow: hidden !important;
    isolation: isolate !important;
    transition: all 0.4s ease !important;
}

.rec-btn-primary {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--rec-orange), #ffb13b) !important;
    border: 1px solid rgba(255, 196, 0, 0.35) !important;
    box-shadow: 0 18px 42px rgba(247, 148, 29, 0.35) !important;
}

.rec-btn-primary::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(135deg, var(--rec-blue), var(--rec-dark)) !important;
    transform: scaleX(0) !important;
    transform-origin: left !important;
    transition: transform 0.42s ease !important;
    z-index: -1 !important;
}

.rec-btn-primary:hover {
    color: #ffffff !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 24px 56px rgba(8, 114, 185, 0.42) !important;
}

.rec-btn-primary:hover::before {
    transform: scaleX(1) !important;
}

.rec-btn-outline {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.10) !important;
    border: 1px solid rgba(255, 255, 255, 0.34) !important;
    backdrop-filter: blur(14px) !important;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.20) !important;
}

.rec-btn-outline::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: #ffffff !important;
    transform: translateY(105%) !important;
    transition: transform 0.38s ease !important;
    z-index: -1 !important;
}

.rec-btn-outline:hover {
    color: var(--rec-deep) !important;
    transform: translateY(-5px) !important;
    border-color: #ffffff !important;
}

.rec-btn-outline:hover::before {
    transform: translateY(0) !important;
}

.rec-btn-primary span,
.rec-btn-primary svg,
.rec-btn-outline span,
.rec-btn-outline svg {
    position: relative !important;
    z-index: 2 !important;
}

.rec-btn-icon {
    width: 19px !important;
    height: 19px !important;
    stroke: currentColor !important;
    stroke-width: 2.2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    fill: none !important;
    transition: transform 0.35s ease !important;
}

.rec-btn-primary:hover .rec-btn-icon {
    transform: translateX(7px) !important;
}

/* Stats Table */
.rec-banner-stats {
    position: relative !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 690px !important;
    margin: 0 !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    backdrop-filter: blur(16px) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26) !important;
}

.rec-banner-stats div {
    position: relative !important;
    z-index: 2 !important;
    min-height: 88px !important;
    padding: 18px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.16) !important;
    text-align: center !important;
    overflow: hidden !important;
    transition: all 0.42s ease !important;
}

.rec-banner-stats div:last-child {
    border-right: 0 !important;
}

.rec-banner-stats div::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(135deg, var(--rec-orange), var(--rec-blue)) !important;
    opacity: 0 !important;
    transition: opacity 0.42s ease !important;
    z-index: -1 !important;
}

.rec-banner-stats div:hover {
    transform: translateY(-6px) !important;
}

.rec-banner-stats div:hover::before {
    opacity: 1 !important;
}

.rec-banner-stats strong {
    display: block !important;
    color: var(--rec-yellow) !important;
    font-size: 25px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    margin-bottom: 9px !important;
}

.rec-banner-stats span {
    display: block !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    line-height: 1.25 !important;
}

.rec-banner-stats div:hover strong,
.rec-banner-stats div:hover span {
    color: #ffffff !important;
}

/* Product Card */
.rec-banner-product {
    position: relative !important;
    z-index: 6 !important;
    display: flex !important;
    justify-content: flex-end !important;
}

.rec-product-card {
    position: relative !important;
    width: 100% !important;
    max-width: 500px !important;
    padding: 18px !important;
    border-radius: 34px !important;
    background: rgba(255, 255, 255, 0.14) !important;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    backdrop-filter: blur(16px) !important;
    box-shadow: 0 32px 95px rgba(0, 0, 0, 0.34) !important;
    overflow: hidden !important;
}

.rec-product-card::before {
    content: "" !important;
    position: absolute !important;
    inset: 12px !important;
    border-radius: 26px !important;
    border: 1px dashed rgba(255, 255, 255, 0.22) !important;
    pointer-events: none !important;
    z-index: 3 !important;
}

.rec-product-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 44px 115px rgba(0, 0, 0, 0.42) !important;
}

.rec-product-tag {
    position: absolute !important;
    left: 32px !important;
    top: 32px !important;
    z-index: 5 !important;
    color: var(--rec-dark) !important;
    background: linear-gradient(135deg, var(--rec-orange), var(--rec-yellow)) !important;
    padding: 8px 14px !important;
    border-radius: 50px !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6px !important;
    box-shadow: 0 12px 30px rgba(247, 148, 29, 0.34) !important;
}

.rec-product-img {
    position: relative !important;
    height: 500px !important;
    border-radius: 26px !important;
    overflow: hidden !important;
    background: #ffffff !important;
}

.rec-product-img::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, transparent 45%, rgba(3, 21, 34, 0.72) 100%) !important;
}

.rec-product-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.85s ease !important;
}

.rec-product-card:hover .rec-product-img img {
    transform: scale(1.08) !important;
}

.rec-product-info {
    position: relative !important;
    z-index: 4 !important;
    padding: 18px 10px 5px !important;
    text-align: center !important;
}

.rec-product-info h3 {
    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 950 !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
}

.rec-product-info p {
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    text-align: center !important;
}

/* Controls */
.rec-hero-control {
    width: 54px !important;
    height: 54px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

.rec-hero-prev {
    left: 34px !important;
}

.rec-hero-next {
    right: 34px !important;
}

.rec-hero-control span {
    width: 54px !important;
    height: 54px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.13) !important;
    border: 1px solid rgba(255, 255, 255, 0.26) !important;
    backdrop-filter: blur(12px) !important;
    transition: all 0.35s ease !important;
}

.rec-hero-control:hover span {
    background: var(--rec-orange) !important;
    border-color: var(--rec-orange) !important;
    transform: scale(1.08) !important;
}

.rec-control-icon {
    width: 22px !important;
    height: 22px !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    fill: none !important;
}

/* Indicators */
.rec-hero-indicators {
    right: auto !important;
    left: 50% !important;
    bottom: 42px !important;
    margin: 0 !important;
    transform: translateX(-50%) !important;
    gap: 9px !important;
    z-index: 10 !important;
}

.rec-hero-indicators [data-bs-target] {
    width: 12px !important;
    height: 12px !important;
    border: 0 !important;
    border-radius: 50px !important;
    background: rgba(255, 255, 255, 0.55) !important;
    opacity: 1 !important;
    transition: all 0.35s ease !important;
}

.rec-hero-indicators .active {
    width: 42px !important;
    background: var(--rec-orange) !important;
}

/* Animation */
.carousel-item.active .rec-banner-label,
.carousel-item.active .rec-banner-content h1,
.carousel-item.active .rec-banner-content h2,
.carousel-item.active .rec-banner-content p,
.carousel-item.active .rec-banner-actions,
.carousel-item.active .rec-banner-stats {
    animation: recFadeUp 0.85s ease both !important;
}

.carousel-item.active .rec-banner-product {
    animation: recProductIn 0.95s ease both !important;
    animation-delay: 0.28s !important;
}

@keyframes recFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes recProductIn {
    from {
        opacity: 0;
        transform: translateX(45px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 1199px) {
    .rec-banner-grid {
        grid-template-columns: 1fr 380px !important;
        gap: 36px !important;
    }

    .rec-product-card {
        max-width: 380px !important;
    }

    .rec-product-img {
        height: 300px !important;
    }
}

@media (max-width: 991px) {
    .rec-banner-hero .carousel,
    .rec-banner-hero .carousel-inner,
    .rec-banner-hero .carousel-item,
    .rec-banner-slide {
        min-height: auto !important;
    }

    .rec-banner-height {
        min-height: auto !important;
        padding: 76px 0 96px !important;
    }

    .rec-banner-grid {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .rec-banner-content {
        max-width: 720px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }

    .rec-banner-content h1,
    .rec-banner-content h2,
    .rec-banner-content p {
        text-align: center !important;
    }

    .rec-banner-content h1::after,
    .rec-banner-content h2::after {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .rec-banner-actions {
        justify-content: center !important;
    }

    .rec-banner-stats {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .rec-banner-product {
        justify-content: center !important;
    }

    .rec-product-card {
        max-width: 420px !important;
    }

    .rec-product-img {
        height: 280px !important;
    }

    .rec-hero-control {
        display: none !important;
    }

    .rec-hero-indicators {
        bottom: 30px !important;
    }
}

@media (max-width: 767px) {
    .rec-banner-height {
        padding: 58px 0 84px !important;
    }

    .rec-banner-content h1,
    .rec-banner-content h2 {
        font-size: 31px !important;
        line-height: 1.14 !important;
        letter-spacing: -0.6px !important;
    }

    .rec-banner-content p {
        font-size: 15px !important;
        line-height: 1.65 !important;
    }

    .rec-banner-actions {
        gap: 12px !important;
        margin-bottom: 28px !important;
    }

    .rec-btn-primary,
    .rec-btn-outline {
        width: 100% !important;
        max-width: 320px !important;
        min-height: 52px !important;
        border-radius: 13px !important;
        padding: 13px 22px !important;
    }

    .rec-banner-stats {
        grid-template-columns: 1fr !important;
        max-width: 330px !important;
        border-radius: 20px !important;
    }

    .rec-banner-stats div {
        min-height: auto !important;
        padding: 16px 14px !important;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    }

    .rec-banner-stats div:last-child {
        border-bottom: 0 !important;
    }

    .rec-product-card {
        max-width: 330px !important;
        padding: 14px !important;
        border-radius: 26px !important;
    }

    .rec-product-card::before {
        inset: 9px !important;
        border-radius: 20px !important;
    }

    .rec-product-img {
        height: 220px !important;
        border-radius: 20px !important;
    }

    .rec-product-tag {
        left: 24px !important;
        top: 24px !important;
        font-size: 10.5px !important;
        padding: 7px 11px !important;
    }

    .rec-product-info h3 {
        font-size: 19px !important;
    }

    .rec-product-info p {
        font-size: 13px !important;
    }
}

@media (max-width: 420px) {
    .rec-banner-content h1,
    .rec-banner-content h2 {
        font-size: 27px !important;
    }

    .rec-product-card {
        max-width: 300px !important;
    }

    .rec-product-img {
        height: 195px !important;
    }
}


/* ======================================
   Product Enquiry Popup
====================================== */

.product-enquiry-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s ease;
}

.product-enquiry-popup.product-enquiry-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-enquiry-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 21, 34, 0.72);
    backdrop-filter: blur(8px);
}

.product-enquiry-modal {
    position: relative;
    width: min(690px, calc(100% - 28px));
    max-height: calc(100vh - 34px);
    margin: 85px auto;
    overflow-y: auto;
    transform: translateY(35px) scale(0.96);
    transition: all 0.42s ease;
}

.product-enquiry-popup.product-enquiry-open .product-enquiry-modal {
    transform: translateY(0) scale(1);
}

.product-enquiry-form-card {
    position: relative;
    padding: 48px;
    border-radius: 36px;
    background: #ffffff;
    border: 1px solid rgba(6, 31, 51, 0.08);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.product-enquiry-form-card::before {
    content: "";
    position: absolute;
    right: -105px;
    top: -105px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(8, 114, 185, 0.10);
}

.product-enquiry-form-card::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -120px;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    background: rgba(247, 148, 29, 0.12);
}

.product-enquiry-form-card > * {
    position: relative;
    z-index: 2;
}

.product-enquiry-close {
    position: absolute;
    right: 22px;
    top: 22px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: #061f33;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(6, 31, 51, 0.16);
    font-size: 28px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.35s ease;
}

.product-enquiry-close:hover {
    color: #ffffff;
    background: #f7941d;
    transform: rotate(90deg);
}

.product-enquiry-title {
    margin-bottom: 28px;
}

.product-enquiry-title span {
    display: inline-flex;
    color: #f7941d;
    background: rgba(247, 148, 29, 0.10);
    border: 1px solid rgba(247, 148, 29, 0.22);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 15px;
}

.product-enquiry-title h3 {
    color: #061f33;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -1px;
    margin: 0;
}

.product-enquiry-title h3::after {
    content: "";
    display: block;
    width: 86px;
    height: 5px;
    border-radius: 50px;
    background: linear-gradient(90deg, #f7941d, #ffc400);
    margin-top: 16px;
}

.product-enquiry-form .form-label {
    color: #061f33;
    font-size: 14px;
    font-weight: 950;
    margin-bottom: 8px;
}

.product-enquiry-form .form-control,
.product-enquiry-form .form-select {
    height: 56px;
    border-radius: 16px;
    border: 1px solid rgba(6, 31, 51, 0.13);
    background: #f8fbfd;
    color: #061f33;
    font-size: 14px;
    font-weight: 750;
    padding: 13px 16px;
    box-shadow: none;
    transition: all 0.35s ease;
}

.product-enquiry-form textarea.form-control {
    min-height: 145px;
    height: auto;
    resize: none;
}

.product-enquiry-form .form-control::placeholder {
    color: #97a4b2;
}

.product-enquiry-form .form-control:focus,
.product-enquiry-form .form-select:focus {
    background: #ffffff;
    border-color: #0872b9;
    box-shadow: 0 0 0 4px rgba(8, 114, 185, 0.12);
    transform: translateY(-2px);
}

.product-enquiry-submit {
    position: relative;
    min-height: 56px;
    padding: 15px 30px;
    border: 0;
    border-radius: 50px;
    color: #ffffff;
    background: linear-gradient(135deg, #f7941d, #d87508);
    font-size: 15px;
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(247, 148, 29, 0.32);
    transition: all 0.35s ease;
}

.product-enquiry-submit::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0872b9, #061f33);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.product-enquiry-submit span,
.product-enquiry-submit svg {
    position: relative;
    z-index: 2;
}

.product-enquiry-submit svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: all 0.35s ease;
}

.product-enquiry-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(8, 114, 185, 0.32);
}

.product-enquiry-submit:hover::before {
    transform: scaleX(1);
}

.product-enquiry-submit:hover svg {
    transform: translateX(5px) translateY(-2px);
}

body.product-popup-lock {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 767px) {
    .product-enquiry-modal {
        width: calc(100% - 22px);
        margin: 11px auto;
        max-height: calc(100vh - 22px);
    }

    .product-enquiry-form-card {
        padding: 34px 18px 24px;
        border-radius: 26px;
    }

    .product-enquiry-title {
        text-align: center;
    }

    .product-enquiry-title h3 {
        font-size: 28px;
    }

    .product-enquiry-title h3::after {
        margin-left: auto;
        margin-right: auto;
    }

    .product-enquiry-close {
        width: 36px;
        height: 36px;
        right: 14px;
        top: 14px;
        font-size: 24px;
    }

    .product-enquiry-submit {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .product-enquiry-form-card {
        padding: 32px 15px 22px;
    }

    .product-enquiry-title h3 {
        font-size: 25px;
    }
}