/* Enterprise Design System - Complete Overhaul */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

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

/* When feedback is open, stop #search-panel from capturing clicks */
body.feedback-open #search-panel {
    pointer-events: none !important;
}
/* Prevent background scroll when feedback is open */
body.feedback-open {
    overflow: hidden;
}

/* Enterprise Design Tokens */
:root {
    /* Brand Colors */
    --primary: #0066cc;
    --primary-light: #3388dd;
    --primary-dark: #004499;
    --secondary: #64748b;
    --accent: #f59e0b;
    /* Compatibility aliases to match existing component tokens */
    --primary-blue: var(--primary);
    --primary-blue-light: var(--primary-light);
    --primary-blue-dark: var(--primary-dark);
    --secondary-slate: var(--secondary);
    --accent-orange: var(--accent);
    
    /* Neutral Palette */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Status Colors */
    --success: #059669;
    --warning: #d97706;
    --error: #dc2626;
    --info: #0284c7;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Space Grotesk', var(--font-primary);
    /* Alias used across legacy styles */
    --font-family: var(--font-primary);
    
    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    /* Compatibility spacing tokens used throughout components */
    --space-xs: var(--space-2);
    --space-sm: var(--space-3);
    --space-md: var(--space-4);
    --space-lg: var(--space-6);
    --space-xl: var(--space-8);
    --space-2xl: var(--space-12);
    --space-3xl: var(--space-16);
    --space-4xl: var(--space-20);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1536px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: var(--space-4);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: 1.875rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.25rem; }

p {
    margin-bottom: var(--space-4);
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.6;
}

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

a:hover, a:focus {
    color: var(--primary-blue-dark);
    text-decoration: none;
}

img {
    max-width: 100%;
}

.btn-container {
    position: relative;
    display: inline-block;
    margin: 0px 10px 10px 0px;
    background-color: #E0E0E0;
    color:#000000;
}
.remove-icon {
    position: absolute;
    top: -5px;
    right: -5px;
    background: black;
    color: white;
    border: none;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    cursor: pointer;
}
.highlight-transparent-div
{
	background-color: rgb(255 255 255 / 50%)!important;
    color: black;
    font-weight: bold;
    border: 2px solid rgb(246 244 231 / 80%);
    box-shadow: 0 0 15px rgb(233 230 212 / 80%);
}
.form-check-input:focus, .form-control:focus{
  outline: none !important;
  box-shadow: none !important;
}
.navbar-expand-lg .navbar-collapse {
    justify-content: flex-end;
    align-items: center;
}
header.main-header.gcolor {
    border-top: 4px solid var(--primary-blue);
    background: var(--white);
    box-shadow: var(--shadow-md);
}
/* Enterprise Navigation */
ul.navbar-nav.customnavbar.ml-auto li.nav-item a.nav-link {
    font-size: 0.95rem;
    color: var(--gray-700);
    padding: var(--space-sm) var(--space-md);
    line-height: 1.5;
    font-family: var(--font-family);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    text-transform: none;
}

ul.navbar-nav.customnavbar.ml-auto li.nav-item a.nav-link:hover {
    color: var(--primary-blue);
    background-color: var(--gray-100);
    transform: translateY(-1px);
}

ul.navbar-nav.customnavbar.ml-auto li.nav-item a.enq-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: var(--radius-lg);
    color: var(--white);
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.95rem;
    text-decoration: none;
    line-height: 1.5;
    font-weight: 600;
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

ul.navbar-nav.customnavbar.ml-auto li.nav-item a.enq-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}
ul.navbar-nav.customnavbar>li:not(:last-child)>a {
    margin-inline-end: 20px !important;
}
 ul.navbar-nav.customnavbar ul.dropdown-menu li:nth-child(odd) {
            background-color: #cbcabe;
			border-bottom:1px solid black;
        }
 ul.navbar-nav.customnavbar ul.dropdown-menu li:nth-child(even) {
            background-color: #ceccb4;
			border-bottom:1px solid black;
        }

 /* Hover effect */
