/* ================
BRAND COLORS - 
================*/

:root {
  --colorBlue: #0085ff;
  --colorRed: #fe0908;
  --colorOrange: #ff7511;
  
  --btnGradient: linear-gradient(135deg, var(--colorRed), var(--colorOrange));
  --btnGradientHover: linear-gradient(135deg, var(--colorOrange), var(--colorRed));
  
  --colorLightGray: #f4f4f4;
  --colorDarkGray: #333333;

  --bgLight: #ffffff;
  --bgDark: #121212;
  --textLight: #121212;
  --textDark: #ffffff;
  
  --transitionSpeed: 0.3s ease;
  --animDuration: 0.8s;

  /* --fontPrimary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  */
  --fontPrimary: 'Inter', sans-serif; 
  --fontSecondary: 'Roboto', Arial, sans-serif;
  --fontHeading: 'Montserrat', sans-serif;
}





/* =============
GLOBAL STYLES 
================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;  
  overflow-y: scroll; 
}

body {
  width: 100%;
  font-family: var(--fontPrimary); 
  box-sizing: border-box;
  overflow-x: hidden;
  font-weight: 400;
  background-color: white;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}





/*==============================
HEADER STYLING
================================*/

 .headerContainer {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.671);
    /* background: rgba(255, 255, 255, 0.933); */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 5px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    z-index: 9999;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .headerWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 24px;
  }

  .logoContainer {
    flex-shrink: 0;
  }
  .logoImage {
    max-height: 50px;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
  }
  .logoImage:hover {
    transform: scale(0.9);
  }

  .navMenu {
    flex-grow: 1;
    margin-left: 32px;
    margin-right: 16px;
  }
  .navList {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0 100px 0 0;
    padding: 0;
    justify-content: flex-end;
  }
  .navItem {
    position: relative;
  }
  .navLink {
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 40px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .navLink:hover,
  .dropdownToggle:hover,
  .dropdownLink:hover {
    background-color: #f8fcff;
    color: #333333;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.08), -1px -1px 3px rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    transition: all 0.3s ease;
  }

  .dropdownMenu {
    position: absolute;
    top: 110%;
    left: 0;
    background: rgba(255, 255, 255, 0.95); 
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    backdrop-filter: blur(10px);
  }
  .dropdown:hover .dropdownMenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .dropdownMenu li {
    list-style: none;
  }
  .dropdownLink {
    display: block;
    padding: 14px 30px;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  .headsetBtn {
    background: linear-gradient(135deg, #0077ff, #00c6ff);
    border: none;
    cursor: pointer;
    padding: 11px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 119, 255, 0.596);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 
      box-shadow 0.3s ease,
      transform 0.3s ease,
      background 0.4s ease;
    position: relative;
    overflow: visible;
  }
  
  .headsetBtn i {
    color: white;
    transition: fill 0.3s ease;
    font-size: 14px;
  }
  
  .headsetBtn:hover {
    background: linear-gradient(135deg, #005ecb, #008fda);
    box-shadow: 0 2px 8px rgba(0, 95, 203, 0.453);
    transform: scale(1.1);
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 198, 255, 0.6);
    }
    70% {
      box-shadow: 0 0 15px 10px rgba(0, 198, 255, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 198, 255, 0);
    }
  }
  
  .headsetBtn.pulse {
    animation: pulse 2.5s infinite;
  }

  .hamburgerBtn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 23px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 24px;
  }
  .hamburgerBtn .bar {
    width: 100%;
    height: 2px;
    background-color: #0077ff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .hamburgerBtn:hover .bar {
    background-color: #004a99;
  }

  .sidebar {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 330px);
    background: rgb(253, 254, 255);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(50px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease;
    padding: 24px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    z-index: 10000;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.3);
  }

  .sidebar.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .sidebarList {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
  }
  .sidebarLink,
  .sidebarDropdownToggle {
    display: block;
    font-size: 15px;
    padding: 12px 16px;
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .sidebarLink:hover,
  .sidebarDropdownToggle:hover {
    background-color: #f8fcff;
    color: #333333;
    box-shadow: 1px 1px 5px rgba(255, 254, 254, 0.841), -1px -1px 5px rgba(255, 255, 255, 0.972);
    transform: translateY(-2px);
    transition: all 0.3s ease;
    border-radius: 5px;
  }
  .sidebarDropdownMenu {
    display: none;
  }
  .sidebarDropdown.open > .sidebarDropdownMenu {
    max-height: 500px; 
  }
  .sidebarDropdownLink {
    font-size: 10px;
    padding: 10px 16px;
    color: #111;
    display: block;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }
  .sidebarDropdownLink:hover {
    background-color: rgba(0,0,0,0.06);
  }

  .socialMedia {
    margin-bottom: 24px;
    padding-left: 10px;
  }
  .socialMedia p {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    color: #222;
    display: block;
    margin-bottom: 10px;
  }
  .socialLink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0077ff;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 13px;
    margin-right: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
  }
  .socialLink:hover {
    background: #004a99;
    transform: scale(1.1);
  }

  .closeSidebarBtn {
    display: block;
    margin: 30px auto 0;
    padding: 8px 14px;
    font-size: 11px;
    background: #ffffff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .closeSidebarBtn:hover {
    background: #f0f0f0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 900px) {
    .navMenu {
      display: none;
    }
    .hamburgerBtn {
      display: flex;
    }
    .searchContainer {
      margin-left: 8px;
    }
  }








