*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
:root {
  --DarkBlue: #02174e;
  --White: #fff;
  --green: #1ba261;
  --font-weight: 500;
}
html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
  overscroll-behavior-x: none;
  font-family: "Roboto ", sans-serif;
  letter-spacing: 1px;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 20px;
}
h1,
h2,
h3 {
  font-weight: var(--font-weight);
}
p {
  line-height: 1.5;
  font-size: 16px;
}
.btn {
  background: var(--green);
  outline: none;
  padding: 10px 20px;
  font-weight: var(--font-weight);
  cursor: pointer;
  border-radius: 5px;
  border: none;
  color: var(--White);
  font-size: 16px;
}

.btn:hover {
  background: rgb(24, 138, 24);
}
/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');



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 .navbar .links li a {
  text-decoration: none;
  white-space: nowrap;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
}
nav li:hover{
  text-decoration: underline;
}

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%;
  }
}

.main {
  width: 100%;
  min-height: 600px;
  background: url(Images/Salesforce-cloud.webp) center/cover;
  box-sizing: border-box;
  display: flex;
  padding: 40px;
  align-items: center;
}
.main_p {
  font-weight: var(--font-weight);
}
.ist1 {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items:start ;

}
.ist1 button{
  margin-top: 20px;
}
.head1 {
  color: var(--DarkBlue);
  font-weight: var(--font-weight);
  font-size: 34px;
}

.ist2 {
  width: 50%;
  display: grid;
  place-items: center;
  padding: 20px;
}

@media only screen and (max-width: 768px) {
  .main {
    flex-direction: column;
    padding: 20px;
    height: 100%;
    margin-top: 70px;
    padding-top: 50px;
  }
  .ist1,
  .ist2 {
    width: 100%;
  }
}

.heading-section .heading-head {
  text-align: center;
  font-size: 34px;
  font-weight: var(--font-weight);
  padding: 40px 20px;
}

@media only screen and (max-width: 480px) {
  .heading-section .heading-head {
    font-size: 22px;
    padding: 30px 15px; /* Adjusted padding for smaller screens */
  }
  .main{
    margin-top: 70px;
    padding-top: 50px;
  }
}

.flexbox {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding: 0px 20px;
}
.flexcardImg {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.flexcard {
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  flex-direction: column;
  width: 23.9%;
  height: auto;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition: box-shadow 0.3s ease-in-out; /* Add transition for smooth effect */
}
.flexcard a {
  text-decoration: none;
  color: #000;
}
.flexcard:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 20px;
  cursor: pointer;
}

.flexcardTitle {
  text-transform: uppercase;
  font-weight: var(--font-weight);
  text-align: center;
  font-size: medium;
}

.flexcardText {
  padding: 10px;
  text-align: center;
}
.flexcardText p {
  margin-bottom: 10px;
}
.flexcardimgItem {
  width: 150px;
  box-sizing: border-box;
  background-size: cover;
  background-position: center center;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.duration-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* RESPONSIVE */

@media only screen and (max-width: 860px) {
  .flexbox {
    justify-content: center; /* Center items on smaller screens */
    gap: 40px; /* Instead of row-gap for better browser support */
  }

  .flexcard {
    width: 44%;
  }
}

@media only screen and (max-width: 520px) {
  .flexbox {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .flexcard {
    width: 90%;
  }
}

.video-container {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden; /* Hide any overflow */
}

.video-container video {
  width: 100%; /* Make the video full width */
  height: 100%; /* Make the video full height */
  object-fit: cover; /* Ensure the video covers the container without stretching */
}

.gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) -100%,
    rgba(0, 0, 0, 1) 100%
  ); /* Black gradient */
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--White);
  font-size: 112px;
  font-weight: var(--font-weight);
}
@media only screen and (max-width: 520px) {
  .overlay {
    font-size: 24px;
  }
}

.companies-container {
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
  background-color: var(--White); /* Background color */
  border-radius: 10px; /* Rounded corners */
  padding: 40px;
}

.companies {
  display: flex;
  animation: slide 20s linear infinite;
  transition: transform 0.5s ease; /* Smooth transition */
}

.companies:hover {
  animation-play-state: paused; /* Pause animation on hover */
}

