/* =========================
   Global Reset & Base Styles
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
    min-height: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;  
}

body {
    min-height: 100%;
    height: 100%;
    width: 100%;
    overflow-y: auto;     /* body is the ONLY vertical scrollbar */
    overflow-x: hidden;   /* no horizontal scroll on body */
}


/* Content wrapper (fills space between header & footer) */
.content {
    flex: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
main.content {
  overflow: visible !important;  
  height: auto !important;
}


section, div {
    max-width: 100%;
    overflow-x: hidden;
}


/* =========================
   Modern Footer - FIXED
   ========================= */
.site-footer {
  background: linear-gradient(135deg, #3a417a 0%, #2c3468 100%);
  color: #fff;
  padding: 25px 20px 15px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  clear: both;
  width: 100%;
  margin-top: 0;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.site-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(241, 196, 15, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
  max-width: none;        /* remove width cap */
  width: 100%;
  margin: 0;
  padding-inline: clamp(16px, 3vw, 40px); /* responsive padding */
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav ul li {
    position: relative;
}

.footer-nav ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.footer-nav ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f1c40f, #f39c12);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-nav ul li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-nav ul li a:hover::before {
    width: 100%;
}

.visit-count {
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.footer-social {
    margin: 15px ;
    padding: 10px 10px;
    text-align: center;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 8px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.1);
    color: #fff;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(241, 196, 15, 0.3);
}

.footer-social a:hover::before {
    left: 100%;
}

.footer-social a,
.footer-social a:hover,
.footer-social a:focus {
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    opacity: 0.7;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* =========================
   Enhanced Alerts (Messages)
   ========================= */
.messages {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 2000;
    max-width: 400px;
}

.alert1 {
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.alert-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.2s ease;
    padding: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
}

.alert-close:hover {
    opacity: 1;
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.alert1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.alert1-success { 
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.9), rgba(34, 139, 58, 0.9)); 
}
.alert1-error { 
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.9), rgba(176, 42, 55, 0.9)); 
}
.alert1-warning { 
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.9), rgba(255, 143, 0, 0.9)); 
    color: #333; 
}
.alert1-info { 
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.9), rgba(19, 132, 150, 0.9)); 
}

/* =========================
   Hero Section
   ========================= */
.hero-section {
    position: relative;
    min-height: auto;
    overflow: hidden;
    background: none;
    overflow: visible; 
}

.hero-slideshow {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: grid;
    z-index: 0;
    pointer-events: none;
    overflow: hidden !important;
}

.hero-slide {
    grid-area: 1 / 1;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    display: block;
    width: 100%;
    height: auto;          
    object-fit: contain; 
}

/* Remove hero content & decorations (not needed anymore) */
.hero-content,
.hero-text,
.hero-image,
.hero-decorative,
.circle-pattern {
    display: none !important;
}


/* Services Section */
.services-section {

    background: white;
}

.services-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 600;
}

.services-grid {
    display: grid;
    padding: 40px 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    top: 10px;
    max-width: auto;   
    margin: 0 auto;
}

.service-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.service-icon {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.service-icon img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
}

.service-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2d3748;
    line-height: 1.4;
}
/* =========================
   Product Section
   ========================= */
.product-section {
    position: relative;
    min-height: auto;
    overflow: visible;
    background: none;
}

.product-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.product-slideshow {
    position: relative;
    top: 15px;
    display: grid; 
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
    overflow: hidden !important;
    pointer-events: auto; /* ✅ allow clicks inside */
}

.product-slide {
    grid-area: 1 / 1;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: auto; /* ✅ clickable */
}

.product-slide.active {
    opacity: 1;
}

.product-slide img {
    display: block;
    width: 100%;
    height: auto;           
    object-fit: contain; 
}

.product-cta {
    position: absolute;
    bottom: 40px;
    left: 40px;
    text-align: left;
    z-index: 2;
    pointer-events: auto; /* ✅ ensure button is clickable */
}

