* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  font-family: sans-serif;
}
html,
body {
  scroll-behavior: smooth;
}
a:any-link {
  text-decoration: none;
}

.firstpagecontainer {
  min-height: 100vh;
  background: rgb(170, 50, 53);
  background: linear-gradient(
    180deg,
    rgba(170, 50, 53, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  display: flex;
  width: 100%;
  margin: 0px auto;
  height: 90%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.firstbtn {
  border-radius: 100px;
  background: #872426;
  box-shadow: 4px 32px 64px 0 rgba(57, 53, 53, 0.3);
  padding: 20px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  width: 172px;
  text-align: center;
  margin-top: 20px;
}

.text-container {
  display: flex;
  flex-direction: column;
  padding: 0px 100px;
  text-align: left;
  width: 50%;
  height: 100%;
  /* background: aquamarine; */
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.text-container h1 {
  font-size: 2.4rem;
  text-shadow: 0px 1px 1px #000;
  color: #aa3235;
  /* font-weight: lighter; */
}
.pricing {
  margin: 12px 0;
}

.image-container {
  width: 50%;
  height: 100%;
}

.image-container img {
  max-height: 100%;
  width: 100%;
}

@media (max-width: 768px) {
  .firstpagecontainer {
    margin-top: 80px;
    flex-direction: column;
    text-align: center;
  }
  .text-container {
    padding: 0px;
  }

  .image-container {
    text-align: center;
    min-width: 90%;
  }
}

/* ====================== */
.cardContainer {
  background: radial-gradient(
      35.57% 90.42% at 7.25% 94%,
      #aa32359c 0%,
      rgba(255, 232, 72, 0) 100%
    ),
    radial-gradient(
      43.43% 137.36% at 96.97% 12.14%,
      #fff 0%,
      rgba(216, 255, 242, 0) 100%
    );
  background-image: url("../Assets/allimages/contenwriting/Nadezhda_Ventures_Content_Cards.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.threesubpage {
  display: flex;
  /* height: 100vh; */
  align-items: stretch;
  justify-content: space-evenly;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: space-around;
  margin: 50px 0px;
}

.twosubcardContainer {
  display: flex;
  width: 60%;
  /* gap: 110px; */
  min-height: 75%;
  border-radius: 30px;
  flex-direction: column;
}

.topcardcontainer {
  background-color: #222831d6;
  text-align: center;
  width: 100%;
  height: 30%;
  border-radius: 30px;
  /* margin-bottom: 80px; */
  align-items: space-evenly;
  margin-bottom: 20px;
}

.topcardcontainer h1 {
  color: #fff;
  padding: 20px;
}

.bottomcardcontainer {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  border-radius: 30px;
  width: 100%;
  margin-top: auto;
  /* height: 60%; */
}

.card {
  background: #222831d6;
  border-radius: 30px;
  width: 48%;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.card h2 {
  font-size: 23px;
  color: #aa3235;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.555);
  margin-bottom: 15px;
}

.card p {
  font-size: 16px;
  color: #fff;
  text-align: justify;
}

.buttoncontent {
  width: 100%;
  margin-top: 15px;
  /* height: 22%; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.contentbtn {
  border-radius: 100px;
  background: #aa3235;
  box-shadow: 4px 32px 64px 0 rgba(57, 53, 53, 0.3);
  padding: 18px 50px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

.onesubcardContainer {
  width: 30%;
  min-height: 70%;
  background-color: #222831d6;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: justify;
}

.onesubcardContainer h2 {
  font-size: 24px;
  color: #aa3235;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.555);
  margin-bottom: 15px;
}

.onesubcardContainer p {
  font-size: 16px;
  color: #fff;
  text-align: justify;
}

.thirdbuttoncontent {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 15%;
}

.thirdcardcontentbtn {
  border-radius: 100px;
  background: #872426;
  box-shadow: 4px 32px 64px 0 rgba(57, 53, 53, 0.3);
  padding: 18px 50px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .threesubpage {
    width: 95%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .twosubcardContainer {
    width: 90%;
    height: auto;
  }

  .topcardcontainer,
  .bottomcardcontainer {
    height: auto;
  }

  .bottomcardcontainer {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    margin-bottom: 20px;
  }

  .onesubcardContainer {
    width: 90%;
    margin-top: 20px;
  }

  h1,
  h2 {
    font-size: 22px;
  }

  p {
    font-size: 14px;
  }

  .contentbtn,
  .thirdcardcontentbtn {
    padding: 12px 30px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cardContainer {
    height: auto;
    padding: 20px 10px;
  }

  h1 {
    font-size: 18px;
  }

  .buttoncontent,
  .thirdbuttoncontent {
    height: auto;
  }

  .contentbtn,
  .thirdcardcontentbtn {
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* ============================= */

/*skill page*/
.skillsPage {
  /* height: 100vh; */
  width: 100%;
  background: #e5e5e5;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.skillsPage h1 {
  height: 15%;
  font-size: 3rem;
  font-weight: 300;
  text-align: center;
}

/* Responsive font size for .skillsPage h1 */
@media (max-width: 768px) {
  .skillsPage h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .skillsPage h1 {
    font-size: 1.75rem;
  }
}

.skillsContainer {
  padding: 20px 0px;
  width: 100%;
  /* height: 80%; */
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  /* overflow: hidden; */
  align-items: center;
  align-content: center;
}

/* Responsive layout for .technology */
.technology {
  background: #fff;
  min-width: 211px;
  width: 25%;
  /* height: 25%; */
  border-radius: 5px;
  display: flex;
  justify-content: space-evenly;
  padding: 10px 10px;
  align-items: center;
  transition: transform 0.5s ease;
  cursor: pointer;
  align-content: center;
  flex-wrap: wrap;
}

.technology:hover {
  transform: scale(1.1);
  border: 1px solid #aa3235;
}

/* .technology img {
max-height: 80%;
max-width: 30%;
object-fit: contain;
} */

.technology p {
  width: 55%;
  color: black;
  text-align: center;
}

/* Adjust .technology layout on smaller screens */
@media (max-width: 768px) {
  .technology {
    width: 45%;
    height: 20%;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .technology {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    padding: 10px;
  }

  .technology img {
    max-width: 25%;
  }

  .technology p {
    width: 70%;
  }
}

#skillsPage-HEADING {
  padding: 50px 0px;
  color: #aa3235;
  font-weight: 500;
  text-shadow: 0px 1px 0px #000;
  font-size: 38px;
}

.hiring-image {
  margin: 50px 0px;
  display: flex;
  justify-content: center;
  align-items: center; /* Center the image vertically */
  width: 100%;
  overflow: hidden; /* Prevent overflow if the image is too large */
}

.hiring-image img {
  max-height: 100%; /* Ensure the image fits within the container */
  max-width: 80%; /* Allow the image to be responsive */
  object-fit: cover; /* Maintain aspect ratio while covering the container */
}

/* =====================================================================content==== */
.para {
  padding: 20px;
  background-color: #f9f9f9; /* Light background for contrast */
  border-radius: 8px; /* Rounded corners */
}

.outsourcing-container {
  max-width: 90%; /* Limit the width */
  margin: 0 auto; /* Center the container */
}

.outsourcing-title {
  font-size: 24px; /* Title size */
  color: #b14141; /* Your preferred color */
  margin-bottom: 20px; /* Spacing below the title */
  text-align: center; /* Center the title */
}

.outsourcing-content {
  font-size: 16px; /* Content size */
  line-height: 1.6; /* Better line spacing */
  color: #333; /* Darker text color for readability */
  margin-bottom: 15px; /* Spacing below paragraphs */
}

/* Style for lists */
.outsourcing-content ul {
  padding-left: 20px; /* Indent the list */
}

.outsourcing-content li {
  margin-bottom: 10px; /* Spacing between list items */
  position: relative; /* For custom bullet styling */
}

.outsourcing-content li::before {
  content: "✓"; /* Custom bullet */
  color: #b14141; /* Bullet color */
  position: absolute; /* Positioning the bullet */
  left: -20px; /* Adjust as needed */
}

/* ==============================contactpage ================ */
.contact_container {
  width: 100%;
  /* height: 86vh; */
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 25px;
  background: rgb(170, 50, 53);
  background: linear-gradient(
    0deg,
    rgba(170, 50, 53, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  /* border-radius: 100%; */
}

.contact_subchild {
  width: 100%;
  max-width: 600px;
  padding: 10% 0 0;
}

.contact_subchild1 h1 {
  font-size: 8rem;
  line-height: 0.9;
  color: #aa3235;
  text-shadow: 2px 1px 1px #000;
}
.contact_subchild1 h5 {
  font-size: 60px;
}

.contact_subchild1 h2 {
  font-size: 2.5em;
}
.callingno {
  line-height: 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact_subchild1 h1 {
  font-size: 8rem;
  line-height: 0.9;
  color: #aa3235;
}

.callingno h3 {
  font-size: 30px;
  margin-top: 50px;
  /* font-weight: 500; */
  color: #000000;
  text-shadow: 1px 1px 1px #ffffff79;
  font-family: "Cedarville Cursive", "cursive";
  font-weight: 400;
  font-style: normal;
}

.callingno h2 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

/* form content*/

.form-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-family: sans-serif;
  /* height: 100vh; */
  min-width: 500px;
}

#formHalfFields {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  row-gap: 10px;
}
#formSubmitImg {
  /* width: 100%; */
  height: 70%;
  position: absolute;
  /* top: 0; */
  object-fit: contain;
  display: none;
}

.inner-cont {
  background-color: #ffffff26;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 15px; /* Reduced padding */
  max-width: 485px; /* Reduced max-width */
  width: 100vh;
  /* height: 70vh; */
  position: relative;
}

.heading {
  color: #333;
  font-size: 20px; /* Reduced font size */
  margin-bottom: 10px;
}

.subheading {
  color: #666;
  font-size: 18px; /* Reduced font size */
  margin-bottom: 15px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  /* line-height: 35px; */
}

.form-group {
  margin-bottom: 10px; /* Reduced margin */
  width: 100%;
}
#formHalfFields .form-group {
  width: 49% !important;
}

#formHalfFields .form-group:last-child {
  width: 100% !important;
}

.form-group label {
  display: block;
  font-size: 16px; /* Reduced font size */
  margin-bottom: 4px;
}

.required {
  color: red;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px; /* Reduced padding */
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 12px; /* Reduced font size */
}

.contact-form textarea {
  resize: vertical;
}

.form-btn {
  text-align: center;
}

.submit-button {
  background-color: #aa3235;
  border: none;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  font-size: 19px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 40%;
}

.submit-button:hover {
  color: black;
}

label {
  font-weight: 549;
}

#project-duration {
  height: 35px; /* Adjust this value to match the email input field height */
}

/* Mobile devices (max-width: 767px) */
@media (max-width: 767px) {
  .contact_subchild {
    padding: 26% 1% 0;
  }

  .contact_subchild1 h1 {
    font-size: 4rem;
  }

  .contact_subchild1 h2 {
    font-size: 2rem;
  }

  .callingno h2 {
    font-size: 2.5rem;
  }

  .callingno h3 {
    font-size: 24px;
  }

  .inner-cont {
    width: 90vw;
    padding: 10px;
  }

  .heading {
    font-size: 24px;
  }

  .subheading {
    font-size: 16px;
  }

  .form-right {
    min-width: 100%;
    height: auto;
    padding: 20px;
  }

  #formHalfFields .form-group {
    width: 100% !important;
  }

  #formHalfFields .form-group:last-child {
    width: 100% !important;
  }

  .submit-button {
    width: 80%;
    padding: 12px;
    font-size: 16px;
  }
  .digital-slider {
    width: 90%;
  }
}

/* =================== */

/* slider============== */
/* Main container styling */
.maindigital-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 100%;
  padding: 50px 0;
  background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.7)),
    url("../Assets/allimages/home/workspace-1280538_640.jpg") no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

