:root {
  --primary: #013328;
  --secondary: #ff914d;
  --ternary: white;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  /* display: flex;
  flex-direction: column; */
   /*overflow-x: hidden; */
   
}

.scroll-top-btn {
  position: fixed;
  bottom: 23px;
  right: 25px;
  background-color: var(--ternary);
  color: var(--secondary);
  border: none;
  border-radius: 50%;
  padding: 8px 10px;
  font-size: 16px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: none;
}

.scroll-top-btn:hover {
  background-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

/*-------ABOUT SECTION-----------*/

.header1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary);
  padding: 15px 50px;
  color: var(--ternary);
  z-index: 2000;
}

.mail {
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  z-index: 1001;
  margin-left: 30px;
}

.mail a {
  text-decoration: none;
  color: var(--ternary);
}
.mail a:hover {
  color: var(--secondary);
  transition: 0.3s ease;
}

.social-icons {
  position: relative;
  z-index: 1000;
}

.social-icons a {
  text-decoration: none;
  color: var(--ternary);
  cursor: none;
  display: inline-block;
  cursor: pointer;
  z-index: 1001;
  margin-right: 25px;
}
.social-icons a:hover {
  color: var(--secondary);
  transition: 0.3s ease;
}
.social-icons i {
  pointer-events: auto;
  font-size: 20px;
  font-size: 1.5rem;
}

.header2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px 10px 68px;
  margin-top: 0.5%;
  width:100%;
}

.logo img {
  width: 150px;
  height: 160px;
}

.menu {
  display: flex;
  gap: 20px;
  margin-left: 190px;
}

.menu a {
  text-decoration: none;
  color: var(--primary);
  font-size: 21px;
  font-weight: 700;
}
.menu a:hover {
  color: var(--secondary);
}

.menu a.active {
  color: var(--secondary);
  font-weight: bold;
  text-decoration: underline;
}

.button {
  padding: 10px 20px;
  background-color: var(--primary);
  color: var(--ternary);
  border: none;
  border-radius: 25px;
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-right: 20px;
}

.button:hover {
  background-color: var(--ternary);
  border: solid 1px var(--primary);
  color: var(--primary);
}
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.container1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  margin-top: -6%;
  gap: 40px;
  max-width: 100%;
  margin-left: 2%;
  margin-right: 2%;
}

.abt {
  flex: 1;
  max-width: 40%;
  
}

.abt h1 {
  font-size: 3.5rem;
  margin-bottom: 30px;
  color: var(--secondary);
}

.abt h1 span {
  color: var(--primary);
}

.abt p {
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 20px;
  max-width: 90%;
}

.btn1 {
  background-color: var(--primary);
  color: var(--ternary);
  border: none;
  padding: 15px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.btn1:hover {
  background-color: var(--ternary);
  border: solid 2px var(--primary);
  color: var(--primary);
  font-weight: 600;
}

.about-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 90%;
}

.about-img img {
  width: 100%;
  height: auto;
}

.curved-container2 {
  width: 100%;
  height: 30px;
  background-color: var(--primary);
  border-bottom-left-radius: 100% 60px;
  border-bottom-right-radius: 100% 60px;
  margin-top: -40px;
}

.curved-container2 .content {
  position: absolute;
  width: 100%;
  text-align: center;
  color: var(--ternary);
}

.container2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin: 0 auto;
  margin-top: -20px;
}

.content-container {
  padding: 20px;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.abt1 {
  text-align: left;
  margin: 20px 0;
  width: 55%;
}

.abt1 h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  margin-top: -20px;
  color: var(--primary);
  text-align: start;
}
.abt1 span {
  color: var(--secondary);
}

.abt1 p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--primary);
  max-width: 90%;
  margin-top: 15px;
  margin-block: 25px;
}

.grid-item {
  margin: 10px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.btn2 {
  background-color: var(--primary);
  color: var(--ternary);
  border: solid 2px var(--primary);
  padding: 15px 25px;
  width: 30%;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn2:hover {
  background-color: var(--ternary);
  color: var(--secondary);
  border: solid 2px var(--secondary);
}

.btn2.active {
  background-color: var(--ternary);
  color: var(--secondary);
  border: solid 2px var(--secondary);
}

.hidden {
  display: none;
}

#mission {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-top: 20px;
  color: var(--primary);
  max-width: 90%;
}

#vision {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-top: 20px;
  color: var(--primary);
  max-width: 90%;
}

#value {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-top: 20px;
  color: var(--primary);
  max-width: 90%;
}

.about-img1 {
  text-align: center;
  margin: 20px 0;
  width: 40%;
}

.about-img1 img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin-top: 5px;
  color: var(--primary);
}

.choose-us {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 40px;
  max-width: 100%;
}

.image-section {
  position: relative;
  width: 50%;
}

.image-section img {
  width: 100%;
  min-height: 65%;
}

.text-section {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.text-section h2 {
  font-size: 3rem;
  color: var(--primary);
  text-align: start;
  margin-top: -10%;
}

.text-section span {
  color: var(--secondary);
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.icon img {
  width: 60px;
  height: auto;
}

.feature .content1 h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: bold;
  text-decoration: underline;
}

.feature .content1 p {
  margin: 5px 0 0 0;
  font-size: 1.2rem;
  color: var(--primary);
}

.container4 {
  display: flex;
  max-width: 1200px;
  padding: 40px;
  padding-top: 0px;
  border-radius: 10px;
  margin-top: -40px;
}

.abt3 {
  width: 50%;
  margin-left: 4%;
  margin-right: 4%;
}

.abt3 h2 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 40px;
  text-align: start;
  margin-top: 30px;
}

.abt3 h2 span {
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.abt3 p {
  font-size: 19px;
  color: var(--primary);
  margin-bottom: 1px;
}
.abt3 ul {
  list-style: disc;
  padding: 0;
  max-width: 100%;
}
.abt3 ul li {
  margin-top: 50px;
  font-size: 1.2rem;
  text-align: start;
  color: var(--primary);
}
.abt3 ul li strong {
  color: var(--primary);
  font-size: 1.4rem;
}

.about-img2 {
  flex: 1;
}

.about-img2 img {
  margin-left: 40px;
  width: 100%;
  min-height: 65%;
}

.footer {
  border-bottom: 2px solid white;
  background-color: var(--primary);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
}
.left-section,
.right-section {
  max-width: 50%;
}
.left-section h2 {
  font-size: 2rem;
  line-height: 1.5;
  color: var(--ternary);
  text-align: start;
  margin-left: 40%;
}
.left-section span {
  color: var(--secondary);
}
.right-section p {
  max-width: 90%;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--ternary);
  line-height: 1.5rem;
}

.cta-button {
  background-color: var(--ternary);
  color: var(--primary);
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

.cta-button:hover {
  background-color: var(--secondary);
  color: var(--ternary);
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

hr {
  border: none;
  border-top: 1px solid var(--ternary);
  margin: 20px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.links a {
  color: var(--ternary);
  margin: 0 15px;
  text-decoration: none;
  font-size: 18px;
}

.links a:hover {
  text-decoration: underline;
}

/*--------CONTACT SECTION----------*/

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 90px;
  margin-bottom: 50px;
  margin-top: -5%;
}

.text-content {
  max-width: 60%;
}

.text-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--primary);
  max-width: 90%;
}

