* {
  font-family: 'Rubik'!important;
}

.w-10 {
  width: 15%!important;
}

.service-card-modern {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.service-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* content area takes remaining height */

.service-content {
    flex-grow: 1;
    display: flex;
    align-items: stretch;
    padding: 1rem;
}

/* purple inner box now full height */

.service-inner {
    background: #f2e8ff;
    border-radius: 0.75rem;
    padding: 1rem 1.2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-modern:hover .service-inner {
    background: #e8dfff;
}

.service-inner h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #4b0082;
}

.service-inner p {
    color: #444;
    font-size: 0.95rem;
    margin-bottom: 0;
}


/* --- Add this to your CSS file --- */
.top-bar {
  background-color: #003263;
  padding: 0.75rem 0;
  font-size: 16px;
  line-height: 1.5;
}

.top-bar a.contact-link {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.top-bar a.contact-link:hover {
  color: #ffffff;
  transform: scale(1.05);
}

.top-bar .contact-link svg {
  margin-right: 8px;
  fill: currentColor; /* Makes the SVG inherit the link's color */
}
/* --- A Clean and Simple Navbar --- */
.navbar-simple {
  background-color: #ffffff;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Softer shadow */
  font-family: sans-serif; /* Clean font */
}

/* Logo size */
.navbar-simple .navbar-brand {
  max-width: 160px;
  padding: 0;
}

/* Styling for the navigation links */
.navbar-simple .nav-link {
  color: #333333; /* Dark grey for text */
  font-weight: 500;
  padding: 1rem;
  display: inline-flex;
  align-items: center!important;
  gap: 8px; /* Space between icon and text */
  border-radius: 6px;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

/* --- Simple Hover & Active Effect --- */
.navbar-simple .nav-link:hover,
.navbar-simple .nav-item.active .nav-link {
  color: #8c59ed; /* Your brand's purple */
  background-color: #f7f3ff; /* A very light lavender background */
}

/* Ensure SVG color matches text color */
.navbar-simple .nav-link svg {
  fill: currentColor;
}

/* "Request Quote" Button styling */
.navbar-simple .nav-btn {
  background-color: #8c59ed;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  padding: 0.6rem 1.5rem;
  transition: background-color 0.2s ease-in-out;
}

.navbar-simple .nav-btn:hover {
  background-color: #7038da; /* A darker purple on hover */
}

/* Spacing between menu items on desktop */
@media (min-width: 768px) {
  .navbar-simple .navbar-nav {
    gap: 0.5rem;
  }
}
/*code editor css*/
/* Mini IDE Section Scoped */
.mini-ide-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4ff, #e6f0ff);
    font-family: 'Poppins', sans-serif;
}

.mini-ide-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a2585;
    margin-bottom: 20px;
}

.mini-ide-section p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 20px;
}

.features {
    list-style: none;
    padding-left: 0;
}

.features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #444;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00c6ff;
    font-weight: bold;
}

/* Editor & IDE styling */
.editor-column {
    margin-top: 30px;
}

.ide-header {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

#languageSelect {
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-weight: 500;
    cursor: pointer;
}

#runBtn {
    margin-left: auto;
    background: #00c6ff;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
}

.editor-container {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.output-console {
    margin-top: 10px;
    background: #1e1e1e;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    height: 140px;
    overflow-y: auto;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.95rem;
}
#quoteModal .form-control,
#quoteModal .form-select {
    border-radius: 0.5rem;
    box-shadow: none;
}
.bg-primary1{
    background-color: #B13BDFFF;
}
#quoteModal .form-control:focus,
#quoteModal .form-select:focus {
    border-color: #f3c5ff;
    box-shadow: 0 0 0 0.2rem rgba(129, 26, 133, 0.25);
}

#quoteModal .btn-primary {
    background: linear-gradient(135deg, #851a80, #b13bdf);
    border: none;
    transition: background 0.3s ease;
}

#quoteModal .btn-primary:hover {
    background: linear-gradient(135deg, #3b4ddf, #1a2585);
}
.top-bar {
    background: #6400a1;
    padding: 8px 0;
}

.top-bar .contact-link {
    font-size: 0.9rem;
    color: #fff;
    padding: 4px 8px;
    white-space: nowrap;
    transition: color 0.3s;
}

.top-bar .contact-link:hover {
    color: #f04a4a;
}

.top-bar svg {
    font-size: 1.1rem;
}

/* Mobile adjustments */
@media (max-width: 575px) {
    .numbers-row a {
        flex: 1 1 auto; /* allow numbers to wrap evenly */
        justify-content: center;
    }
    .email-row a {
        justify-content: center;
    }
}

.sidebar-menu a {
    display: block;
    padding: 10px 15px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

.sidebar-menu a:hover {
    background: #f04a4a;
    color: #fff;
    border-radius: 5px;
}

.sidebar-menu .submenu-toggle::after {
    float: right;
    transition: transform 0.3s;
}

.sidebar-menu .submenu.show {
    display: block !important;
}

.sidebar-menu .submenu-toggle.collapsed::after {
    transform: rotate(-90deg);
}
.submenu-sidebar {
    width: 280px;
    z-index: 1055; /* higher than main sidebar */
}

.offcanvas-body a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.offcanvas-body a:hover {
    background: #f04a4a;
    color: #fff;
}
.w-sm-50{
    width: 50%;
}