
.header-section{
  background-color: aliceblue;
}

header.header-section:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #2a5555;
  opacity: 0.7;
  z-index: 1;
}

/* Customize the logo size for mobile and larger screens */
.logo {
  max-width: 100px;
}

@media (min-width: 992px) {
  .logo {
    max-width: 120px;
  }
}

/* Navbar custom styles */
.navbar {
  padding-left: 0;
  padding-right: 0;
}
.navbar-nav {
  margin-left: auto;
  margin-right: auto;
}
.container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.navbar-toggler {
  margin-right: 0;
}
/* Ensure no additional margin/padding is added to the navbar items */
.navbar-nav .nav-item {
  margin-right: 0;
}
.navbar {
  padding: 1.5rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 999;
  background-color: aliceblue;
}
.navbar-brand img {
  width: 35%;
  height: auto;
}

.navbar-nav .nav-link {
  font-size: 1rem;
  color: #333;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #007bff;
}

/* Button styles */
.btn-primary {
  background-color: #000;
  border-color: #000;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

/* Mobile view adjustments */
@media (max-width: 991px) {
  .navbar {
    padding: 0.5rem 1rem;
  }

  .btn-primary {
    /* margin-top: 1rem; */
  }
}

/* video design css  start*//* Banner section style */
.banner-design {
  display: flex;
  position: relative;
  width: 100%;
  height: 90vh; /* Full viewport height */
  background: aliceblue;
}

/* Masthead container */
.masthead {
  position: relative;

  display: flex;
  justify-content: left; /* Center content inside the masthead */
  margin: 0px auto;
  align-items: center;
  z-index: 1; /* Ensure masthead content is above the video */
 
}

/* Form design style */
.form-design {
  
display: flex;
  
position: relative;
  
z-index: 999;
  
justify-content: right;
}

button.navbar-toggler {
  border: 0px;
  border-color: unset;
  box-shadow: none;
}
@media (min-width: 992px) {
  .masthead {
      height: 100%;
          min-height: 0;
      padding-bottom: 0;
  }
}


/* Video design CSS */
video.bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
}

.masthead .masthead-content {
  position: relative;
  max-width: 36rem;
  /* padding-top: 5rem; */
  /* padding-bottom: 5rem; */
}
.masthead .masthead-content h1, .masthead .masthead-content .h1 {
  font-size: 2.5rem;
}
.masthead .masthead-content p {
  font-size: 1.2rem;
}
.masthead .masthead-content .input-group-newsletter input {
  height: auto;
  width: 100%;
  font-size: 1rem;
  padding: 1rem;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.masthead .masthead-content .input-group-newsletter button {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: calc(1rem + 2px);
  background: #2a5555;
  border: 2px solid #2a5555;transition: all;
}
.masthead .masthead-content .input-group-newsletter button:hover{
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
} 
.btn.disabled {
  pointer-events: none;
  opacity: 0.65;
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}
.masthead:before {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(0 0 0 / 70%); /* Dark overlay */
  z-index: -1;
  transform: skewX(-9deg); /* Adds the skew effect */
  transform-origin: top right;
  width: 55%;
  /* display: flex; */
  /* justify-content: flex-start; */
  /* margin: 0px auto; */
}

/* Main container to hold both elements */
.main-div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* margin: 0px auto; */
  width: 100%;
  /* padding: 20px; */
}

/* Styling for the top container (left-aligned) */
.container-left {
  background-color: #f0f0f0;
  padding: 20px;
  width: 100%;
  text-align: left;
}

/* Styling for the bottom container (right-aligned) */
.container-right {
  background-color: #e0e0e0;
  padding: 20px;
  width: 100%;
  text-align: right;
  margin-top: 10px;
}

/* Form styling */
form input {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
}

form button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}



/* Responsive design */
@media (max-width: 768px) {
  
  .main-div {
      align-items: center;
  }

  .container-left, .container-right {
      text-align: center; /* Center-align both containers on smaller screens */
      width: 100%;
  }
}

div#navbarButtonsExample .d-flex.align-items-center {
  gap: 0px;
  /* background: #e9e5e5; */
  border-radius: 5px;
  /* padding: 0px 6px; */
  gap: 20px;
  justify-content: center;
  display: flex;
  /* flex-direction: column; */
}

div#navbarButtonsExample button.btn.btn-link.px-3 {
  text-decoration: none;
  color: #2e5555;
  box-shadow: none;
  padding: 10px 0px;
  border:2px solid #2e5555;
}
div#navbarButtonsExample button.btn.btn-link.px-3:hover {
    text-decoration: none;
    color: #fff;
    background: #2e5555;
    
}


