@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root{
    --primary:#330067;
    --primary-dark:#1a0035;
    --primary-light:#4b0096;
    --accent:#312E81;
    --accent-dark:#1a0035;
    --gold:#f09e22;
    --white:#fff;
    --text-dark:#111;
    --text-body:#333;
    --border:#cbd5e1;
    --bg-light:#f8f5ff;
}

html{
    width:100%;
    overflow-x:hidden;
}

body{
    width:100%;
    overflow-x:clip;
    font-family:'Roboto',sans-serif;
    font-weight:400;
    color:var(--text-body);
}

a, a:hover, a:focus {
    color: var(--primary);
    text-decoration: none;
    transition: all .3s;
}
a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
}
ol, ul { margin: 0; }

.single-input {
    position: relative
}

.single-input .icon {
    position: absolute;
    top: 16px;
    right: 20px;
    color: #999;
    -webkit-transition: color .3s ease;
    transition: color .3s ease
}

h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
}

h3,.h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
}

h4,.h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

h5,.h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

h6,.h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
}


/* ── Bootstrap 5 Responsive Navbar ───────────────────────── */
.bew-navbar {
    position: relative;
    width: 100%;
    background-color: var(--white) !important;
    padding: 10px 0;
    z-index: 9999;
}

body.scrolled .bew-navbar {
    background-color: #fff !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    box-shadow: 0 0 10px #00000026;
    animation: stickey-header 1s;
    z-index: 99999 !important;
}

@keyframes stickey-header {
    0% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Logo */
.bew-navbar .navbar-brand img {
    height: 65px;
    width: auto;
    display: block;
}

/* Nav links */
.bew-navbar .nav-link {
    color: #000000 !important;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 16px !important;
    transition: color .2s, background .2s;
    white-space: nowrap;
    letter-spacing: .3px;
}
.bew-navbar .nav-link:hover,
.bew-navbar .nav-link:focus,
.bew-navbar .nav-item.dropdown:hover > .nav-link,
.bew-navbar .nav-item.show > .nav-link {
    color: var(--white) !important;
    background-color: var(--accent);
}

/* Disable default bootstrap dropdown caret */
.bew-navbar .dropdown-toggle::after {
    display: none !important;
}

/* SVG Arrow Icons styling */
.bew-navbar .arrow-icon,
.bew-navbar .arrow-icon-sub {
    transition: transform .2s ease;
    flex-shrink: 0;
}
.bew-navbar .nav-item.dropdown:hover .arrow-icon,
.bew-navbar .nav-item.show .arrow-icon {
    transform: rotate(180deg);
}

/* Contact button style */
.bew-navbar .bew-contact-btn {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 4px;
    padding: 10px 20px !important;
    margin-left: 8px;
    font-weight: 600;
    letter-spacing: .5px;
}
.bew-navbar .bew-contact-btn:hover {
    background-color: var(--accent) !important;
    color: var(--white) !important;
}

/* Hamburger toggler (3 lines to cross animation) */
@media (min-width: 992px) {
    .bew-navbar .navbar-toggler {
        display: none !important;
    }
}
@media (max-width: 991.98px) {
    .bew-navbar .navbar-toggler {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border: none !important;
        padding: 4px;
        background: transparent;
        width: 34px;
        height: 26px;
        cursor: pointer;
        box-shadow: none !important;
        outline: none !important;
    }
}
.bew-navbar .toggler-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000000;
    border-radius: 2px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transform-origin: center;
}
/* When open (not collapsed) */
.bew-navbar .navbar-toggler:not(.collapsed) .line-1 {
    transform: translateY(7.5px) rotate(45deg);
    background-color: var(--accent);
}
.bew-navbar .navbar-toggler:not(.collapsed) .line-2 {
    opacity: 0;
    transform: scaleX(0);
}
.bew-navbar .navbar-toggler:not(.collapsed) .line-3 {
    transform: translateY(-7.5px) rotate(-45deg);
    background-color: var(--accent);
}

/* First-level dropdown */
.bew-navbar .dropdown-menu.bew-dropdown {
    background-color: var(--accent);
    border: none;
    border-radius: 0 0 6px 6px;
    padding: 6px 0;
    min-width: 290px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    margin: 0;
}
.bew-navbar .dropdown-item {
    color: var(--white) !important;
    font-size: 15px;
    padding: 10px 18px;
    transition: background .2s, color .2s;
    white-space: normal;
}
.bew-navbar .dropdown-item:hover,
.bew-navbar .dropdown-item:focus {
    background-color: #000000 !important;
    color: var(--white) !important;
}