.text-content h1 span {
  color: var(--secondary);
}

.text-content p {
  font-size: 20px;
  word-spacing: 2px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--primary);
  max-width: 90%;
}

.get-started-button {
  display: inline-block;
  padding: 15px 25px;
  background-color: var(--primary);
  color: var(--ternary);
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 20px;
  transition: background-color 0.3s;
}

.get-started-button:hover {
  color: var(--primary);
  background-color: var(--ternary);
  border: solid 2px var(--primary);
}

.get-started-button span {
  margin-left: 10px;
}
.get-started-button .bx {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
.image-content {
  border: solid 20px var(--primary);
  border-radius: 30px;
  position: relative;
  max-width: 40%;
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  border-radius: 10px;
}

.speech-bubble {
  position: absolute;
  bottom: 65%;
  left: -15%;
  background-color: var(--primary);
  color: var(--ternary);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.container5 {
  text-align: center;
  padding: 20px;
  margin-top: -60px;
}

.container5 h2 {
  color: var(--primary);
  font-size: 50px;
  margin-bottom: 40px;
}

.container5 h2 span {
  color: var(--secondary);
  font-size: 50px;
  margin-bottom: 40px;
}

.steps-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 80px;
}

.step {
  background-color: var(--primary);
  color: var(--ternary);
  width: 250px;
  height: 340px;
  padding: 10px 40px;
  border: 5px solid var(--secondary);
  border-radius: 20px;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-left: 20px;
  margin-right: 30px;
}
  /* .step1 {
    background-color: var(--primary);
    color: var(--ternary);
    width: 250px;
    height: 340px;
    padding: 10px 40px;
    border: 5px solid var(--secondary);
    border-radius: 20px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-left: 20px;
    margin-right: 30px;
  } */

.step-number {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary);
  color: #ffffff;
  font-size: 35px;
  font-weight: bold;
  width: 30%;
  height: 60px;
  border-radius: 5px;
  border: 2px solid var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  outline: 2px solid var(--secondary);
}

.step-number1 {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary);
  color: #ffffff;
  font-size: 35px;
  font-weight: bold;
  width: 30%;
  height: 60px;
  border-radius: 5px;
  border: 2px solid var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  outline: 2px solid var(--secondary);
}

.step-content {
  margin-top: 25px;
}

.step-content1 {
  margin-top: 25px;
}

.step-icon {
  font-size: 30px;
  margin-bottom: 10px;
}
.step-icon img {
  height: 50px;
  width: 50px;
}
.step-content h3 {
  font-size: 22px;
  margin: 10px 0;
}

.step-content1 h3 {
  font-size: 22px;
  margin: 10px 0;
}

.step-content,
.step-content1 p {
  font-size: 18px;
  color: var(--ternary);
}

.step:nth-child(2),
.step:nth-child(4) {
  transform: translateY(50px);
}

/* Dotted Line Connection */
.step-number1::after {
  content: "";
  position: absolute;
  top: 70%;
  left: 100%;
  width: 135px;
  height: 2px;
  border-bottom: 2px dashed var(--primary);
  transform: translateY(-50%);
}
.step-number::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 100%;
  width: 125px;
  height: 2px;
  border-bottom: 2px dashed var(--primary);
  transform: translateY(-50%);
}

.step:nth-child(2) .step-number::before,
.step:nth-child(4) .step-number::before {
  content: "";
  position: absolute;
  top: 30%;
  right: 100%;
  width: 115px;
  height: 2px;
  border-bottom: 2px dashed var(--primary);
  transform: translateY(-50%);
}

.step1:nth-child(3) .step-number1::before {
  content: "";
  position: absolute;
  top: 70%;
  right: 100%;
  width: 115px;
  height: 2px;
  border-bottom: 2px dashed var(--primary);
  transform: translateY(-50%);
}

/* Vertical Dotted Line Connection */
/* .step1:nth-child(1):after,
.step1:nth-child(3):after {
  content: "";
  position: absolute;
  left: 120%;
  top: 58%;
  transform: translateY(-50%);
  width: 40px;
  height: 340px;
  border-left: 2px dashed var(--primary);
} */
.step:nth-child(2):after {
  content: "";
  position: absolute;
  left: 118%;
  top: 42%;
  transform: translateY(-50%);
  width: 40px;
  height: 340px;
  border-left: 2px dashed var(--primary);
}
.step:last-child::after {
  display: none;
}

.step:last-child::after,
.step:last-child .step-number::after {
  display: none;
}

.container6 {
  margin-top: 50px;
  padding: 50px;
  margin-right: 30px;
}

.container6 h2 {
  color: var(--primary);
  font-size: 3rem;
}

.container6 h2 span {
  color: var(--secondary);
}

.contact2 {
  display: flex;
  width: 100%;
  /* max-width: 1200px; */
  gap: 40px;
  /* height: 100%; */
}

.info-section {
  flex: 1;
  padding: 20px;
  margin-top: 30px;
  /* min-width: 50%; */
}

.info-section p {
  font-size: 1.3rem;
  color: var(--primary);
 
}

.contact-details {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-details div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.contact-details,
.fa-solid {
  font-size: 30px;
  color: var(--primary);
  margin-left: 20px;
  line-height: 1.2rem;
}

.contact-details a {
  font-weight: normal;
  color: #013328;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: none;
  
}

.map {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
  border-radius: 8px; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
  margin: 20px auto;
  max-width: 800px; 
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.form-section {
  flex: 1;
  background-color: var(--primary);
  color: var(--ternary);
  padding: 25px;
  border-radius: 25px;
  border: 4px solid var(--secondary);
  display: flex;
  flex-direction: column;
  margin-left: 0%;
  min-width: 50%;
  height: 80%;
  margin-top: 7%;
}

.form-section h2 {
  font-size: 34px;
  margin-bottom: 40px;
  margin-left: -10px;
  color: white;
}

.form-section span {
  color: var(--secondary);
}

.country {
  display: flex;
  width: 100%;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 3%;
}

.country select {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  border-radius: 10px;
  border: 3px solid var(--secondary);
  height: 42px;
  box-sizing: border-box;
  width: 100%;
  color: grey;
}

.country select,
.country input[name="phone"] {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  border-radius: 10px;
  height: 42px;
  border: 3px solid var(--secondary);
  box-sizing: border-box;
  width: 100%;
  margin-top: -20px;
}


.form-section form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-section input,
.form-section textarea {
  padding: 10px;
  font-size: 14px;
  border-radius: 10px;
  border: 3px solid var(--secondary);
  margin-top: -12px;
}

.form-section textarea {
  resize: none;
  height: 100px;
}

.form-section input[type="submit"] {
  background-color: white;
  color: var(--primary);
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  width: 100px;
  border-radius: 10px;
  margin-top: 4px;
}

.form-section input[type="submit"]:hover {
  background-color: var(--primary);
  color: white;
}

.form-section form > *:last-child {
  margin-bottom: 0;
}

.footer3 {
  background-color: #f4f6f6;
  padding: 30px;
}

.abt5 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-left: 3%;
}

.abt5 div {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--primary);
}

