/* =========================================================
   RUDRA FIREWORKS - MAIN STYLESHEET (style.css)
   ========================================================= */

:root {
    --primary-navy: #08142E;
    --primary-blue: #1E3A8A;
    --accent-gold: #FFD54A;
    --accent-orange: #F97316;
    --accent-red: #DC2626;
    --success-green: #16A34A;
    
    --bg-white: #FFFFFF;
    --bg-cream: #FFF8E7;
    --bg-skyblue: #F0F9FF;
    --bg-lightgrey: #F8FAFC;
    --bg-yellow: #FEFCE8;
    --bg-blue-light: #EFF6FF;
    --footer-bg: #08142E;

    --text-heading: #08142E;
    --text-body: #444444;
    --text-muted: #64748B;
    --border-light: #E2E8F0;
    --border-gold: rgba(255, 213, 74, 0.4);

    --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --shadow-soft: 0 10px 30px rgba(8, 20, 46, 0.06);
    --shadow-hover: 0 20px 40px rgba(8, 20, 46, 0.14);
    --shadow-glow: 0 0 25px rgba(249, 115, 22, 0.4);
    --shadow-gold-glow: 0 0 25px rgba(255, 213, 74, 0.5);

    --radius-btn: 50px;
    --radius-card: 15px;
    --radius-img: 15px;
    --radius-input: 12px;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-orange);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.35rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* Layout Containers & Sections */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.section-title-wrapper {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.4rem;
    color: var(--text-heading);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: initial;
    align-items: center;
    justify-content: center;
    padding: 16px 35px;
    border-radius: var(--radius-btn);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.25);
}

.btn-primary:hover {
    background-color: var(--accent-orange);
    color: #FFFFFF !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background-color: var(--accent-orange);
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: #FFFFFF !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-gold-glow);
}

.btn-header-cta {
    background-color: var(--accent-orange);
    color: #FFFFFF !important;
    padding: 12px 28px;
    font-size: 0.95rem;
}

.btn-header-cta:hover {
    background-color: var(--primary-blue);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold-glow);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--accent-gold);
    color: var(--accent-gold) !important;
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--primary-navy) !important;
}

.full-width {
    width: 100%;
}

/* Header & Navigation Bar */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
    background-color: transparent;
}

.header-nav.scrolled {
    background-color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 80px;
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header-nav.scrolled .header-logo {
    height: 100px;
}

.desktop-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav .nav-link {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

.header-nav.scrolled .desktop-nav .nav-link {
    color: var(--primary-navy);
}

.desktop-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--accent-orange);
    border-radius: 2px;
    transition: var(--transition);
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after {
    width: 100%;
}

.header-nav.scrolled .desktop-nav .nav-link:hover {
    color: var(--accent-orange);
}

/* Mobile Hamburger */
.hamburger-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
    z-index: 1002;
}

.hamburger-bar {
    width: 28px;
    height: 3px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: var(--transition);
}

.header-nav.scrolled .hamburger-bar {
    background-color: var(--primary-navy);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 20, 46, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1001;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 340px;
    height: 100vh;
    background: #FFFFFF;
    z-index: 1002;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-logo {
    height: 48px;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 2.2rem;
    color: var(--primary-navy);
    cursor: pointer;
}

.mobile-nav-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.mobile-nav-link:hover {
    color: var(--accent-orange);
}

/* Top Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange), var(--primary-blue));
    width: 0%;
    z-index: 1005;
    transition: width 0.1s ease-out;
}

/* Desktop Custom Cursor */
.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.custom-cursor-halo {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255, 213, 74, 0.6);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, transform 0.15s ease-out;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #08142E 0%, #1E3A8A 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #FFFFFF;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

#loaderFireworksCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.loading-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.loading-logo-box {
    margin-bottom: 25px;
}

.loader-logo {
    height: 90px;
    animation: loaderLogoPulse 2s infinite ease-in-out;
}

@keyframes loaderLogoPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255,213,74,0.4)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 25px rgba(255,213,74,0.8)); }
}

.loading-title {
    color: var(--accent-gold);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.loading-bar-container {
    width: 280px;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 12px auto;
    border: 1px solid rgba(255, 213, 74, 0.3);
}

.loading-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
    border-radius: 10px;
    transition: width 0.1s linear;
}

.loading-percentage {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--success-green);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2.5s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.12);
    background-color: #128C7E;
    box-shadow: 0 12px 30px rgba(18, 140, 126, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--primary-navy);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
    70% { box-shadow: 0 0 0 18px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-orange);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold-glow);
}

/* Section Divider Wave */
.footer-wave-divider {
    position: relative;
    top: 1px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

/* Main Footer */
.main-footer {
    background-color: var(--footer-bg);
    color: #CBD5E1;
    position: relative;
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 20px 30px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 175px;
    /* margin-bottom: 20px; */
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #94A3B8;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--accent-orange);
    transform: translateY(-4px) rotate(8deg);
    color: #FFFFFF;
}

.footer-heading {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94A3B8;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 6px;
}

.footer-contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #94A3B8;
}

.info-icon {
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #64748B;
}

.footer-bottom strong {
    color: var(--accent-gold);
}








#loader{
  position:fixed;
  inset:0;
  z-index:10000;
  background:radial-gradient(ellipse at 50% 40%, #101c30 0%, #060910 70%);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:28px;
  transition:opacity .8s ease, visibility .8s ease;
}


#loader.hidden{
    opacity:0;
    visibility:hidden;
}


#loader canvas{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}

.premium-loader-logo{
    position:relative;
    z-index:2;
    width:300px;
    height:300px;
    filter:drop-shadow(0 0 18px rgba(207,165,68,.5));
    animation:loaderPulse 1.8s ease-in-out infinite;
}


@keyframes loaderPulse{
    0%,100%{transform:scale(1);
        filter:drop-shadow(0 0 12px rgba(207,165,68,.4));
    }

    50%{
        transform:scale(1.06);
        filter:drop-shadow(0 0 26px rgba(207,165,68,.75));
    }
}



.premium-loader-word{
    position:relative;
    z-index:2;
    letter-spacing:.5em;
    font-size:15px;
    color:#ddd;
    text-transform:uppercase;
}



.premium-loader-track{
    position:relative;
    z-index:2;
    width:220px;
    height:6px;
    background:rgba(255,255,255,.15);
    border-radius:20px;
    overflow:hidden;
}


.premium-loader-fill{
    width:0%;
    height:100%;
    border-radius:20px;
    background:linear-gradient(90deg,#ff9800,#ffd54f);
    transition:width .1s linear;
}






/* =========================================================
   PREMIUM INQUIRY FORM REDESIGN
   ========================================================= */


.inquiry-form-card {
    width: 100%;
    max-width: 1050px;
    margin: 40px auto 0;
    padding: 45px 50px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(20, 40, 80, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(20, 40, 80, 0.10);
    box-sizing: border-box;
}

/* Form rows */

.inquiry-form-card .form-row-2col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
    margin-bottom: 22px;
}

/* Form group */

.inquiry-form-card .form-group {
    width: 100%;
    margin-bottom: 0;
}

/* Labels */

.inquiry-form-card .form-label {
    display: block;
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 600;
    color: #172554;
    letter-spacing: 0.2px;
}

/* Input wrapper */

.inquiry-form-card .input-with-icon {
    position: relative;
    width: 100%;
}

/* Icons */

.inquiry-form-card .input-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    text-align: center;
    font-size: 17px;
    line-height: 1;
    z-index: 2;
}

/* All form controls */

