*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --primary-color: #2290e5;
  --secondary-color: #df7a01;
  --third-color: #76c9ec;
  --bg-color: #b60555;
  --white: #02174e;
}

html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Optional: Hide horizontal scrollbar */
  overscroll-behavior-y: contain; /* Optional: Prevent rubber-banding effect on iOS */
  overscroll-behavior-x: none;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
}
body {
  scroll-snap-type: y proximity;
  scroll-snap-points-y: repeat(100%);
  scroll-snap-type: mandatory;
  scroll-snap-stop: always;
}
h1,
h2,
h3 {
  font-weight: 700;
}
p {
  line-height: 1.5;
  font-size: 16px;
}
.header {
  border-bottom: 1px solid #e2e8f0;
}
.btn {
  background: #1ba261;
  outline: none;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  border: none;
  color: #fff;
}

.btn:hover {
  background: rgb(24, 138, 24);
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);  z-index: 99;
}

nav .navbar {
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0 10px;
}

.navbar .logo a {
  font-size: 30px;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}

nav .navbar .nav-links {
  line-height: 70px;
  height: 100%;
}

nav .navbar .links {
  display: flex;
}

nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav li:hover{
  text-decoration: underline;
}

nav .navbar .links li a {
  text-decoration: none;
  white-space: nowrap;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
}


nav .navbar .links li .arrow {
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #000000;
  transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  display: none;
  z-index: 2;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
  display: block;
}

.navbar .links li .sub-menu li {
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
  font-size: 15px;
  font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}

.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 10px;
  z-index: 1;
  display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}

.navbar .search-box {
  position: relative;
  height: 40px;
  width: 40px;
}

.navbar .search-box i {
  position: absolute;
  line-height: 40px;
  width: 100%;
  text-align: center;
  font-size: 22px;
  color: #000000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar .search-box .input-box {
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #000000;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

.navbar.showInput .search-box .input-box {
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #000000;
}

.search-box .input-box::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #000000;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}

.search-box .input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}

.navbar .nav-links .sidebar-logo {
  display: none;
}

.navbar .bx-menu {
  display: none;
}

@media (max-width:920px) {
  nav .navbar {
    max-width: 100%;
    padding: 0 25px;
    flex-direction: row-reverse;

  }

  nav .navbar .logo a {
    font-size: 27px;
  }
  nav .navbar .links li {
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a {
    font-size: 15px;
  }
}

@media (max-width:800px) {

  .navbar .bx-menu {
    display: block;
  }
  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 290px;
    width: 100%;
    background: #ffffff;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name {
    font-size: 25px;
    color: #fff;
  }
  .sidebar-logo i,
  .navbar .bx-menu {
    font-size: 25px;
    color: #000000;
  }
  nav .navbar .links {
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow {
    line-height: 40px;
  }
  nav .navbar .links li {
    display: block;
  }
  nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }
  nav .navbar .links li .sub-menu li {
    border-bottom: none;
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    left: 0;
  }
  .navbar .links li .sub-menu .more-sub-menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow {
    transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
  }
  .navbar .links li .sub-menu .more span {
    display: flex;
    align-items: center;
  }
  .links li .sub-menu .more:hover .more-sub-menu {
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }
  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu {
    display: block;
  }
  .navbar .nav-links.show1 .links .htmlcss-arrow,
  .navbar .nav-links.show3 .links .js-arrow {
    transform: rotate(180deg);
  }
 
}

@media (max-width:370px) {
  nav .navbar .nav-links {
    max-width: 100%;
  }
}
video#video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  object-fit: cover; /* Ensure the video covers the container */
  z-index: -1;
}
.hero i {
  opacity: 0;
  font-size: 28px;
  color: var(--primary-color);
  will-change: transform;
  -webkit-transform: scale(0.1);
  transform: scale(0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hero {
  width: 100%;
  height: 90vh;
  display: flex;
  color: #fff;
}
.hero-content {
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
}
.text {
  width: 700px;
  padding-left: 30px;
}
.hero-content h1 {
  font-size: 2.625rem;
  font-weight: 700;
  padding-bottom: 20px;
}
.hero-content h3 {
  padding-bottom: 40px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  video#video-background {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover; /* Ensure the video covers the container */
    z-index: -1; /* Place it behind other content */
  }
  .hero {
    width: 100%;
    flex-direction: column;
  }
  .hero-content {
    width: 100%;
    height: auto;
    padding-top: 30px;
  }
  .text {
    width: 650px;
  }
  .hero-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 70px;
  }
  .hero-content p {
    line-height: 1.5;
    font-weight: 700;
  }
}
@media screen and (max-width: 480px) {
  video#video-background {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover; /* Ensure the video covers the container */
    z-index: -1; /* Place it behind other content */
  }
  .hero {
    width: 100%;
    flex-direction: column;
  }
  .hero-content {
    width: 100%;
    padding-top: 40px;
    height: auto;
  }
  .hero-content p {
    margin-right: 20px;
  }
}