.abt5 p {
  color: var(--primary);
  line-height: 1.5em;
  margin-right: 80px;
  margin-top: 25px;
  margin-bottom: 25px;
  font-size: 30px;
}

.abt5 span {
  color: var(--secondary);
}

.container7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  margin-bottom: 20px;
  margin-left: 3%;
}

.part1 h2 {
  color: var(--primary);
  font-size: 26px;
  margin: 0;
  text-align: left;
  line-height: 2;
}

.part1 ul {
  list-style: none;
}

.part1 ul li {
  margin-left: 20px;
  color: var(--primary);
  list-style: disc;
  line-height: 1.8;
  font-size: 17px;
}

.part2 h2 {
  color: var(--primary);
  font-size: 26px;
  margin: 0;
  text-align: left;
  line-height: 2;
}

.part2 ul {
  list-style: none;
}

.part2 ul li {
  margin-left: 20px;
  color: var(--primary);
  list-style: disc;
  line-height: 1.8;
  font-size: 17px;
}

.part3 h2 {
  color: var(--primary);
  font-size: 26px;
  margin: 0;
  text-align: left;
  margin-left: 5px;
  line-height: 2;
}

.part3 ul {
  list-style: none;
}

.part3 ul li {
  margin-left: 20px;
  color: var(--primary);
  list-style: disc;
  line-height: 1.8;
  font-size: 17px;
}

.email1 {
  text-align: center;
  color: var(--primary);
  font-weight: bold;
  margin-left: 140%;
  margin-bottom: -10%;
}

.center-line1 {
  background-color: var(--primary);
  border: none;
  height: 2px;
  width: 95%;
  margin: 0 auto;
}

.footer4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--ternary);
  color: var(--primary);
}

.cpyryt {
  font-size: 18px;
  margin-left: 20px;
}

.ts {
  font-size: 18px;
  display: flex;
  justify-content: center;
  margin-right: 20px;
}

/*--------FAQ's-----------*/

 .container8 {
  background-image: url("images/think1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 50px;
  margin-top: -40px;
}

.content-wrapper {
  width: 100%;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--primary);
  margin-left: 2%;
  margin-right: 2%;
}

.main-content h1 {
  font-size: 3.5rem;
  color: var(--primary);
  max-width: 40%;
  text-align: start;
}

.main-content h1 span {
  color: var(--secondary);
}

.main-content p {
  font-size: 1.4rem;
  line-height: 1.5;
  max-width: 50%;
  margin-top: 10px;
}

.btn3 {
  background-color: var(--primary);
  color: var(--ternary);
  border: solid 2px var(--primary);
  padding: 15px 25px;
  width: 20%;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  text-align: center;
  margin-top: 20px;
}

.btn3:hover {
  background-color: transparent;
  color: var(--primary);
  border: solid 2px var(--primary);
}

.curved-container1 {
  width: 100%;
  height: 30px;
  background-color: var(--primary);
  border-bottom-left-radius: 100% 60px;
  border-bottom-right-radius: 100% 60px;
}

.content2 {
  position: absolute;
  top: 50px;
  width: 100%;
  text-align: center;
  color: var(--ternary);
}

.title {
  font-size: 3rem;
  margin: 20px 0;
  color: var(--primary);
  margin-bottom: 30px;
  margin-top: 30px;
}
.title span {
  color: var(--secondary);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 40px;
  justify-items: center;
}

.box {
  background-color: var(--primary);
  color: var(--ternary);
  border-radius: 12px;
  padding: 60px 20px 20px; /* Extra padding on top for icon */
  width: 250px;
  text-align: center;
  box-shadow: 0 6px 9px var(--secondary);
  position: relative; /* Allows icon positioning */
  transition: transform 0.3s ease;
}

.box:hover {
  transform: scale(1.05);
}

.icon1 {
  width: 90px;
  height: 90px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -35px; /* Moves it above the box */
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid var(--primary);
}
.icon1 img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.box h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.box hr {
  width: 100%;
  border: 1px solid var(--secondary);
  margin: 10px auto;
}

.box p {
  font-size: 1rem;
  line-height: 1.5;
}

.arro,
.fa-solid {
  margin-top: 15px;
  font-size: 2rem;
  color: var(--secondary);
  margin-right: 10px;
}

.web_solutions h2,
.mobileapp_development h2,
.digital_marketing h2,
.brand_building h2,
.consulting_services h2,
.general_queries h2 {
  color: var(--primary);
  font-size: 3rem;
  letter-spacing: 2px;
  margin-top: 50px;
}

.web_solutions h2 span,
.mobileapp_development h2 span,
.digital_marketing h2 span,
.brand_building h2 span,
.consulting_services h2 span,
.general_queries h2 span {
  color: var(--secondary);
}

.web_solutions p,
.mobileapp_development p,
.digital_marketing p,
.brand_building p,
.consulting_services p,
.general_queries p {
  color: var(--primary);
  margin-top: 20px;
  margin-bottom: 60px;
  font-size: 22px;
  font-weight: 600;
  border: 2px solid var(--secondary);
  border-radius: 35px;
  width: 55%;
  padding: 20px 50px;
  align-items: center;
  margin-left: 22%;
  text-align: center;
}

.faq-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.faq-item {
  width: 35%;
  background: var(--primary);
  color: var(--ternary);
  border-radius: 25px;
  padding: -5px;
  text-align: left;
  position: relative;
  cursor: pointer;
  border: 5px solid var(--secondary);
}
.faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  margin-left: 10px;
}

.faq-item .faq-question span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 30px;
  font-weight: bold;
  padding: 10px;
  color: var(--secondary);
}
.faq-item .faq-answer {
  display: none;
  background: var(--ternary);
  color: var(--primary);
  padding: 10px;
  margin-top: 5px;
  border-radius: 25px;
  border: 5px solid var(--primary);
}
.faq-item.active .faq-answer {
  display: block;
}
.helpful-button {
  background: var(--secondary);
  padding: 5px 10px;
  border: none;
  border-radius: 25px;
  margin-top: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  color: var(--ternary);
}

.container10 {
  max-width: 1200px;
  margin: 0 80px 0 80px;
  margin-top: 5%;
}
.container10 h2 {
  font-size: 32px;
  color: var(--primary);
  text-align: center;
  font-size: 60px;
}
.container10 h2 span {
  color: var(--secondary);
}

.slider {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 5%;
}

.faq-container1 {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}