.request-demo-btn {
    background: linear-gradient(135deg, #FFD700, #FFC107);
    color: #2d3748;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none; /* ✅ keep link styled as button */
    display: inline-block;
}

.request-demo-btn:hover {
    background: linear-gradient(135deg, #FFC107, #FFA500);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Empty state styling */
.product-slideshow p {
    padding: 60px 20px;
    text-align: center;
    color: #555;
    font-size: 1.2rem;
}
.service-item,
.service-item:hover,
.service-item:focus {
    text-decoration: none;
    color: inherit;
}

/* Testimonials Section */
.testimonials-section {
    padding: 40px 20px;
    background: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #2d3748;
    margin-bottom: 40px;
    font-weight: 600;
}

.testimonials-grid {
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    font-weight: bold;
    color: #2d3748;
    font-style: normal;
}
.view-all {
    text-align: center;
    margin-top: 20px;
}

.view-all .btn {
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    background: #040123;   /* light gray background */
    color: #ffffff;           /* dark text */
    transition: all 0.3s ease;
}

.view-all .btn:hover {
    background: #e9b703;
    color: #fff;
}

/* =========================
   Locations Section
   ========================= */
.locations-section {
    padding: 40px 20px;
    background: #f4f6f9;
    color: #2d3748;
}

.locations-section h2 {
    font-size: 2.2rem;
    text-align: center;
    padding: 10px 0; 
    margin-bottom: 20px;
    font-weight: 600;
    color: #2d3748;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 40px 20px;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.location-header {
    background: #2c3e7c;
    color: #ffffff;
    padding: 15px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    border-bottom: 2px solid #1a2758;
}

.location-info {
    padding: 20px;
}

.location-info p {
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.5;
}

.location-info a {
    color: #2c3e7c;
    text-decoration: none;
    font-weight: 500;
}

.location-info a:hover {
    text-decoration: underline;
}








/* === SINGLE SCROLLER OVERRIDES (keep at end) === */
html {
  overflow-x: hidden;
  overflow-y: auto;   /* let the browser handle scrolling */
  height: 100%;
}
body {
  overflow-x: hidden;
  min-height: 100%;
}

main.content { overflow: visible !important; height: auto !important; }

.hero-section,
.product-section,
.services-section,
.testimonials-section,
.locations-section {
  overflow-y: visible !important;
}

.trusted-track { width: auto !important; overflow: visible !important; }


/* 
################################################
Book Demo (BNX Custom Theme)
################################################
*/

.book-demo-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa, #eef2f7);
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  animation: fadeInUp 0.6s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(58, 65, 122, 0.2);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #2d3748;
  font-size: 2.2rem;
  font-weight: 700;
}

.form-container p {
  text-align: center;
  margin-bottom: 35px;
  color: #555;
  font-size: 1rem;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2d3748;
  font-size: 0.95rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 1rem;
  background: #f9fafb;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #3a417a;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(58, 65, 122, 0.2);
}

/* Button Styling */
.request-demo-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #060c3a, #0c0116);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(58, 65, 122, 0.3);
}

.request-demo-btn:hover {
  background: linear-gradient(135deg, #f1c40f, #f39c12);
  color: #2d3748;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(241, 196, 15, 0.4);
}

/* Flatpickr Custom Theme */
.flatpickr-calendar {
  border-radius: 15px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

/* Header (Month/Year area) */
.flatpickr-months {
  background: linear-gradient(135deg, #202864, #2c3468);
  color: #fff !important;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Month text */
.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: transparent;
  border: none;
  color: #fff !important;   /* white month text */
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}
.flatpickr-current-month .flatpickr-monthDropdown-months option {
  color: #000; /* dropdown options readable */
}

/* Year input (clean, no arrows, no scrollbar) */
.flatpickr-current-month input.cur-year {
  font-weight: 700;
  color: #f1c40f !important; /* golden highlight */
  background: transparent;
  border: none;
  font-size: 1rem;
  text-align: center;
  width: 65px;
  cursor: text;

  /* ✅ remove spinners & scrollbars in all browsers */
  -moz-appearance: textfield;
  -webkit-appearance: none;
  appearance: textfield;
  overflow: hidden !important;
}
.flatpickr-current-month input.cur-year::-webkit-inner-spin-button,
.flatpickr-current-month input.cur-year::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}

/* Navigation arrows (‹ ›) */
.flatpickr-prev-month,
.flatpickr-next-month {
  color: #fff !important;
  fill: #fff !important;
  transition: all 0.3s ease;
}
.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  color: #f1c40f !important;
  fill: #f1c40f !important;
}

/* Weekday headers (Sun, Mon, Tue...) */
.flatpickr-weekdays {
  background: #2c3468;
}
span.flatpickr-weekday {
  color: #f1c40f !important; /* gold text */
  font-weight: 600;
  font-size: 0.9rem;
}

/* Days grid */
.flatpickr-day {
  border-radius: 8px;
  transition: all 0.2s ease;
}

/* Selected day */
.flatpickr-day.selected {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff !important;
  border-radius: 8px;
}

/* Today */
.flatpickr-day.today {
  border: 2px solid #f1c40f;
  color: #2d3748;
  font-weight: 600;
}

/* Hover effect */
.flatpickr-day:hover {
  background: #f1c40f;
  color: #fff !important;
  border-radius: 8px;
}

/* ✅ Hide unwanted scrollbars inside flatpickr */
.flatpickr-calendar * {
  scrollbar-width: none;          /* Firefox */
}
.flatpickr-calendar *::-webkit-scrollbar {
  display: none;                  /* Chrome, Safari */
}

/* Forms  */
label:after {
  content: " *";
  color: red;
}


/* Smooth Fade Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ========================
   About Section (Override)
========================= */
/* About Section Styling */
.about-section p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #4a4a4a;
}

.about-section strong {
  font-weight: 600;
  color: #2c3468; /* BNX brand navy */
}

.about-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  color: #2c3468;
}

/* Add padding to About Section container */
.about-section .container {
  padding-left: 40px;
  padding-right: 40px;
}



.subtitle {
  text-align: center;
  color: #6c757d;
  font-style: italic;
  margin-bottom: 10px;
}

/* ==============================
   Request Quote Page Styles
   ============================== */
.request-quote-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa, #eef2f7);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.request-quote-container {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  max-width: 750px;
  width: 100%;
  animation: fadeInUp 0.6s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.request-quote-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(58, 65, 122, 0.2);
}

.request-quote-container h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #2d3748;
  font-size: 2.2rem;
  font-weight: 700;
}