/* Sub-menu (3rd level) */
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
    background-color: var(--accent);
}
@media (max-width: 991.98px) {
    .dropdown-submenu > .dropdown-menu {
        position: relative;
        left: 0;
        top: 0;
        margin-top: 0;
        border-left: 3px solid #000;
        border-radius: 0;
        padding-left: 10px;
        box-shadow: none;
    }
}

/* Arrow on submenu toggle items */
.dropdown-submenu:hover > .dropdown-toggle .arrow-icon-sub,
.dropdown-submenu .dropdown-menu.show ~ .dropdown-toggle .arrow-icon-sub {
    transform: rotate(90deg);
}

/* Mobile collapse styling */
@media (max-width: 991.98px) {
    .bew-navbar .navbar-collapse {
        background-color: var(--white);
        padding: 0 10px 15px;
        border-top: 1px solid #eee;
        /* Mobile mein sare menu scroll karke dikhne ke liye */
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    .bew-navbar .nav-link {
        padding: 12px 12px !important;
        border-bottom: 1px solid rgba(0,0,0,.06);
    }
    .bew-navbar .bew-contact-btn {
        margin: 10px 0 4px;
        display: inline-block;
        border-radius: 4px;
    }
    /* First level dropdown container in mobile */
    .bew-navbar .dropdown-menu.bew-dropdown {
        background-color: #f3edfc !important;
        border-top: none;        border-radius: 6px;
        box-shadow: none;
        margin: 6px 0 6px 0px;
        padding:0;
    }
    .bew-navbar .dropdown-item {
        color: var(--primary) !important;
        font-weight: 600;
        padding: 10px 14px;
        border-bottom: 1px solid rgba(51, 0, 103, 0.08);
    }
    .bew-navbar .dropdown-item:hover,
    .bew-navbar .dropdown-item:focus {
        background-color: var(--primary) !important;
        color: var(--white) !important;
    }
    /* Sub-menu (3rd level) container in mobile */
    .dropdown-submenu > .dropdown-menu {
        background-color: #ffffff !important;
        border-radius: 4px;
        margin: 4px 0 6px 12px;
        padding: 4px 0;
    }
    .dropdown-submenu > .dropdown-menu .dropdown-item {
        color: var(--text-body) !important;
        font-weight: 400;
        font-size: 14px;
        padding: 8px 14px;
    }
    .dropdown-submenu > .dropdown-menu .dropdown-item:hover {
        background-color: var(--accent) !important;
        color: var(--white) !important;
    }
}

/* ── Page Banner (inner pages) ────────────────────────────── */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 60%, var(--accent) 100%);
    padding: 40px 0 30px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
    pointer-events: none;
}
.page-banner::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -5%;
    width: 300px; height: 300px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
    pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 12px;
    letter-spacing: .5px;
    line-height: 1.3;
}
.page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0; padding: 0;
    font-size: 15px;
}
.page-breadcrumb li {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,.75);
}
.page-breadcrumb li + li::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='rgba(255%2C255%2C255%2C0.55)' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-right: 4px;
    flex-shrink: 0;
}
.page-breadcrumb a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    transition: color .2s;
}
.page-breadcrumb a:hover { color: var(--gold); }
.page-breadcrumb .active { color: var(--gold); font-weight: 500; }