div#navbarButtonsExample button.btn.btn-primary {
  padding: 10px 10px;
  border: 2px solid #2e5555;
  background: #2e5555;
  /* display: flex; */
  /* width:100%; */
  /* text-align:center; */
  /* justify-content:center; */
}
div#navbarButtonsExample button.btn.btn-primary:hover {
  padding: 10px 10px;
  border: 2px solid #2e5555;
  background: transparent;
  color: #2e5555;
}
main#main {
  overflow: hidden;
}
/* Responsive adjustments */
@media (max-width: 991px) {
  .masthead,
  .form-design {
      /* width: 100%; */ /* Full width on smaller screens */
      padding: 1rem; /* Adjust padding for smaller screens */
  }
  .masthead {
      height: auto; /* Allow auto height on smaller screens */
      padding: 0;
  }
  .form-design {
    margin-top: 1rem;
    position: relative;
    z-index: 999;
    padding: 0;
    display: block;
  }
  .banner-design {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    background: aliceblue;
    padding: 40px 0px;
}
div#navbarButtonsExample .d-flex.align-items-center {
    gap: 0px;
    /* background: #e9e5e5; */
    border-radius: 5px;
    /* padding: 0px 6px; */
    row-gap: 20px;
    justify-content: center;
    display: flex;
    flex-direction: column;
     margin:35px 0px 30px;
}
div#navbarButtonsExample button.btn.btn-link.px-3 {
  border:2px solid #2e5555;
  display:flex;
  width:100%;
  text-align:center;
  justify-content:center;
}
div#navbarButtonsExample button.btn.btn-primary {
  padding: 10px 10px;
  border: 2px solid #2e5555;
  background: #2e5555;
  display: flex;
  width:100%;
  text-align:center;
  justify-content:center;
}
.masthead:before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: -1;
    transform: skewX(-9deg);
    transform-origin: top right;
    width: 100vh !important;
    /* display: flex; */
    /* justify-content: flex-start; */
    /* margin: 0px auto; */
}
.card {
  max-width: 100% !important;
  border: none;
  border-radius: 16px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
}





/*--------------  form-design css start ---------------*/

