 
     :root {
      --primary-color: blueviolet;
      --light-bg: whitesmoke;
      --dark-text: #1a1a1a;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--dark-text);
    }
/*NAV BAR STYLES*/
/* === Core Styles === */
.navbar-custom {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 0.75rem 1rem;
  min-height: 60px;
}

/* Logo */
.navbar-brand {
  width: 130px !important;
  min-width: 130px !important;
  max-width: 130px !important;
  overflow: hidden;
  z-index: 20;
}
.logo-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Hire Button */
.hire-now-btn {
  background-color: #5b57a4;
  color: white;
  padding: 6px 12px !important;
  border-radius: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-size: 0.9rem !important;
}

/* === Mobile Layout (Under 992px) === */
@media (max-width: 991.98px) {
  /* 1. NAVBAR CONTAINER */
  .navbar > .container-fluid {
    position: relative;
    min-height: 60px;
    padding-right: 0;
    max-width: 100vw;
    overflow: hidden;
  }

  /* 2. LOGO (LEFT) */
  .navbar-brand {
    width: 110px !important;
    min-width: 110px !important;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    margin: 0;
  }
  .logo-img {
    width: 100%;
    height: auto;
    max-height: 40px;
  }

  /* 3. HIRE BUTTON (CENTER) */
  .hire-btn-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    width: 100px;
    text-align: center;
    z-index: 10;
    margin-left: 55px;
    padding: 0;
  }

  /* 4. TOGGLER (RIGHT) */
  .navbar-toggler {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    z-index: 20;
    padding: 0.25rem;
  }

  /* 5. RIGHT-ALIGNED MENU */
  .navbar-collapse {
    position: fixed !important;
    right: 0 !important;
    left: auto !important;
    top: 60px;
    width: 80% !important;
    max-width: 300px !important;
    height: calc(100vh - 60px);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    z-index: 1001;
    box-shadow: -2px 0 15px rgba(0,0,0,0.1);
    will-change: transform;
  }
  
  .navbar-collapse.show {
    transform: translateX(0);
  }

  /* 6. MENU ITEMS - Enhanced visibility & touch */
  .navbar-nav {
    display: block !important;
    width: 100% !important;
    padding: 1.5rem 1rem;
    overflow-y: auto;
    height: 100%;
  }
  
  .nav-item {
    display: block;
    padding: 0 !important;
    margin: 0.5rem 0;
    border-bottom: 1px solid #f5f5f5;
  }
  
  .nav-link {
    color: #333 !important;
    font-weight: 500 !important;
    font-size: 1.05rem !important;
    padding: 0.75rem 1.25rem !important;
    display: block;
    border-radius: 6px;
    transition: background 0.2s ease;
  }
  
  .nav-link:hover,
  .nav-link:focus {
    background: #f8f9fa;
  }
  /* 8. Accessibility Improvements */
  .nav-link:focus {
    outline: 2px solid #5b57a4;
    outline-offset: -2px;
  }
}


/* === Desktop Layout (992px+) === */
@media (min-width: 992px) {
  /* Hide mobile elements */
  .navbar-mobile-container,
  .navbar-collapse.d-lg-none {
    display: none !important;
  }
  
  /* Show desktop structure */
  .d-none.d-lg-flex {
    display: flex !important;
  }

  /* Reset navbar container */
  .navbar > .container-fluid {
    flex-wrap: nowrap;
    padding: 0 1rem;
    overflow: visible !important;
  }

  /* Logo adjustments */
  .navbar-brand {
    width: auto !important;
    min-width: unset !important;
    position: static !important;
    transform: none !important;
    margin-right: 2rem !important;
  }

  /* Desktop menu container */
  .navbar-collapse:not(.d-lg-none) {
    display: flex !important;
    flex-basis: auto;
    flex-grow: 1;
  }

  /* Menu items */
  .navbar-nav {
    flex-direction: row !important;
    gap: 1.5rem;
    width: auto;
    padding: 0;
    margin: 0 0 0 auto !important;
  }

  /* Hire button */
  .hire-now-btn {
    padding: 8px 24px !important;
    font-size: 1rem !important;
    margin-left: 1.5rem !important;
  }
}