.inquiry-form-card .form-control {
    width: 100%;
    min-height: 52px;
    padding: 0 16px 0 48px;
    border: 1px solid #d9e0eb;
    border-radius: 12px;
    background: #ffffff;
    color: #172554;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

/* Placeholder */

.inquiry-form-card .form-control::placeholder {
    color: #9aa4b2;
}

/* Focus */

.inquiry-form-card .form-control:focus {
    border-color: #3156b3;
    box-shadow: 0 0 0 4px rgba(49, 86, 179, 0.10);
    background: #ffffff;
}

/* Select */

.inquiry-form-card select.form-control {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 42px;
    background-image:
        linear-gradient(45deg, transparent 50%, #64748b 50%),
        linear-gradient(135deg, #64748b 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 22px,
        calc(100% - 12px) 22px;
    background-size:
        6px 6px,
        6px 6px;
    background-repeat: no-repeat;
}

/* Quantity */

.inquiry-form-card input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.inquiry-form-card input[type="number"]::-webkit-inner-spin-button,
.inquiry-form-card input[type="number"]::-webkit-outer-spin-button {
    opacity: 0.5;
}

/* Textarea */

.inquiry-form-card textarea.form-control {
    min-height: 112px;
    padding-top: 15px;
    padding-bottom: 15px;
    resize: vertical;
    line-height: 1.5;
}

/* Textarea icon */

.inquiry-form-card .form-row-2col:last-of-type
.input-icon {
    top: 22px;
    transform: none;
}

/* Selected product badge */

.selected-product-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 30px;
    background: rgba(49, 86, 179, 0.08);
    color: #3156b3;
    font-size: 13px;
    font-weight: 600;
}

/* Submit area */

.inquiry-form-card .text-center {
    margin-top: 30px;
    text-align: center;
}

/* Submit button */

.inquiry-form-card .btn-primary {
    min-width: 190px;
    min-height: 52px;
    padding: 0 28px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #172554, #3156b3);
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(23, 37, 84, 0.20);
    transition: all 0.25s ease;
}

/* Button hover */

.inquiry-form-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(23, 37, 84, 0.28);
}

/* Button disabled */

.inquiry-form-card .btn-primary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

/* Spinner */

.inquiry-form-card .btn-spinner {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 8px;
    vertical-align: -2px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: inquirySpinner 0.7s linear infinite;
}

@keyframes inquirySpinner {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .inquiry-form-card {
        margin: 25px 15px 0;
        padding: 30px 22px;
        width: calc(100% - 30px);
        border-radius: 18px;
    }

    .inquiry-form-card .form-row-2col {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 18px;
    }

    .inquiry-form-card .form-label {
        font-size: 13px;
    }

    .inquiry-form-card .form-control {
        min-height: 50px;
        font-size: 14px;
    }

    .inquiry-form-card .text-center {
        margin-top: 25px;
    }

    .inquiry-form-card .btn-primary {
        width: 100%;
        min-width: 0;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .inquiry-form-card {
        padding: 25px 17px;
        margin-top: 20px;
    }

    .inquiry-form-card .form-control {
        min-height: 48px;
        padding-left: 45px;
    }

    .inquiry-form-card .input-icon {
        left: 14px;
    }

}











/* =========================================================
   RUDRA ABOUT PAGE - PREMIUM CSS OVERRIDE
   HTML/PHP DOES NOT NEED TO BE CHANGED
   ========================================================= */


/* =========================================================
   ABOUT MAIN GRID
   ========================================================= */

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   ABOUT IMAGE
   ========================================================= */

.about-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img-box {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    /* background:
        linear-gradient(
            135deg,
            #ff7518 0%,
            #ff9f1c 45%,
            #ffd166 100%
        );

    box-shadow:
        0 25px 60px rgba(8, 20, 46, 0.18); */

    border: 1px solid rgba(255, 255, 255, 0.7);
}


/* Glow effect */

.about-img-box::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(255,255,255,0.35),
            transparent 55%
        );

    pointer-events: none;
}


/* Logo itself */

.about-brand-img {
    width: 100% !important;
    height: 100% !important;
    max-width: 350px !important;

    object-fit: contain;

    position: relative;
    z-index: 2;

    filter:
        drop-shadow(0 15px 20px rgba(0,0,0,0.18));

    transition: transform 0.4s ease;
}



.about-img-box {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    padding: 0 !important;
}

.about-brand-img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    display: block;
}











/* Hover */

.about-img-box:hover .about-brand-img {
    transform: scale(1.01);
}


/* =========================================================
   ABOUT CONTENT
   ========================================================= */

.about-content {
    max-width: 600px;
}

.about-content .section-tag {
    display: inline-block;
    margin-bottom: 12px;
    align-content: center;
}

.about-content .section-title {
    margin-bottom: 18px;
    line-height: 1.15;
}

.about-subheading {
    line-height: 1.4;
}

.about-content > p {
    color: #475569;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}


/* =========================================================
   MISSION + VISION
   ========================================================= */

.mission-vision-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 28px !important;
}

.mv-card {
    padding: 22px;
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.75);

    border: 1px solid rgba(30, 58, 138, 0.08);

    box-shadow:
        0 10px 30px rgba(8, 20, 46, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 35px rgba(8, 20, 46, 0.12);
}

.mv-card h4 {
    color: var(--primary-blue);
    font-size: 17px;
    margin-bottom: 8px;
}

.mv-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   FEATURE CARDS
   ========================================================= */

.features-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    max-width: 1200px;

    margin: 65px auto 0;
}


/* Card */

.feature-card {
    min-height: 190px;

    padding: 28px 25px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.92);

    border: 1px solid rgba(30, 58, 138, 0.08);

    box-shadow:
        0 12px 35px rgba(8, 20, 46, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Hover */

.feature-card:hover {
    transform: translateY(-7px);

    border-color: rgba(30, 58, 138, 0.18);

    box-shadow:
        0 20px 45px rgba(8, 20, 46, 0.12);
}


/* Icon */

.feature-card .card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(30, 58, 138, 0.08);
    font-size: 24px;

    margin-bottom: 18px;
}


/* Heading */

.feature-card h3 {
    font-size: 18px;
    color: var(--primary-blue);

    margin-bottom: 8px;
}


/* Description */

.feature-card p {
    color: #64748b;

    font-size: 14px;

    line-height: 1.65;

    margin: 0;
}


/* =========================================================
   STATISTICS SECTION
   ========================================================= */

.stats-section {
    /* margin-top: 100px;  */
}

.stats-counter-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 30px;

    text-align: center;
}

.stat-item {
    padding: 20px;
}

.counter-number {
    font-size: 42px;
    font-weight: 800;

    line-height: 1.1;

    color: #ffffff;

    margin-bottom: 8px;
}

.counter-label {
    color: #cbd5e1;

    font-size: 14px;

    letter-spacing: 0.3px;
}


/* =========================================================
   PAGE BANNER
   ========================================================= */