ul.navbar-nav.customnavbar ul.dropdown-menu li:hover, ul.navbar-nav.customnavbar ul.dropdown-menu li:focus {
	background-color: #beb75d!important;
}
ul.navbar-nav.customnavbar ul.dropdown-menu li a:hover, ul.navbar-nav.customnavbar ul.dropdown-menu li a:focus {
	background-color: #beb75d!important;
}
/*ul.navbar-nav.customnavbar>li:last-child a {
    margin-inline-start: 15px !important;
}*/
ul.navbar-nav.customnavbar ul.dropdown-menu li a {
white-space: break-spaces !important;
padding: 7px!important;
}
footer.main-footer {
    background-color: #f3f3f3;
    padding: 10px 0px;
}
.footer-links {
    margin-top: 0px;
    margin-bottom: 15px;
}
.footer-links a{
    font-size: 15px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    line-height: 22px;
    font-family: 'ArnoPro';
}
/* Enterprise Footer Styles */
.copy-right p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--gray-600);
    font-weight: 500;
    font-family: var(--font-family);
}

footer.main-footer {
    background: var(--white);
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--gray-200);
    margin-top: var(--space-3xl);
}

.footer-links a {
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    line-height: 1.5;
    font-family: var(--font-family);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--primary-blue-dark);
}

.socail a {
    color: var(--gray-600);
    font-size: 1.25rem;
    margin: 0 var(--space-sm);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
}

.socail a:hover {
    color: var(--primary-blue);
    background: var(--gray-200);
    transform: translateY(-2px);
}
/* Enterprise Banner Section */
section.banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 50%, var(--secondary-slate) 100%);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: visible; /* allow overlay elements like suggestion lists to escape */
    z-index: 6000; /* ensure this section overlays following cards */
}

section.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.banner-conts {
    position: relative;
    z-index: 5000; /* ensure search suggestions overlay cards below */
    text-align: center;
}

/* Ensure company/technology suggestion dropdown sits above surrounding cards */
#company_suggest {
  z-index: 99999 !important; /* above any cards/widgets */
  position: fixed !important; /* detach from local stacking contexts */
  background: #fff;
  border: 1px solid #e0e3e7;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  overflow: auto;
}

.banner-conts label {
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
    line-height: 1.4;
    color: var(--accent-orange);
    font-weight: 600;
    font-family: var(--font-family);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.banner-conts h1 {
    margin-bottom: var(--space-xl);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--white);
    font-weight: 700;
    font-family: var(--font-family);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner-conts p {
    margin-bottom: var(--space-xl);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.6;
    color: var(--white);
    font-weight: 400;
    font-family: var(--font-family);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}
.cirs span a{
    color: #fff;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 32px;
    background-color: #0895d4;
    border: 8px solid rgb(80 77 97 / 90%);
    overflow: hidden;
    text-decoration: none;
}
.footer-logo img{
    mix-blend-mode: darken;
}
.cirs {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}
.cirs a{
    text-decoration: underline;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    display: block;
    margin-top: 10px;
    font-weight: 500;
    text-align: center;
    font-family: 'DIN';
}
.cirs p.mb-0 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cover-forms {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.cover-forms-search {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.cover-inputs input,
.cover-inputs select {
    background-color: var(--white);
    border-radius: var(--radius-md);
    height: 48px;
    border: 2px solid var(--gray-300);
    padding: var(--space-sm) var(--space-md) !important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--gray-700);
    font-family: var(--font-family);
    transition: all var(--transition);
    width: 100%;
}

.cover-inputs input:focus,
.cover-inputs select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    outline: none;
}

.cover-inputs input::placeholder {
    color: var(--gray-400);
}

/* Enterprise Search Button */
.search-icons span {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    width: 48px;
    display: flex;
    height: 48px;
    color: var(--white);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--primary-blue);
}

.search-icons span:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.search-main .form-check-input:checked[type=checkbox] + label {
    color: #0d6efd !important;
}
.comman-modal .modal-content {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.comman-modal .modal-body {
    padding: var(--space-xl);
    background: var(--white);
}

.comman-modal .modal-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-bottom: none;
    padding: var(--space-lg) var(--space-xl);
}

.comman-modal .modal-title {
    color: var(--white);
    font-weight: 600;
    font-family: var(--font-family);
}

.comman-modal button.btn-close {
    position: absolute;
    right: var(--space-md);
    top: var(--space-md);
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    width: 32px;
    height: 32px;
    color: var(--white);
    background-image: none !important;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition);
}