/* === Desktop Layout (992px+) === */
@media (min-width: 992px) {
  /* Hide mobile elements */
  .navbar-mobile-container,
  .navbar-collapse.d-lg-none {
    display: none !important;
  }
  
  /* Show desktop structure */
  .d-none.d-lg-flex {
    display: flex !important;
  }

  /* Reset navbar container */
  .navbar > .container-fluid {
    flex-wrap: nowrap;
    padding: 0 1rem;
    overflow: visible !important;
  }

  /* Logo adjustments */
  .navbar-brand {
    width: auto !important;
    min-width: unset !important;
    position: static !important;
    transform: none !important;
    margin-right: 2rem !important;
  }

  /* Desktop menu container */
  .navbar-collapse:not(.d-lg-none) {
    display: flex !important;
    flex-basis: auto;
    flex-grow: 1;
  }

  /* Menu items */
  .navbar-nav {
    flex-direction: row !important;
    gap: 1.5rem;
    width: auto;
    padding: 0;
    margin: 0 0 0 auto !important;
  }

  /* Hire button */
  .hire-now-btn {
    padding: 8px 24px !important;
    font-size: 1rem !important;
    margin-left: 1.5rem !important;
  }
}

   .hero-section {
      background-color: var(--light-bg);
      padding: 4rem 1rem;
      text-align: center;
    }

    .hero-section h1 {
      color: rgb(86, 71, 151);
      font-size: 2.5rem;
      font-weight: bold;
    }

    .hero-section p {
      font-size: 1.2rem;
      margin-top: 1rem;
    }

 .policy-box {
      background: var(--light-bg);
      border: none;
      border-radius: 15px;
      padding: 1.5rem;
      height: 100%;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
        }
        .policy-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .policy-box h2 {
      color: rgb(86, 71, 151);
      margin-bottom: 1rem;
        }
        .policy-box ul {
            padding-left: 20px;
            margin-bottom: 0;
        }
        .policy-box li {
            margin-bottom: 5px;
            text-align: left;
        }
        .policy-header {
            margin-bottom: 40px;
        }

        @media (max-width: 767.98px) {
            .policy-container {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                margin: 0 -15px;
                padding: 0 15px 20px;
            }
            .policy-container::-webkit-scrollbar {
                height: 5px;
            }
            .policy-container::-webkit-scrollbar-thumb {
                background: #ddd;
                border-radius: 10px;
            }
            .policy-container > .col-md-4 {
                flex: 0 0 auto;
                width: 85%;
                margin-right: 15px;
                scroll-snap-align: start;
            }
            .policy-container > .col-md-4:last-child {
                margin-right: 0;
            }
        }
/*=== T&Cs Styles ===*/

   .hero-section {
      background-color: var(--light-bg);
      padding: 4rem 1rem;
      text-align: center;
    }

    .hero-section h1 {
      color: rgb(86, 71, 151);
      font-size: 2.5rem;
      font-weight: bold;
    }

    .hero-section p {
      font-size: 1.2rem;
      margin-top: 1rem;
    }

 .terms-box {
      background: var(--light-bg);
      border: none;
      border-radius: 15px;
      padding: 1.5rem;
      height: 100%;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
        }
        .terms-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .terms-box h2 {
      color: rgb(86, 71, 151);
      margin-bottom: 1rem;
        }
        .terms-box ul {
            padding-left: 20px;
            margin-bottom: 0;
        }
        .terms-box li {
            margin-bottom: 5px;
            text-align: left;
        }
        .terms-header {
            margin-bottom: 40px;
        }

        @media (max-width: 767.98px) {
            .terms-container {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                margin: 0 -15px;
                padding: 0 15px 20px;
            }
            .terms-container::-webkit-scrollbar {
                height: 5px;
            }
            .terms-container::-webkit-scrollbar-thumb {
                background: #ddd;
                border-radius: 10px;
            }
            .terms-container > .col-md-4 {
                flex: 0 0 auto;
                width: 85%;
                margin-right: 15px;
                scroll-snap-align: start;
            }
            .terms-container > .col-md-4:last-child {
                margin-right: 0;
            }
        }

/*=== OUR Mission, Values and Vision ===*/

   .ourmvv-section {
      background-color: var(--light-bg);
      padding: 4rem 1rem;
      text-align: center;
    }

    .ourmvv-section h4 {
      color: rgb(86, 71, 151);
      font-size: 2.5rem;
      font-weight: bold;
    }

    .ourmvv-section p {
      font-size: 1.2rem;
      margin-top: 1rem;
    }


    /* ===== FOOTER STYLES ===== */

.footer-custom {
    background-color: #f6f2f9;
    color: #000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
}

.footer-custom h6 {
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-custom ul {
    padding-left: 0;
    list-style: none;
}

.footer-custom ul li {
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-custom ul li:hover {
    color: #999;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #4c438c;
    color: white;
    border-radius: 50%;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

.social-icon:hover {
    background-color: #3a3270;
    transform: scale(1.1);
}

.btn-get-hired {
    background-color: #4c438c;
    color: #fff;
    padding: 6px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-get-hired:hover {
    background-color: #3a3270;
}
.contact-info {
  margin-top: 1rem; /* Adds space between social icons and contact info */
}

@media (max-width: 768px) {
    .footer-custom .row > div {
        margin-bottom: 1.5rem;
    }
    
    .footer-custom .col-md-4,
    .footer-custom .col-sm-6 {
        text-align: center;
    }

    .footer-custom .social-icon {
        margin: 0 4px;
    }

    .btn-get-hired {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-custom .col-6 {
        margin-bottom: 1.5rem;
    }
    
    .footer-custom .row > div {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .footer-custom .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
      .d-flex.align-items-center {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .d-flex.align-items-center .ms-3 {
    margin-left: 0 !important;
    margin-top: 1rem;
  }
  
  .contact-info {
    margin-top: 1.5rem;
  }
}