.faq {
  width: 60%;
  background-color: var(--secondary);
  padding: 15px;
  border-radius: 0 20px 0 20px;
  font-size: 18px;
  font-weight: bold;
  color: var(--primary);
}
.faq-answer1 {
  background-color: var(--primary);
  color: var(--ternary);
  padding: 15px;
  border-radius: 0 20px 0 20px;
  font-size: 14px;
}
.faq-faq-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.faq-button {
  background-color: transparent;
  color: var(--primary);
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin: 0 5px;
  border-radius: 5px;
  font-weight: 700;
}

.faq-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 1rem;
    display: flex;
    flex-direction: column; 
    gap: 1rem;
}



.faq-item1 {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 5px;
}

/* Buttons */
.faq-faq-buttons {
    text-align: center;
    margin-top: 1rem;
}

.faq-button {
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    background-color: #FF914D;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: var(--primary);
  color: var(--ternary);
  padding: 50px;
  position: relative;
  height: 400px;
  margin-top: 5%;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.banner img {
  max-width: 400px;
  height: 300px;
  object-fit: contain;
  margin-top: 4%;
}
.banner-content {
  text-align: center;
  flex: 1;
  max-width: 40%;
}
.banner-content h2 {
  font-size: 39px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--ternary);
}
.btn4 {
  background-color: var(--secondary);
  color: var(--primary);
  border: none;
  padding: 12px 24px;
  font-size: 20px;
  border-radius: 25px;
  cursor: pointer;
}
.btn4:hover {
  background-color: var(--primary);
  border: 2px solid var(--secondary);
  color: var(--secondary);
}
.swipe-btn a {
  text-decoration: none;
  font-size: 16px;
  color: var(--ternary);
}
.swipe-btn {
  margin-top: 20px;
  display: inline-block;
  border: 2px solid var(--ternary);
  border-radius: 25px;
  cursor: pointer;
  padding: 0px 10px 10px 20px;
}
.swipe-btn:hover {
  transform: scale(1.05);
}

.swipe-btn .fa-solid {
  color: var(--ternary);
  font-size: 16px;
}

.question-icons {
  position: relative;
  max-width: 300px;
  max-height: 300px;
}
.question-icons img {
  max-width: 110%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
}

footer {
  background: var(--primary);
  padding: 40px 20px;
}

/* Top Contact Bar */
.footer-top {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px 50px 15px 50px;
  border-bottom: 1px solid var(--ternary);
  text-align: center;
  width:100%
}

.footer-top div {
  flex: 1;
  min-width: 200px;
}

.footer-top h3 {
  margin: 0;
  font-size: 22px;
  color: var(--secondary);
  margin-bottom: 15px;
}

.footer-top p {
  font-size: 18px;
  margin: 5px 0;
  color: var(--ternary);
}
.footer-top div a {
  text-decoration: none;
  color: var(--ternary);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding-top: 20px;
}

.footer-section1 {
  flex: 1;
  min-width: 250px;
  margin: 20px;
  text-align: center;
}

.footer-section1 h3 {
  color: var(--secondary);
  font-size: 22px;
  text-align: center;
  margin-right: 40px;
}

.footer-section1 ul li {
  list-style: none;
  line-height: 1.5;
  text-align: start;
  margin-left: 60px;
  word-spacing: 7px;
}
.footer-section2 {
  flex: 1;
  min-width: 250px;
  margin: 20px;
  text-align: left;
}
.footer-section2 h3 {
  color: var(--secondary);
  font-size: 22px;
  text-align: center;
  margin-right: 20px;
}
.footer-section3 {
  flex: 1;
  width: 250px;
  margin: 20px;
  text-align: center;
}
.footer-section3 h3 {
  color: var(--secondary);
  font-size: 22px;
  text-align: center;
  margin-top: 10px;
}
.form-container {
  margin-top: 30px;
}

.footer-section1 a {
  text-decoration: none;
  color: var(--ternary);
  display: block;
  margin: 5px 0;
  transition: 0.3s;
  font-size: 18px;
  margin-left: 55px;
  margin-top: 15px;
}

.footer-section2 a {
  text-decoration: none;
  color: var(--ternary);
  display: block;
  transition: 0.3s;
  font-size: 18px;
  line-height: 1.8;
  text-align: left;
  margin-left: 120px;
  word-spacing: 7px;
  margin-top: 15px;
}

.footer-section3 {
  margin-top: 10px;
}
.footer-section1 a:hover {
  color: var(--secondary);
}
.footer-section2 a:hover {
  color: var(--secondary);
}

.form-container form {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
  margin-top: 20px;
}
.phone-container {
  display: flex;
  align-items: center;
  width: 100%;
}

#country_code {
  margin-right: 5px;
  padding: 6px;
  font-size: 14px;
  width: 38%;
  border-radius: 5px;
  color:grey;
  
}

#phone {
  width: 51%;
  padding: 8px;
  font-size: 14px;
}

.form-container input,
.form-container textarea {
  padding: 10px;
  width: 90%;
  border: none;
  border-radius: 5px;
  margin: 5px 0;
}
textarea::placeholder{
      
       font-family: Arial, sans-serif;
        font-size: 14px;
}

.form-container button {
  background: var(--secondary);
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  color: var(--primary);
  margin-top: 5px;
  width: 90%;
}

.footer-bottom {
  background: var(--primary);
  margin-top: 20px;
  text-align: start;
}

.footer-bottom {
  color: var(--ternary);
  font-size: 20px;
  
  width: 100%;
  padding: 0px 50px 0px 50px;
}

.footer-links {
  margin-top: 10px;
 
}

.footer-links a {
  color: var(--ternary);
  margin: 0 10px;
  text-decoration: none;
  font-size: 20px;
}

.footer-links a:hover {
  color: var(--secondary);
}

/* Social Icons */
.social-icons1 {
  margin-top: 10px;
}

.social-icons1 a {
  display: inline-block;
  color: var(--ternary);
  font-size: 30px;
  margin: 0 10px;
  transition: background-color 0.1s ease, transform 0.2s ease;
}

.social-icons1 a:hover {
  color: var(--secondary);
}

/*------Blog Page--------*/

.blog1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  background: var(--ternary);
  padding: 40px;
  border-radius: 10px;
  margin-top: -50px;
  margin-left: -2%;
}
.rocket-section {
  flex: 1;
  max-width: 50%;
}
.rocket-section h1 {
  color: var(--primary);
  font-size: 4rem;
  font-weight: bold;
  margin-top: -50px;
  margin-left: 80px;
}
.rocket-section span {
  color: var(--secondary);
}
.rocket-section p {
  color: var(--primary);
  font-size: 1.2rem;
  max-width: 80%;
  margin-left: 80px;
  line-height: 1.5;
}

.subscribe-box {
  margin-top: 20px;
  display: flex;
  background: var(--ternary);
  padding: 12px;
  border-radius: 30px;
  box-shadow: 0 4px 10px var(--secondary);
  width: fit-content;
  margin-left: 80px;
  margin-top: 50px;
}
.subscribe-box input {
  border: none;
  padding: 10px;
  font-size: 16px;
  outline: none;
  flex: 1;
}
.subscribe-box button {
  background: var(--secondary);
  color: var(--ternary);
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
}
.subscribe-box button:hover {
  transform: scale(1.05);
  background-color: var(--primary);
  color: var(--ternary);
}
.ladyimg-section {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: 50%;
}
.ladyimg-section img {
  max-width: 120%; /* Increased image width percentage */
  height: auto; /* Maintain aspect ratio */
  max-height: 700px; /* Increased max height */
  border-radius: 10px;
}