.comman-modal button.btn-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.comman-modal button.btn-close:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}
/* Enterprise Feedback Button */
a.feedback {
    position: fixed;
    right: var(--space-lg);
    bottom: 96px; /* lifted to avoid overlapping footer 'Powered by' area */
    top: auto;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    font-size: 0.95rem;
    text-decoration: none;
    padding: calc(var(--space-sm) + 2px) var(--space-lg);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 600;
    letter-spacing: .2px;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    z-index: 2147483643; /* below form/backdrop and global modals */
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

a.feedback:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Keyboard focus visibility */
a.feedback:focus-visible {
    outline: 3px solid rgba(255,255,255,0.85);
    outline-offset: 2px;
}

/* On very small screens, keep it above bottom UI chrome */
@media (max-width: 575.98px) {
  a.feedback {
    bottom: 90px; /* keep above mobile UI chrome if present */
  }
}

/* Optional icon before text (uses Font Awesome if available) */
a.feedback::before {
  content: "\f086"; /* comment-alt */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: .5rem;
}

/* Ensure SweetAlert2 is always above the feedback form/backdrop */
.swal2-container {
  z-index: 2147483647 !important;
}
/* Enterprise Feedback Form */
.feedback-form {
    background: var(--white);
    width: min(90vw, 420px);
    position: fixed;
    right: var(--space-lg);
    bottom: var(--space-lg);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    z-index: 2147483645; /* leave room for global modals/alerts above */
    visibility: hidden;
    opacity: 0;
    transform: translateY(8px) scale(0.985);
    pointer-events: none;
    transition: opacity var(--transition-slow), visibility var(--transition-slow), transform var(--transition-slow);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.35), 0 10px 20px -6px rgb(0 0 0 / 0.2);
    border: 1px solid var(--gray-200);
    position: fixed;
}
.feedback-form::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

/* Enterprise Button System */
.btn {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.875rem;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border-color: var(--gray-300);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
    color: var(--gray-800);
    transform: translateY(-1px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: 0.75rem;
    border-radius: var(--radius-sm);
}

.feedback-form input {
    height: 44px;
}

.comment-box {
    position: absolute;
    top: -22px;
    left: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--white);
    transform: translateX(-50%);
    box-shadow: var(--shadow-md);
    border: 3px solid var(--white);
}

/* Backdrop overlay when feedback is open */
.feedback-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 2147483644; /* just below the form */
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-slow);
}
body.feedback-open .feedback-backdrop {
    opacity: 1;
    pointer-events: auto;
}
.feedback-form p {
    text-align: center;
    color: var(--gray-800);
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 600;
    margin-top: var(--space-sm);
    font-family: var(--font-family);
}
.feedback-form h3, .feedback-form .title {
    margin: 0 0 var(--space-sm) 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    font-family: var(--font-family);
}
.feedback-form .form-control::placeholder {
    color: var(--gray-400);
}
.feedback-form .form-control {
    background: var(--white);
}
.feedback-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}
.feedback-form label {
    font-weight: 600;
    color: var(--gray-700);
}
.feedback-form input, 
.feedback-form textarea {
    margin-bottom: var(--space-md);
    border: 1px solid var(--gray-300); /* match contact form .form-control */
    border-radius: var(--radius);
    padding: var(--space-3) var(--space-4);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all var(--transition);
    background: var(--white);
}
.feedback-form textarea { min-height: 120px; resize: vertical; }
.feedback-form input:focus, 
.feedback-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgb(0 102 204 / 0.1); /* align with global focus */
    outline: none;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    outline: none;
}

.feedback-form input::placeholder, 
.feedback-form textarea::placeholder {
    font-family: var(--font-family);
    color: var(--gray-400);
    font-size: 0.95rem;
    font-weight: 400;
}

.feedback-form textarea {
    height: 120px;
    resize: vertical;
}

.feedback-form button.btn.btn-sub {
    /* mirror primary button styling used in contact form */
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
    padding: var(--space-4) var(--space-6);
    font-family: var(--font-family);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    transition: all var(--transition);
    width: 100%;
    box-shadow: var(--shadow-sm);
}

.feedback-form button.btn.btn-sub:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.feedback-form.feedback-form-show{
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Center the feedback form on desktop for better visibility */
@media (min-width: 768px) {
  .feedback-form.feedback-form-show {
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%) scale(1);
  }
}
.feedback-form .close-form {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    color: var(--gray-500);
    font-size: 1.25rem;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 500;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.feedback-form .close-form:hover {
    background: var(--gray-100);
    color: var(--gray-700);
    transform: scale(1.05);
}

/* Feedback header and subtitle */
.feedback-header { text-align: center; margin-bottom: var(--space-md); }
.feedback-subtitle { color: var(--gray-600); font-size: 0.95rem; }

/* Button polish for submit */
.feedback-form .btn.btn-sub {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: .2px;
    box-shadow: 0 10px 15px -3px rgba(0,102,204,.25), 0 4px 6px -4px rgba(0,102,204,.2);
}
.feedback-form .btn.btn-sub:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}
.feedback-form .btn.btn-sub:active {
    transform: translateY(0);
    box-shadow: 0 8px 10px -6px rgba(0,102,204,.25), 0 3px 5px -4px rgba(0,102,204,.2);
}
/* Enterprise Modal Variants */
.message-modal .modal-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    padding: var(--space-lg) var(--space-xl);
    border-bottom: none;
}