.request-quote-container p {
  text-align: center;
  margin-bottom: 35px;
  color: #555;
  font-size: 1rem;
}

.request-quote-container .form-group {
  margin-bottom: 25px;
}

.request-quote-container .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2d3748;
  font-size: 0.95rem;
}

.request-quote-container .form-group input,
.request-quote-container .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 1rem;
  background: #f9fafb;
  transition: all 0.3s ease;
}

.request-quote-container .form-group textarea {
  min-height: 120px; /* ✅ Fix for description box */
  resize: vertical;
}

.request-quote-container .form-group input:focus,
.request-quote-container .form-group textarea:focus {
  outline: none;
  border-color: #3a417a;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(58, 65, 122, 0.2);
}

/* Submit Button */
.request-quote-container .request-demo-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #060c3a, #0c0116);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(58, 65, 122, 0.3);
}

.request-quote-container .request-demo-btn:hover {
  background: linear-gradient(135deg, #f1c40f, #f39c12);
  color: #2d3748;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(241, 196, 15, 0.4);
}




  /* --- Fix alignment of intlTelInput field --- */
  .iti {
    width: 100% !important;
    overflow: visible !important;
  }
  .iti input {
    width: 100% !important;
    padding-left: 52px !important; /* space for flag dropdown */
  }
  .iti__flag-container {
    z-index: 5; /* avoid blocking input typing */
  }

  .btn-primary {
  background: linear-gradient(135deg, #f1c40f, #f39c12);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
}

/* Cyber Security Page Enhancements */
.cyber-security-section {
  background: #f8f9fa;
  padding: 60px 20px;
}

.cyber-security-section h2 {
  font-size: 2.5rem;
  color: #2c3468;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.cyber-security-section p {
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

.cyber-list {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.cyber-list h3 {
  font-size: 1.4rem;
  color: #2c3468;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.cyber-list ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.cyber-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #2d3748;
  line-height: 1.6;
}

.cyber-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #f1c40f; /* BNX gold */
  font-weight: bold;
  font-size: 1.1rem;
}


/* Software Solutions Page */
.software-solutions-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.software-header {
  text-align: center;
  margin-bottom: 40px;
}

.software-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.software-images img {
  height: 180px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  object-fit: cover;
}

.intro-text {
  font-size: 1.1rem;
  margin: 20px 0 40px;
  text-align: center;
}

.highlight-link {
  color: midnightblue;
  font-weight: bold;
}

.software-section {
  margin-bottom: 40px;
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.software-section h2 {
  font-size: 1.5rem;
  color: #2c3468;
  font-weight: 700;
  margin-bottom: 15px;
}

.software-section p,
.software-section ul {
  font-size: 1rem;
  color: #2d3748;
  line-height: 1.6;
}

.software-section ul {
  list-style: disc;
  padding-left: 20px;
}

/* IT Support Page */
.it-support-page .header h1 {
  color: rgb(33, 33, 95);
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
}

.sale-section {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin: 40px 0;
  position: relative;
}

.sale-badge {
  background: linear-gradient(45deg, #ff6b6b, #d32f2f);
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: bold;
  position: absolute;
  top: -1rem;
  right: -1rem;
  transform: rotate(15deg);
  font-size: 2rem;
}

.section-title {
  color: rgb(33, 33, 95);
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.pricing-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.price-original {
  color: #666;
  text-decoration: line-through;
  font-size: 1.2rem;
  margin: 10px 0;
}

.price-new {
  color: rgb(33, 33, 95);
  font-size: 1.4rem;
  font-weight: bold;
  margin: 10px 0;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkmark {
  color: #22c55e;
  font-size: 1.2rem;
}

.table-container {
  overflow-x: auto;
  margin: 40px 0;
  padding: 0 20px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.pricing-table th {
  background: rgb(33, 33, 95);
  color: white;
  padding: 15px;
  text-align: left;
}

.pricing-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.pricing-table tr:hover {
  background-color: rgba(162, 194, 226, 0.1);
}

.key-features {
  background: white;
  border-radius: 16px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.key-features ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.key-features li {
  display: flex;
  align-items: start;
  gap: 10px;
}

.key-features li::before {
  content: "✓";
  color: #22c55e;
  font-weight: bold;
}

/* Fix for feature checklists inside service & pricing sections */
.features-list {
  margin-top: 15px;
  display: grid;
  gap: 8px;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #2d3748;
}

.checkmark {
  color: #22c55e;
  font-weight: bold;
  margin-right: 8px;
}


/* Career */
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 1rem;
  background: #f9fafb;
  transition: all 0.3s ease;
  min-height: 120px;
  resize: vertical;
}

.form-group textarea:focus {
  outline: none;
  border-color: #3a417a;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(58, 65, 122, 0.2);
}

/* === Reviews Page Layout === */
.reviews-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;   /* left column wider for comments */
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;              /* prevent right box from stretching */
}

/* Individual review block */
.review-item {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0; /* subtle divider instead of heavy <hr> */
}

.review-name {
  font-weight: 700;
  color: #2c3468; /* BNX navy */
  margin-bottom: 4px;
}

.review-meta {
  font-size: 12px;
  font-weight: 500;
  color: #6c757d; /* muted gray */
  margin-bottom: 6px;
}


/* Fix service-item lists to use checkmarks instead of default bullets */
.service-item ul {
  list-style: none;         /* remove browser bullets */
  padding-left: 0;          /* reset default padding */
  margin: 20px 0 0;
  text-align: left;         /* keeps them left aligned inside card */
}

.service-item ul li {
  position: relative;
  padding-left: 28px;       /* space for checkmark */
  margin-bottom: 12px;
  font-size: 1rem;
  color: #2d3748;
  line-height: 1.6;
}

.service-item ul li::before {
  content: "✔";             /* custom checkmark */
  position: absolute;
  left: 0;
  top: 0;
  color: #f1c40f;           /* BNX gold */
  font-weight: bold;
  font-size: 1.1rem;
}


/* === Customer Profiles Only === */
.customer-profiles-section {
  padding: 30px 15px;
}

.customer-profiles-container {
  max-width: 1200px;   /* keeps it centered but wide */
  margin: 0 auto;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.customer-profiles-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.95rem;
}

.customer-profiles-table thead {
  background: #2c3468;   /* BNX navy */
  color: #fff;
}

.customer-profiles-table th,
.customer-profiles-table td {
  padding: 12px 16px;
  text-align: left;
}

.customer-profiles-table tbody tr:nth-child(even) {
  background: #f8f9fa;   /* light gray */
}

.customer-profiles-table tbody tr:hover {
  background: #f1f1f1;
}

.customer-search {
  display: flex;
  gap: 8px;
}

.customer-search input[type="text"] {
  flex: 1;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.customer-search input[type="button"] {
  padding: 6px 14px;
  border: none;
  border-radius: 6px;
  background: #f1c40f;
  color: #2c3468;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.customer-search input[type="button"]:hover {
  background: #e67e22;
  color: #fff;
}



/* Employee Profile  */


/* ========================================
   BNX Profile Custom Styles
   Add this to your existing style.css file
   ======================================== */

.bnx-profile-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Profile Header Styles */
.bnx-profile-header {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 30px;
  border-radius: 20px;
  color: white;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bnx-profile-avatar {
  position: relative;
  margin-right: 30px;
}

.bnx-avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.3);
  object-fit: cover;
}

.bnx-status-indicator {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: #4ade80;
  border: 3px solid white;
  border-radius: 50%;
}

.bnx-profile-info {
  flex: 1;
}

.bnx-profile-name {
  margin: 0 0 8px 0;
  font-size: 2.2rem;
  font-weight: 700;
}

.bnx-profile-username {
  opacity: 0.8;
  margin: 0 0 12px 0;
  font-size: 1.1rem;
}

.bnx-profile-designation {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
}

.bnx-designation-icon {
  height: 20px;
  margin-right: 8px;
  filter: brightness(0) invert(1);
}

.bnx-profile-actions {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

/* Grid Layout Styles */
.bnx-profile-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
}

/* Card Styles */
.bnx-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #f1f5f9;
  margin-bottom: 20px;
  overflow: hidden;
}

.bnx-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid #f1f5f9;
  background: #fafbfc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bnx-card-header h4,
.bnx-card-header h5 {
  margin: 0;
  color: #1e293b;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bnx-card-body {
  padding: 24px;
}

/* About Card Styles */
.bnx-about-text {
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Stats Card Styles */
.bnx-stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.bnx-stat-item:last-child {
  border-bottom: none;
}

.bnx-stat-label {
  color: #64748b;
  font-weight: 500;
}

.bnx-stat-value {
  color: #1e293b;
  font-weight: 700;
  font-size: 1.1rem;
}

.bnx-toggle-indicator {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  background: #ef4444;
  color: white;
}

.bnx-toggle-indicator.bnx-toggle-active {
  background: #10b981;
}

/* Details Grid Styles */
.bnx-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.bnx-detail-item .bnx-detail-label {
  display: block;
  color: #64748b;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bnx-detail-item .bnx-detail-value {
  margin: 0;
  color: #1e293b;
  font-weight: 500;
  font-size: 1rem;
}

/* Address Grid Styles */
.bnx-address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.bnx-address-item .bnx-address-label {
  display: block;
  color: #64748b;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bnx-address-item .bnx-address-value {
  margin: 0;
  color: #1e293b;
  line-height: 1.5;
}

/* Shares Table Styles */
.bnx-table-responsive {
  overflow-x: auto;
}

.bnx-shares-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.bnx-shares-th {
  background: #f8fafc;
  color: #475569;
  font-weight: 600;
  padding: 16px 12px;
  text-align: left;
  border-bottom: 2px solid #e2e8f0;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.bnx-shares-td {
  padding: 16px 12px;
  border-bottom: 1px solid #f1f5f9;
  color: #1e293b;
}

.bnx-shares-row:hover {
  background: #f8fafc;
}

.bnx-row-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #3b82f6;
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
}

.bnx-quantity-value {
  color: #1e293b;
  font-weight: 700;
}

.bnx-transaction-badge {
  padding: 4px 12px;
  background: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.bnx-empty-state {
  padding: 60px 20px !important;
  text-align: center;
}

.bnx-empty-content {
  color: #94a3b8;
}

.bnx-empty-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.bnx-empty-text {
  margin: 0;
}

/* Button Styles */
.bnx-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.bnx-btn-primary {
  background: #3b82f6;
  color: white;
}

.bnx-btn-primary:hover {
  background: #2563eb;
  transform: translateY(-1px);
  color: white;
  text-decoration: none;
}

.bnx-btn-secondary {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.bnx-btn-secondary:hover {
  background: rgba(255,255,255,0.3);
  color: white;
  text-decoration: none;
}

.bnx-edit-btn {
  padding: 8px;
  background: #f1f5f9;
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
}

.bnx-edit-btn:hover {
  background: #e2e8f0;
  transform: scale(1.05);
  text-decoration: none;
}

.bnx-edit-icon {
  height: 20px;
  width: 20px;
}

/* Icon Styles */
.bnx-icon-mail,
.bnx-icon-user,
.bnx-icon-info,
.bnx-icon-chart,
.bnx-icon-location,
.bnx-icon-trending {
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .bnx-profile-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .bnx-profile-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .bnx-profile-actions {
    flex-direction: row;
  }
  
  .bnx-profile-avatar {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .bnx-profile-wrapper {
    padding: 15px;
  }
  
  .bnx-profile-header {
    padding: 20px;
  }
  
  .bnx-profile-name {
    font-size: 1.8rem;
  }
  
  .bnx-details-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .bnx-address-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .bnx-card-body {
    padding: 20px;
  }
  
  .bnx-shares-table {
    font-size: 0.8rem;
  }
  
  .bnx-shares-th,
  .bnx-shares-td {
    padding: 12px 8px;
  }
}

@media (max-width: 480px) {
  .bnx-avatar-img {
    width: 80px;
    height: 80px;
  }
  
  .bnx-profile-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .bnx-btn {
    justify-content: center;
  }
}



/* =========================
   ENHANCED MOBILE RESPONSIVENESS
   ========================= */

/* Mobile First - Extra Small devices (320px to 480px) */
@media (max-width: 480px) {
    /* Compact Mobile Header */
    .site-header {
        padding: 6px 12px;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        min-height: auto;
    }
    
    .header-container {
        flex-direction: column;
        gap: 6px;
        align-items: center;
        padding: 0;
        width: 100%;
    }
    
    /* Logo Section - Compact */
    .logo {
        text-align: center;
        margin-bottom: 2px;
    }
    
    .logo-img {
        height: 26px;
    }
    
    .tagline {
        font-size: 7px;
        text-align: center;
        margin-top: 1px;
        opacity: 0.8;
    }
    
    /* Horizontal Scroll Navigation */
    .main-nav {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .main-nav::-webkit-scrollbar {
        display: none;
    }
    
    .main-nav ul {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        padding: 4px 0;
        margin: 0;
        min-width: max-content;
        justify-content: flex-start;
    }
    
    .main-nav ul li {
        flex-shrink: 0;
    }
    
    .main-nav ul li a {
        padding: 5px 10px;
        font-size: 10px;
        white-space: nowrap;
        min-height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
    }
    
    /* CTA Button Styling */
    .main-nav > ul > li:first-child > a {
        background: linear-gradient(135deg, #f1c40f, #f39c12);
        color: #fff;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(241, 196, 15, 0.3);
        padding: 5px 14px;
    }
    
    /* Mega Menu Mobile */
    .mega-menu {
        position: fixed;
        top: 100%;
        left: 10px;
        right: 10px;
        width: calc(100vw - 20px);
        max-width: none;
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
        z-index: 9999;
    }
    
    /* Body offset for fixed header */
    body {
        padding-top: 80px;
    }
    
    /* Hero Mobile */
    .hero-section {
        min-height: 250px;
        margin-top: -80px;
        padding-top: 80px;
    }
    
    .hero-slide img {
        width: 100%;
        height: auto;
        min-height: 200px;
        object-fit: cover;
    }
    
    /* Sections Mobile */
    .services-section,
    .product-section,
    .testimonials-section,
    .locations-section,
    .about-section {
        padding: 25px 12px;
    }
    
    /* Typography Mobile */
    .services-section h2,
    .product-section h2,
    .testimonials-section h2,
    .locations-section h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
        text-align: center;
    }
    
    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 0;
    }
    
    .service-item {
        padding: 25px 15px;
        margin-bottom: 0;
    }
    
    .service-item h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .service-icon {
        height: 80px;
        margin-bottom: 15px;
    }
    
    .service-icon img {
        max-width: 70px;
        max-height: 70px;
    }
    
    /* Product Section Mobile */
    .product-section {
        min-height: 300px;
    }
    
    .product-slideshow {
        top: 0;
    }
    
    .product-slide img {
        min-height: 250px;
        object-fit: cover;
    }
    
    .product-cta {
        bottom: 15px;
        left: 15px;
        right: 15px;
        text-align: center;
        position: absolute;
    }
    
    .request-demo-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        min-height: 44px;
        border-radius: 25px;
    }
    
  
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
    }
    
    .testimonial {
        padding: 20px 15px;
        margin-bottom: 0;
    }
    
    .testimonial p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .testimonial cite {
        font-size: 0.9rem;
    }
    
    /* Locations Mobile */
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
    }
    
    .location-header {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .location-info {
        padding: 15px;
    }
    
    .location-info p {
        font-size: 0.9rem;
        word-break: break-word;
        margin-bottom: 10px;
    }
    
    /* Footer Mobile */
    .site-footer {
        padding: 20px 12px 15px;
    }
    
    .footer-content {
        padding-inline: 0;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-bottom: 15px;
    }
    
    .footer-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .footer-nav ul li a {
        padding: 8px 12px;
        font-size: 10px;
        min-height: 36px;
    }
    
    .visit-count {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .footer-social {
        margin: 12px 0;
        padding: 8px 0;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        margin: 0 4px;
        font-size: 14px;
    }
    
    .footer-bottom {
        font-size: 10px;
        padding: 8px;
        text-align: center;
    }
    
    /* Messages Mobile */
    .messages {
        right: 10px;
        left: 10px;
        top: 90px;
        max-width: none;
    }
    
    .alert1 {
        font-size: 12px;
        padding: 12px 15px;
        margin-bottom: 8px;
    }
    
    /* Forms Mobile */
    .book-demo-section,
    .request-quote-section {
        padding: 40px 12px;
    }
    
    .form-container,
    .request-quote-container {
        padding: 30px 20px;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .form-container h2,
    .request-quote-container h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .iti {
        width: 100% !important;
    }
    
    .iti input {
        width: 100% !important;
        padding-left: 48px !important;
        font-size: 16px !important;
    }
    
    /* Reviews Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 12px;
    }
    
    .review-item {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .review-name {
        font-size: 0.95rem;
    }
    
    .review-meta {
        font-size: 11px;
    }
}

/* Ultra Small Screens (320px and below) */
@media (max-width: 320px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }
    
    .logo {
        text-align: left;
    }
    
    .main-nav {
        position: relative;
    }
    
    /* Show only CTA button on ultra small screens */
    .main-nav ul li:not(:first-child) {
        display: none;
    }
    
    .main-nav ul li:first-child a {
        padding: 8px 16px;
        font-size: 10px;
    }
    
    /* Menu indicator */
    .main-nav::after {
        content: "⋯";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(58, 65, 122, 0.1);
        color: #3a417a;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 16px;
        cursor: pointer;
    }
    
    body {
        padding-top: 70px;
    }
    
    .hero-section {
        margin-top: -70px;
        padding-top: 70px;
    }
    
    .messages {
        top: 80px;
    }
}

/* Small Mobile devices (481px to 600px) */
@media (min-width: 481px) and (max-width: 600px) {
    .site-header {
        padding: 8px 15px;
    }
    
    body {
        padding-top: 85px;
    }
    
    .header-container {
        gap: 8px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .tagline {
        font-size: 8px;
    }
    
    .main-nav ul li a {
        padding: 6px 12px;
        font-size: 11px;
        min-height: 32px;
    }
    
    .main-nav > ul > li:first-child > a {
        padding: 6px 16px;
    }
    
    .hero-section {
        min-height: 300px;
        margin-top: -85px;
        padding-top: 85px;
    }
    
    .services-grid,
    .testimonials-grid,
    .locations-grid {
        padding: 25px 0;
    }
    
    .services-section,
    .product-section,
    .testimonials-section,
    .locations-section {
        padding: 30px 15px;
    }
    
    .request-demo-btn {
        font-size: 1rem;
        padding: 14px 30px;
    }
    
    .form-container,
    .request-quote-container {
        padding: 35px 25px;
    }
    
    .messages {
        top: 95px;
    }
}

/* Tablet Portrait (601px to 768px) */
@media (min-width: 601px) and (max-width: 768px) {
    .site-header {
        padding: 10px 20px;
    }
    
    body {
        padding-top: 90px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .tagline {
        font-size: 9px;
    }
    
    .main-nav ul {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav ul li a {
        padding: 8px 14px;
        font-size: 12px;
        min-height: 36px;
    }
    
    .mega-menu {
        left: 20px;
        right: 20px;
        width: calc(100vw - 40px);
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-section {
        min-height: 350px;
        margin-top: -90px;
        padding-top: 90px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .product-cta {
        bottom: 25px;
        left: 25px;
    }
    
    .request-demo-btn {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-nav ul li a {
        font-size: 12px;
        min-height: 40px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .messages {
        top: 100px;
    }
}

/* Tablet Landscape (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .site-header {
        position: sticky;
        padding: 8px 30px;
    }
    
    body {
        padding-top: 0;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0;
        gap: 20px;
    }
    
    .logo {
        text-align: left;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .tagline {
        font-size: 10px;
    }
    
    .main-nav {
        overflow: visible;
    }
    
    .main-nav ul {
        gap: 15px;
        flex-wrap: nowrap;
        min-width: auto;
    }
    
    .main-nav ul li a {
        padding: 8px 14px;
        font-size: 13px;
        min-height: 40px;
    }
    
    .mega-menu {
        position: absolute;
        top: calc(100% + 0px);
        right: 0;
        left: auto;
        width: min(85vw, 700px);
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-section {
        min-height: 400px;
        margin-top: 0;
        padding-top: 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 30px;
    }
    
    .testimonials-grid,
    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
    
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-nav ul {
        gap: 18px;
        flex-wrap: nowrap;
    }
    
    .reviews-grid {
        grid-template-columns: 2fr 1fr;
        gap: 35px;
    }
}

/* Landscape Orientation on Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .site-header {
        padding: 4px 15px;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
    }
    
    .logo {
        text-align: left;
    }
    
    .logo-img {
        height: 22px;
    }
    
    .tagline {
        display: none;
    }
    
    .main-nav ul {
        gap: 6px;
    }
    
    .main-nav ul li a {
        padding: 4px 8px;
        font-size: 10px;
        min-height: 26px;
    }
    
    .main-nav > ul > li:first-child > a {
        padding: 4px 10px;
    }
    
    body {
        padding-top: 45px;
    }
    
    .hero-section {
        min-height: 200px;
        margin-top: -45px;
        padding-top: 45px;
    }
    
    .messages {
        top: 55px;
    }
}

/* Touch Device Optimizations */
@media (pointer: coarse) {
    .main-nav ul li a,
    .footer-nav ul li a,
    .footer-social a,
    .request-demo-btn,
    .btn {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-item,
    .testimonial,
    .location-card {
        transition: transform 0.2s ease;
    }
    
    .service-item:active,
    .testimonial:active,
    .location-card:active {
        transform: scale(0.98);
    }
}

/* Accessibility & Motion Preferences */
@media (prefers-reduced-motion: reduce) {   
    .hero-slide,
    .product-slide {
        transition: opacity 0.1s ease;
    }
  
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .site-header {
        border-bottom: 2px solid;
        background: rgba(255, 255, 255, 1);
    }
    
    .main-nav ul li a:hover,
    .footer-nav ul li a:hover {
        outline: 2px solid;
        outline-offset: 2px;
    }
    
    .service-item:hover,
    .testimonial:hover,
    .location-card:hover {
        outline: 3px solid;
        outline-offset: 3px;
    }
}

/* Prevent Horizontal Scroll */
* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
}

section {
    width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Additional Mobile Touch Improvements */
@media (max-width: 768px) {
    button,
    .request-demo-btn {
        -webkit-appearance: none;
        border-radius: 8px;
        cursor: pointer;
    }
    
    input,
    select,
    textarea {
        -webkit-appearance: none;
        border-radius: 8px;
    }
    
    /* Better spacing for mobile */
    .service-item,
    .testimonial,
    .location-card {
        margin-bottom: 20px;
    }
    
    /* Improve readability on mobile */
    body {
        font-size: 16px;
        line-height: 1.5;
    }
}

/* Product Cards - Mobile Fix */
@media (max-width: 480px) {
  .product-section h2 {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }

  .product-slideshow, 
  .product-slide {
    padding: 0 5px;
    text-align: center;
  }

  .product-slide img {
    max-width: 100%;
    height: auto;
    margin-bottom: 7px;
    object-fit: contain;
  }

  .product-slide h3 {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .product-slide ul {
    padding-left: 18px;
    font-size: 0.85rem;
    text-align: left;
  }

  .product-cta {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 8px;
    text-align: center;
  }

  .product-cta .request-demo-btn {
    width: 100%;
    max-width: 98%;
    font-size: 0.9rem;
    padding: 5px 8px;
    border-radius: 20px;
  }
}
/* Services Section Mobile Fix */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr 1fr; /* 2 per row instead of 1 */
    gap: 12px;
    padding: 10px 0;
  }

  .service-item {
    padding: 15px 10px;
    margin-bottom: 0;
    border-radius: 12px;
  }

  .service-icon {
    height: 60px;
    margin-bottom: 10px;
  }

  .service-icon img {
    max-width: 50px;
    max-height: 50px;
  }

  .service-item h3 {
    font-size: 0.8rem;
    line-height: 1.2;
    text-align: center;
  }
}

/* Small Tablets: keep balance */
@media (min-width: 481px) and (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 18px;
  }

  .service-item h3 {
    font-size: 0.9rem;
  }
}














/* Extra  */


.mega-menu-column ul::-webkit-scrollbar {
  display: none;             /* hide scrollbar in Chrome/Safari */
}


/* Style the OTP + Registration buttons */
#btn-send-otp, 
#btn-complete {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  border: none;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0e0131, #060e4e);
  cursor: pointer;
  transition: all 0.3s ease;
}

#btn-send-otp:hover,
#btn-complete:hover {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
}

/* Ensure text feedback looks neat */
#verify_text_div {
  font-size: 0.9rem;
  margin-top: 10px;
}

/* Red highlight for form errors */
input.is-invalid {
  border: 1px solid #dc3545 !important; /* Bootstrap red */
  background-color: #f8d7da;            /* light red background */
}

.alert-danger {
  font-size: 0.9rem;
  padding: 6px 10px;
  margin-top: 5px;
  border-radius: 4px;
}




/* =========================
   Hero Section (Mobile Sliding Fixed)
   ========================= */
@media (max-width: 768px) {
    .hero-section {
        min-height: 300px;  /* set a safe height for mobile */
        overflow: hidden;
    }

    .hero-slideshow {
        width: 100%;
        height: 300px;  /* match min-height above */
        position: relative;
        overflow: hidden;
    }

    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
    }

    .hero-slide.active {
        opacity: 1;
        z-index: 1;
    }

    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;  /* ✅ full image shows, no cropping */
    }
}




/* =========================
   Trusted By Section
   ========================= */
/* Trusted By Section - Minimal (JS Controlled) */
.trusted-section {
    padding: 40px 0;
    text-align: center;
    background: #f8f9fa;
    overflow: hidden;
}

.trusted-container {
    max-width: 1400px;
    margin: 0 auto;
}

.trusted-section h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 30px;
    font-weight: 600;
}

.trusted-item img {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .trusted-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .trusted-section {
        padding: 25px 0;
    }
    .trusted-section h2 {
        font-size: 1.4rem;
    }
}


/* =========================
   Modern Header - Responsive
   ========================= */

/* Reset any body/html spacing issues */
body {
    margin: 0;
    padding: 0;
}

.site-header {
    background: rgba(240, 240, 240, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 20px;
    border-bottom: 1px solid rgba(221, 221, 221, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    margin: 0;
}

.site-header.scrolled {
    background: rgba(240, 240, 240, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.site-header:hover {
    background: rgba(240, 240, 240, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
}

.logo-link {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 35px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(58, 65, 122, 0.15));
    transition: filter 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 4px 12px rgba(58, 65, 122, 0.25));
}

.tagline {
    font-size: 11.5px;
    font-weight: 500;
    color: #3a417a;
    margin-top: 2px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo:hover .tagline {
    opacity: 1;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #3a417a;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Desktop Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #3a417a;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: transparent;
    border: 2px solid transparent;
    white-space: nowrap;
    display: block;
}

.main-nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.1), rgba(58, 65, 122, 0.05));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.main-nav ul li a:hover {
    color: #2c3468;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 65, 122, 0.15);
    border-color: rgba(241, 196, 15, 0.3);
}

.main-nav ul li a:hover::before {
    opacity: 1;
}

.main-nav ul li a:active {
    transform: translateY(0);
}

/* CTA button style for first nav item */
.main-nav > ul > li:first-child > a {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
}

.main-nav > ul > li:first-child > a:hover {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(241, 196, 15, 0.4);
    color: #fff;
    border-color: transparent;
}

/* Mega Menu Base */
.has-mega-menu {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 0px);
    right: 0;
    left: auto;
    width: min(90vw, 800px);
    max-width: 100vw;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 24px;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    z-index: 3000;
    transition: all 0.3s ease;
    overflow: visible;
}

.site-header,
.header-container,
.main-nav,
.main-nav ul,
.main-nav > ul > li.has-mega-menu {
    overflow: visible;
}

.has-mega-menu:hover .mega-menu,
.has-mega-menu:focus-within .mega-menu {
    display: grid;
}

.mega-menu:hover {
    display: grid;
}

/* Mega Menu Columns */
.mega-menu-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #f39c12;
}

.mega-menu-column ul {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px;
    white-space: normal !important;
    overflow-x: visible !important;
    padding: 10px 10px;
    list-style: none;
    margin: 0;
}

.mega-menu-column ul li {
    display: inline-block !important;
    margin: 0 !important;
}

.mega-menu-column ul li a {
    text-transform: none !important;
    text-decoration: none;
    color: #2c3468;
    font-size: 13px;
    transition: color 0.2s ease;
}

.mega-menu-column ul li a:hover {
    color: #f39c12;
}

/* =========================
   RESPONSIVE BREAKPOINTS
   ========================= */

/* Tablet and below (1024px) */
@media screen and (max-width: 1024px) {
    .site-header {
        padding: 8px 15px;
    }
    
    .main-nav ul {
        gap: 16px;
    }
    
    .main-nav ul li a {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .tagline {
        font-size: 10px;
    }
}
/* Mobile (768px and below) */
@media screen and (max-width: 768px) {
    .site-header {
        padding: 8px 15px;
    }
    
    .header-container {
        position: relative;
    }
    
    .logo {
        flex: 0 0 auto;
    }
    
    /* Show tagline on mobile */
    .tagline {
        display: block;
        font-size: 7.5px;
        margin-top: 2px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 8px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 2.5px;
    }
    
    .main-nav {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        padding: 20px;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 999;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(221, 221, 221, 0.3);
    }
    
    .main-nav ul li a {
        width: 100%;
        text-align: left;
        padding: 15px 10px;
        border-radius: 0;
        font-size: 14px;
    }
    
    .main-nav ul li a:hover {
        transform: translateX(5px);
        box-shadow: none;
    }
    
    /* Mobile Mega Menu */
    .has-mega-menu .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 10px 0 10px 20px;
        background: rgba(240, 240, 240, 0.5);
        grid-template-columns: 1fr;
        gap: 15px;
        display: none;
    }
    
    .has-mega-menu.active .mega-menu {
        display: grid;
    }
    
    .mega-menu-column h4 {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .mega-menu-column ul {
        padding: 5px 0;
        gap: 8px;
    }
    
    .mega-menu-column ul li a {
        font-size: 12px;
        padding: 8px 5px;
    }
    
    /* Mobile overlay */
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    .mobile-overlay.active {
        display: block;
    }
}

/* Small mobile (480px and below) */
@media screen and (max-width: 480px) {
    .site-header {
        padding: 6px 10px;
    }
    
    .logo-img {
        height: 25px;
    }
    
    .tagline {
        font-size: 6.5px;
    }
    
    .main-nav {
        width: 100%;
        right: -100%;
    }
}