/*==============================
PRELOADER 
================================*/
/* #preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e6e8fb, #e6f4f7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transition: opacity 0.5s ease-out;
}

#preloader img {
  width: 50px;
  height: 50px;
  background-color: black;
  border-radius: 7px;
  animation: colorChange 3s infinite alternate, scaleUp 0.8s ease-in-out infinite;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@keyframes colorChange {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

@keyframes scaleUp {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
} */









/*========================================================================
CUSTOM CURSOR - Customizable mouse cursor with dynamic size change on hover 
========================================================================*/

#customCursor {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

#ball {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 123, 255, 0.6);
  width: 35px;
  height: 35px;
  pointer-events: none;
  transition: all 0.2s ease;
}

#customCursor.hover #ball {
  transform: scale(1.5);
}

#customCursor.grow #ball {
  transform: scale(2); 
}


@media (max-width: 760px) {
#customCursor{
  display: none;
}
}






/* =================
SCROLL TRACKER
====================*/
.scrollTracker {
  position: fixed;
  left: 20px; 
  bottom: 20px; 
  width: 50px;
  height: 50px;
  border: 1px solid  #0085ff;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 9998;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scrollTracker.active {
  background-color: #0085ff;
  border-color: #0085ff;
}

.scrollIcon {
  font-size: 20px;
  color: white;
  transition: color 0.3s ease;
}

.scrollTracker.active .scrollIcon {
  color: white; 
}

@media (max-width: 768px) {
  .scrollTracker {
    width: 40px;
    height: 40px;
  }

  .scrollIcon {
    font-size: 15px;
  }
}







/* ==============
ONLINE TOAST
=================*/
.onlineToast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 14px 20px;
  background: rgba(0, 133, 255, 0.8);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateX(120%);
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
}

.showToast {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}


@media screen and (max-width: 500px) {
  .onlineToast {
    font-size: 12px;
    padding: 12px 18px;
    bottom: 16px;
    right: 16px;
  }
}








/* ----------------------
   FAQ SECTION 
------------------------- */
.faqSection {
  background-color: #ffffff;
  padding: 100px 0;
}

.faqContainer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.faqTitle {
  text-align: center;
  font-size: clamp(2rem, 4vw, 40px);
  margin-bottom: 60px;
  color: #0d1f29;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.faqGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.faqItem {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faqItem:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.faqHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #f0f4f965;
  transition: background-color 0.3s ease;
}

.faqHeader:hover {
  background-color: #f1f8ff;
}

.faqQuestion {
  font-size: 17px;
  font-weight: 500;
  color: #101820;
  margin: 0;
}

.faqArrow {
  font-size: 18px;
  transition: transform 0.3s ease;
  color: #0085ff;
}