.page-banner {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner h1 {
    margin-bottom: 10px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 992px) {

    .about-grid {
        grid-template-columns: 1fr;

        gap: 45px;

        max-width: 720px;
    }

    .about-image-wrapper {
        order: 1;
    }

    .about-content {
        order: 2;

        max-width: 100%;
    }

    .about-img-box {
        max-width: 460px;
    }

    .features-grid {
        grid-template-columns:
            repeat(2, 1fr);

        max-width: 720px;
    }

    .stats-counter-grid {
        grid-template-columns:
            repeat(2, 1fr);

        max-width: 700px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .about-grid {
        gap: 35px;
    }

    .about-img-box {
        max-width: 100%;

        border-radius: 18px;
    }

    .about-brand-img {
        width: 65% !important;
    }

    .about-content .section-title {
        font-size: 28px;
        text-align: center;
    }

    .about-subheading {
        font-size: 18px !important;
        text-align: center;
    }

    .about-content > p {
        font-size: 14px;
        line-height: 1.7;
        text-align: center;
    }


    /* Mission Vision */

    .mission-vision-box {
        grid-template-columns: 1fr;
    }

    .mv-card {
        padding: 20px;
    }


    /* Feature cards */

    .features-grid {
        grid-template-columns: 1fr;

        gap: 16px;

        margin-top: 45px;
    }

    .feature-card {
        min-height: auto;

        padding: 23px;
    }


    /* Statistics */

    .stats-counter-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 15px;
    }

    .counter-number {
        font-size: 32px;
    }

    .counter-label {
        font-size: 12px;
    }


    /* Banner */

    .page-banner {
        min-height: 250px;

        padding: 90px 20px 50px !important;
    }

    .page-banner h1 {
        font-size: 2rem !important;
    }
}







/* =========================================
   PRODUCT PAGE - BUTTON POSITION FIX
   ========================================= */

/* The button container */
.bg-white .container > div[style*="grid-template-columns"] > div:nth-child(2) > div[style*="display: flex"] {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 15px !important;
    width: 100% !important;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
    position: static !important;
}

/* Send Inquiry + WhatsApp buttons */
.bg-white .container > div[style*="grid-template-columns"] > div:nth-child(2) > div[style*="display: flex"] .btn {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    transform: none !important;
    float: none !important;

    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;

    margin: 0 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    box-sizing: border-box !important;
}

/* Send Inquiry button */
.bg-white .container > div[style*="grid-template-columns"] > div:nth-child(2) > div[style*="display: flex"] .btn-secondary {
    padding: 14px 28px !important;
}

/* WhatsApp button */
.bg-white .container > div[style*="grid-template-columns"] > div:nth-child(2) > div[style*="display: flex"] .btn-outline {
    padding: 14px 25px !important;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .bg-white .container > div[style*="grid-template-columns"] > div:nth-child(2) > div[style*="display: flex"] {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .bg-white .container > div[style*="grid-template-columns"] > div:nth-child(2) > div[style*="display: flex"] .btn {
        width: auto !important;
    }
}









/* =========================================================
   PRODUCT CARD BUTTON FIX
   Keeps buttons INSIDE the card and prevents overlapping
   ========================================================= */

.product-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    overflow: hidden !important;
}

.product-body {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    justify-content: flex-start !important;
    padding: 25px !important;
    min-height: 0 !important;
}

.product-desc {
    margin-bottom: 15px !important;
}

.product-actions {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 15px !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

.product-actions .btn {
    position: static !important;
    flex: 0 0 auto !important;
    width: auto !important;
    margin: 0 !important;
    padding: 10px 16px !important;
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
}

/* View Details button */
.product-actions .btn-outline {
    color: var(--secondary-blue) !important;
    border: 2px solid var(--secondary-blue) !important;
    background: transparent !important;
}

/* Send Inquiry button */
.product-actions .btn-primary,
.product-actions .btn-secondary {
    color: #FFFFFF !important;
}

/* Make sure links cannot become absolute/fixed */
.product-actions a {
    position: static !important;
    transform: none !important;
}

/* Desktop */
@media (min-width: 993px) {
    .product-actions {
        justify-content: flex-start !important;
        margin-top: 18px !important;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .product-actions {
        flex-wrap: wrap !important;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr !important;
    }

    .product-actions {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .product-actions .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}








/* =========================================================
   PRODUCT CARD BUTTON FIX
   Prevent buttons from growing after browser Back/Forward
   ========================================================= */

.products-grid .product-card .product-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

/* Both product buttons */
.products-grid .product-card .product-actions .btn {
    display: inline-flex !important;
    flex: 0 0 auto !important;

    width: auto !important;
    min-width: 145px;
    max-width: 220px;

    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;

    padding: 10px 22px !important;
    margin: 0 !important;

    box-sizing: border-box !important;

    transform: none;
}

/* View Details */
.products-grid .product-card .product-actions .btn-outline {
    width: auto !important;
    height: 46px !important;
    min-height: 46px !important;
}

/* Send Inquiry */
.products-grid .product-card .product-actions .btn-secondary {
    width: auto !important;
    height: 46px !important;
    min-height: 46px !important;
}

/* Do NOT allow hover to enlarge product buttons */
.products-grid .product-card .product-actions .btn:hover {
    transform: translateY(-2px) !important;
}

/* Prevent focus/active state from changing the size */
.products-grid .product-card .product-actions .btn:focus,
.products-grid .product-card .product-actions .btn:active,
.products-grid .product-card .product-actions .btn:visited {
    width: auto !important;
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
    transform: none !important;
}

/* Keep text inside button */
.products-grid .product-card .product-actions .btn * {
    max-width: 100%;
}







/* =========================================================
   RUDRA PREMIUM PRODUCT GALLERY
   Unique classes - does not affect existing gallery CSS
========================================================= */

.rk-gallery-section {
    background: #f5f8fc;
    padding: 90px 0;
}


/* -------------------------
   SECTION HEADING
------------------------- */

.rk-gallery-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.rk-gallery-tag {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 30px;

    background: rgba(249, 115, 22, 0.10);
    color: #f97316;

    border: 1px solid rgba(249, 115, 22, 0.25);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    margin-bottom: 14px;
}

.rk-gallery-heading h2 {
    margin: 0 0 15px;

    color: #08142e;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.rk-gallery-heading h2 span {
    color: #1e3a8a;
}

.rk-gallery-heading p {
    margin: 0;

    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}


/* -------------------------
   GRID
------------------------- */

.rk-gallery-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 24px;

    align-items: stretch;
}


/* -------------------------
   CARD
------------------------- */

.rk-gallery-card {
    position: relative;

    background: #ffffff;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid #e7edf5;

    box-shadow: 0 8px 30px rgba(8, 20, 46, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.rk-gallery-card:hover {
    transform: translateY(-7px);

    border-color: rgba(30, 58, 138, 0.18);

    box-shadow: 0 18px 45px rgba(8, 20, 46, 0.13);
}


/* -------------------------
   IMAGE AREA
------------------------- */

.rk-gallery-image {
    position: relative;

    height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    background:
        linear-gradient(
            145deg,
            #f8fafc 0%,
            #ffffff 55%,
            #f1f5f9 100%
        );

    overflow: hidden;
}

.rk-gallery-image img {
    width: auto;
    height: 240px;

    max-width: 90%;

    object-fit: contain;

    display: block;

    transition:
        transform 0.45s ease;
}

.rk-gallery-card:hover .rk-gallery-image img {
    transform: scale(1.06);
}


/* -------------------------
   IMAGE HOVER
------------------------- */

.rk-gallery-hover {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(8, 20, 46, 0.48);

    opacity: 0;

    transition: opacity 0.3s ease;
}

.rk-gallery-card:hover .rk-gallery-hover {
    opacity: 1;
}

.rk-gallery-view {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    padding: 11px 18px;

    background: #ffffff;

    color: #1e3a8a;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


/* -------------------------
   CONTENT
------------------------- */

.rk-gallery-content {
    padding: 22px 22px 24px;
}

.rk-gallery-category {
    display: block;

    color: #f97316;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 8px;
}

.rk-gallery-content h3 {
    margin: 0 0 18px;

    color: #08142e;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.3;

    min-height: 52px;
}


/* -------------------------
   BOTTOM ROW
------------------------- */

.rk-gallery-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding-top: 16px;

    border-top: 1px solid #edf1f5;
}

.rk-gallery-items {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #64748b;

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;
}

.rk-gallery-items i {
    color: #f97316;
}


/* -------------------------
   VIEW DETAILS BUTTON
------------------------- */

.rk-gallery-btn {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    gap: 7px;

    width: auto !important;
    height: auto !important;

    min-width: 0 !important;

    padding: 9px 13px !important;

    margin: 0 !important;

    border-radius: 8px !important;

    background: transparent !important;

    color: #1e3a8a !important;

    border: 1px solid rgba(30, 58, 138, 0.18) !important;

    font-size: 12px !important;
    font-weight: 700 !important;

    line-height: 1.2 !important;

    text-decoration: none !important;

    box-shadow: none !important;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.rk-gallery-btn:hover {
    background: #1e3a8a !important;

    color: #ffffff !important;

    border-color: #1e3a8a !important;

    transform: none !important;
}

.rk-gallery-btn i {
    font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .rk-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .rk-gallery-section {
        padding: 65px 0;
    }

    .rk-gallery-heading {
        margin-bottom: 35px;
    }

    .rk-gallery-heading h2 {
        font-size: 32px;
    }

    .rk-gallery-heading p {
        font-size: 14px;
    }

    .rk-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .rk-gallery-image {
        height: 240px;
        padding: 18px;
    }

    .rk-gallery-image img {
        height: 190px;
    }

    .rk-gallery-content {
        padding: 18px;
    }

    .rk-gallery-content h3 {
        font-size: 17px;
        min-height: auto;
    }

    .rk-gallery-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .rk-gallery-btn {
        width: auto !important;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    .rk-gallery-grid {
        grid-template-columns: 1fr;
    }

    .rk-gallery-image {
        height: 280px;
    }

    .rk-gallery-image img {
        height: 225px;
    }

    .rk-gallery-heading h2 {
        font-size: 28px;
    }

}






/* =========================================================
   PREMIUM CONTACT LOCATION SECTION
========================================================= */

.rk-contact-location {
    padding: 90px 0;
    background: #f5f8fc;
}


/* Heading */

.rk-contact-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
}

.rk-contact-tag {
    display: inline-block;
    padding: 7px 18px;
    border: 1px solid rgba(30, 58, 138, 0.25);
    border-radius: 50px;
    background: rgba(30, 58, 138, 0.06);

    color: #1E3A8A;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.rk-contact-heading h2 {
    margin: 15px 0 12px;
    font-size: 42px;
    line-height: 1.2;
    color: #08142E;
    font-weight: 700;
}

.rk-contact-heading h2 span {
    color: #F97316;
}

.rk-contact-heading p {
    margin: 0 auto;
    max-width: 620px;

    color: #64748B;
    font-size: 16px;
    line-height: 1.7;
}


/* Main Grid */

.rk-contact-location-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 30px;

    align-items: stretch;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.rk-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.rk-contact-info-card {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 23px 25px;

    background: #ffffff;
    border: 1px solid rgba(30, 58, 138, 0.08);

    border-radius: 18px;

    box-shadow: 0 8px 30px rgba(8, 20, 46, 0.06);

    transition: all 0.3s ease;
}


.rk-contact-info-card:hover {
    transform: translateY(-4px);

    border-color: rgba(249, 115, 22, 0.35);

    box-shadow: 0 15px 35px rgba(8, 20, 46, 0.10);
}


/* Icon */

.rk-contact-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(30, 58, 138, 0.08);

    color: #1E3A8A;

    font-size: 20px;
}


.rk-contact-info-card:hover .rk-contact-icon {
    background: #1E3A8A;
    color: #ffffff;
}


/* Text */

.rk-contact-info-card h4 {
    margin: 0 0 5px;

    color: #08142E;

    font-size: 17px;
    font-weight: 700;
}


.rk-contact-info-card p {
    margin: 0;

    color: #64748B;

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   MAP CARD
========================================================= */

.rk-contact-map {
    background: #ffffff;

    border-radius: 22px;

    padding: 12px;

    border: 1px solid rgba(30, 58, 138, 0.08);

    box-shadow: 0 12px 40px rgba(8, 20, 46, 0.08);

    overflow: hidden;
}


/* Map Header */

.rk-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 20px;
}


.rk-map-header span {
    display: block;

    margin-bottom: 4px;

    color: #F97316;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.rk-map-header h3 {
    margin: 0;

    color: #08142E;

    font-size: 22px;
    font-weight: 700;
}


.rk-map-pin {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(249, 115, 22, 0.10);

    color: #F97316;

    font-size: 18px;
}


/* Map */

.rk-map-frame {
    width: 100%;
    height: 430px;

    overflow: hidden;

    border-radius: 16px;
}


.rk-map-frame iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .rk-contact-location {
        padding: 70px 0;
    }

    .rk-contact-location-grid {
        grid-template-columns: 1fr;
    }

    .rk-contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .rk-map-frame {
        height: 400px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .rk-contact-location {
        padding: 55px 0;
    }

    .rk-contact-heading {
        margin-bottom: 35px;
    }

    .rk-contact-heading h2 {
        font-size: 30px;
    }

    .rk-contact-heading p {
        font-size: 14px;
    }

    .rk-contact-info {
        grid-template-columns: 1fr;
    }

    .rk-contact-info-card {
        padding: 18px;
    }

    .rk-contact-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 17px;
    }

    .rk-contact-map {
        padding: 8px;
        border-radius: 18px;
    }

    .rk-map-header {
        padding: 15px;
    }

    .rk-map-header h3 {
        font-size: 19px;
    }

    .rk-map-frame {
        height: 320px;
        border-radius: 13px;
    }

}












/* =========================================
   PRODUCT DETAILS - MOBILE FIX
========================================= */

@media (max-width: 768px) {

    /* Main product section: image + details */
    .bg-white .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-bottom: 40px !important;
    }

    /* Product image box */
    .bg-white .container > div[style*="grid-template-columns: 1fr 1fr"] > div:first-child {
        width: 100% !important;
        padding: 20px !important;
    }

    /* Product image */
    .bg-white .container > div[style*="grid-template-columns: 1fr 1fr"] img {
        max-width: 100% !important;
        max-height: 350px !important;
        height: auto !important;
    }

    /* Product title */
    .bg-white h2 {
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
    }

    /* Product description */
    .bg-white p {
        font-size: 1rem !important;
    }

    /* Buttons */
    .bg-white .btn {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* Item breakdown section */
    .bg-white .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Item breakdown outer box */
    .bg-white .container > div[style*="grid-template-columns: 1fr 1fr"] {
        padding: 25px !important;
    }

    /* Official document image */
    .bg-white .container img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Mobile hero */
    .bg-navy {
        padding: 100px 20px 45px !important;
    }

    .bg-navy h1 {
        font-size: 2rem !important;
        line-height: 1.25 !important;
    }

    .bg-navy p {
        font-size: 0.95rem !important;
    }
}


/* Smaller phones */
@media (max-width: 480px) {

    .bg-navy {
        padding: 95px 15px 40px !important;
    }

    .bg-navy h1 {
        font-size: 1.7rem !important;
    }

    .bg-white .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .bg-white .container > div[style*="grid-template-columns: 1fr 1fr"] {
        padding: 20px !important;
    }

    .bg-white h2 {
        font-size: 1.6rem !important;
    }

    .bg-white h3 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
    }
}







/* =========================================
   MOBILE ONLY - REMOVE HORIZONTAL SCROLL
========================================= */

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    * {
        max-width: 100%;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}







/* =========================================================
   PRODUCT PAGE - MOBILE RESPONSIVE FIX
   ========================================================= */

@media (max-width: 768px) {

    /* Product image + details section */
    .section .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-bottom: 40px !important;
    }

    /* Product image */
    .section .container > div[style*="grid-template-columns: 1fr 1fr"] img {
        max-width: 100% !important;
        height: auto !important;
        max-height: 350px !important;
    }

    /* Product title */
    .section .container > div[style*="grid-template-columns: 1fr 1fr"] h2 {
        font-size: 1.7rem !important;
        line-height: 1.3 !important;
    }

    /* Product description */
    .section .container > div[style*="grid-template-columns: 1fr 1fr"] p {
        font-size: 0.95rem !important;
    }

    /* Product buttons */
    .section .container > div[style*="grid-template-columns: 1fr 1fr"] > div:last-child > div {
        flex-direction: column !important;
        width: 100% !important;
    }

    .section .container > div[style*="grid-template-columns: 1fr 1fr"] > div:last-child > div a {
        width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* =====================================================
       CONTENTS & ITEMS BREAKDOWN
       ===================================================== */

    .section .container > div[style*="grid-template-columns: 1fr 1fr"]:last-child {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 20px !important;
    }

    /* Item summary */
    .section .container > div[style*="grid-template-columns: 1fr 1fr"]:last-child p {
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
        padding: 18px !important;
        word-break: normal !important;
    }

    /* Official document image */
    .section .container > div[style*="grid-template-columns: 1fr 1fr"]:last-child img {
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
    }

    /* Main breakdown heading */
    .section .container > div[style*="grid-template-columns: 1fr 1fr"]:last-child h3 {
        font-size: 1.45rem !important;
        line-height: 1.35 !important;
    }

    /* Product page section spacing */
    .section {
        overflow-x: hidden;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    /* Product page banner */
    .bg-navy {
        padding: 100px 15px 45px !important;
    }

    .bg-navy h1 {
        font-size: 2rem !important;
        line-height: 1.25 !important;
    }

    .bg-navy p {
        font-size: 0.9rem !important;
    }

    /* Product image box */
    .section .container > div[style*="grid-template-columns: 1fr 1fr"] > div:first-child {
        padding: 18px !important;
    }

    /* Buttons */
    .btn {
        max-width: 100%;
    }

}








/* Product Grid - Mobile: 1 Product Per Row */
@media (max-width: 768px) {
    .product-grid-4col {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}








/* =========================================================
   CTA BANNER - DESKTOP CENTER ALIGNMENT
   ========================================================= */

@media (min-width: 769px) {

    .cta-banner {
        text-align: center !important;
    }

    .cta-banner .container {
        width: 100%;
        max-width: 1200px;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }

    .cta-banner h2 {
        width: 100%;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .cta-banner p {
        width: 100%;
        max-width: 700px;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }

    .cta-banner .cta-btn-group {
        width: 100%;
        display: flex;
        justify-content: center !important;
        align-items: center;
        gap: 15px;
    }

}








/* =========================================================
   CTA BANNER - CENTER ALIGNMENT
   DESKTOP + MOBILE
   ========================================================= */

.cta-banner {
    text-align: center !important;
}

.cta-banner .container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

.cta-banner h2 {
    width: 100%;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.cta-banner p {
    width: 100%;
    max-width: 700px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

.cta-banner .cta-btn-group {
    width: 100%;
    display: flex;
    justify-content: center !important;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-banner .cta-btn-group .btn {
    text-align: center;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .cta-banner .container {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    .cta-banner h2 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .cta-banner p {
        font-size: 0.95rem !important;
        line-height: 1.6;
    }

    .cta-banner .cta-btn-group {
        flex-direction: column;
        gap: 12px;
    }

    .cta-banner .cta-btn-group .btn {
        width: auto;
        min-width: 160px;
    }
}








/* Mobile only - Center About Rudra Fireworks tag */
@media (max-width: 768px) {
    .about-content .section-tag {
        display: block;
        width: fit-content;
        margin: 0 auto 12px;
        text-align: center;
    }
}











/* =========================================================
   PREMIUM CLEAN HERO SLIDER
   ========================================================= */

.premium-hero {
    position: relative;
    width: 100%;
    height: 720px;
    min-height: 650px;
    overflow: hidden;
    background: #08142E;
    color: #FFFFFF;
}


/* SLIDER */

.premium-hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}


/* EACH SLIDE */

.premium-hero-slide {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transform: translateX(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        visibility 0.7s ease;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(30, 58, 138, 0.35),
            transparent 35%
        ),
        #08142E;
}


/* SLIDE ACTIVE */

.premium-hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/* SUBTLE GOLD BORDER */

.premium-hero-slide::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(255, 213, 74, 0.12);
    border-radius: 50%;

    right: 8%;
    top: 50%;

    transform: translateY(-50%);
}


/* CONTENT */

.premium-hero-content {
    position: relative;
    z-index: 3;

    width: 100%;
    /* max-width: 900px; */

    margin: 0 auto;

    padding: 40px 80px;

    text-align: center;
}


/* TAG */

.premium-hero-tag {
    display: inline-block;

    padding: 8px 18px;

    border: 1px solid rgba(255, 213, 74, 0.45);
    border-radius: 50px;

    color: #FFD54A;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 18px;
}


/* GOLD LINE */

.premium-hero-line {
    width: 55px;
    height: 3px;

    margin: 0 auto 25px;

    background: #F97316;

    border-radius: 10px;
}


/* HEADING */

.premium-hero-content h1 {
    margin: 0;

    color: #FFFFFF;

    font-size: clamp(42px, 5vw, 72px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.5px;
}


/* GOLD PART */

.premium-hero-content h1 span {
    color: #FFD54A;
}


/* SUBTITLE */

.premium-hero-content p {
    max-width: 680px;

    margin: 25px auto 35px;

    color: #CBD5E1;

    font-size: 17px;

    line-height: 1.8;
}


/* BUTTONS */

.premium-hero-buttons {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}


/* COMMON BUTTON */

.premium-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 165px;

    padding: 14px 28px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}


/* PRIMARY */

.premium-btn-primary {
    background: #F97316;
    color: #FFFFFF;

    box-shadow:
        0 8px 25px rgba(249, 115, 22, 0.25);
}


.premium-btn-primary:hover {
    background: #FFD54A;
    color: #08142E;

    transform: translateY(-3px);
}


/* OUTLINE */

.premium-btn-outline {
    background: transparent;

    color: #FFFFFF;

    border: 1px solid rgba(255, 255, 255, 0.45);
}


.premium-btn-outline:hover {
    background: #FFFFFF;
    color: #08142E;

    transform: translateY(-3px);
}


/* BIG SLIDE NUMBER */

.premium-slide-number {
    position: absolute;

    right: 45px;
    bottom: 100px;

    color: rgba(255, 255, 255, 0.08);

    font-size: 130px;

    font-weight: 800;

    line-height: 1;

    user-select: none;
}


/* ARROWS */

.premium-hero-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255, 213, 74, 0.35);

    background: rgba(255, 255, 255, 0.05);

    color: #FFFFFF;

    font-size: 22px;

    cursor: pointer;

    transition: all 0.3s ease;
}


.premium-hero-prev {
    left: 30px;
}


.premium-hero-next {
    right: 30px;
}


.premium-hero-arrow:hover {
    background: #F97316;

    border-color: #F97316;

    transform: translateY(-50%) scale(1.08);
}


/* BOTTOM */

.premium-hero-bottom {
    position: absolute;

    left: 50%;
    bottom: 30px;

    transform: translateX(-50%);

    z-index: 10;

    width: min(500px, 70%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;
}


/* DOTS */

.premium-hero-dots {
    display: flex;

    align-items: center;

    gap: 9px;
}


.premium-hero-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.3);

    cursor: pointer;

    transition: all 0.3s ease;
}


.premium-hero-dot.active {
    width: 30px;

    border-radius: 20px;

    background: #FFD54A;
}


/* PROGRESS */

.premium-hero-progress {
    width: 100%;

    height: 2px;

    background: rgba(255, 255, 255, 0.12);

    overflow: hidden;
}


.premium-hero-progress div {
    width: 0%;
    height: 100%;

    background: #FFD54A;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .premium-hero {
        height: 650px;
        min-height: 600px;
    }

    .premium-hero-content {
        padding: 40px 70px;
    }

    .premium-hero-content h1 {
        font-size: 48px;
    }

    .premium-slide-number {
        font-size: 100px;
        right: 25px;
        bottom: 100px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .premium-hero {
        height: 620px;
        min-height: 620px;
    }


    .premium-hero-slide {
        background:
            radial-gradient(
                circle at 50% 20%,
                rgba(30, 58, 138, 0.35),
                transparent 45%
            ),
            #08142E;
    }


    .premium-hero-content {

        padding: 30px 45px 80px;

        max-width: 100%;

    }


    .premium-hero-tag {

        font-size: 10px;

        letter-spacing: 1.5px;

        padding: 7px 14px;

        margin-bottom: 15px;

    }


    .premium-hero-line {

        margin-bottom: 20px;

    }


    .premium-hero-content h1 {

        font-size: 34px;

        line-height: 1.15;

        letter-spacing: -0.5px;

    }


    .premium-hero-content p {

        font-size: 14px;

        line-height: 1.7;

        margin: 20px auto 28px;

    }


    .premium-hero-buttons {

        flex-direction: column;

        gap: 10px;

    }


    .premium-btn {

        width: 180px;

        padding: 12px 20px;

        font-size: 13px;

    }


    .premium-hero-arrow {

        width: 38px;

        height: 38px;

        font-size: 17px;

    }


    .premium-hero-prev {

        left: 10px;

    }


    .premium-hero-next {

        right: 10px;

    }


    .premium-slide-number {

        display: none;

    }


    .premium-hero-bottom {

        bottom: 18px;

        width: 65%;

    }

}


/* SMALL MOBILE */

@media (max-width: 400px) {

    .premium-hero {

        height: 590px;

        min-height: 590px;

    }


    .premium-hero-content {

        padding-left: 38px;

        padding-right: 38px;

    }


    .premium-hero-content h1 {

        font-size: 29px;

    }


    .premium-hero-content p {

        font-size: 13px;

    }

}







/* =========================================
   PREMIUM TESTIMONIAL SLIDER
========================================= */

.rk-testimonials {
    width: 100%;
    padding: 100px 20px;
    background: #f8f8f8;
    overflow: hidden;
}

.rk-testimonials-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.rk-testimonials-heading {
    text-align: center;
    margin-bottom: 55px;
}

.rk-testimonials-label {
    display: inline-block;
    margin-bottom: 12px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;

    color: #571c1e;
}

.rk-testimonials-heading h2 {
    margin: 0;

    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;

    color: #172554;
}

.rk-testimonials-heading p {
    max-width: 600px;
    margin: 15px auto 0;

    font-size: 16px;
    line-height: 1.7;

    color: #666;
}


/* =========================================
   SLIDER
========================================= */

.rk-testimonial-slider {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
}


/* =========================================
   TRACK
========================================= */

.rk-testimonial-track {
    position: relative;

    width: 100%;
    max-width: 850px;
    min-height: 430px;

    overflow: hidden;
}


/* =========================================
   SLIDE
========================================= */

.rk-testimonial-slide {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    padding: 10px 20px;

    opacity: 0;
    visibility: hidden;

    transform: translateX(50px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease,
        visibility 0.6s ease;
}

.rk-testimonial-slide.active {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}


/* =========================================
   CARD
========================================= */

.rk-testimonial-card {
    position: relative;

    width: 100%;
    height: 100%;

    padding: 55px 70px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: rgba(255, 255, 255, 0.95);

    border: 1px solid rgba(87, 28, 30, 0.08);

    border-radius: 24px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.08);

    overflow: hidden;
}


/* Top premium line */

.rk-testimonial-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #571c1e;
}


/* =========================================
   QUOTE
========================================= */

.rk-testimonial-quote {
    position: absolute;

    top: 20px;
    right: 35px;

    font-family: Georgia, serif;

    font-size: 100px;
    line-height: 1;

    color: rgba(87, 28, 30, 0.08);

    user-select: none;
}


/* =========================================
   STARS
========================================= */

.rk-testimonial-stars {
    margin-bottom: 20px;

    font-size: 18px;
    letter-spacing: 5px;

    color: #d19a28;
}


/* =========================================
   TEXT
========================================= */

.rk-testimonial-text {
    max-width: 720px;

    margin: 0 0 35px;

    font-size: 19px;
    line-height: 1.8;
    font-weight: 400;

    color: #444;
}


/* =========================================
   CLIENT
========================================= */

.rk-testimonial-client {
    display: flex;
    align-items: center;

    gap: 15px;
}


.rk-testimonial-avatar {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #571c1e;

    color: #fff;

    font-size: 14px;
    font-weight: 700;
}


.rk-testimonial-client h4 {
    margin: 0 0 4px;

    font-size: 16px;
    font-weight: 700;

    color: #172554;
}


.rk-testimonial-client span {
    font-size: 13px;

    color: #888;
}


/* =========================================
   ARROWS
========================================= */

.rk-testimonial-arrow {
    position: relative;
    z-index: 5;

    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(87, 28, 30, 0.15);
    border-radius: 50%;

    background: #fff;

    color: #571c1e;

    font-size: 22px;

    cursor: pointer;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.rk-testimonial-prev {
    margin-right: 15px;
}


.rk-testimonial-next {
    margin-left: 15px;
}


.rk-testimonial-arrow:hover {
    background: #571c1e;

    color: #fff;

    transform: scale(1.08);
}


.rk-testimonial-arrow:active {
    transform: scale(0.95);
}


/* =========================================
   DOTS
========================================= */

.rk-testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 9px;

    margin-top: 30px;
}


.rk-testimonial-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: #ccc;

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}


.rk-testimonial-dot.active {
    width: 28px;

    border-radius: 10px;

    background: #571c1e;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .rk-testimonials {
        padding: 80px 20px;
    }

    .rk-testimonials-heading h2 {
        font-size: 36px;
    }

    .rk-testimonial-track {
        min-height: 450px;
    }

    .rk-testimonial-card {
        padding: 45px 50px;
    }

    .rk-testimonial-text {
        font-size: 17px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .rk-testimonials {
        padding: 65px 15px;
    }


    .rk-testimonials-heading {
        margin-bottom: 35px;
    }


    .rk-testimonials-label {
        font-size: 10px;
        letter-spacing: 2px;
    }


    .rk-testimonials-heading h2 {
        font-size: 28px;
    }


    .rk-testimonials-heading p {
        font-size: 14px;
    }


    .rk-testimonial-slider {
        display: block;
    }


    .rk-testimonial-track {
        min-height: 470px;
    }


    .rk-testimonial-slide {
        padding: 5px;
    }


    .rk-testimonial-card {
        padding: 45px 25px 30px;

        border-radius: 18px;
    }


    .rk-testimonial-quote {
        top: 10px;
        right: 20px;

        font-size: 70px;
    }


    .rk-testimonial-stars {
        margin-bottom: 15px;

        font-size: 15px;
        letter-spacing: 3px;
    }


    .rk-testimonial-text {
        margin-bottom: 25px;

        font-size: 15px;
        line-height: 1.7;
    }


    .rk-testimonial-arrow {
        position: absolute;

        top: 50%;

        width: 42px;
        height: 42px;

        font-size: 18px;

        transform: translateY(-50%);
    }


    .rk-testimonial-arrow:hover {
        transform: translateY(-50%) scale(1.05);
    }


    .rk-testimonial-prev {
        left: 10px;

        margin: 0;
    }


    .rk-testimonial-next {
        right: 10px;

        margin: 0;
    }


    .rk-testimonial-client {
        gap: 12px;
    }


    .rk-testimonial-avatar {
        width: 45px;
        height: 45px;

        font-size: 12px;
    }


    .rk-testimonial-client h4 {
        font-size: 14px;
    }


    .rk-testimonial-client span {
        font-size: 12px;
    }

}










/* =========================================================
   PREMIUM FIREWORKS TESTIMONIALS
   COMPACT 3 CARD SLIDER
========================================================= */

.rk-fireworks-testimonials {
    width: 100%;
    padding: 75px 20px;

    background: #f8f8f8;

    overflow: hidden;
}


/* =========================================================
   HEADING
========================================================= */

.rk-fw-heading {
    text-align: center;

    margin-bottom: 35px;
}

.rk-fw-heading span {
    display: block;

    margin-bottom: 8px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.5px;

    color: #f97316;
}

.rk-fw-heading h2 {
    margin: 0;

    font-size: 38px;
    line-height: 1.2;

    font-weight: 700;

    color: #000000;
}

.rk-fw-heading p {
    margin: 10px auto 0;

    max-width: 800px;

    font-size: 17px;
    line-height: 1.6;

    color: #777;
}


/* =========================================================
   CAROUSEL
========================================================= */

.rk-fw-carousel {
    position: relative;

    width: 100%;
    max-width: 1250px;

    height: 365px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   STAGE
========================================================= */

.rk-fw-stage {
    position: relative;

    width: 100%;
    max-width: 1050px;

    height: 100%;
}


/* =========================================================
   CARD
========================================================= */

.rk-fw-card {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 390px;
    min-height: 270px;

    padding: 32px 38px;

    border-radius: 0 0 20px 20px;

    background: #fff;

    border: 1px solid rgba(87, 28, 30, 0.08);

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.09);

    transform:
        translate(-50%, -50%)
        scale(0.72);

    opacity: 0;

    z-index: 1;

    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.65s ease,
        filter 0.65s ease;
}


/* =========================================================
   CARD TOP LINE
========================================================= */

.rk-fw-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #1e3a8a;

    border-radius: 20px 20px 0 0;
}


/* =========================================================
   LEFT
========================================================= */

.rk-fw-card.rk-fw-left {
    transform:
        translate(calc(-50% - 370px), -50%)
        scale(0.72);

    opacity: 0.48;

    z-index: 2;
}


/* =========================================================
   CENTER
========================================================= */

.rk-fw-card.rk-fw-center {
    transform:
        translate(-50%, -50%)
        scale(1);

    opacity: 1;

    z-index: 5;

    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.14);
}


/* =========================================================
   RIGHT
========================================================= */

.rk-fw-card.rk-fw-right {
    transform:
        translate(calc(-50% + 370px), -50%)
        scale(0.72);

    opacity: 0.48;

    z-index: 2;
}


/* =========================================================
   HIDDEN
========================================================= */

.rk-fw-card.rk-fw-hidden-left {
    transform:
        translate(calc(-50% - 650px), -50%)
        scale(0.5);

    opacity: 0;

    z-index: 0;
}


.rk-fw-card.rk-fw-hidden-right {
    transform:
        translate(calc(-50% + 650px), -50%)
        scale(0.5);

    opacity: 0;

    z-index: 0;
}


/* =========================================================
   QUOTE
========================================================= */

.rk-fw-quote {
    position: absolute;

    top: 8px;
    right: 22px;

    font-family: Georgia, serif;

    font-size: 75px;
    line-height: 1;

    color: rgba(87, 28, 30, 0.07);

    pointer-events: none;
}


/* =========================================================
   STARS
========================================================= */

.rk-fw-stars {
    margin-bottom: 12px;

    font-size: 18px;

    letter-spacing: 3px;

    color: #d19a28;
}


/* =========================================================
   TEXT
========================================================= */

.rk-fw-card p {
    margin: 0 0 22px;

    font-size: 16px;

    line-height: 1.7;

    color: #555;
}


/* =========================================================
   CLIENT
========================================================= */

.rk-fw-client {
    display: flex;

    align-items: center;

    gap: 12px;
}


.rk-fw-avatar {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1e3a8a;

    color: #fff;

    font-size: 14px;
    font-weight: 700;
}


.rk-fw-client h4 {
    margin: 0 0 2px;

    font-size: 18px;

    color: #172554;
}


.rk-fw-client span {
    font-size: 14px;

    color: #888;
}


/* =========================================================
   ARROWS
========================================================= */

.rk-fw-arrow {
    position: relative;

    z-index: 10;

    width: 46px;
    height: 46px;

    flex-shrink: 0;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(87, 28, 30, 0.15);

    border-radius: 50%;

    background: #fff;

    color: #1e3a89;

    font-size: 17px;

    cursor: pointer;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.rk-fw-prev {
    margin-right: 18px;
}


.rk-fw-next {
    margin-left: 18px;
}


.rk-fw-arrow:hover {
    background: #1e3a89;

    color: #fff;

    transform: scale(1.08);
}


/* =========================================================
   DOTS
========================================================= */

.rk-fw-dots {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 18px;
}


.rk-fw-dots button {
    width: 7px;
    height: 7px;

    padding: 0;

    border: none;

    border-radius: 20px;

    background: #ccc;

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}


.rk-fw-dots button.active {
    width: 24px;

    background: #1e3a8a;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .rk-fw-card {
        width: 350px;
    }

    .rk-fw-card.rk-fw-left {
        transform:
            translate(calc(-50% - 285px), -50%)
            scale(0.70);
    }

    .rk-fw-card.rk-fw-right {
        transform:
            translate(calc(-50% + 285px), -50%)
            scale(0.70);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .rk-fireworks-testimonials {
        padding: 60px 15px;
    }


    .rk-fw-heading {
        margin-bottom: 25px;
    }


    .rk-fw-heading h2 {
        font-size: 27px;
    }


    .rk-fw-heading p {
        font-size: 13px;
    }


    .rk-fw-carousel {
        height: 330px;

        display: block;
    }


    .rk-fw-stage {
        height: 100%;
    }


    .rk-fw-card {
        width: calc(100% - 45px);

        min-height: 255px;

        padding: 28px 24px;
    }


    /* Center */

    .rk-fw-card.rk-fw-center {
        transform:
            translate(-50%, -50%)
            scale(1);
    }


    /* Hide side cards on small screens */

    .rk-fw-card.rk-fw-left {
        transform:
            translate(calc(-50% - 230px), -50%)
            scale(0.7);

        opacity: 0;
    }


    .rk-fw-card.rk-fw-right {
        transform:
            translate(calc(-50% + 230px), -50%)
            scale(0.7);

        opacity: 0;
    }


    .rk-fw-card p {
        font-size: 13px;

        line-height: 1.65;
    }


    .rk-fw-quote {
        font-size: 65px;
    }


    /* Mobile arrows */

    .rk-fw-arrow {
        position: absolute;

        top: 50%;

        width: 38px;
        height: 38px;

        font-size: 14px;

        transform: translateY(-50%);
    }


    .rk-fw-arrow:hover {
        transform: translateY(-50%) scale(1.05);
    }


    .rk-fw-prev {
        left: 3px;

        margin: 0;
    }


    .rk-fw-next {
        right: 3px;

        margin: 0;
    }

}











/* =========================================
   PRODUCT CARD BUTTON - FINAL FIX
   ========================================= */

.product-action-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

/* Normal button */
.product-action-btns .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 130px !important;
    min-width: 130px !important;
    max-width: 130px !important;

    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;

    padding: 0 12px !important;
    margin: 0 !important;

    box-sizing: border-box !important;

    line-height: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;
    text-indent: 0 !important;

    transform: none !important;
}

/* Hover */
.product-action-btns .btn:hover {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 130px !important;
    height: 52px !important;

    padding: 0 12px !important;
    margin: 0 !important;

    text-align: center !important;
    white-space: nowrap !important;

    transform: none !important;
}

/* Focus after clicking */
.product-action-btns .btn:focus,
.product-action-btns .btn:focus-visible {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 130px !important;
    height: 52px !important;

    padding: 0 12px !important;
    margin: 0 !important;

    text-align: center !important;
    white-space: nowrap !important;

    transform: none !important;
}

/* Click + Hover at the same time */
.product-action-btns .btn:focus:hover,
.product-action-btns .btn:active:hover {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 130px !important;
    height: 52px !important;

    padding: 0 12px !important;
    margin: 0 !important;

    box-sizing: border-box !important;

    text-align: center !important;
    white-space: nowrap !important;
    text-indent: 0 !important;
    line-height: 1 !important;

    transform: none !important;
}

/* Active / clicking */
.product-action-btns .btn:active {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 130px !important;
    height: 52px !important;

    padding: 0 12px !important;
    margin: 0 !important;

    text-align: center !important;
    white-space: nowrap !important;

    transform: none !important;
}








/* Premium Feature Icons */
.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #FFF8E1,
        #FFFFFF
    );

    border: 1px solid #FACC15;

    color: #D97706;

    font-size: 32px;

    box-shadow:
        0 8px 25px rgba(217, 119, 6, 0.10);

    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: translateY(-6px) scale(1.05);

    background: linear-gradient(
        135deg,
        #FEF3C7,
        #FFFFFF
    );

    color: #1E3A8A;

    box-shadow:
        0 12px 30px rgba(30, 58, 138, 0.15);
}