/* ── Content Area & Inner Page Design ──────────────────────── */
.sec-padding {
    padding: 60px 0;
}
.content-right h1 { color: var(--primary); font-weight: 700; margin-bottom: 20px; position: relative; }
.content-right h2 { color: var(--accent);font-weight: 600; margin-bottom: 16px; margin-top: 10px; }
.content-right h3 { color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.content-right p  { color: var(--text-body); text-align: justify; font-size: 17px; line-height: 1.85; }
.content-right img { border-radius: 8px; max-width: 100%; height: auto; box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.content-right .form-group img { border: 0; box-shadow: none; }
.content-right a { color: var(--primary); font-weight: 500; }
.content-right a:hover { color: var(--accent); text-decoration: underline; }

/* Divider */
.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ── Product Images (hover button) ───────────────────────── */
.set-img {
    text-align: center;
    position: relative;
}
.hover-btn {
    background-color: var(--primary);
    border: 2px solid var(--primary);
    color: var(--white);
    padding: 8px 28px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 15px;
    margin: 10px auto;
    cursor: pointer;
    transition: all .3s ease;
    border-radius: 4px;
}
.hover-btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* ── Applications List ────────────────────────────────────── */
.package {
    line-height: 28px;
    padding: 5px 8px 0 25px;
    color: var(--text-body);
    font-size: 17px;
    font-weight: 400;
}
.package ul { padding: 0; margin: 0; }
.package ul li {
    background: url(../images/arrow-page.webp) no-repeat 0 9px;
    padding-left: 40px;
    list-style: none;
    padding-top: 2px;
    padding-bottom: 4px;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer-logo img {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    display: block;
    margin-bottom: 10px;
    max-width: 100%;
    height: auto;
}
.footer-bg {
    background: url("../images/pro-bg.webp") no-repeat center center;
    background-size: cover;
}
.footer-bg h3 {
    text-align: left;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    margin-top: 15px;
}
.footer-bg h3::after {
    background-color: var(--gold);
    border-radius: 2px;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 35px;
}
.footer-bg p { color: var(--white); line-height: 30px; font-size: 18px; }
.footer-bg a {color: #f09e22;}

.footer-01 {
    background-color: var(--primary-dark);
    padding: 40px 0;
}
.footer-01 p {
    color: var(--white);
}

.social-icons {
    padding: 0;
    margin: 0;
    list-style: none
}

.social-icons li {
    display: inline-block;
    margin-left: 10px
}


.social-icons li:first-child {
    margin-left: 0;
}


.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ffffff14;
    color: #fff;
    transition: all .3s ease
}

.social-icons a:hover {
    background-color: var(--gold);
    color: #fff;
    transform: translateY(-3px)
}

.social-icons svg {
    width: 16px;
    height: 16px
}

.footer-01 .title {
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 35px;
    display: inline-block;
    position: relative;
    color: var(--white);
}

.footer-01 .title:after {
    display: block;
    height: 2px;
    margin-top: 0;
    margin-bottom: -12px;
    content: '';
    position: absolute;
    bottom: 0;
    width: 17px;
    left: 0;
    background-color: var(--gold);
}

.footer-links{
    margin: 0;
    padding: 0;
}
.footer-links li {
    display: block;
    padding-bottom: 14px;
    position: relative
}

.footer-links li a {
    position: relative;
    display: inline-block;
    padding-left: 24px;
    color: var(--white);
    text-decoration: none;
    transition: transform .3s ease,color .3s ease
}

.footer-links li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(0);
    width: 14px;
    height: 14px;
    background-color: var(--gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M96 96c-9.4 9.4-9.4 24.6 0 34l118.1 118.1L96 366.1c-9.4 9.4-9.4 24.6 0 34s24.6 9.4 34 0l136-136c9.4-9.4 9.4-24.6 0-34l-136-136c-9.4-9.4-24.6-9.4-34 0z'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M96 96c-9.4 9.4-9.4 24.6 0 34l118.1 118.1L96 366.1c-9.4 9.4-9.4 24.6 0 34s24.6 9.4 34 0l136-136c9.4-9.4 9.4-24.6 0-34l-136-136c-9.4-9.4-24.6-9.4-34 0z'/%3E%3C/svg%3E") no-repeat center / contain;
    transition: transform .3s ease,background-color .3s ease
}

.footer-links li a:hover {
    transform: translateX(6px);
    color: var(--gold)
}

.footer-links li a:hover::before {
    transform: translateY(-50%) translateX(6px)
}

.copyright {
    padding: 2rem 0;
    background-color: var(--primary);
    color: var(--white);
}

.copyright a{   
    color: var(--white);
}



/* ── Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom: 15px; }
.form-group input { border-left: 5px solid var(--primary); }
.form-group textarea { border-left: 5px solid var(--primary); }
.form-group select { border-left: 5px solid var(--primary); }

.has-feedback .form-control {
    height: 52px;
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background-color: #ffffff;
    font-size: 15px;
    color: var(--primary);
    transition: all .2s ease;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.02);
}
.has-feedback .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(51,0,103,.15);
}

#exampleModal #captchaImg {
    height: 52px;
    background-color: #f8fafc;
    border: 1px solid var(--border) !important;
    border-radius: 4px;
    color: var(--primary);
    font-weight: 700;
    text-align: center;
    letter-spacing: 4px;
    font-size: 18px;
}
#exampleModal a[href="javascript:refreshCaptcha();"] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 52px;
    background: #f1f5f9;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all .2s;
}
.form-horizontal .form-group { margin-right: auto; margin-left: auto; }
.form-control-feedback { display: none; }
.has-feedback label ~ .form-control-feedback { top: 0 !important; }
.error { text-align: left !important; display: table !important; }

.Submit-box,
.reset{
    font-size:17px;
    padding:12px 34px;
    border-radius:5px;
    cursor:pointer;
    transition:.3s ease;
}

.Submit-box{
    background:var(--primary);
    border:1px solid var(--primary);
    color:var(--white);
    width:100%;
}

.Submit-box:hover{
    background:var(--accent);
    border-color:var(--accent);
}

.enquiry-m .Submit-box{
    display:inline-block;
    width:auto;
}

.reset{
    background:#6c757d;
    border:1px solid #6c757d;
    color:#fff;
}

.reset:hover{
    background:#5a6268;
    border-color:#5a6268;
}

.attr-sub {
    width: 100%;
    box-shadow: 0 4px 12px rgba(51,0,103,.2);
}
.form-group input.Submit-box:hover {
    background-color: var(--accent-dark);
    border: 1px solid var(--accent-dark);
}

.reset {
    font-size: 17px;
    background: #f8f9fa;
    border: 1px solid #ced4da;
    color: #212529;
    padding: 12px 34px;
    width: 130px;
    border-radius: 5px;
    cursor: pointer;
    transition: .3s ease;
}
.reset:hover { background: #e9ecef; border-color: #adb5bd; }

/* Captcha icons */
.right-ok  { background: url(../images/right-icon.webp)  no-repeat 8px; }
.wrong-icon { background: url(../images/wrong-icon.webp) no-repeat 8px; }
.example {
    margin: 15px;
    font-size: 14px;
    color: #656666;
    background-color: #fff;
    border: 1px solid #929494;
    border-radius: 4px;
    padding: 10px 20px;
}
.thnak4 { margin-top: 50px; }

/* ── Inquiry Floating Button ──────────────────────────────── */
.inq-btn-home {
    position: fixed;
    top: 200px;
    left: 10px;
    width: 60px;
    z-index: 1050;
    cursor: pointer;
}
.inq-btn-home img { max-width: 50px; height: auto; }

/* ── Modal Header ─────────────────────────────────────────── */
.modal-header {
    background-color: var(--primary);
    border-bottom: none;
    padding: 15px 10px 15px 30px;
    display: flex;
    align-items: center;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}
.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.btn-close {
    background: #d50000;
    border: 0;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all .3s ease;
    opacity: 1;
}
.modal-header .btn-close { margin: 0 10px 0 auto; }
.modal-body { padding: 30px; }
#exampleModal .modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    background-color: var(--white);
    overflow: hidden;
}
.modal-dialog { margin: 6% auto; max-width: 500px; }
.modal-backdrop.show { opacity: .5; }
body.modal-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1040;
}

/* ── Misc ─────────────────────────────────────────────────── */
.navbar { margin-bottom: 0; }
.banner img { width: 100%; height: auto; }
.about-section1 p { margin-left: 20px; text-align: left; color: #000; padding: 10px 0; font-size: 19px; font-weight: 600; }
.about-section1 a { text-decoration: none; color: var(--primary); }
.well-text-box { border: 2px solid #ccc; box-shadow: 2px 2px 5px #999; padding: 10px; max-width: 100%; height: auto; }
.enquiry-margin { margin-bottom: 40px; border: 2px solid var(--primary); padding: 8px; border-radius: 5px; width: 100%; }

/* ── Responsive Tweaks ────────────────────────────────────── */
@media (max-width: 768px) {
    .page-banner { padding: 28px 0 22px; }
    .page-banner-title { font-size: 24px; }
    .inq-btn-home img { width: 40px; }
    .set-img { margin-bottom: 2rem; }
    .modal-dialog { margin: auto .5rem; }
    .content-right h1 { font-size: 28px; }
    .content-right h2 { font-size: 24px; }
    .footer-01 .column {
    margin-bottom: 20px;
}

.footer-01 .column:last-child{
    margin-bottom: 0;
}
}
@media (max-width: 499px) {
    .modal-dialog { margin: auto .4rem; }
}

/* ── Phone/Captcha grid ───────────────────────────────────── */
.phone-country-single {
    display: grid;
    grid-template-columns: minmax(130px,auto) 1fr;
    gap: 5px;
    align-items: center;
}
.phone-country-single select.country-select,
.phone-country select.country-select {
    width: 136px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}
.captcha-group {
    display: grid;
    grid-template-columns: auto auto;
    gap: 8px;
    align-items: center;
}
.captcha-group img { width: 36px; border: none; }
.captcha-group .form-control-feedback { display: none; }
.phone-country { display: grid; grid-template-columns: 130px 1fr; gap: 12px; }