.faqItem.open .faqArrow {
  transform: rotate(180deg);
}

.faqAnswer {
  display: none;
  padding: 18px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  background-color: #fdfdfd;
  border-radius: 0 0 14px 14px;
}

.faqItem.open .faqAnswer {
  display: block;
}

@media (max-width: 768px) {
  .faqGrid {
    grid-template-columns: 1fr;
  }

  .faqTitle {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .faqQuestion {
    font-size: 16px;
  }

  .faqAnswer {
    font-size: 14px;
  }
}














/* ----------------------------------
   SERVICE PAGE GET STARTED BUTTON
-------------------------------------*/

.allStartSection {
  padding: 90px 60px;
  background: #edf2fc;
  display: flex;
  justify-content: center;
}

.allStartCon {
  background-color: rgba(237, 242, 252, 0.85);
  padding: 50px;
  border-top-left-radius: 150px;
  border-bottom-right-radius: 150px;
  box-shadow: 0 8px 32px rgba(17, 101, 203, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
  max-width: 650px;
  width: 100%;
}

.allStartCon:hover {
  box-shadow: 0 15px 45px rgba(17, 101, 203, 0.25);
}

.uiuxGetStarted {
  background: linear-gradient(135deg, #1165cb, #2575fc);
  color: white;
  max-width: 600px;
  margin: 0 auto;
  padding: 50px 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(17, 101, 203, 0.5);
  font-weight: 600;
  font-size: 22px;
  user-select: none;
  transition: box-shadow 0.3s ease;
}

.uiuxGetStarted:hover {
  box-shadow: 0 12px 40px rgba(17, 101, 203, 0.75);
}

.allContainer {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  z-index: 2;
}

.allGetStartedTitle {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: white;
  line-height: 1.1;
}

.allGetStartedDescription {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  line-height: 1.3;
  font-weight: 400;
  color: white;
  text-shadow: 0 0 6px rgba(255 255 255 / 0.6);
}

.allGetStartedButton {
  background-color: white;
  color: black;
  padding: 16px 40px;
  font-size: 18px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 127, 80, 0.3);
  cursor: pointer;
  user-select: none;
}

.allGetStartedButton:hover {
  background-color: #edfaff;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 127, 80, 0.4);
}

.allGetStartedButton:active {
  transform: translateY(1px);
  box-shadow: 0 8px 18px rgba(255, 127, 80, 0.2);
}

@media (max-width: 1150px) {
  .allStartCon {
    padding: 50px;
    border-top-left-radius: 150px;
    border-bottom-right-radius: 150px;
  }

  .allGetStarted {
    background: linear-gradient(135deg, #1165cb, #2575fc);
    max-width: 500px;
    padding: 30px 40px;
    border-radius: 25px;
  }
}

@media (max-width: 800px) {
  .allStartSection {
    padding: 40px 40px 80px 40px;
  }

  .allStartCon {
    padding: 80px;
    border-top-left-radius: 150px;
    border-bottom-right-radius: 150px;
  }

  .allGetStarted {
    max-width: 500px;
    padding: 30px 40px;
    border-radius: 25px;
  }

  .uiuxGetStarted {
    padding: 30px 15px;
  }

  .allContainer {
    width: 90%;
  }

  .allGetStartedTitle {
    font-size: 24px;
  }

  .allGetStartedDescription {
    font-size: 16px;
  }

  .allGetStartedButton {
    padding: 14px 30px;
    font-size: 16px;
  }
}

@media (max-width: 550px) {
  .allStartSection {
    padding: 40px 20px 80px 20px;
  }

  .allStartCon {
    padding: 50px 20px;
  }

  .allGetStarted {
    max-width: 90%;
    padding: 30px 20px;
    border-radius: 25px;
  }

  .allGetStartedTitle {
    font-size: 20px;
  }

  .allGetStartedDescription {
    font-size: 16px;
  }
}










/* ==================
GET STARTED BUTTONS
=====================*/
.getStartModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

.getStartModalContent {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  width: 100%;
  max-width: 700px;
  max-height: 90%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transform: translateY(-30px);
  opacity: 0;
  animation: modalAppear 0.5s forwards;
  overflow-y: auto;
  box-sizing: border-box;
}

@keyframes modalAppear {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.getStartModalContent::-webkit-scrollbar {
  display: none;
}

.imageContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -15px;
  margin-bottom: 20px;
  position: relative;
}

.circleImage {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid #00ff4c;
  z-index: 1;
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.circleImage:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .circleImage{
    width: 30px;
    height: 30px;
  }
}

.getStartModal h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #007bff;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.1;
}

.getStartModal label {
  font-weight: 500;
  margin-top: 14px;
  color: #444;
}

input::placeholder, textarea::placeholder { 
  font-size: 14px;
  color: #888;
}

input:focus, textarea:focus {
  border: 2px solid #0056b3;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 85, 179, 0.5);
}

label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

.alertMessage {
  padding: 12px;
  background-color: #f8d7da;  
  color: #721c24;              
  border: 1px solid #f5c6cb; 
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 14px;
  text-align: center;
  display: none;             
  opacity: 1;
  transition: opacity 0.5s ease-out; 
}

.alertMessage p {
  margin: 0;
  font-weight: 500;
}

.getStartModal input, 
.getStartModal select, 
.getStartModal textarea {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
  background-color: #f7f7f7;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.getStartModal input:focus, 
.getStartModal select:focus, 
.getStartModal textarea:focus {
  border-color: #007bff;
}

.getStartModalActions {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 25px;
  gap: 15px;
}

.getStartCloseButton, 
.getStartSubmitButton {
  padding: 14px 30px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.getStartCloseButton:hover, 
.getStartSubmitButton:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

.getStartCloseButton:active, 
.getStartSubmitButton:active {
  transform: scale(0.95);
}

@media (max-width: 600px) {
  .getStartModalContent {
    width: 90%;
    padding: 40px;
  }

  .getStartModal h2 {
    font-size: 20px;
  }

  .getStartModal input, 
  .getStartModal select, 
  .getStartModal textarea {
    font-size: 14px;
    padding: 12px;
  }

  .getStartModalActions {
    flex-direction: column;
    gap: 10px;
  }

  .getStartCloseButton, 
  .getStartSubmitButton {
    font-size: 13.5px;
  }
}











/* ==================
GET QUOTE BUTTONS
=====================*/
.getQuoteModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box; 
  overflow-y: scroll;
}

.getQuoteModalContent {
  background-color: #fff;
  max-height: 90%;
  padding: 50px;
  border-radius: 5px;
  width: 100%;
  max-width: 650px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transform: translateY(-50px);
  opacity: 0;
  animation: modalAppear 0.4s forwards;
  max-height: 90vh;
  overflow-y: auto;
  box-sizing: border-box; 
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.getQuoteModalContent::-webkit-scrollbar {
  display: none;
}

.getQuoteModal h2 {
  text-align: center;
  margin-bottom: 15px; 
  color: #007bff;
  font-size: 1.6rem; 
  font-weight: bold;
}

.getQuoteModal label {
  font-weight: 400;
  margin-top: 10px;
  color: #333;
  font-size: 14px;
}

.getQuoteModal input, 
.getQuoteModal select, 
.getQuoteModal textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #f9f9f9;
  box-sizing: border-box;
}

.getQuoteModalActions {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
  gap: 10px;
}

.getQuoteCloseButton, 
.getQuoteSubmitButton {
  padding: 12px 25px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.getQuoteCloseButton:hover, 
.getQuoteSubmitButton:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

.getQuoteCloseButton:active, 
.getQuoteSubmitButton:active {
  transform: scale(0.95);
}

@media (max-width: 600px) {
  .getQuoteModalContent {
    width: 90%; 
    padding: 50px; 
  }

  .getQuoteModal h2 {
    font-size: 1.4rem;
  }

  .getQuoteModal input, 
  .getQuoteModal select, 
  .getQuoteModal textarea {
    font-size: 1rem;
    padding: 10px;
  }

  .getQuoteActions {
    flex-direction: column;
    gap: 8px; 
  }

  .getQuoteCloseButton, 
  .getQuoteSubmitButton{
     font-size: 13.5px;
  }
}













/* ==================
BOOK CALLS BUTTONS
=====================*/
.bookCallModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: scroll;
}

.bookCallModalContent {
  background-color: #fff;
  max-height: 90%;
  padding: 50px;
  border-radius: 5px;
  width: 100%;
  max-width: 650px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transform: translateY(-50px);
  opacity: 0;
  animation: modalAppear 0.4s forwards;
  overflow-y: auto;
  box-sizing: border-box;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.bookCallModalContent::-webkit-scrollbar {
  display: none;
}

.bookCallModal h2 {
  text-align: center;
  margin-bottom: 10px;
  color: #007bff;
  font-size: 1.6rem;
  font-weight: 500;
}

.bookCallModal label {
  font-weight: 400;
  margin-top: 10px;
  color: #333;
  font-size: 14px;
}

.bookCallModal input, 
.bookCallModal select, 
.bookCallModal textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #f9f9f9;
  box-sizing: border-box;
}

.bookCallModalActions {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
  gap: 10px;
}

.bookCallCloseButton, 
.bookCallSubmitButton {
  padding: 12px 25px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.bookCallCloseButton:hover, 
.bookCallSubmitButton:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

.bookCallCloseButton:active, 
.bookCallSubmitButton:active {
  transform: scale(0.95);
}

@media (max-width: 600px) {
  .bookCallModalContent {
    width: 95%;
    padding: 50px;
  }
  .bookCallModal h2 {
    font-size: 18px;
  }
  .bookCallModal input, 
  .bookCallModal select, 
  .bookCallModal textarea {
    font-size: 1rem;
    padding: 10px;
  }
  .bookCallModalActions {
    flex-direction: column;
    gap: 8px;
  }

  .bookCallCloseButton, 
  .bookCallSubmitButton{
    font-size: 13.5px;
  }
}









/* ==================
START ORDER BUTTONS
=====================*/
.startOrderModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}

.startOrderModalContent {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  position: relative;
  max-height: 90%;
  overflow-y: auto;
  transform: translateY(-30px);
  opacity: 0;
  animation: modalAppear 0.5s forwards;
}

@keyframes modalAppear {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.startOrderModalContent::-webkit-scrollbar {
  display: none;
}

.startOrderModal h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0085ff;
  text-align: center;
  line-height: 1.2;
}

.startOrderModal p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #666;
  text-align: center;
}

.startOrderModal label {
  font-weight: 500;
  margin-top: 12px;
  color: #333;
  font-size: 14px;
}

.startOrderModal input, 
.startOrderModal textarea {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #f9f9f9;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.startOrderModal textarea {
  resize: vertical;
  min-height: 120px;
}

.startOrderModal input:focus,
.startOrderModal textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.startOrderModalActions {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px;
  gap: 15px;
}

.startOrderCloseButton, 
.startOrderSubmitButton {
  padding: 14px 28px;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.startOrderCloseButton {
  background-color: #f44336;
}

.startOrderCloseButton:hover {
  background-color: #d32f2f;
}

.startOrderSubmitButton {
  background-color: #0085ff;
}

.startOrderSubmitButton:hover {
  background-color: #0368c7;
}

.startOrderCloseButton:active, 
.startOrderSubmitButton:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .startOrderModalContent {
    width: 85%;
    padding: 30px;
  }

  .startOrderModal h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .startOrderCloseButton, 
  .startOrderSubmitButton {
    font-size: 14px;
    padding: 12px 25px;
  }

  .startOrderModalActions {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .startOrderModalContent {
    width: 90%;
    padding: 30px;
  }

  .startOrderModal h2 {
    font-size: 21px;
  }

  .startOrderModal p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .startOrderModal input, 
  .startOrderModal textarea {
    font-size: 13px;
    padding: 12px;
  }

  .startOrderModalActions {
    flex-direction: column;
    gap: 12px;
  }

  .startOrderCloseButton, 
  .startOrderSubmitButton {
    font-size: 14px;
    padding: 12px 28px;
  }
}
