/* =========================================================
   HOMEPAGE FEATURED PRODUCTS - 3 CARD GRID
   ========================================================= */

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}


/* Product Card */

.featured-products-grid .product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}


/* Product Image */

.featured-products-grid .product-img-box {
    width: 100%;
    height: 260px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}


.featured-products-grid .product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}


.featured-products-grid .product-card:hover .product-img-box img {
    transform: scale(1.05);
}


/* Product Information */

.featured-products-grid .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}


.featured-products-grid .product-desc {
    flex: 1;
}


/* Items Count */

.featured-products-grid .product-items-count {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
}


.featured-products-grid .product-items-count i {
    margin-right: 6px;
}


/* Buttons */

.featured-products-grid .product-action-btns {
    margin-top: 20px;
}


/* View All Button */

.featured-products .margin-top-40 {
    margin-top: 40px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 992px) {

    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .featured-products-grid .product-img-box {
        height: 240px;
    }

}












@media (max-width: 480px) {

    .about-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-grid {
        gap: 25px;
    }

    .about-content .section-title {
        font-size: 27px;
        line-height: 1.2;
    }

    .about-subheading {
        font-size: 18px;
        line-height: 1.4;
    }

    .about-content > p {
        font-size: 15px;
        line-height: 1.7;
    }

    .mission-vision-box {
        gap: 14px;
    }

    .mv-card {
        padding: 18px;
    }

}