.blog2 {
  display: flex;
  max-width: 1200px;
  margin: auto;
  background: var(--ternary);
  padding: 20px;
  border-radius: 8px;
  margin-top: 50px;
  align-items: center;
}

.left {
  flex: 1;
  padding: 20px;
}

.left img {
  width: 100%;
  border-radius: 10px;
  height: auto;
}

.right {
  flex: 1;
  padding: 40px;
  background: white;
  color: var(--primary);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left h2 {
  color: var(--ternary);
  font-size: 35px;
}

.right h2 {
  font-size: 24px;
  padding-right: 170px;
  margin-right: 40px;
}
.categories {
  padding: 0px;
  color: var(--secondary);
  padding-left: 50px;
}
.category-list {
  list-style-type: disc;
  padding-left: 80px;
}

.category-list li {
  margin-bottom: 5px;
}

.category-list a {
  font-weight: bold;
  color: var(--primary);
  line-height: 1.8;
}

.category-list a:hover {
  text-decoration: underline;
  color: var(--secondary);
}

.search-container input {
  padding: 10px;
  width: 200px;
  border: 3px solid var(--primary);
  border-radius: 34px;
  margin-left: 50px;
}
.search-container button {
  padding: 12px 24px;
  background: var(--secondary);
  border: none;
  color: var(--primary);
  cursor: pointer;
  border-radius: 25px;
  width: 130px;
}
.blog3 {
  text-align: center;
  margin-top: 50px;
}

.blog3 h2 {
  color: var(--primary);
  font-size: 50px;
  margin-bottom: 40px;
}

.blog3 span {
  color: var(--secondary);
  font-size: 50px;
  margin-bottom: 40px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  width: 220px;
  padding: 20px;
  background-color: var(--primary);
  color: var(--ternary);
  border-radius: 12px;
  border: 4px solid var(--secondary);
  flex-direction: column;
  position: relative;
  margin-left: 60px;
  margin-right: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.arrow {
  width: 60px;
  height: 40px;
  background-color: var(--secondary);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  margin-top: -10px;
}

.arrow i {
  color: var(--primary);
  justify-content: center;
  align-items: center;
  margin-top: -5px;
  margin-left: 15px;
}

.card-title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 50px;
  align-self: center;
}

.card-title a {
  color: white;
  text-decoration: underline;
  word-wrap: break-word;
  font-size: 17px;
  display: block;
}

.card-title a:hover {
  text-decoration: underline;
  color: var(--secondary);
}

.card-content {
  font-size: 16px;
  line-height: 1.4;
  margin-top: 20px;
  color: var(--ternary);
}

.blog4 {
  background-color: var(--primary);
  margin-top: 20px;
}
.blog4 h3 {
  font-size: 56px;
  color: var(--ternary);
  font-weight: 600;
  margin-left: 50px;
  text-align: center;
}

.blog4 span {
  color: var(--secondary);
}
.blog5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  background: var(--primary);
}
.card1 {
  background-color: var(--primary);
  color: var(--ternary);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 15px;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}

.card1 img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  position: relative;
}
.card-content1 {
  padding: 15px;
}
.card1 h4 a {
  font-size: 16px;
  margin: 10px 0;
  margin-top: 10px;
  color: var(--ternary);
}
.card1 p {
  font-size: 15px;
  color: var(--ternary);
}
.card1 button {
  background-color: var(--secondary);
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 20px;
}

.card1 button:hover {
  transform: scale(1.05);
}

.loadmore {
  background-color: var(--ternary);
  color: var(--primary);
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  width: 40%;
  margin-top: 20px;
  align-items: center;
  margin-bottom: 20px;
  margin-left: 130%;
}
.loadmore:hover {
  transform: scale(1.05);
}

/*--------------SERVICE PAGE----------------------------*/

.service1 {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  /* height: 100vh; */
  background: var(--ternary);
  padding: 30px;
}

/* Left Section */
.left-section1 {
  flex: 1;
}

.left-section1 h1 {
  color: var(--primary);
  font-size: 3.5rem;
  font-weight: bold;
  margin-left: 50px;
  text-align: start;
  margin-bottom: 15px;
}
.left-section1 span {
  color: var(--secondary);
}

.left-section1 p {
  color: var(--primary);
  font-size: 1.3rem;
  line-height: 1.3;
  max-width: 500px;
  margin-left: 50px;
}

.email-container {
  margin-top: 25px;
  margin-left: 50px;
  text-align: start;
  display: flex;
  background: var(--ternary);
  padding: 15px;
  border-radius: 20px;
  width: 70%;
  box-shadow: 0 4px 10px var(--secondary);
}

.email-container input {
  border: none;
  padding: 10px;
  font-size: 18px;
  flex: 1;
  outline: none;
}

.email-container button {
  background: var(--primary);
  color: var(--ternary);
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 15px;
  cursor: pointer;
}

.email-container button:hover {
  transform: scale(1.03);
  background-color: var(--ternary);
  color: var(--secondary);
  border: 1px solid var(--secondary);
}

/* Right Section */
.right-section1 {
  width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Circular Image */
.outer-circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.inner-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 4px solid var(--ternary);
  position: absolute;
  overflow: hidden; /* Ensures the image stays inside the circle */
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner-circle img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}

.right-section1 hr {
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: white;
}

.left-divider {
  top: 50%;
  left: 87%;
  width: 12%;
  transform: translateY(-50%);
}
.right-divider {
  top: 50%;
  right: 87%;
  width: 12%;
  transform: translateY(-50%);
}
.label {
  position: absolute;
  background: grey;
  padding: 10px 10px;
  height: 10%;
  border-radius: 15px;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--ternary);
  box-shadow: 0px 2px 5px rgba(238, 2, 2, 0.2);
}

.label .fa-solid {
  font-size: 25px;
  color: var(--ternary);
}

.label i {
  position: absolute;
  top: -45px; /* Move icon outside */
  left: -40px; /* Adjust position */
  background-color: var(--primary);
  padding: 10px 12px;
  border-radius: 50%;
}

.web-development {
  top: -10px;
  right: 100px;
}

.digital-marketing {
  bottom: 10px;
  left: 100px;
}
.curved-container {
  width: 100%;
  height: 30px;
  background-color: var(--primary);
  border-bottom-left-radius: 100% 60px;
  border-bottom-right-radius: 100% 60px;
  margin-top: -10px;
}

.curved-container .content {
  position: absolute;
  width: 100%;
  text-align: center;
  color: var(--ternary);
}
.service2 {
  padding: 40px;
  margin-bottom: 30px;
  margin-left: 4%;
  margin-right: 4%;
}