.message-modal .modal-title {
    color: var(--white);
    font-weight: 600;
    font-family: var(--font-family);
}

#myModal .modal-content,
#myModal2 .modal-content {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

#myModal .modal-header,
#myModal2 .modal-header {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--space-xl);
}

#myModal .modal-body,
#myModal2 .modal-body {
    background: var(--white);
    padding: var(--space-2xl);
    color: var(--gray-700);
    line-height: 1.7;
}

#myModal .modal-footer,
#myModal2 .modal-footer {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    padding: var(--space-lg) var(--space-xl);
}

/* Policy modal polish */
.policy-modal {
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.policy-modal .modal-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-bottom: none;
    padding: var(--space-xl);
}

.policy-modal .modal-title {
    color: var(--white);
    font-weight: 700;
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.policy-modal .modal-title i {
    color: var(--white);
}

.policy-modal .btn-close {
    position: absolute;
    right: var(--space-md);
    top: var(--space-md);
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    width: 32px;
    height: 32px;
    color: var(--white);
    background-image: none !important;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.policy-modal .modal-body {
    background: var(--white);
    padding: var(--space-2xl);
}

.policy-modal .modal-footer {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    padding: var(--space-lg) var(--space-xl);
}

/* Readable typography inside policy content */
.prose {
    max-width: 100%;
}
.prose h2 { margin-top: var(--space-lg); font-size: clamp(1.5rem, 2.5vw, 2rem); }
.prose h3 { margin-top: var(--space-md); font-size: 1.25rem; }
.prose p { margin-bottom: var(--space-md); color: var(--gray-700); }
.prose ol, .prose ul { margin-left: 1.25rem; margin-bottom: var(--space-md); }
.prose li { margin-bottom: var(--space-2); }
.prose b, .prose strong { color: var(--gray-800); }
.contact_det {
word-wrap: break-word;
}
.message-modal h5.modal-title {
    color: var(--white);
    font-size: 1.1rem;
    font-family: var(--font-family);
    font-weight: 600;
}

.message-modal h5.modal-title i {
    margin-right: var(--space-sm);
    color: var(--white);
}

.message-modal button.btn-close2 {
    background: none !important;
    border: none;
    color: var(--white);
    font-family: var(--font-family);
    font-size: 1.25rem;
    opacity: 0.8;
    transition: opacity var(--transition);
}

.message-modal button.btn-close2:hover {
    opacity: 1;
}
/* Enterprise Form System */
.form-control {
    font-family: var(--font-primary);
    font-size: 1rem;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    transition: all var(--transition);
    color: var(--gray-700);
    width: 100%;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgb(0 102 204 / 0.1);
    outline: none;
}

.form-control::placeholder {
    color: var(--gray-400);
    font-style: normal;
}

.form-label {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-2);
    font-size: 0.875rem;
    display: block;
}

.form-select {
    font-family: var(--font-primary);
    font-size: 1rem;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    transition: all var(--transition);
    color: var(--gray-700);
    cursor: pointer;
}

.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgb(0 102 204 / 0.1);
    outline: none;
}

.form-check-input {
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    width: 1.25rem;
    height: 1.25rem;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-label {
    font-family: var(--font-primary);
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-left: var(--space-2);
}

.invalid-feedback {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: var(--error);
    margin-top: var(--space-1);
    display: block;
}

.valid-feedback {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: var(--success);
    margin-top: var(--space-1);
    display: block;
}
/* Enterprise Form Labels and Controls */
.modal-form label {
    color: var(--gray-800);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    font-family: var(--font-family);
    display: block;
}

.modal-form textarea {
    height: 100px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-family);
    transition: all var(--transition);
    resize: vertical;
}

.modal-form textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    outline: none;
}