body {
  background: linear-gradient(135deg, #f0f4c3, #c5cae9);
  font-family: 'Poppins', sans-serif;
}

section.form-design .card-body {
  padding: 0;
}

.card {
  max-width: 350px;
  border: none;
  border-radius: 16px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Style for form-check container */
.form-check-container {
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 12px;
  background-color: #f9f9f9;
}

.form-check-wrapper {
  display: flex;
  align-items: center;
}

/* Border-line between two radio buttons */
.border-line {
  width: 2px;
  background-color: #ddd;
  margin: 0 10px;
  height: 48px;
}

.btn-radio-creative {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  background-color: #f1f1f1;
  border-radius: 12px;
  cursor: pointer;
  color: #4a4a4a;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
}

.form-check-input {
  display: block;
}

.form-check-input:checked + .btn-radio-creative {
  background: linear-gradient(135deg, #2196f3, #21cbf3);
  color: #fff;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
  transform: translateY(-2px);
}

.form-check-input:checked + .btn-radio-creative i {
  color: white;
  transform: rotate(360deg);
  transition: transform 0.3s;
}

.form-check-label i {
  color: #039be5;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.form-control {
  height: 48px;
  border: 2px solid #ddd;
  border-radius: 12px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #2196f3;
  box-shadow: 0 0 6px rgba(33, 150, 243, 0.3);
}

.btn-gradient {
  background: linear-gradient(135deg, #2196f3, #21cbf3);
  color: white;
  height: 50px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.btn-gradient:hover {
  transform: scale(1.05);
}

.agree-text {
  font-size: 12px;
  color: #616161;
}

.terms {
  font-size: 12px;
  color: #039be5;
  text-decoration: underline;
}

@media (max-width: 576px) {
  .card.px-3.py-4.shadow-lg {
      padding: 15px;
      max-width: 100%;
  }

  .btn-gradient {
      width: 100%;
  }
}

.uploader__empty-state {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  padding: 10px 16px;
  column-gap: 10px;
  /* border: 2px dashed #d0d0d0; */
  /* border-radius: 12px; */
  /* padding: 40px; */
  width: 100%;
  /* max-width: 400px; */
  /* height: 200px; */
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.uploader__empty-state:hover {
  border-color: #a0a0a0;
  background-color: #f1f1f1;
}

.uploader__empty-state--with-display-name {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.uploader__empty-state--with-directories-selector {
  position: relative;
}

.styles_module_wtIcon__d2f058f9 {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 20px; */
}

.uploader__empty-state-text {
  display: flex;
  align-items: flex-start;
  justify-content: left;
  /* gap: 10px; */ /* space between icon and text */
  flex-direction: column;
}

.styles_module_wtIconSvg__d2f058f9 {
  width: 50px;
  height: 50px;
  color: #2a5555;
  transition: transform 0.3s ease;
}

.styles_module_wtIcon__d2f058f9:hover .styles_module_wtIconSvg__d2f058f9 {
  transform: scale(1.1);
}

.uploader__empty-state-text h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  text-align: left;
  color: #444;
}

.uploader__sub-title {
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 500;
  color: #dc3c30;
  /* text-decoration: underline; */
  cursor: pointer;
  /* transition: color 0.3s ease; */
  text-align: left;
  padding: 0;
}

.uploader__sub-title:hover {
  color: #0277bd;
}

/* Media Query for responsiveness */
@media (max-width: 576px) {
  .uploader__empty-state {
      padding: 20px;
      /* height: 180px; */
  }

  .uploader__empty-state-text h2 {
      font-size: 1.2rem;
  }

  .styles_module_wtIconSvg__d2f058f9 {
      width: 40px;
      height: 40px;
  }
}

.form-div {
  padding: 20px 0px 0px;
}


.transfer__footer {
  border-top: none;
  display: flex;
  flex-direction: column;
  row-gap: 18px;
  position: relative;
  height: auto;
  padding: .5rem 0.25rem 0.25rem;
}

.TransferOptionsIconBar_iconbar__yu_2U {
  display: flex;
  gap: 16px;
  flex-grow: 1; /* Makes the icon bar take the available space */
  height: 3rem;
  border: 1px solid #d6d6d6;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0px 0px;
  /* z-index: 1000; */
  position: relative;
}

.TransferOptionsIconBar_iconButton__Ioj99 {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.TransferOptionsIconBar_iconButton__Ioj99 svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  transition: fill 0.3s ease;
}

.TransferOptionsIconBar_iconButton__Ioj99:hover svg {
  fill: #fff; /* Color on hover */
}

.TransferOptionsIconBar_disabled__EjhRM {
  cursor: not-allowed;
  opacity: 0.6;
}

.transfer__footer--iconbar {
  /* display: grid; */
  /* align-items: center; */
  /* text-align: center; */
  width: 100%;
  /* margin: 0px auto; */
}

.transfer__button {
  padding: 10px 16px;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  border-radius: 10px;
  transition: background-color 0.3s ease;
   /* Add space between the last icon and the button */
  left: 50%;
  width: 100%;
  background: #2a5555;
   border: 2px solid #2a5555;
  text-align: center;
  justify-content: center;
  font-weight: 600;
}
.transfer__button:hover {
    background: transparent;
    color: #2a5555;
   
}
.transfer__button--inactive {
  /* background-color: #cccccc; */
  cursor: not-allowed;
}

.transfer__button:hover:not(.transfer__button--inactive) {
  background-color: #0056b3;
}


/* ---------------form-design css end------------------ */
/* Ensure the masthead takes full width and is properly positioned */
.masthead {
  width: 100%;
  
}

/* Slider container styling */
.slick {
  width: 100%;
  margin: 0 auto;
}

/* Slider item styling */
.item {
  position: relative;
  overflow: hidden;
  padding: 0 10px; /* Adds horizontal spacing between images */
}

/* Background image styling */
.bg {
  width: 100%;
  /* height: 300px; */ /* Adjust height as needed */
  /* background-size: cover; */
  /* background-position: center; */
  border-radius: 8px; /* Optional: adds rounded corners */
}

/* Centered content styling */


/* Responsive adjustments */
@media (max-width: 1024px) {
  .bg {
      height: 250px; /* Adjust for smaller screens */
  }
}

@media (max-width: 600px) {
  .bg {
      height: 200px; /* Adjust for smaller screens */
  }
}

@media (max-width: 480px) {
  .bg {
      height: 150px; /* Adjust for smallest screens */
  }
}
/* Hide default dot numbers */
/* Hide default dot numbers */
/* Style the dots container */
.slick-dots {
  bottom: 10px; /* Adjust vertical position of dots */
  text-align: center; /* Center align dots */
  padding: 0; /* Remove any default padding */
  margin: 0; /* Remove any default margin */
  margin-top: 20px;
}

/* Style the individual dots */
.slick-dots li {
  display: inline-block;
  margin: 0 8px; /* Space between dots */
}

/* Remove text and background from dots */
.slick-dots li button {
  font-size: 0; /* Remove text from buttons */
  background: none; /* Remove default button background */
  border: none; /* Remove any border */
  padding: 0; /* Remove any padding */
}

/* Style the individual dots */
.slick-dots li button:before {
  content: ''; /* No text */
  display: block;
  width: 10px; /* Size of dots */
  height: 10px; /* Size of dots */
  border-radius: 50%; /* Make dots round */
  background-color: #007bff; /* Dot color */
}

/* Style the active dot */
.slick-dots li.slick-active button:before {
  background-color: #fff; /* Color of active dot */
}


.bg img {
  width: 100%;
  /* height: auto; */ /* Ensure the image maintains its aspect ratio */
  border-radius: 8px; /* Optional: adds rounded corners */
}
@media (max-width: 1024px) {
  .bg img {
      height: auto;
  }
}

@media (max-width: 600px) {
  .bg img {
      height: auto;
  }
}

@media (max-width: 480px) {
  .bg img {
      height: auto;
  }
}