.service2 .fa-solid {
  color: var(--ternary);
  background-color: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 30px;
  padding: 10px 10px;
  margin-right: -5px;
}

.badge-container {
  position: relative;
  display: inline-block;
}

.trusted-badge {
  background: var(--primary);
  color: var(--ternary);
  padding: 12px 10px;
  margin-left: 40px;
  border-radius: 15px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  box-shadow: 0 2px 30px var(--secondary);
}

.fa-thumbs-up {
  position: absolute;
  top: -20px;
  right: 120px;
  font-size: 30px;
  background: var(--ternary);
  color: var(--secondary);
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 0 20px var(--primary);
  width: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ser-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  text-align: right;
  margin-top: 10px;
}

.ser-head h2 {
  flex: 1;
  text-align: start;
  color: var(--primary);
  font-size: 2rem;
}

.ser-head span {
  color: var(--secondary);
}

.focus-text {
  flex: 1;
  text-align: left;
  color: var(--primary);
  max-width: 500px;
  font-size: 1.5rem;
}

.service-blocks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10%;
}

/* .block-container {
  position: relative;
  width: 280px;
} */

.block {
  width: 250px;
  background: var(--ternary);
  border-radius: 15px;
  text-align: center;
  padding: 20px;
  border: 1px solid var(--secondary);
  position: relative;
  overflow: visible;
  margin-top: 50px;
}

/* Green background block */
.block::before {
  content: "";
  position: absolute;
  width: 110%;
  height: 60%;
  background: var(--primary);
  bottom: -40px;
  left: -5%;
  border-radius: 15px;
  z-index: -1;
}

.block img {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  border: 3px solid var(--primary);
}

.ser-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid var(--primary);
}

.ser-icon .fa-brands {
  font-size: 25px;
  font-weight: bold;
  color: var(--primary);
}

.ser-content {
  margin-top: 30px;
}

.ser-content h3 {
  color: var(--primary);
  margin: 10px 0;
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.ser-content p {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 30px;
}
/* Know More button  */
.ser-btn {
  display: inline-flex;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 10px;
  background: var(--secondary);
  color: var(--ternary);
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 15px;
  transition: 0.3s;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
  z-index: 3;
}
.ser-btn:hover {
  background: var(--secondary);
  transform: scale(1.08);
}

/* Roadmap Section */
.service3 {
  margin-top: 40px;
  text-align: center;
  padding: 50px 20px;
  margin-bottom: 40px;
  margin-left: 2%;
  margin-right: 2%;
}

.service3 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.service3 span {
  color: var(--secondary);
}

/* Roadmap Container */
.roadmap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 80px;
  position: relative;
}

/* Individual Roadmap Steps */
.roadmap-container {
  width: 250px;
  padding: 20px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

/* Roadmap Connecting Diagonal Line */
.roadmap-container::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 35px;
  background-color: var(--primary);
  border-radius: 5px;

  background-image: linear-gradient(
    to right,
    white 0%,
    white 10%,
    transparent 10%,
    transparent 20%
  );
  background-size: 20px 100%;
  z-index: 1;
}

.roadmap-container::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 80px;
  background-image: repeating-linear-gradient(
    to bottom,
    white 0%,
    white 50%,
    transparent 50%,
    transparent 100%
  );
  background-size: 100% 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.roadmap-container:nth-child(odd)::before {
  top: 114%;
  left: calc(60% - 10px);
  transform: rotate(17deg);
}

.roadmap-container:nth-child(even)::before {
  bottom: 105%;
  left: calc(60% - 10px);
  transform: rotate(-17deg);
}

.roadmap-container:nth-child(odd)::after {
  top: 100%;
}

.roadmap-container:nth-child(even)::after {
  bottom: 100%;
}

/* Remove line for the last step */
.roadmap-container:last-child::before,
.roadmap-container:last-child::after {
  display: none;
}

.roadmap-container:nth-child(odd) {
  transform: translateY(-180px);
}

.roadmap-container:nth-child(even) {
  transform: translateY(180px);
}

.roadmap-step {
  font-size: 24px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--ternary);
  border-radius: 50%;
  border: 2px solid var(--primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.roadmap-step i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 40px;
  line-height: 1;
  margin: 0;
  padding: 0;
  color: var(--primary);
}

/* Position roadmap steps correctly */
.roadmap-container:nth-child(odd) .roadmap-step {
  bottom: -60px;
}

.roadmap-container:nth-child(even) .roadmap-step {
  top: -60px;
}

.map-title {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 40px;
}

.description {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 40px;
}

.service3 h3 {
  text-align: center;
  margin-top: 50px;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--primary);
  text-decoration: underline;
}

.shadow-effect {
  background: var(--primary);
  padding: 20px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid var(--ternary);
  /*margin-left: 5%;
  margin-right: 5%;*/
  max-width: 90%;
  min-height: 400px !important;
}

.service4 h2 {
  font-size: 2.5rem;
}

.service4 span {
  color: var(--secondary);
}
#customers-testimonials .shadow-effect p {
  font-family: inherit;
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 17px 0;
  font-weight: 300;
  position: relative;
  padding-left: 40px;
  color: var(--ternary);
  margin-top: 50px;
}

#customers-testimonials .shadow-effect p::before {
  content: "“"; /* Double inverted commas */
  font-size: 120px;
  font-weight: bold;
  color: var(--secondary);
  position: absolute;
  left: 10px;
  top: -10px;
  margin-top: -80px;
}

.testimonial-name {
  margin: -17px auto 0;
  display: table;
  width: auto;
  padding: 9px 35px;
  border-radius: 12px;
  text-align: center;
  color: var(--ternary);
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}

#customers-testimonials .ser-item {
  text-align: center;
  padding: 50px; /* Reduce padding */
  width: 500px;
  height: 450px;
  margin-bottom: 80px; /* Reduce margin at the bottom */
  opacity: 1;
  transform: scale3d(0.8, 0.8, 1);
  transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .ser-item {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.owl-carousel .owl-item img {
  transform-style: preserve-3d;
  max-width: 90px;
  height: 90px;
  margin: 0 auto 17px;
  border-radius: 50%;
}

.customer-info {
  margin-top: 20px;
}

.customer-info .name {
  font-size: 16px;
  font-weight: bold;
  color: var(--ternary);
}

.customer-info .city {
  font-size: 14px;
  color: var(--secondary);
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

/*--home section--*/

.home1 {
  background: linear-gradient(to right, var(--primary) 30%, transparent),
    url("images/h6.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  align-items: stretch;
  position: relative;
  padding: 50px;
  margin-top: -3%;
}

.text-home {
  width: 50%;
  color: var(--ternary);
  margin-left: 30px;
}

.text-home h1 {
  font-size: 4rem;
  color: var(--ternary);
  margin-bottom: 15px;
}

.typing-text {
  font-size: clamp(1rem, 1rem + 5vw, 4rem);
  font-weight: 700;
  color: var(--secondary);
  display: inline-block;
  position: relative;
}

.cursor {
  display: inline-block;
  color: var(--secondary);
  animation: blink 0.7s steps(1) infinite;
  font-weight: 900;
}

@keyframes blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

.text-home p {
  font-size: 1.5rem;
  color: var(--ternary);
  margin-bottom: 50px;
}

.ct-button {
  padding: 15px 25px;
  background-color: var(--secondary);
  color: var(--ternary);
  border: none;
  border-radius: 25px;
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.ct-button:hover {
  background-color: var(--ternary);
  border: solid 2px var(--primary);
  color: var(--primary);
}

.home2 {
  padding: 55px;
  background-color: var(--ternary);
  color: var(--ternary);
}

.home2 h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary);
  font-size: 3rem;
  font-weight: bold;
}

.home2 span {
  color: var(--secondary);
}

.home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;

  margin-top: 2%;
}

.home-block {
  background: var(--primary);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 5px var(--primary);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  color: var(--ternary);
  gap: 5px;
}

.home-block:first-child {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Increased height */
}

.home-block:nth-child(2),
.home-block:nth-child(3) {
  height: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}

.double-img {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-bottom: -5px;
  flex-direction: column;
}

.double-img img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 5px solid var(--secondary);
  object-fit: cover;
}