.modal-form button.btn.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    font-size: 0.95rem;
    margin-top: var(--space-md);
    padding: var(--space-sm) var(--space-xl);
    font-family: var(--font-family);
    font-weight: 600;
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.modal-form button.btn.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
/* Enterprise Search List Header */
.box-list {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    padding: var(--space-xl) var(--space-md);
    position: relative;
    overflow: hidden;
}

.box-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.box-list h3 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    font-family: var(--font-family);
    position: relative;
    z-index: 2;
}
/* Enterprise Filter Section */
.cover-filter {
    background: var(--white);
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.cover-filter a {
    display: inline-flex;
    color: var(--gray-700);
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 500;
    align-items: center;
    text-decoration: none;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.cover-filter a:hover {
    color: var(--primary-blue);
    background: var(--gray-100);
}
/* Enterprise Search Labels and Containers */
.search-main label {
    color: var(--gray-800);
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
    font-weight: 500;
    font-family: var(--font-family);
    display: block;
}

.cover-white-box {
    padding: var(--space-xl) var(--space-2xl) var(--space-3xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin: var(--space-lg) 0;
}
/* Enterprise Dropdown Navigation */
.nav-item-2 {
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    height: 48px;
    position: relative;
    background: var(--white);
    transition: all var(--transition);
}

.nav-item-2:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.nav-item-2::after {
    position: absolute;
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-size: 0.875rem;
    right: var(--space-md);
    font-weight: 700;
    top: 50%;
    color: var(--gray-500);
    transform: translateY(-50%);
    transition: color var(--transition);
}

.nav-item-2:hover::after {
    color: var(--primary-blue);
}

.nav-item-2 ul.dropdown-menu {
    width: 100%;
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.nav-item-2 a {
    text-decoration: none;
    display: flex;
    padding: var(--space-sm) var(--space-md);
    align-items: center;
    position: relative;
    height: 48px;
    color: var(--gray-700);
    font-family: var(--font-family);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-item-2 a:hover {
    color: var(--primary-blue);
    background: var(--gray-100);
}
.search-main {
    margin-bottom: 20px;
}
/* removed empty .left-serch ruleset to fix lint */
/* Enterprise Company Cards */
.box-serch-right {
    min-height: 100%;
    max-height: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    overflow: hidden;
}

.box-serch-right:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.img-thumanal img {
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.cover-row-one {
    padding: var(--space-2xl);
    background: var(--gray-50);
}

.brand {
    background: var(--white);
    padding: var(--space-lg);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand h3 {
    color: var(--primary-blue);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    font-family: var(--font-family);
    line-height: 1.3;
}

.brand p {
    color: var(--gray-600);
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.6;
    font-family: var(--font-family);
    text-align: justify;
    flex-grow: 1;
}
/* Enterprise Web List */
.web-list {
    background: var(--gray-50);
    padding: var(--space-lg);
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
    border-top: 1px solid var(--gray-200);
}

.web-list a {
    display: flex;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
    align-items: center;
    font-family: var(--font-family);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.web-list a:hover {
    color: var(--primary-blue);
    background: var(--white);
    transform: translateX(2px);
}

.web-list a span {
    margin-right: var(--space-sm);
    color: var(--primary-blue);
}

.web-list a:last-child {
    margin-bottom: 0 !important;
}
/* Enterprise Image Thumbnails */
.img-thumanal {
    overflow: hidden;
    position: relative;
    height: 180px;
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
}

.img-thumanal small svg {
    fill: var(--white);
}

.img-thumanal span {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    border-radius: var(--radius-md);
    display: block;
    width: 80px;
    height: 32px;
    background: var(--white);
    font-family: var(--font-family);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.img-thumanal span img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Enterprise Badge System */
.img-thumanal small {
    position: absolute;
    right: var(--space-sm);
    bottom: var(--space-sm);
    background: var(--primary-blue);
    border-radius: var(--radius-lg);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xs) var(--space-sm);
    height: 28px;
    font-family: var(--font-family);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--white);
}

.img-thumanal small label {
    margin-bottom: 0;
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    font-family: var(--font-family);
}

.img-thumanal small b {
    background: var(--primary-blue-dark);
    margin-right: var(--space-xs);
    height: 20px;
    padding: 0;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    line-height: 1;
    color: var(--white);
    margin-bottom: 0;
    font-weight: 600;
}
/* Enterprise Section Backgrounds */
.cover-list-row {
    background: var(--gray-50);
    padding: var(--space-xl) 0;
}

section.company-one {
    background: var(--gray-50);
    padding: var(--space-3xl) 0;
}
/* Enterprise Banner Components */
.banner-sub {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.banner-sub img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: auto;
    transition: transform var(--transition);
}

.banner-sub:hover img {
    transform: scale(1.02);
}

.banner-part {
    position: relative;
}
.small-ads h3{
    border-radius: 15px;
    display: block;
    width: 125px;
    height: 125px;
    padding: 5px;
    /* background-color: #fff; */
    margin-bottom: 0px;
}
.small-ads h3 img {
    border-radius: 15px;
    width: 100%;
}
.pros a {
    background-color: #3bafe6;
    border-radius: 20px;
    margin-bottom: 10px;
    display: inline-flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 0px 6px;
    height: 25px;
    font-family: 'din';
}
.pros a label {
    margin-bottom: 0px;
    color: #fff;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 400;
    line-height: 9px;
    height: 10px;
}
.pros a b {
    background-color: #297ea5;
    margin-right: 5px;
    height: 18px;
    padding: 2px;
    width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    margin-bottom: 0px;
}
.pros a b svg {
    fill: #fff;
}
.barnd-small {
    display: flex;
    align-items: center;
}
.pros h3{
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}
.pros h3 span{
    color: #fff;
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 30px;
    font-weight: 500;
    font-family: 'DIN';
}
.pros p{
    color: #fff;
    margin-bottom: 0px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
}
.pros {
    display: block;
    margin-left: 25px;
}
.main-row {
    display: flex;
    justify-content: space-between;
}
.main-row .dv {
    width: calc(80% - 10%);
    margin-right: 20px;
}
.dv2 {
    width: 10%;
}
.web-list a svg {
    width: 18px;
    margin-right: 10px;
    fill: #424242;
    display: inline-flex;
    height: 17px;
}
.search-main select{
   border-radius: 30px;
   color: #000000;
   font-size: 18px;
   padding: 10px 15px;
   font-weight: 400;
   font-family: 'ArnoPro';
   line-height: 30px;
   height: 45px;
   border: 1px solid #7f7f7f8f;
}
.search-main select option{
  color: #000000;
  border: 1px solid #7f7f7f8f;
  font-size: 18px;
}
.search-main .form-select:focus{
  border: 1px solid #7f7f7f8f;
}
.img-thumanal a b svg {
    fill: #fff;
}
.pros h3 label {
    padding-top: 9px;
    width: 64px;
    background-color: #fff;
    border-radius: 5px;
    font-size: 17px;
    margin-left: 20px;
    /* line-height: 22px; */
    height: 24px;
    color: #3bafe6;
    font-weight: 300;
    padding: 5px 12px 0px 12px;
    margin-bottom: 0px;
    font-family: 'ArnoPro';
    display: flex;
    align-items: center;
    justify-content: center;
}
.share-icon {
    width: 53px;
    background-color: #ffff;
    border-radius: 10px;
    display: flex;
    box-shadow: 4px 5px 14px 4px #0000001c;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 40px;
    height: 50px;
}
.mail a{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #009fe3;
    border-radius: 50%;
    height: 45px;
    width: 45px;
}
.mail a svg{
    fill: #fff;
}
.cover-flex{
    display: flex;
    align-items: flex-end;
    position: absolute;
    bottom: 25px;
    left: 25px;
    width: calc(100% - 50px);
    justify-content: space-between;
}
.com-tabs nav {
    width: calc(100% - 66px);
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 8px 5px 11px 3px #0000001c;
}
.com-tabs nav .nav-tabs .nav-link.active{
    border-radius: 0px;
    border: none;
    color: #009fe3;
    font-weight: 500;
}
.com-tabs nav .nav-tabs .nav-link{
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    font-family: 'DIN';
    border: none;
    position: relative;
    margin-right: 45px;
}
.com-tabs nav .nav-tabs{
    border: none;
    padding: 5px 15px;
}
.com-tabs {
    margin-top: -10px;
}
.share-icon a {
    background: #f7f7f7;
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    border: 1px solid #67c8f1;
    border-radius: 10px;
}
.share-icon a svg{
    fill: #676767;
}
.com-tabs nav .nav-tabs .nav-link.active::after {
    position: absolute;
    content: url(../images/ship.jpg) !important;
    top: 27%;
    right: -10px;
}
.leftside-comp {
    flex: 0 0 calc(50% - 15px);
    margin-right: 15px;
}
.rightside-comp {
    flex: 0 0 calc(50% - 15px);
    margin-left: 15px;
}
.cover-copmay {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
    margin-bottom: 25px;
}
.box {
    background-color: #fff;
    box-shadow: 0 0 8px 6px #0000000a;
    border-radius: 7px;
    padding: 85px 24px 30px;
    position: relative;
    margin-bottom: 30px;
}
.box h3 {
    background-color: #009fe3;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 10px;
    margin-bottom: 0px;
    padding: 8px 20px;
    width: auto;
    position: absolute;
    top: 0px;
    left: 0px;
}
.box h3 label{
    /* font-size: 20px; */
    font-size: 20px;
    color: #fff;
    line-height: 22px;
    font-weight: 400;
    font-family: 'ArnoPro';
    margin-bottom: 0px;
    margin-left: 10px;
}
.box h3 span svg{
    fill: #fff;
}
.box p{
    font-size: 15px;
    font-family: 'DIN';
    margin-bottom: 0px;
    line-height: 22px;
    font-weight: 400;
    color: #000000;
}
ul.list-company {
    display: flex;
    margin-bottom: 0px;
    flex-wrap: wrap;
}
ul.list-company li{
    width: 50%;
    display: block;
}
ul.list-company li label{
    font-size: 16px;
    font-family: 'DIN';
    margin-bottom: 0px;
    line-height: 22px;
    font-weight: 500;
    color: #009fe3;
}
ul.list-company li p,ul.list-company li a{
    font-size: 16px;
    font-family: 'DIN';
    margin-bottom: 0px;
    line-height: 22px;
    font-weight: 500;
    color: #000000;
    display: block;
}
ul.list-company li a{
    cursor: pointer;
}
.cus-flex{
    display: flex;
    align-items: center;
}
.cus-flex h5 a {
    background: #f7f7f7;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    border: 1px solid #67c8f1;
    border-radius: 10px;
}
.cus-flex h5 a svg{
    fill: #5f5f5f;
}
.cus-flex h5 {
    position: absolute;
    right: 10px;
    top: 12px;
    display: flex;
    align-items: center;
    margin-bottom: 0px;
}
.cus-flex h5 span {
    margin-right: 29px;
    display: block;
    font-size: 17px;
    font-family: 'DIN';
    line-height: 22px;
    font-weight: 500;
}
ul.list-unstyled.establish {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
ul.list-unstyled.establish li {
    box-shadow: 0 0 8px 6px #0000000a;
    background-color: #fff;
    width: calc(50% - 15px);
    padding: 30px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 7px;
}
ul.list-unstyled.establish li:nth-child(odd){
    margin-right: 15px;
}
ul.list-unstyled.establish li:nth-child(even){
    margin-left: 15px;
}
ul.list-unstyled.establish li h6{
    margin-bottom: 0px;
    color: #009fe3;
    font-size: 16px;
    font-weight: 500;
    font-family: 'DIN';
    line-height: 18px;
}
ul.list-unstyled.establish li p{
    margin-bottom: 0px;
    color: #000;
    font-size: 36px;
    font-weight: 400;
    font-family: 'DIN';
    line-height: 22px;
}
:focus-visible {
    outline: none;
}
h5.ser-name{
    margin-bottom: 10px;
    color: #000;
    font-size: 17px;
    font-weight: 500;
    font-family: 'DIN';
    line-height: 22px;
}
.bult-list li{
    position: relative;
    padding-left: 20px;
    color: #000;
    font-size: 15px;
    font-weight: 400;
    font-family: 'DIN';
    line-height: 20px;
    margin-bottom: 10px;
}
.bult-list li:after{
    position: absolute;
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    left: 0px;
    top: 50%;
    background-color: #009fe3;
    transform: translateY(-50%);
}
.bult-list.bult-list-big li{
    font-size: 17px;
    font-weight: 500;
}


















        /* light box css start here */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Style for the gallery */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
            gap: 10px;
            padding: 0px;
        }

        /* Square thumbnails with images covering full thumbnail size */
        .gallery-item {
            position: relative;
            width: 100%;
            padding-bottom: 100%; /* This keeps the thumbnails square */
            overflow: hidden;
            cursor: pointer;
        }

        .gallery-item img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures the image covers the thumbnail area */
            transition: transform 0.3s ease;
        }

        .gallery-item img:hover {
            transform: translate(-50%, -50%) scale(1.05); /* Slight zoom effect */
        }

        /* Lightbox styling */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 1000;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            justify-content: center;
            align-items: center;
        }

        .lightbox-content {
            max-width: 80%;
            max-height: 80%;
            margin: auto;
            position: relative;
        }

        .lightbox img {
            width: 100%;
            height: auto;
        }

        .close {
            position: absolute;
            top: 20px;
            right: 35px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s;
        }

        .close:hover {
            color: #bbb;
        }

        #caption {
            text-align: center;
            color: white;
            margin-top: 10px;
            font-size: 18px;
        }

        /* Previous/Next buttons */
        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            padding: 16px;
            color: white;
            font-size: 30px;
            font-weight: bold;
            transition: 0.3s;
        }

        .prev {
            left: 0;
        }

        .next {
            right: 0;
        }

        .prev:hover, .next:hover {
            color: #bbb;
        }
		.hq small {
        text-align: end;
    display: flex;
    width: 277px;
    flex-flow: wrap !important;
    font-size: 14px;
    font-family: 'DIN';
}

        /* Responsive adjustments */
        @media screen and (max-width: 768px) {
            .lightbox-content {
                max-width: 90%;
                max-height: 90%;
            }

            #caption {
                font-size: 16px;
            }

            .close {
                font-size: 30px;
            }

            .prev, .next {
                font-size: 20px;
            }
        }
/* light box css close here */

 .powered-by {
            display: flex;
            align-items: center;
            font-family: Arial, sans-serif;
            font-size: 14px;
            color: #555;
			justify-content: center;
			padding-right: 15px;
        }
        .powered-by svg {
            width: 16px;
            height: 16px;
            margin-right: 5px;
            fill: #007BFF;
        }
.isiec
{
	text-align: left;
    padding: 66px 100px 20px 65px;
	background-color: #eeefef;
}


.styled-button {
    background-color: #0d6efd; /* Green */
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.styled-button:hover {
    background-color: #0a58ca;
    transform: scale(1.02);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.styled-button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.styled-button-clear {
    background-color: #1089a1; /* Green */
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.styled-button-clear:hover {
    background-color: #287b8c;
    color: white;
    transform: scale(1.02);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.styled-button-clear:active {
    transform: scale(0.98);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ========== Themed Pages: Hero, Sections, Cards ========== */
.page { padding-top: 88px; }
.page-hero.gradient-hero {
  position: relative;
  padding: var(--space-3xl) 0 var(--space-2xl);
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 50%, var(--secondary-slate) 100%);
  color: var(--white);
  overflow: hidden;
}
.page-hero .eyebrow { color: var(--accent-orange); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.page-hero .display-title { color: var(--white); text-shadow: 0 2px 8px rgb(0 0 0 / 15%); }
.page-hero .lead { color: rgb(255 255 255 / 92%); max-width: 780px; }
.page-hero .hero-art { position: absolute; inset: 0; opacity: .12; background:
  radial-gradient(800px 300px at 80% -10%, rgba(255,255,255,.5), transparent 60%),
  radial-gradient(600px 400px at -10% 100%, rgba(255,255,255,.35), transparent 60%);
  pointer-events: none;
}

.section { padding: var(--space-3xl) 0; }
.feature-card { border: 1px solid var(--gray-200); box-shadow: var(--shadow-lg); border-radius: var(--radius-xl); }
.feature-card .card-body { padding: var(--space-xl); }
.icon-badge { width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%); color: #fff; box-shadow: var(--shadow-md); margin-bottom: var(--space-md); }
.list-check { padding-left: 1.25rem; }
.list-check li { margin-bottom: .5rem; }

.section-cta { padding: var(--space-2xl) 0 var(--space-3xl); background: linear-gradient(0deg, var(--gray-50), #fff); }

/* ========== About Dropdown - Polished ========== */
.navbar .dropdown-menu { border-radius: var(--radius-lg); border: 1px solid var(--gray-200); box-shadow: var(--shadow-lg); overflow: hidden; }
.dropdown-item { padding: .6rem 1rem; }
.dropdown-item i { width: 1.1rem; margin-right: .5rem; color: var(--primary-blue); }
.dropdown-header { font-weight: 700; color: var(--gray-600); font-size: .8rem; text-transform: uppercase; }
.dropdown-divider { margin: .25rem 0; }

/* ========== Policy Pages ========== */
.policy-section { padding: var(--space-2xl) 0; }
.prose { color: var(--gray-700); line-height: 1.85; }
.prose h2, .prose h3 { margin-top: var(--space-xl); }
.prose ol, .prose ul { padding-left: 1.25rem; }
.prose li { margin-bottom: .5rem; }