/* =========================================================
   RUDRA ABOUT SECTION - MOBILE FIX
   ========================================================= */

@media only screen and (max-width: 768px) {

    #about.about-section {
        width: 100% !important;
        padding: 55px 0 !important;
        overflow: hidden !important;
    }

    #about.about-section > .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
    }

    /* MAIN GRID */
    #about .about-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;

        width: 100% !important;
        max-width: 100% !important;

        gap: 30px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* =====================================================
       IMAGE
       ===================================================== */

    #about .about-image-wrapper {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        box-sizing: border-box !important;
    }

    #about .about-img-box {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;

        margin: 0 auto !important;
        padding: 0 !important;

        box-sizing: border-box !important;

        overflow: hidden !important;
    }

    #about .about-brand-img {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        object-fit: contain !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       CONTENT
       ===================================================== */

    #about .about-content {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        text-align: left !important;

        box-sizing: border-box !important;
    }


    /* TAG */

    #about .about-content .section-tag {
        display: inline-block !important;

        max-width: 100% !important;

        margin: 0 0 12px 0 !important;
    }


    /* TITLE */

    #about .about-content .section-title {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 0 14px 0 !important;
        padding: 0 !important;

        font-size: 28px !important;
        line-height: 1.2 !important;

        text-align: left !important;

        word-break: normal !important;
        overflow-wrap: break-word !important;
    }


    /* SUBHEADING */

    #about .about-subheading {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 0 15px 0 !important;
        padding: 0 !important;

        font-size: 18px !important;
        line-height: 1.45 !important;

        text-align: left !important;

        overflow-wrap: break-word !important;
    }


    /* DESCRIPTION */

    #about .about-content > p {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        font-size: 15px !important;
        line-height: 1.75 !important;

        text-align: left !important;

        overflow-wrap: break-word !important;
    }


    /* =====================================================
       MISSION / VISION
       ===================================================== */

    #about .mission-vision-box {
        display: flex !important;

        flex-direction: column !important;
        align-items: stretch !important;

        width: 100% !important;
        max-width: 100% !important;

        gap: 15px !important;

        margin: 24px 0 0 0 !important;
        padding: 0 !important;

        box-sizing: border-box !important;
    }


    #about .mv-card {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        min-width: 0 !important;

        margin: 0 !important;

        padding: 18px !important;

        box-sizing: border-box !important;
    }


    #about .mv-card h4 {
        margin: 0 0 8px 0 !important;

        font-size: 18px !important;
        line-height: 1.3 !important;
    }


    #about .mv-card p {
        width: 100% !important;

        margin: 0 !important;

        font-size: 14px !important;
        line-height: 1.65 !important;

        overflow-wrap: break-word !important;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media only screen and (max-width: 480px) {

    #about.about-section {
        padding: 45px 0 !important;
    }

    #about.about-section > .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    #about .about-grid {
        gap: 25px !important;
    }

    #about .about-content .section-title {
        font-size: 26px !important;
    }

    #about .about-subheading {
        font-size: 17px !important;
    }

    #about .about-content > p {
        font-size: 15px !important;
    }

    #about .mv-card {
        padding: 16px !important;
    }
} 
