.home-block:nth-child(2) img {
  width: 200px;
  height: 200px;
  border-radius: 30%;
  align-self: center;
  object-fit: cover;
}

.home-block:nth-child(3) img {
  width: 200px;
  height: 200px;
  border-radius: 30%;
  align-self: center;
  object-fit: cover;
}

.home-block h3 {
  margin: 5px 0;
  color: var(--ternary);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  max-width: 90%;
  margin-left: 7%;
}

.home-block p {
  color: var(--ternary);
  font-size: 1.2rem;
  margin-top: 25px;
  line-height: 1.5;
  max-width: 90%;
  margin-left: 7%;
}

.home-block a {
  display: inline-block;
  margin-top: 5px;
  color: var(--secondary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  margin-left: 7%;
  margin-top: 3%;
  margin-bottom: 2%;
}

.home-block a:hover {
  text-decoration: underline;
}

.home3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 100px;
  background-color: #f4f6f6;
}

.home-content {
  max-width: 30%;
  text-align: left;
  margin-left: 10px;
  margin-top: -5%;
}

.home-content h2 {
  color: var(--primary);
  font-size: 2.8rem;
  margin-top: -6%;
  margin-left: -40px;
  margin-bottom: 5%;
}

.home-content h2 span {
  color: var(--secondary);
}

.home-content p {
  color: var(--primary);
  font-size: 1.3rem;
  margin-top: 5%;
  width: 350px;
  margin-bottom: 12%;
}

.transparent-gif {
  margin-left: 30px;
  width: 100%;
  max-width: 250px;
  height: auto;
}

.serv-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 80%;
  height: 100%;
  margin-left: 8%;
}
.serv {
  padding: 20px;
  border-radius: 20px;
  text-align: left;
  color: var(--ternary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.serv img {
  width: 80px;
  height: 80px;
  margin-left: 35%;
}

.serv h3 {
  font-size: 1.8rem;
  margin: 10px 0;
  color: var(--ternary);
  text-align: left;
}

.serv span {
  font-size: 1.8rem;
  margin: 10px 0;
  color: var(--ternary);
}

.serv p {
  font-size: 1.2rem;
  line-height: 1.5;
}
.home-ser-btn {
  padding: 10px;
  width: 50%;
  background-color: var(--primary);
  border: 3px solid var(--secondary);
  border-radius: 25px;
  color: var(--ternary);
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-left: 18%;
}
.home-ser-btn:hover {
  border: 2px solid var(--secondary);
  background-color: var(--ternary);
  color: var(--secondary);
}
.orange {
  background-color: var(--primary);
}

.dark {
  background-color: var(--primary);
}

.title1 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
  text-align: center;
  margin-top: 5%;
}
.title1 span {
  color: var(--primary);
}

.home4 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.tech-item {
  position: relative;
  text-align: center;
  margin: 0 5px;
}
.diamond-shape {
  width: 160px;
  height: 160px;
  background-color: var(--primary);
  transform: rotate(45deg);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 70px;
  border-radius: 90px 2px 90px 90px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 4px solid var(--primary);
}
.diamond-shape:hover {
  background-color: var(--secondary);
  transform: rotate(45deg) scale(1.1);
}

.diamond-shape img {
  width: 60px;
  height: 60px;
  transform: rotate(-45deg);
  z-index: 2;
}
.tech-name1 {
  font-size: 2rem;
  color: var(--primary);
  font-weight: bold;
  margin-top: 35px;
}
.tech-name2 {
  font-size: 2rem;
  color: var(--primary);
  font-weight: bold;
  margin-top: 70px;
}

.tech-item::before {
  content: "";
  position: absolute;
  top: 110px;
  left: 47%;
  transform: translateX(-50%);
  width: 2px;
  height: 90px;
  background-color: var(--secondary);
}

.tech-item::after {
  content: "";
  position: absolute;
  top: 65px;
  left: 47%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 15px solid var(--secondary);
}

.tech-item:nth-child(odd)::before {
  top: 80px;
}

.tech-item:nth-child(even)::after {
  top: 100px;
}
.circle1 {
  width: 100px;
  height: 100px;
  border: 10px solid var(--ternary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  background: transparent;
}
.describ {
  color: var(--primary);
  font-size: 1.5rem;
  text-align: center;
  width: 70%;
  margin: 70px auto;
}

.home5 {
  background: var(--primary);
  width: 100%;
  /* min-height: 120vh; */
  padding: 40px 60px;
  gap: 30px;
}

.home5 h2 {
  font-size: 2.1rem;
  text-align: left;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--ternary);
  margin-left: 5%;
}
.home5 span {
  color: var(--secondary);
}

.sub-heading {
  font-size: 1.2rem;
  color: var(--ternary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: 5%;
  line-height: 1.8rem;
  margin-top: 2%;
}

.lr_content {
  display: flex;
  max-width: 100%;
  position: relative;
  align-items: center;
  gap: 10%;
  /* margin-left: -5%; */
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20%;
  margin-top: -8%;
}

.industry-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ternary);
  border-radius: 10px;
  padding: 10px 50px;
  left: 60px;
  position: relative;
  width: 100%;
  transform: translateY(-50%) skewX(-5deg);
  overflow: visible;
}

.industry-number {
  background: var(--secondary);
  color: var(--ternary);
  font-size: 1.5rem;
  font-weight: bold;
  padding: 12px 35px;
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%) skewX(20deg);
  border-radius: 5px;
}

.industry-text {
  flex: 1;
  text-align: center;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.3rem;
  position: relative;
  margin-left: 3px;
  min-width: 100%;
}

.industry-item img {
  width: 50px;
  height: 50px;
  margin-left: -8%;
}

.rocket-img {
  min-width: 40%;
  text-align: center;
  margin-right: 50px;
  margin-left: 8%;
  margin-top: -2%;
}

