.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.schedule-header {
    background: var(--secondary-color);
    background-size: cover;
    padding: 80px 0;
    text-align: center;
}

.schedule-header h1 {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.schedule-header h1 span {
    color: var(--accent-color);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
}

.breadcrumb-item a {
    color: inherit;
    text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    padding: 0 10px;
    color: var(--accent-color);
}

.schedule-section {
    padding: 80px 0;
}

.schedule-form-container {
    background: var(--white-color);
    box-shadow: 0px 4px 40px 0px #0000000F;
    border: 1px solid var(--dark-divider-color);
    border-radius: 30px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
}

.form-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.form-title h2 span {
    color: var(--accent-color);
}

.form-title p {
    margin: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background-color: transparent;
    border: 1px solid var(--dark-divider-color);
    border-radius: 10px;
    color: var(--primary-color);
    font-family: var(--default-font);
    font-size: 16px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    outline: none;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-default {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5em;
    color: var(--white-color);
    background: var(--accent-color);
    text-transform: capitalize;
    padding: 14px 50px 14px 20px;
    border-radius: 99px;
    border: none;
    transition: all 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.btn-default:hover {
    background-color: transparent;
}

.btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--white-color);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 10px auto;
    transform: translate(-10px, -50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover:before {
    transform: translate(-10px, -50%) rotate(45deg);
    background-size: 10px auto;
}

.btn-default::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    border-radius: 99px;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::after {
    width: 100%;
}

.form-footer {
    text-align: center;
    margin-top: 30px;
}

.form-footer p {
    margin: 0;
    font-size: 14px;
}

.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

.is-invalid ~ .invalid-feedback {
    display: block;
}

@media (max-width: 991px) {
    .schedule-header h1 {
        font-size: 36px;
    }

    .schedule-form-container {
        padding: 30px;
    }

    .form-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .schedule-header {
        padding: 60px 0;
    }

    .schedule-header h1 {
        font-size: 28px;
    }

    .schedule-section {
        padding: 60px 0;
    }

    .schedule-form-container {
        padding: 20px;
    }

    .form-title h2 {
        font-size: 24px;
    }

    .form-control {
        padding: 12px 15px;
    }
}

.demo-container {
  display: flex;
  flex-direction: column; /* Change from row to column */
  min-height: 100vh;
}

.demo-sidebar {
  width: 100%; /* Full width */
  background: var(--white);
  color: var(--primary-color);
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow-x: auto;
  /* Removed flex properties from here */
}



.demo-main {
  flex: 1;
  background: var(--white);
  overflow-y: auto;
  padding: 2rem 0;
  width: 100%;
}

/* Adjust sidebar logo and nav for top placement */
.sidebar-nav {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  justify-content: center; /* Center nav items horizontally */
}

.sidebar-logo img {
  max-width: 180px;
  filter: none; /* Remove inversion since background is white */
}

.sidebar-nav {
  display: flex; /* Horizontal nav items */
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  z-index: 9999;
}

.sidebar-nav li {
  margin-bottom: 0;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background-color: var(--accent-color);
  color: #fff;
}

.sidebar-nav i {
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

/* Browser window and other styles remain the same */
.browser-window {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  background-color: white;
  min-height: 900px;
}

.browser-header {
  background-color: #e0e0e0;
  padding: 12px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
}

.browser-buttons {
  display: flex;
  gap: 6px;
  margin-right: 12px;
}

.browser-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.browser-button.close { background-color: #ff5f56; }
.browser-button.minimize { background-color: #ffbd2e; }
.browser-button.maximize { background-color: #27ca3f; }

.address-bar {
  flex: 1;
  background-color: white;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 14px;
  color: #666;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.browser-content {
  height: 70vh;
  overflow: auto;
  position: relative;
}

.screenshot-container {
  width: 100%;
  height: auto;
}

.website-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

.scroll-indicator {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  display: none;
}

.col-lg-3 .col-md-6 a {
  color: inherit!important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .browser-window {
    width: 95%;
  }

  .browser-content {
    height: 60vh;
  }

  .sidebar-nav {
    flex-direction: column; /* Stack nav items vertically on small screens */
    gap: 5px;
  }
}

@media (max-width: 576px) {
  .browser-content {
    height: 300px;
  }

  .sidebar-nav a {
    padding: 8px 12px;
    font-size: 14px;
  }
}