.companies img {
  margin: 0 10px; /* Adjust margin as needed */
  width: 100px;
  aspect-ratio: 3/2;
  object-fit: contain;
  mix-blend-mode: color-burn;
  transition: transform 0.3s ease; /* Smooth transition */
}

.companies img:hover {
  transform: scale(1.1); /* Zoom effect on hover */
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Adjust for smoother looping */
  }
}

.enroll {
  background-color: var(--DarkBlue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
  width: 100%;
  height: auto;
  color: var(--White);
  padding: 50px 20px; /* Combined padding properties */
  text-align: center;
}
.enroll h3 {
  color: #4586f4;
  text-decoration: underline;
}

.enroll p {
  color: #ddeffd;
  line-height: 1.7rem;
}

.process {
  width: 100%;
  padding: 40px;
  background: linear-gradient(0deg, rgb(255, 255, 255), rgb(204, 234, 249));
}
.part-one h2 {
  font-size: 34px;
  margin-bottom: 10px;
}
.process-subtitle {
  margin-bottom: 5px;
  font-size: 20px;
}

.card-h3t8 h3 {
  margin-bottom: 10px;
}

.process-button {
  display: flex;
  flex-direction: row;
  column-gap: 10px;
  padding: 20px 0px;
}
.process-button1 {
  padding: 10px 15px;
  border: none;
  border-radius: 7px;
  background-color: var(--DarkBlue);
  color: var(--White);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}
.process-button2 {
  padding: 10px 15px;
  border: none;
  border-radius: 7px;
  color: var(--DarkBlue);
  background-color: var(--White);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}
.process-button1:hover,
.process-button2:hover {
  cursor: pointer;
  transform: scale(1.05); /* Zoom effect on hover */
}
@media only screen and (max-width: 768px) {
  .process {
    padding: 20px 20px 0px 20px;
  }
  .process-button1 {
    font-size: small;
  }
  .process-button2 {
    font-size: small;
  }
}

.container-h3t8 {
  width: 100%;
  margin: 50px auto;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
}

.timeline-h3t8 {
  position: relative;
}

.line-h3t8 {
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #333;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.card-container-h3t8 {
  display: flex;
  justify-content: space-between;
  gap: 20px; /* Add gap between cards */
}

.card-h3t8 {
  width: calc(25% - 20px); /* Adjust the width of the card */
  padding: 20px;
  background-color: var(--White);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.card-h3t8:nth-child(1) {
  background-color: var(--White);
  color: var(--DarkBlue);
}
.card-h3t8:nth-child(2) {
  background-color: var(--DarkBlue);
  color: var(--White);
}
.card-h3t8:nth-child(3) {
  background-color: var(--White);
  color: var(--DarkBlue);
}
.card-h3t8:nth-child(4) {
  background-color: var(--DarkBlue);
  color: var(--White);
}
@media screen and (max-width: 768px) {
  .card-h3t8 {
    width: calc(
      50% - 20px
    ); /* Adjust the width of the card for smaller screens */
  }

  .timeline-h3t8 {
    height: auto;
  }

  .line-h3t8 {
    width: 4px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .card-container-h3t8 {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 480px) {
  .card-h3t8 {
    width: calc(100%); /* Adjust the width of the card for mobile screens */
  }
}

/* carousel */
.object {
  width: 100%;
  height: 400px;
}
@media only screen and (max-width: 900px) {
  .object {
    height: 450px;
  }
}
@media only screen and (max-width: 760px) {
  .object {
    height: 380px;
  }
}


/* reviews */
.reviews-h2{
  font-size: 34px;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
}
.reviews-container {
  display: flex;
  padding: 40px;
  column-gap: 20px;
  background: linear-gradient(180deg, rgb(255, 255, 255), rgb(204, 234, 249));

}

.left-section-reviews {
  max-width: 700px;
  padding: 20px;
  border-radius: 10px;
  
}
.left-section-reviews h3{
font-size: 24px;
margin-bottom: 10px;
}
.right-section-shorts {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  
}

.video-container-shorts {
  position: relative;
  padding-bottom: 56.25%; /* Aspect ratio (16:9) for the video */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  width: 250px;
  height: 450px;
  border-radius: 10px;
}

.video-container-shorts iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .reviews-h2{
    font-size: 26px;
  }
  .reviews-container{
    padding: 10px;
    flex-direction: column;
    row-gap: 20px;
  }
  
}


/* accordian */
.accordion {
  width: 100%;
  padding: 20px;
}

.accordion-section {
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease-in-out;
}
.accordian-title {
  width: 100%;
  padding: 20px 0;
}
.accordian-title h2 {
  font-weight: var(--font-weight);
  font-size: 34px;
}
.accordion-header {
  background-color: var(--DarkBlue);
  color: var(--White);
  cursor: pointer;
  padding: 15px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 30px;
  font-weight: var(--font-weight);
  column-gap: 20px;
  line-height: 1.5rem;
}

.accordion-header:hover {
  background-color: #051e5de9;
}

.accordion-content {
  padding: 15px;
  display: none;
  transition: max-height 0.3s ease-in-out;
  max-height: 0;
  overflow: hidden;
  border: 0.5px solid rgb(212, 211, 211);
  border-radius: 50px;
}

.active {
  display: block;
  max-height: 500px; /* Adjust the value based on your content height */
  transition: max-height 0.3s ease-in-out;
}

.accordion-icon {
  font-size: 1.2em;
  transition: transform 0.3s ease-in-out;
}

.accordion-section:last-child {
  margin-bottom: 0;
}

/* form section */
.form-wrap-up {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  /* Updated background with simple gradient */
  background-color: var(--White) fff;
}

.form-container {
  display: flex;
  width: 90%;
  overflow: hidden;
  background: var(--White) fff;
  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: var(--font-weight);
  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: var(--White) 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: #535353;
  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: var(--White); /* 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: var(--White); /* 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;
  }
}

.popup-form {
  position: fixed;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--White);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
  min-width: 700px;
  min-height: auto;
}
@media (max-width: 600px) {
  .popup-form {
    min-width: 350px;
    min-height: auto;
  }
}

.close-button {
  position: absolute;
  top: 20px; /* Adjust as needed */
  right: 20px; /* Adjust as needed */
  background-color: transparent;
  border: none;
  color: #333; /* Adjust color as needed */
  font-size: 20px;
  cursor: pointer;
  z-index: 1000; /* Ensure it's above the popup */
}

.close-button:hover {
  color: rgb(174, 174, 174); /* Change color on hover if desired */
}
footer {
  background: var(--DarkBlue);
  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: var(--font-weight);
  color: var(--White);
}

#p1 a {
  text-decoration: none;
  color: var(--White);
}

#p1 a:hover {
  cursor: pointer;
  color: rgb(221, 239, 253);
}

.icons {
  width: auto;
  display: flex;
  column-gap: 50px;
  font-size: 22px;
  color: var(--White);
  text-decoration: none;
}
.icons i {
  cursor: pointer;
  color: var(--White);
  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: var(--White);
}
.foot2 .ul li:hover {
  color: rgb(221, 239, 253);
  cursor: pointer;
}
.foot3 {
  width: 100%;
  height: auto;
  color: var(--DarkBlue);
  background-color: var(--White);
  font-weight: var(--font-weight);
  padding: 10px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-para {
  color: var(--White);
  padding-bottom: 20px;
}
.products {
  display: flex;
  column-gap: 30px;
  justify-content: space-between;
}
.products h2 {
  color: var(--White);
  margin-bottom: 20px;
  font-weight: var(--font-weight);
}
.products li, .products a {
  text-decoration: none;
  color: var(--White);
  padding-bottom: 10px;
  list-style: none;
}
.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;
  }
}

.floating-parent {
  position: fixed;
  bottom: 0;
  right: 15px;
  display: flex;
  bottom: 15px;
  align-items: center;
  
}
.right-button {
  width: 70px;
  height: 70px;
  background: url(Images/call-icon.png) center/60px no-repeat;
  float: right;
  margin: 0 auto;
  cursor: pointer;
}


.left-button {
  width: 70px;
  height: 70px;
  background: url(Images/WhatsApp_icon.png) center/60px no-repeat;
  float: right;
  margin: 0 auto;
  cursor: pointer;
}

@media only screen and (max-width:600px){
  .floating-parent{
    flex-direction: column;
  }
}