.rocket-img img {
  width: 85%;
  height: 85%;
  margin-top: -18%;
}

.home-solutions {
  padding: 20px;
  border-radius: 10px;
  color: var(--ternary);
}

.home-solutions h3 {
  color: var(--secondary);
  font-size: 1.8rem;
  margin-right: 30px;
  margin-top: -5%;
}

.home-solutions p {
  color: var(--ternary);
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: 9px;
  max-width: 350px;
  margin-left: 8%;
  text-align: center;
}

.home8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
}

.home8 h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 5%;
}

.home8 span {
  color: var(--secondary);
}

.blogs-container {
  display: flex;
  gap: 50px;
}

.box1 {
  padding: 20px;
  border-radius: 10px;
  width: 500px;
  height: 450px;
}

.courses {
  background-color: var(--primary);
  color: white;
}

.courses h3 {
  color: var(--secondary);
  text-align: center;
  font-size: 2rem;
}

.course-item {
  background: white;
  color: var(--primary);
  font-size: 1.2rem;
  border: 3px solid var(--secondary);
  padding: 15px;
  margin: 20px 0;
  border-radius: 15px;
  text-align: center;
  font-weight: bold;
}

.blogs {
  background-color: var(--primary);
  color: var(--secondary);
}

.blogs h3 {
  text-align: center;
  font-size: 2rem;
}

.blog-item {
  display: flex;
  align-items: center;
  border: 3px solid var(--secondary);
  border-radius: 15px;
  padding: 15px;
  margin: 10px 0;
  position: relative;
  background: white;
  margin-top: 30px;
  font-size: 1rem;
}

.blog-label {
  background: var(--secondary);
  color: var(--ternary);
  padding: 10px 20px;
  font-weight: bold;
  position: absolute;
  top: -25px;
  left: -10px;
  clip-path: polygon(0% 10%, 90% 0%, 100% 50%, 90% 100%, 0% 90%);
}

.blog-item a {
  color: var(--primary);
  font-size: 1rem;
}

.blog-item a:hover {
  color: var(--secondary);
}

.blog-item span {
  color: var(--ternary);
}

/*---------	Testimonial Section ----------*/

.home7 {
  margin-top: 5%;
  width: 100%;
  overflow: hidden;
}

.home-testimonial {
  text-align: center;
  color: var(--ternary);
  margin: 80px 30px;
  padding: 30px 40px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  width: 80%;
  align-items: center;
  margin-left: 10%;
  margin-right: 12%;
}

.home-testimonial:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  border-radius: 30px;
  z-index: -1;
  align-items: center;
}

.home-testimonial:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  border-radius: 30px;
  transform: rotate(-7deg);
  z-index: -2;
  align-items: center;
}

.home-testimonial .pic {
  border: 5px solid var(--ternary);
  display: inline-block;
  margin-bottom: 10px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.home-testimonial .pic img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.home-testimonial .testimonial-content {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 30px;
  margin-bottom: 20px;
}

.home-testimonial .testimonial-title a {
  display: inline-block;
  color: var(--secondary);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-testimonial .testimonial-title small {
  color: var(--ternary);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.owl-theme .owl-controls {
  margin-top: 0px;
  margin-left: 10px;
  text-align: center;
}

.owl-theme .owl-controls .owl-buttons div {
  display: inline-block;
  opacity: 1;
  background: var(--secondary);
  color: var(--primary);
  font-weight: bold;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 5px;
}

 .home9 {
  background-color: #f2f2f2; 
  padding: 60px 20px; 
  margin-top:25px;
}

  .head {
  background-color: var(--primary);
  color: var(--ternary);
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px auto;
  height: 200px !important;
  width: 1100px;
  border-radius: 25px;
  margin-top:30px;
}

.head-left {
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
}

.line {
  margin-top: -90px; 
  height: 3px;
  width: 80px;
  background-color: var(--secondary);
  margin-right: 15px;
}

.head-title {
  color: var(--secondary);
  font-size: 30px;
  font-weight: bold;
}

.head-subtitle {
  font-size: 30px;
  font-weight: bold;
  margin: 10px 0;
}

.head-description {
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: left;
  max-width: 800px;
  margin-left: 20%;
  display: inline-block;
}

.clients {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 40px;
  margin: auto;
  max-width: 1000px;
}

.client {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-size: 24px;
  margin-top:-50px;
  
}

.client img {
  width: 200%;
  height: 200px;
  object-fit: contain;
}

/* 14-06-2025 Services*/

.timeline-container h2 {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    }

    .road-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden;
      margin-bottom: 60px;
      height: 400px;
      padding-left: 5%;
      padding-right: 5%;
    }

    .road-svg {
      width: 100%;
      height: 150px;
      position: absolute;
      top: 100px;
      left: 0;
      z-index: 1;
    }

    .road-svg svg {
      width: 100%;
      height: 100%;
    }

    .steps-overlay {
      position: relative;
      width: 100%;
      height: 400px;
      z-index: 2;
    }

    .step-block {
      position: absolute;
      width: 220px;
      text-align: center;
      transform: translateX(-50%);
      left: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .step-item {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      border: 3px solid #013328;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: #013328;
      margin: 0 auto;
      z-index: 3;
      box-shadow: 0 0 6px rgba(1, 51, 40, 0.5);
    }

    .step1-icon,
    .step2-icon,
    .step3-icon,
    .step4-icon,
    .step5-icon {
      background-color: #ff914d;
    }

    .step1-icon { margin-top: 5%; }
    .step2-icon { margin-top: 6%; }
    .step3-icon { margin-top: 8%; }
    .step4-icon { margin-top: 1%; }
    .step5-icon { margin-top: 10%; }

    .step-title {
      font-weight: 700;
      color: #013328;
      font-size: 16px;
      margin: 0;
      margin-top: 10%;
    }

    .step-desc {
      font-size: 14px;
      color: #013328;
      max-width: 220px;
      margin: 0 auto;
      line-height: 1.3;
    }

/*service end*/


/*About us*/
   .why-service-wrapper {
  padding: 60px 3%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.why-service-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.why-service-row.reverse {
  flex-direction: row-reverse;
}

.why-service-image {
  flex: 1 1 45%;
}

.why-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.why-service-content {
  flex: 1 1 50%;
  padding: 0 30px;
}

.why-title {
  font-size: 38px;
  font-weight: 700;
  color: #00332e;
  margin-bottom: 30px;
}

.why-title span {
  color: #fc9655;
}

.why-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding: 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.why-box:hover {
  background-color: #f9f9f9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.why-box-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-box-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-box-text h3 {
  font-size: 20px;
  margin: 0;
  color: #00332e;
}

.why-box-text p {
  margin: 5px 0 0;
  font-size: 16px;
  color: #555;
}

/* about end*/

        .faq-slide {
            flex: 0 0 100%;
            box-sizing: border-box;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        @media screen and (min-width: 768px) {
            .faq-slide {
                flex-direction: row;
            }
        }