/* =========================================================
   MOBILE PRODUCT INQUIRY BUTTON - FINAL FIX
   ========================================================= */

@media (max-width: 768px) {

    /* Product CTA container */
    .product-detail-cta {
        width: 100% !important;
        margin-top: 25px !important;
        padding: 0 !important;
    }

    /* Inquiry button */
    .btn-inquire-product,
    .btn.btn-primary.btn-lg.full-width.btn-inquire-product {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        height: auto !important;
        min-height: 52px !important;

        margin: 0 !important;
        padding: 14px 18px !important;

        box-sizing: border-box !important;

        border-radius: 12px !important;

        font-size: 0.95rem !important;
        font-weight: 700 !important;
        line-height: 1.35 !important;

        text-align: center !important;
        white-space: normal !important;
        overflow-wrap: normal !important;
        word-break: normal !important;

        position: relative !important;
        overflow: hidden !important;
    }

    /* Remove decorative pseudo-elements
       that are causing the strange shape */
    .btn-inquire-product::before,
    .btn-inquire-product::after,
    .btn.btn-primary.btn-lg.full-width.btn-inquire-product::before,
    .btn.btn-primary.btn-lg.full-width.btn-inquire-product::after {
        display: none !important;
        content: none !important;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .product-detail-cta {
        margin-top: 22px !important;
        padding: 0 2px !important;
    }

    .btn-inquire-product,
    .btn.btn-primary.btn-lg.full-width.btn-inquire-product {
        width: 100% !important;
        min-height: 50px !important;

        padding: 13px 14px !important;

        border-radius: 11px !important;

        font-size: 0.9rem !important;
        line-height: 1.3 !important;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .product-detail-cta {
        padding: 0 !important;
    }

    .btn-inquire-product,
    .btn.btn-primary.btn-lg.full-width.btn-inquire-product {
        min-height: 48px !important;

        padding: 12px 10px !important;

        font-size: 0.84rem !important;

        border-radius: 10px !important;
    }

}











/* =========================================================
   MOBILE PRODUCT TABLE FIX
   ========================================================= */

@media (max-width: 768px) {

    /* Product table wrapper */
    .table-responsive {
        width: 100%;
        overflow-x: hidden !important;
        margin: 0;
        padding: 0;
    }

    .table-responsive .items-table {
        width: 100% !important;
        min-width: 0 !important;
        table-layout: fixed !important;
        border-collapse: collapse;
    }

    /* All table cells */
    .items-table th,
    .items-table td {
        padding: 12px 8px !important;
        vertical-align: middle !important;
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    /* Product number column */
    .items-table th:first-child,
    .items-table td:first-child {
        width: 52px !important;
        min-width: 52px !important;
        max-width: 52px !important;
        text-align: center !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
        white-space: nowrap !important;
    }

    /* Product name column */
    .items-table th:nth-child(2),
    .items-table td:nth-child(2) {
        width: auto !important;
        text-align: left !important;
        padding-left: 10px !important;
        padding-right: 8px !important;
        line-height: 1.45 !important;
    }

    /* Quantity column */
    .items-table th:nth-child(3),
    .items-table td:nth-child(3) {
        width: 105px !important;
        min-width: 105px !important;
        max-width: 105px !important;
        text-align: center !important;
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    /* Quantity badge */
    .badge-qty {
        display: inline-block !important;
        width: auto !important;
        max-width: 100% !important;
        padding: 5px 9px !important;
        margin: 0 auto !important;
        border-radius: 20px !important;
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        line-height: 1.25 !important;
        text-align: center !important;
        font-size: 0.82rem !important;
    }

    /* Prevent individual words from breaking */
    .items-table td {
        word-break: normal !important;
    }

}


/* =========================================================
   SMALL MOBILE - 480px
   ========================================================= */

@media (max-width: 480px) {

    .items-table th,
    .items-table td {
        padding: 11px 6px !important;
        font-size: 0.9rem !important;
    }

    .items-table th:first-child,
    .items-table td:first-child {
        width: 48px !important;
        min-width: 48px !important;
        max-width: 48px !important;
    }

    .items-table th:nth-child(3),
    .items-table td:nth-child(3) {
        width: 100px !important;
        min-width: 100px !important;
        max-width: 100px !important;
    }

    .badge-qty {
        font-size: 0.78rem !important;
        padding: 5px 7px !important;
    }

}


/* =========================================================
   VERY SMALL MOBILE - 380px
   ========================================================= */

@media (max-width: 380px) {

    .items-table th,
    .items-table td {
        padding: 10px 5px !important;
        font-size: 0.84rem !important;
    }

    .items-table th:first-child,
    .items-table td:first-child {
        width: 42px !important;
        min-width: 42px !important;
        max-width: 42px !important;
    }

    .items-table th:nth-child(3),
    .items-table td:nth-child(3) {
        width: 90px !important;
        min-width: 90px !important;
        max-width: 90px !important;
    }

    .badge-qty {
        font-size: 0.72rem !important;
        padding: 4px 6px !important;
    }

}