/* roadmap heading */

.roadmap-heading {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(9, 9, 124);
}

/* roadmap */
.roadmap {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

@media (max-width: 768px) {
  .roadmap {
    width: 100%;
    height: 1300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

/* stair cards heading */
.gradient {
  background-image: linear-gradient(
    180deg,
    rgb(255, 255, 255),
    rgb(204, 234, 249)
  );
}
.second-gradient {
  background-image: linear-gradient(
    0deg,
    rgb(255, 255, 255),
    rgb(204, 234, 249)
  );
}

.stair-heading {
  width: 100%;
  height: 150px;
  margin-top: 50px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
}
.stair-heading h2 {
  font-size: 2rem;
  color: rgb(9, 9, 124);
}
.stair-heading p {
  text-align: center;
}

/* Stair-Like Cards Section Styles */
.stair-cards {
  width: 100%;
  height: auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  padding: 20px 0;
}

.stair-card {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white);
  box-shadow: 0 4px 8px rgba(60, 48, 184, 0.1);
  width: auto;
  min-height: 200px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stair-card:nth-child(1) {
  background-color: #ffce46;
}
.stair-card:nth-child(2) {
  background-color: #1ba261;
}
.stair-card:nth-child(3) {
  background-color: #4586f4;
}
.stair-card:nth-child(4) {
  background-color: #e9433e;
}
.stair-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.stair-content h1 {
  font-size: 17px;
  width: 220px;
  color: var(--white);
}

.stair-content p {
  margin-top: 10px;
  width: 220px;
  color: var(--white);
}

@media screen and (max-width: 768px) {
  .stair-cards {
    width: 100%;
    flex-direction: column;
  }
  .stair-card {
    margin-bottom: 20px;
  }
  .stair-card:hover {
    transform: translateY(2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
}

/* Intro Section Styles */
.intro {
  text-align: center;
}

.intro-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 0px;
}

.intro-img {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-text {
  flex: 1; /* Take 50% of the width on larger screens */
  text-align: left;
  padding: 0px 20px 0px 0px;
}

.intro h1 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #555; /* Set your desired text color */
}

.intro h3 {
  margin-bottom: 10px;
  color: #4586f4;
}

/* Responsive Design for Intro Section */
@media screen and (max-width: 768px) {
  .intro-content {
    flex-direction: column; /* Stack elements on top of each other for smaller screens */
  }

  .intro-img,
  .intro-text {
    flex: 1; /* Take 100% width on smaller screens */
  }

  .intro-img img {
    margin-bottom: 20px; /* Add spacing between image and text */
  }

  .intro h1 {
    font-size: 1.5rem; /* Adjust font size for smaller screens */
    padding: 0px 20px 0px 20px;
  }

  .intro h3 {
    font-size: 1.25rem; /* Adjust font size for smaller screens */
    padding: 0px 20px 0px 20px;
  }

  .intro p {
    padding: 0px 20px 0px 20px;
  }
}

/* hexagonal cards */

.hex-container {
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Individual hexagonal card */
.hex-card {
  position: relative;
  width: 200px;
  height: 170px;
  margin: 20px;
}

.hex-card-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background-image: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.hex-card-content {
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hex-card:hover .hex-card-inner {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Media queries for responsiveness */
@media (max-width: 950px) {
  .hex-container {
    width: 100%;
    height: 200px;
  }
  .hex-card {
    width: 170px;
    height: 120px;
  }
  .hex-card h2 {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .hex-container {
    width: 100%;
    height: 160px;
  }
  .hex-card {
    width: 150px;
    height: 100px;
  }
  .hex-card h2 {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hex-container {
    width: 100%;
    height: 820px;
    flex-direction: column;
  }
  .hex-card {
    width: 130px;
    height: 110px;
    margin: 10px;
  }
  .hex-card h2 {
    font-size: 14px;
  }
  .hex-card p {
    margin-bottom: 0px;
  }
}

/* Style for the card title */
.card-section h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Style for the card description */
.card-section p {
  text-align: justify;
}

/* Media Query for 768px and above */
@media (min-width: 768px) {
  .card-section {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Media Query for less than 768px */
@media (max-width: 767px) {
  .card-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Media Query for less than 480px */
@media (max-width: 480px) {
  .card-section {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Wide Cards Section Styles */
.wide-cards {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  column-gap: 20px;
}

.card {
  margin-left: 30px;
  height: auto;
  flex: 1;
  padding: 20px;
  border: var(--primary-color) solid 1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card-2 {
  width: 100%;
  height: 200px;
  margin-right: 30px;
  flex: 1;
  background-color: var(--light-gray);
  padding: 20px;
  border: var(--primary-color) solid 1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 20px;
  align-items: center;
  color: var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 180px;
  height: auto;
}

.card h1 {
  font-size: 1.5rem;
  margin-top: 10px;
  color: var(--primary-color);
}

.card p {
  margin-top: 10px;
}

.card-2 button {
  width: auto;
  height: 35px;
  padding: 10px 20px;
  background-image: linear-gradient(
    90deg,
    var(--third-color),
    var(--primary-color)
  );
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
}

.card-2 button:hover {
  background-color: var(--white);
  transform: scale(1.1);
  background-image: linear-gradient(
    90deg,
    var(--primary-color),
    var(--third-color)
  );
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Wide Cards */
@media screen and (max-width: 768px) {
  .wide-cards {
    width: 100%;
    height: auto;
    flex-direction: column;
    column-gap: 0px;
    row-gap: 30px;
  }
  .card {
    margin: 0px 40px;
    flex: 1;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .card-2 {
    width: auto;
    height: 200px;
    margin-right: 0px;
    flex: 1;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
}

/* testimonials heading*/
.test-heading {
  width: 100%;
  height: auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(9, 9, 124);
}

/* testimonials */
.testimonial-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  padding: 40px 0px;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  flex: 0 0 100%;
  max-width: 250px;
  text-align: center;
  margin: 0px 10px 0px 10px;
  padding: 20px;
  background-color: var(--light-gray);
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.testimonial h3 {
  color: #4586f4;
}
.testimonial img {
  max-width: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* Updated About Us Section Styles */
.about {
  background-color: var(--third-color);
  color: #fff;

  text-align: center;
  transition: background-color 0.3s, color 0.3s;
  width: 100%;
  height: auto;
  padding: 40px 0px;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.about-text {
  margin: 0px 120px; /* Center-align the text */ /* Set the paragraph width */
  margin-bottom: 20px;
  line-height: 1.6;
  transition: color 0.3s;
}

.semi-bold {
  font-weight: 600; /* Semi-bold for the title */
}

.about-button {
  padding: 10px 20px;
  color: #fff;
  background-color: #1ba261;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
}

.about-button:hover {
  color: #fff;
  background-color: #167e4c;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .about-text {
    margin: 0px 60px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .about-text {
    margin: 0px 60px;
    padding-bottom: 30px;
  }
}

/* testimonials Section Styles */

.phone-body {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  overflow: hidden;
  margin: 0;
  padding: 10px;
}

.phone-title {
  font-size: 50px;
  font-weight: 700;
  color: thistle;
}

.phone-testimonials-container {
  /* background-image: linear-gradient(to right, var(--primary-color), var(--third-color)); */
  background-image: url(Images/Salesclove-background5.webp);
  background-position: center center;
  background-size: cover;
  box-sizing: border-box;
  color: var(--white);
  border-radius: 15px;
  margin: 40px auto;
  padding: 50px 80px;
  max-width: 768px;
  position: relative;
}

.phone-progress-bar {
  background-color: rgb(255, 255, 255);
  height: 3px;
  width: 100%;
  animation: grow 10s linear infinite;
  transform-origin: left;
}

.phone-testimonials-container i {
  color: rgba(255, 255, 255, 0.3);
  font-size: 38px;
  position: absolute;
  top: 70px;
}

.fa-phone-quote-right {
  left: 30px;
}

.fa-phone-quote-left {
  right: 35px;
}

.phone-testimonial {
  padding: 25px 0;
  line-height: 25px;
  text-align: justify;
}

.phone-user {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-user .phone-user-image {
  border: solid 2px wheat;
  border-radius: 50%;
  height: 95px;
  width: 95px;
  object-fit: cover;
}

.phone-user .phone-user-details {
  margin-left: 10px;
}

.phone-user .phone-username {
  margin: 0;
}

.phone-user .phone-role {
  font-weight: normal;
  margin: 10px 0;
}

@keyframes grow {
  0% {
    transform: scaleX(0);
  }
}

@media (max-width: 768px) {
  .phone-testimonials-container {
    padding: 20px 30px;
  }

  .fa-phone-quote {
    display: none;
  }
}

@media (max-width: 576px) {
  .phone-title {
    font-size: 40px;
    font-weight: 700;
    margin-top: 130px;
  }
}

.service {
  padding: 15px 9%;
  padding-bottom: 50px;
  padding-top: 50px;
}

.service .box-service {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.service .box-service .box {
  box-shadow: 0 0px 22px 0 rgba(98, 161, 255, 0.3);
  border-radius: 7px;
  background-color: #fff;
  padding: 30px 20px;
}

.service .box-service .box h3 {
  color: #444;
  font-size: 18px;
  padding: 10px 0;
}

.service .box-service .box .btn {
  margin-top: 10px;
  display: inline-block;
  background: #333;
  color: #fff;
  border-radius: 5px;
  padding: 8px 25px;
}

@media (max-width: 768px) {
  .service {
    padding: 40px;
  }
}

.flow {
  height: auto;
  box-sizing: border-box;
  background-size: cover;
  background-position: center center;
  background-color: rgb(226, 244, 255);
}

.cd-container {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 10%;
  border-radius: 2px;
}
.cd-container::after {
  content: "";
  display: table;
  clear: both;
}

#cd-timeline {
  position: relative;
  padding: 2em 0;
  margin-top: 2em;
  margin-bottom: 2em;
}
#cd-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25px;
  height: 100%;
  width: 4px;
  background-color: #fff;
}
@media only screen and (min-width: 1170px) {
  #cd-timeline {
    margin-top: 3em;
    margin-bottom: 3em;
  }
  #cd-timeline::before {
    left: 50%;
    margin-left: -2px;
  }
}

.cd-timeline-block {
  position: relative;
  margin: 2em 0;
}
.cd-timeline-block:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-block:first-child {
  margin-top: 0;
}
.cd-timeline-block:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-block {
    margin: 4em 0;
  }
  .cd-timeline-block:first-child {
    margin-top: 0;
  }
  .cd-timeline-block:last-child {
    margin-bottom: 0;
  }
}

.cd-timeline-img {
  position: absolute;
  top: 8px;
  left: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.cd-timeline-img {
  background: var(--primary-color);
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-img {
    width: 30px;
    height: 30px;
    left: 50%;
    margin-left: -15px;
    margin-top: 15px;
  }
}

.cd-timeline-content {
  position: relative;
  margin-left: 60px;
  margin-right: 30px;
  background-color: #fff;
  border-radius: 2px;
  padding: 1em;
  .timeline-content-info {
    background: #2b343a;
    padding: 5px 10px;
    color: var(--white);
    box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    i {
      margin-right: 5px;
    }
    .timeline-content-info-title,
    .timeline-content-info-date {
      width: calc(50% - 2px);
      display: inline-block;
    }
    @media (max-width: 500px) {
      .timeline-content-info-title,
      .timeline-content-info-date {
        display: block;
        width: 100%;
      }
    }
  }
  .content-skills {
    padding: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    li {
      background: #40484d;
      border-radius: 2px;
      display: inline-block;
      padding: 2px 10px;
      color: var(--bg-color);
      margin: 3px 2px;
      text-align: center;
      flex-grow: 1;
    }
  }
}
.cd-timeline-content:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-content h2 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 5px;
}
.cd-timeline-content p,
.cd-timeline-content .cd-date {
  color: var(--white);
}
.cd-timeline-content .cd-date {
  display: inline-block;
}
.cd-timeline-content p {
  margin: 1em 0;
  line-height: 1.6;
}

.cd-timeline-content::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 100%;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-right: 7px solid #333c42;
}

@media only screen and (min-width: 768px) {
  .cd-timeline-content h2 {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .cd-timeline-content p {
    font-size: 16px;
    font-size: 1rem;
  }
  .cd-timeline-content .cd-read-more,
  .cd-timeline-content .cd-date {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-content {
    color: grey;
    margin-left: 0;
    padding: 1.6em;
    width: 36%;
    margin: 0 5%;
  }
  .cd-timeline-content::before {
    top: 24px;
    left: 100%;
    border-color: transparent;
    border-left-color: #333c42;
  }
  .cd-timeline-content .cd-date {
    position: absolute;
    width: 100%;
    left: 122%;
    top: 6px;
    font-size: 16px;
    font-size: 1rem;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content {
    float: right;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
    top: 24px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color: #333c42;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-read-more {
    float: right;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
    left: auto;
    right: 122%;
    text-align: right;
  }
}
/* contact */

.form-wrap-up {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  /* Updated background with simple gradient */
background-color: #ffffff;}


.form-container {
  display: flex;
  width: 90%;
  overflow: hidden;
  background: #ffffff;  border-radius: 8px;
  padding: 30px;
  color: #BBBBBB;
  column-gap: 20px;
}

.form-artwork-container,
.form-form-container {
  flex: 1;
}
.form-form-container{
  border-left: #B8B8B8 solid 1px;
  padding: 20px;
}
.form-artwork-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.form-form {
  max-width: 400px;
  margin: auto;
}

.form-h1 {
  text-align: center;
  color: #000;
  font-weight: 450;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-label {
  display: block;
  margin-bottom: 5px;
}

.form-input::placeholder {
  color: #B8B8B8;
  font-size: 16px;
}

.form-input:focus {
  outline: none;
  border: #fff 1px solid;
}

.form-input {
  width: 100%;
  padding: 0px 0px 5px 0px;
  box-sizing: border-box;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
  color: #131d4e;
  border-bottom: #000 solid 1px;
}

.form-button {
  background-color: #E9E9E9;
  color: rgb(0, 0, 0);
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease-out;
}

.country-code {
  display: flex;
  padding: 10px 0px 20px 0px;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #bbbbbb;
  align-items: center;
}
/* Style the select element */
.country-code select {
  max-width: 180px; /* Make the select element take up the full width of its container */
  padding: 7px; /* Add some padding for spacing */
  border: 1px solid #ccc; /* Add a border */
  border-radius: 5px; /* Add rounded corners */
  outline: none; /* Remove the default focus outline */
  background-color: #E9E9E9; /* Set the background color */
  color: #333; /* Set the text color */
  cursor: pointer;
  flex-wrap: wrap;
}

/* Style the select when it's focused (clicked or selected) */
.country-code select:focus {
  border-color: #000000; /* Change the border color when focused */
}

/* Style the select dropdown arrow (if your browser supports it) */
.country-code select::-ms-expand {
  display: none; /* Hide the default dropdown arrow in IE */
}

/* Style the options within the select dropdown */
.country-code select option {
  background-color: #fff; /* Set the background color of options */
  color: #333; /* Set the text color of options */
}

/* Style the hover effect for options (if needed) */
.country-code select option:hover {
  background-color: #007bff; /* Change background color on hover */
  color: #fff; /* Change text color on hover */
}

@media (max-width: 600px) {
  .form-container {
    flex-direction: column;
  }

  .form-artwork-container img {
    display: none;
  }

  .form-form-container {
    width: 100%;
    padding: 20 20px 20px 20px;
  }
}

footer {
  background: #02174e;
  width: 100%;
  min-height: 450px;
  box-sizing: border-box;
  background-size: cover;
  display: flex;
  padding: 50px;
}
.foot1 {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}

#p1 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}

#p1 a {
  text-decoration: none;
  color: #fff;
}

#p1 a:hover {
  cursor: pointer;
  color: rgb(221, 239, 253);
}

.icons {
  width: auto;
  display: flex;
  column-gap: 50px;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
}
.icons i {
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}
.icons i:hover {
  color: rgb(221, 239, 253);
}
.foot2 {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10px;
}
footer ul {
  padding-bottom: 20px;
}
footer ul li {
  padding-bottom: 5px;
}
footer .ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
footer ul li {
  list-style: none;
  color: #fff;
}
.foot2 ul li:hover {
  color: rgb(221, 239, 253);
  cursor: pointer;
}
.foot3 {
  width: 100%;
  height: auto;
  color: #02174e;
  background-color: #fff;
  font-weight: 600;
  padding: 10px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-para {
  color: #fff;
  padding-bottom: 20px;
}
.products{
  display: flex;
  column-gap: 30px;
  justify-content: space-between;
}
.products li, .products a {
  text-decoration: none;
  padding-bottom: 10px;
  list-style: none;
}
.products h2{
  color: #fff;
  margin-bottom: 20px;
  font-weight: 500;
}
.logo{
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 780px) {
  footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 50px;
  }
  .foot1 {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .foot2 {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
  }
  .products{
    flex-direction: column;
  }
  #p1{
    font-size: 19px;
  }
  footer .ul {
    flex-direction: row;
    column-gap: 5px
  }
}