/* Slider container styling */
.digital-slider {
  position: relative;
  width: 50%;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
  border-radius: 10px; /* Rounded corners for a smoother look */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  */
  transition: transform 0.5s ease; /* Smooth transition for scaling */
}

/* Grow the slider on hover */
.digital-slider:hover {
  transform: scale(1.1); /* Increase size by 10% */
}

.digital-slider-text-contain {
  /* background-color: red; */
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  text-align: justify;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 25px;
  color: #ffffff;
}
.digital-slider-text-contain h1 {
  font-size: 2rem;
}
.digital-slider-text-contain h5 {
  font-size: 1.4rem;
}

/* Slides styling */
.slides {
  display: none;
  width: 100%;
  transition: opacity 0.5s ease-in-out; /* Smooth fade effect */
}

/* Show active slide */
.slides.active {
  display: block;
  opacity: 1; /* Fully visible */
}

/* Slide image styling */
.slides img {
  width: 100%;
  height: auto;
  border-radius: 10px; /* Rounded corners for images */
  transition: transform 0.5s ease-in-out; /* Smooth transition for image scaling */
}

/* Add a subtle scale effect on hover */
.digital-slider:hover .slides img {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Navigation dots (optional) */
.slider-nav {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}

.slider-nav span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-nav span.active {
  background: #b14141; /* Highlight color for the active dot */
}
@media (max-width: 768px) {
  .maindigital-slider {
    flex-direction: column;
  }
  .digital-slider-text-contain {
    width: 100%;
  }
  .digital-slider-text-contain h1 {
    font-size: 1.5rem;
  }
  .digital-slider-text-contain h5 {
    font-size: 1rem;
  }
  .digital-slider {
    width: 90%;
  }
}
