@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Teko:wght@300..700&display=swap');


* {
  margin: 0px;
  padding: 0px;

}

body {
  font-family: "Poppins", sans-serif;
  /* background-color: #d2dcfa; */
  /* font-size: 40px; */
  /* font-weight: 300; */
  /* font-style: normal; */
  margin: auto;
  padding: 0%;
  overflow-x: hidden;

}


/* ------------ BASE LOGO STYLING ------------ */
/* .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
  /* Tagline Top Bar */



.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  margin-top: 0;
  /* Or adjust as needed */
  margin-right: 0;
  padding: 0;
  display: block;
  max-width: 100%;
  height: auto;
  /* max-height: 133px; */
}

/* Tagline Top Bar */
.tagline {
  width: 100%;
  background-color: #ffffff;
  color: #03406e;
  font-size: 1.5rem;
  font-weight: 750;
  text-align: center;
  padding: 10px 15px;
  border-bottom: 1px solid #e0e0e0;
  letter-spacing: 0.5px;
  margin-top: 2vh;
}


/* @media (max-width: 768px) {
  .logo img {
    max-height: 50px;
  } */
/* } */
@media (max-width: 768px) {
  .logo {
    flex-direction: column;
    align-items: flex-start;
  }

  .tagline {
    font-size: 1rem;
    padding: 5px 10px;
  }


}

/* ------------ HEADER NAVIGATION ------------ */
.main-header {
  width: 100%;
}

nav {
  position: fixed;
  z-index: 99;
  width: 100%;
  /* margin-top: 8vh; */
  background: white;
  justify-content: space-around;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav .wrapper {
  max-width: 1350px;
  padding: 0 20px;
  height: 85px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo a {
  text-decoration: none;
  font-size: 30px;
  font-weight: 600;
}

/* ------------ NAV LINKS (DESKTOP) ------------ */
.wrapper .nav-links {
  margin-left: -50px;
  /* margin: 0px 0px 0px 75px;   */
  display: inline-flex;
  align-items: center;
}

.nav-links li {
  list-style: none;
  position: relative;
}

.nav-links li a {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  padding: 30px 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  color: #0b89e6;
}

.nav-links li a .bx-chevron-down {
  transition: transform 0.3s ease;
}

.nav-links li:hover a .bx-chevron-down {
  transform: rotate(180deg);
}

/* ------------ MEGA MENU DROPDOWN ------------ */
.mega-box {
  position: absolute;
  top: 56px !important;
  left: 90%;
  transform: translateX(-50%);
  width: max-content;
  background-color: #fff;
  padding: 10px 20px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}

.nav-links li:hover .mega-box {
  opacity: 1;
  visibility: visible;
}

.mega-box .content {
  display: flex;
  gap: 10px;
}

.content .row {
  width: 200px;
  padding: 10px;
  background: #fcfcfc;
  border-radius: 10px;
}

.content .row header {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.content .row .mega-links li {
  padding: 5px 0;
}

.content .row .mega-links li a {
  font-size: 16px;
  text-decoration: none;
  color: #000;
  display: block;
  padding: 5px 10px;
}

.content .row .mega-links li a:hover {
  color: #0b89e6;
}

/* ------------ HIDE MOBILE CONTROLS BY DEFAULT ------------ */
.nav-links .mobile-item {
  display: none;
}

/* ------------ CONTACT INFO ------------ */
.contact-info {
  white-space: nowrap;
  display: flex;
  align-items: center;
  /* margin-left: auto; */
  /* margin-right: 15px; */
}

.contact-info .phone-number {
  font-size: 14px;
  /* font-weight: 600; */
  color: white;
  background-color: #03406E;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.contact-info .phone-number i {
  color: #a7d9ff;
}

.contact-info .phone-number:hover {
  color: #ADDCFF;
}

/* ------------ MOBILE NAVIGATION ------------ */
.wrapper .btn {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

.wrapper .btn.menu-btn i {
  color: black;
}

.wrapper .btn.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: white;
}

.right-side {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* ------------ MOBILE MEDIA QUERY ------------ */
@media screen and (max-width: 1024px) {
  .wrapper .btn {
    display: block;
  }

  .wrapper .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 100%;

    margin: 0px;
    max-width: 350px;
    background: #242526;
    display: block;
    padding: 50px 20px;
    overflow-y: auto;
    transition: all 0.3s ease;
  }

  .toggle {
    display: block;
  }

  #menu-btn:checked~.nav-links {
    left: 0;
  }

  #menu-btn:checked~.btn.menu-btn {
    display: none;
  }

  #close-btn:checked~.btn.menu-btn {
    display: block;
  }

  .nav-links li {
    margin: 15px 10px;
  }

  .nav-links li a,
  .nav-links .mobile-item {
    color: white;
    font-size: 20px;
    display: block;
    padding: 10px 20px;
  }

  .nav-links .mobile-item {
    display: block;
    font-weight: 500;
    cursor: pointer;
  }

  .nav-links .desktop-item {
    display: none;
  }

  .nav-links li a:hover,
  .nav-links .mobile-item:hover {
    background: #3A3B3C;
    color: #0b89e6;
  }

  /* Mega Box Inside Mobile Menu */
  .nav-links .mega-box {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: transparent;
    box-shadow: none;
    padding-left: 10px;
  }

  #showMega1:checked~.mega-box,
  #showMega2:checked~.mega-box,
  #showMega3:checked~.mega-box {
    max-height: 1000px;
  }

  .mega-box .content {
    flex-direction: column;
    padding: 10px 0;
  }

  .mega-box .content .row {
    width: 100%;
    margin-bottom: 15px;
    background: none;
  }

  .content .row header {
    font-size: 18px;
    color: #ffffff;
  }

  .content .row .mega-links li a {
    color: #cccccc;
    padding-left: 25px;
  }

  .content .row .mega-links li a:hover {
    color: #0b89e6;
  }

  .contact-info .phone-number {
    font-size: 10px;
  }
}

/* ------------ HIDE INPUTS ------------ */
nav input {
  display: none;
}






/* hero-section  */

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background-image: url(img\hero-background.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #03406e;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.hero-section .section-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  /* Allows wrapping for smaller screens */
  gap: 0px;
  /* Adds spacing between elements */
  width: 101%;
  max-width: 1100px;
  margin: auto;
  color: white;
}

.hero-details {
  flex: 1 1 50%;
  /* Takes up 50% of the width, adjusts on smaller screens */
  margin: 0;
  text-align: left;
}

.hero-details .title {
  font-size: 1.3rem;
  color: #2897e6;
  margin-bottom: 10px;
}

.hero-details .subtitle {
  margin-top: 8px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-details .description {
  margin: 24px 0px 40px;
  font-size: 1rem;
  line-height: 1.6;
}

.hero-details .buttons {
  display: flex;
  gap: 15px;
}

.hero-details .button {
  cursor: pointer;
  padding: 10px 20px;
  color: #03406e;
  border: 2px solid transparent;
  border-radius: 15px;
  background-color: #e4eaf0;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-details .button:hover {
  color: rgb(255, 255, 255);
  border-color: #ffffff;
  background: transparent;
}

/* .hero-details .contact-us:hover {
  color: #e6b224;
  background-color: #e4eaf0;
} */

.hero-image-wrapper {
  flex: 1 1 40%;
  /* Takes up 40% of the width, adjusts on smaller screens */
  text-align: center;
}

/* Hero Section Video Button */
.hero-image-wrapper {
  position: relative;
  text-align: center;
}

/* Video Button */
.video-button {
  position: absolute;
  bottom: 80px;
  left: 59%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background-color: #0b89e6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.video-button:hover {
  background-color: #d9734a;
  transform: translateX(-50%) scale(1.1);
}

/* Video Container */
.video-container {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.video-container video {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
}

.close-video {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.video-button i {
  margin-left: 2px;
}

.hero-image-wrapper .hero-image {
  max-width: 117%;

  height: 56%;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .hero-section {
    padding: 20px;
  }

  .hero-details {
    text-align: center;
  }

  .hero-details .title {
    font-size: 1.2rem;
  }

  .hero-details .subtitle {
    font-size: 2rem;
  }

  .hero-details .description {
    font-size: 0.9rem;
  }

  .hero-details .buttons {
    justify-content: center;
  }

  .hero-image-wrapper {
    flex: 1 1 100%;
  }
}

/* funnel  */

.funnel-info {
  align-content: center;
  align-items: center;
}

.layout-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin-top: 50px;
}

.funnel-image {
  width: 300px;
  margin: 0 20px;
}

.content-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 45%;
}

.content-section {
  margin: 20px 0;
  text-align: left;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
}




/* Services Section */

.services-heading {
  text-align: center;
  margin: 20px 0;
}

.services-section .grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.services-section .info-card {
  text-align: center;
  background: #6b7bb9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-section .info-card:hover {
  transform: translateY(-10px);
  background-color: #41508d;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.services-section .img-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services-section .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-section .info-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.services-section .info-card p {
  font-size: 14px;
  color: #555;
}

@media (max-width: 900px) {
  .services-section .grid-container {
    grid-template-columns: repeat(2, 1fr);
    /* 2 items per row on smaller screens */
  }
}

@media (max-width: 600px) {
  .services-section .grid-container {
    grid-template-columns: repeat(1, 1fr);
    /* 1 item per row on very small screens */
  }
}

/* services-2  */

.container-2 {
  margin: 100px 100px;
  padding: 0px 0px 0px 0px;
}

.row-2 {
  display: flex;

}

.serviceBox {
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  padding: 25px;
  margin: 5px 0 0 5px;
  border-radius: 10px;
  box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease 0s;
}

.serviceBox:hover {
  background: #FB374D;
}

.serviceBox .service-icon {
  color: #FB374D;
  font-size: 55px;
  margin: 0 0 20px;
  transition: all 0.3s ease 0s;
}

.serviceBox .title {
  color: #444;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 27px;
  text-transform: capitalize;
  margin: 0 0 10px;
  transition: all 0.3s ease 0s;
}

.serviceBox .description {
  color: #999;
  font-size: 14px;
  line-height: 27px;
  margin: 0 0 15px;
  transition: all 0.3s ease 0s;
}

.serviceBox .read-more {
  color: #FB374D;
  font-size: 15px;
  transition: all 0.3s ease 0s;
}

.serviceBox .read-more:hover {
  text-shadow: 4px 4px rgba(255, 255, 255, 0.3);
}

.serviceBox.cyan .service-icon,
.serviceBox.cyan .read-more {
  color: #36ADB3;
}

.serviceBox.cyan:hover {
  background: #36ADB3;
}

.serviceBox.blue .service-icon,
.serviceBox.blue .read-more {
  color: #172E5A;
}

.serviceBox.blue:hover {
  background: #172E5A;
}

.serviceBox.orange .service-icon,
.serviceBox.orange .read-more {
  color: #F05D0D;
}

.serviceBox.orange:hover {
  background: #F05D0D;
}

.serviceBox:hover .service-icon,
.serviceBox:hover .title,
.serviceBox:hover .read-more {
  color: #fff;
}

.serviceBox:hover .description {
  color: rgba(255, 255, 255, 0.8);
}

@media only screen and (max-width: 990px) {
  .serviceBox {
    margin: 0 0 30px;
  }
}


/* 
/* Global Companies Section */
/* Global Companies Section */
.global-companies-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #ffffff;
}



.logos-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0px auto 42px;
  /* box-shadow: 0px 0px 5px black; */
}



.logo-box {
  flex: 0 0 auto;
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #fff; */
  border-radius: 8px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease;
}

.logo-box img {
  max-width: 100%;
  max-height: 80%;
  object-fit: contain;
}

.logo-box:hover {
  transform: scale(1.1);
}

/* Animation for automatic scrolling */
@keyframes slide-logos {
  0% {
    transform: translateX(100);
  }

  100% {
    transform: translateX(-100%);
  }
}

.logos-slider .logos-track {
  display: flex;
  gap: 20px;
  /* animation: scroll-logos 40s linear infinite; */
  animation: 25s slide-logos infinite linear;
  /* Slower scrolling (40s) */
  width: calc(200%);
  /* Double the width for seamless looping */
}

/* srvice-provide  */
.services-provide {
  margin: 0px 52px 0px 52px;
  padding: 0px 0px 0px 0px;
}

.provide-header {
  text-align: center;
  /* max-width: 800px; */
  margin-bottom: 20px;
}



.provide-header p {
  font-size: 1.2rem;
  color: #555;
}

.provide-grid-container {
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  /* max-width: 1000px; */
}

.provide-info-card {


  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: all 1s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
  overflow: hidden;
}

.provide-info-card img {
  width: 80px;
  /* Adjust the size of the image */
  height: 80px;
  /* Maintain aspect ratio */
  margin-bottom: 15px;
  /* Add spacing below the image */
  object-fit: contain;
  /* Ensure the image fits within the dimensions */
}

.provide-icon-box,
.provide-info-card h3 {
  position: relative;
  z-index: 1;
  /* Ensure they stay visible */
  transition: transform 0.3s ease;
  /* Smooth animation */
}

.provide-info-card:hover {
  transform: translateY(-5px);
}

.provide-icon-box {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.provide-info-card h3 {
  font-size: 1.2rem;
  margin: 0;
}

.provide-info-card p {
  font-size: 1rem;
  color: #555;
  margin: 10px 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
}

.provide-info-card:hover p {
  opacity: 1;
  max-height: 100px;
}

.provide-info-card a {
  color: #e6007e;
  text-decoration: none;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.provide-info-card:hover a {
  opacity: 1;
}

@media (max-width: 900px) {
  .provide-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .provide-grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* funnel-info    */

/* Funnel Info Section */
.funnel-container {
  display: flex;
  justify-content: space-between;
}

.funnel-main {
  background-image: url(https://static.vecteezy.com/system/resources/previews/018/876/350/non_2x/funnel-infographic-presentation-template-free-png.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 500px;
  /* Adjust height based on the funnel image */
  padding: 20px;
  position: relative;
}

.funnel-main-heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin: 10px 0;
  position: relative;
  z-index: 1;
  /* Ensure headings are above the background image */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  /* Optional: Add text shadow for better readability */
}

@media (max-width: 768px) {
  .funnel-main {
    height: auto;
    /* Allow height to adjust for smaller screens */
    background-size: cover;
    /* Adjust background size for smaller screens */
    padding: 10px;
  }

  .funnel-main-heading {
    font-size: 1.2rem;
    /* Reduce font size for smaller screens */
  }
}

@media (max-width: 480px) {
  .funnel-main-heading {
    font-size: 1rem;
    /* Further reduce font size for very small screens */
  }
}

/* insight  */
.insights-banner {
  width: 100%;
  /* max-width: 1200px; */
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
}

.insights-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.insights-subtitle {
  font-size: 16px;
  margin-bottom: 20px;
}

.insights-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.insight-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.insight-number {
  font-size: 40px;
  margin: 5px 0;
}

.insight-description {
  font-size: 16px;
  margin: 0;
}

/* blog  */
/* Overall Layout */
.blog-section {
  max-width: 1366px;
  margin: auto;
  padding: 2rem;
}

.container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: auto;
}

/* Left Section: Blog */
.blog-content-block {
  flex: 2;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: #007bff;
  border-radius: 50%;
  display: inline-block;
}

.blog-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 280px;
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-content {
  padding: 1rem;
}

.blog-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.blog-meta {
  font-size: 0.85rem;
  color: #666;
}

/* Right Section: YouTube */
.youtube-block {
  flex: 1;
  background: #f8f9fc;
  padding: 1rem;
  border-radius: 10px;
}

.youtube-heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.youtube-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.youtube-card:hover {
  transform: translateY(-5px);
}

.youtube-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px 10px 0 0;
}

@media (max-width: 500px) {
  .blog-header h2 {
    font-size: 28px;
  }

  .blog-content h4 {
    font-size: 18px;
  }
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
  padding: 0 1rem 1rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
  }

  .blog-grid {
    flex-direction: column;
  }

  .section-title {
    justify-content: center;
  }
}

/* flags */
/* .countries-section {
  text-align: center;
  padding: 50px 20px;
  background-color: white;
} */



.countries-section h2 span {
  color: #0073e6;
}

.map-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.map-container img {
  max-width: 100%;
  height: auto;
}

.countries-grid {
  /* display: flex;
  flex-wrap: wrap;
  gap: 0px;
  margin-top: 5vh ;
  justify-content: center;
  align-items: flex-start; */
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.country-box {
  /* background: #fff;
  width: 90px;
  padding: 0px;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; */
  background: 0 0;
  width: auto;
  padding: 0.5rem 0.8rem;
  border-radius: .2rem;
  display: inline-block;
  font-weight: 400;
  font-size: 1rem;
  border: 1px solid #03406e;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
  display: flex;
}

.country-box img {
  width: 30px;
  height: 20px;
  /* object-fit: contain; */
  /* border-radius: 6px; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* margin-bottom: 8px; */
  box-shadow: 0px 0px 2px black;
}

/* revenue   */



.tabs-container {
  display: flex;
  max-width: 1200px;
  margin: 20px auto 50px;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 60px 0px;
}

.tabs-navigation {
  width: 30%;
  background-color: white;
  padding: 20px;

}

.tabs-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tabs-navigation .tab-item {
  padding: 15px;
  text-align: center;
  cursor: pointer;
  color: black;
  display: flex;
  align-items: center;
  /* justify-content: space-around; */
  margin: 10px 0px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.3s ease;
}

.tabs-navigation .tab-item img {
  width: 40px;
  height: 40px;

  margin-right: 20px;
  margin-bottom: 10px;
}

.tabs-navigation .tab-item.active,
.tabs-navigation .tab-item:hover {
  background-color: #03406e;
  color: white;

}

.tabs-content {
  width: 70%;
  padding: 30px;
  position: relative;
  top: 50px;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
  display: block;
}

.tab-content-header img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: -75px auto;
  border-radius: 5px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.473));

}

.tab-description {
  text-align: left;
  padding: 80px 30px 30px;
  border-radius: 20px;
  background-color: #03406e;
}

.tab-description h3 {
  font-size: 22px;
  color: white;
  margin-bottom: 10px;
}

.tab-description p {
  font-size: 16px;
  color: white;
  padding: 5px 20px;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .tabs-container {
    flex-direction: column;
  }

  .tabs-navigation {
    width: 100%;
  }

  .tabs-content {
    width: 100%;
    padding: 0px;
  }
}



/* faq-section   */
.faq-main {
  text-align: center;
  background-color: #ffffff;

}

.faq-main h1 {
  font-size: 2.7rem;
}

.faq-que-ans {
  display: flex;


  /* margin: -41px 41px 0px 49px ; */
  padding: 0px 0px 0px 0px;
  gap: 20px;
}


.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq-section h1 {
  text-align: center;
  color: #333;
}

.faq {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.faq:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background-color: #f4f4f4;
  border: none;
  padding: 15px;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: #e9e9e9;
}

.faq-question .icon {
  font-size: 18px;
  font-weight: bold;
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.6;
  padding: 0 15px;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.faq-answer p {
  margin: 10px 0;
}


/* footer  */
.footer {
  position: absolute;
  /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1280px; */
  width: 100%;
  color: white !important;
  background: #03406e;
  border-radius: 6px;
}

.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1.5rem;
  padding: 40px;
}

.footer-row .footer-col h4 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-col .links {
  margin-top: 20px;
}

.footer-section-title {
  width: 100%;
  text-align: center;
  text-decoration: underline;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-service-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  /* Same as Tailwind's gap-16 */
}

.footer-heading {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}


.footer-col .links li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col .links li a {
  text-decoration: none;
  color: #ffffff;
}

.footer-col .links li a:hover {
  color: #ffffff;
}

.footer-col p {
  margin: 20px 0;
  color: #ffffff;
  max-width: 308px;
}

.footer-col p a {
  text-decoration: none;
  color: #ffffff;
  ;
}

.footer-col form {
  display: flex;
  gap: 5px;
}

.footer-col input {
  height: 40px;
  border-radius: 6px;
  background: none;
  width: 100%;
  outline: none;
  border: 1px solid #7489C6;
  caret-color: #fff;
  color: #000000;
  padding-left: 10px;
}

.footer-col input::placeholder {
  color: #ccc;
}

.footer-col form button {
  background: #fff;
  outline: none;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  color: #000000;
  font-weight: 500;
  transition: 0.2s ease;
}

.footer-col form button:hover {
  background: #cecccc;
}

.footer-col .icons {
  display: flex;
  margin-top: 30px;
  gap: 30px;
  cursor: pointer;
}

.footer-col .icons i {
  font-size: 1.5rem;
  color: #afb6c7;
}

.footer-col .icons i:hover {
  color: #fff;
}

.footer-col img {
  height: 100px;
  width: 100px;
}



@media (max-width: 768px) {
  .footer {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
  }

  .footer .footer-row {
    padding: 20px;
    gap: 1rem;
  }

  .footer-col form {
    display: block;
  }

  .footer-col form :where(input, button) {
    width: 100%;
  }

  .footer-col form button {
    margin: 10px 0 0 0;
  }

  .footer-col-2 {
    display: flex;
    align-items: normal;
    gap: 125px;
  }

  .service-wrapper{
    width: 44%;
  }
  .footer-service-wrapper{
    gap: 32px;
  }
}

/* Footer Bottom Styling */
.footer-bottom {
  text-align: center;
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
}

.row {
  margin: 15px 6px 8px 9px;
  /* display: flex; */
  justify-content: space-between;
}

.banner a img {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;

  width: 128px;
  height: 36px;
}

/* footer logo slider  */


.footer-logo-slider {
  margin: 0px 0px;
  padding: 0px 20px;
  text-align: center;
}


/* about-us  */
.main {
  overflow: hidden;
  margin: 0px 0px;
  padding: 85px 0px 0px;
}


.heading h3 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
}

.heading p {
  margin-bottom: 10px;
  text-align: center;
  font-size: 20px;
}

.heading h2 {
  margin-bottom: 15px;
  text-align: left;
  font-size: 30px;
}

.heading h1 {
  margin-bottom: 15px;
  text-align: center;
  font-size: 25px;
}

.heading li {
  margin-bottom: 15px;
  margin-left: 40px;
  text-align: left;
  font-size: 20px;

}

/* ENQUIRY FORM */

.enquiry-container {
  display: flex;
  /* flex-wrap: wrap; */
  background: white;
  padding: 30px;
  border-radius: 12px;
  /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); */
  max-width: 1000px;
  margin: 0px 0px 25px 150px;
  gap: 20px;
  transition: 0.3s ease-in-out;
}

.form-section,
.image-section {
  padding-top: 150px;
  width: 50%;
}

.form-section h2 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
  color: #0051A8;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Minimal Input Style */
.form-field,
.form-fullwidth,
textarea,
select {
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  padding: 10px 0;
  font-size: 14px;
  color: #333;
  width: 100%;
  transition: border-color 0.3s;
}

.form-field:focus,
textarea:focus,
select:focus {
  outline: none;
  border-bottom: 1px solid #007bff;
}

textarea.form-fullwidth {
  grid-column: 1 / -1;
  resize: vertical;
}

.form-submit {
  grid-column: 1 / -1;
  padding: 12px;
  border: 2px solid #007bff;
  background: #0051A8;
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
}

.form-submit:hover {
  background: white;
  color: #0051A8;
}

.image-section img {
  width: 100%;
  border-radius: 6px;
  display: block;
  object-fit: cover;
}

/* Optional: visually match placeholder width using ch units */
input[placeholder="Work Email Address *"] {
  width: 22ch;
}

input[placeholder="First and Last Name *"] {
  width: 25ch;
}

input[placeholder="Website *"] {
  width: 16ch;
}

input[placeholder="Company *"] {
  width: 16ch;
}

input[placeholder="Phone Number *"] {
  width: 20ch;
}

select,
textarea {
  width: 100% !important;
}

@media (max-width: 768px) {
  .enquiry-container {
    margin-left: 0px;
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .form-section,
  .image-section {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-section h2 {
    font-size: 20px;
  }

  .form-field,
  textarea,
  select {
    width: 100% !important;
  }
}

@media (max-width: 480px) {

  .form-field,
  .form-fullwidth,
  .form-submit {
    font-size: 12px;
    padding: 10px 0;
  }

  .form-section h2 {
    font-size: 18px;
  }
}



/* / testimonial  / */
.testimonial-wrapper {
  width: 93%;
  margin: 20px auto;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-item {
  min-width: 97%;
  display: flex;
  align-items: center;
  gap: 65px;
  padding: 16px;
}

.testimonial-item .img {
  margin-left: 20px;
  width: 320px;
  height: auto;
  border-radius: 5px;
}

.testimonial-content {
  max-width: 60%;
}

.testimonial-content-heading {
  display: flex;
  align-items: center;
}

.testimonial-content-heading img {
  width: 90px;
  height: auto;
  border-radius: 50%;
  border: 2px solid #03406e;
  object-fit: cover;
}

.testimonial-content h2 {
  margin-top: 50px;
  font-size: 20px;
  font-weight: bold;
}

.testimonial-content p {
  font-size: 16px;
  margin: 10px 0;
}

.testimonial-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.testimonial-controls button {
  background: black;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .testimonial-item {
    padding: 15px;
  }

  .testimonial-content-heading h2 {
    font-size: 1rem;
  }

  .testimonial-content p {
    font-size: 0.9rem;
  }

  .testimonial-controls button {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .testimonial-item img {
    width: 60px;
    height: 60px;
  }

  .testimonial-content-heading h2 {
    font-size: 0.9rem;
  }

  .testimonial-content p {
    font-size: 0.8rem;
  }

  .testimonial-controls button {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
}


.testimonial-wrapper {
  width: 93%;
  margin: 20px auto;
  overflow: hidden;
  position: relative;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-item {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 65px;
  padding: 24px;
  box-sizing: border-box;
}

.testimonial-item .img {
  margin-left: 20px;
  width: 320px;
  height: auto;
  border-radius: 5px;
}

.testimonial-content {
  max-width: 60%;
}

.testimonial-content-heading {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-content-heading img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid #03406e;
  object-fit: cover;
}

.testimonial-content h2 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 44px;
}

.testimonial-content p {
  font-size: 16px;
  margin: 10px 0;
  color: #333;
}

.testimonial-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.testimonial-controls button {
  background: black;
  color: white;
  border: none;
  padding: 12px;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s;
  /* border-radius: 50%; */
}

.testimonial-controls button:hover {
  background: #222;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-item {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .testimonial-item .img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .testimonial-content {
    max-width: 100%;
    text-align: center;
  }

  .testimonial-content-heading {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-content h2 {
    font-size: 1.1rem;
    margin-top: 10px;
  }

  .testimonial-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .testimonial-content-heading img {
    width: 70px;
    height: 70px;
  }

  .testimonial-content h2 {
    font-size: 1rem;
  }

  .testimonial-content p {
    font-size: 0.9rem;
  }

  .testimonial-controls button {
    padding: 8px;
    font-size: 20px;
  }
}

/* WHY CHOOSE US  */

#why-choose-us {
  padding: 80px 3px;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #1f2937;
  line-height: 1.6;
}

#why-choose-us .container {
  max-width: 1100px;
  margin: auto;
}

#why-choose-us .section-heading {
  text-align: center;
  margin-bottom: 60px;
}



#why-choose-us .section-heading p {
  font-size: 1.2rem;
  color: #555;
}

#why-choose-us .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

#why-choose-us .card {
  background-color: #03406e;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  text-align: center;
  color: white;
}

#why-choose-us .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

#why-choose-us .icon-circle {
  background-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#why-choose-us .icon-circle svg {
  width: 28px;
  height: 28px;
  stroke: #0051ff;
}

#why-choose-us .card-title {
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 10px;
}

#why-choose-us .card-text {
  font-size: 15px;
  color: #ffffff;
  font-weight: 600;
}

@media (max-width: 767px) {
  #why-choose-us .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #why-choose-us .card-text {
    display: none;
  }
}

@media (min-width: 1024px) {
  #why-choose-us .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* about-us */
.about-hero {
  background: rgba(0, 89, 164, 0.8);
  height: 464px;
  width: 100%;
  background-image: url(../img/junction-website-services-digital-marketing-1.png);
  background-position: center;
  background-size: cover;
  /* background-color: #03406e; */
  /* background-blend-mode: overlay; */
  /* display: flex
; */
  /* justify-content: space-between; */
  align-items: center;
  padding: 20px;
  text-align: center;
}

.about-content {
  margin-left: 6px;
  /* width: 50%; */
  /* max-width: 800px; */
  margin-top: 40px;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  background: rgba(3, 64, 110, 0.8);
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); */
  transition: all 0.3s ease;
  /* font-family: 'Arial', sans-serif; */
}

.about-content h1 {
  font-size: 48px;
  /* Increased font size for heading */
  margin-bottom: 20px;
  font-weight: 800;
  /* Bold font weight */
  letter-spacing: 2px;
  /* Added letter spacing for emphasis */
  text-transform: uppercase;
  /* Make the heading more impactful */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  /* Added text shadow for depth */
}

.about-content p {
  font-size: 22px;
  /* Increased font size for paragraph */
  margin-bottom: 20px;
  line-height: 1.8;
  /* Increased line height for better readability */
  font-weight: 400;
  letter-spacing: 0.5px;
  /* Slight letter spacing */
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
  /* Light text shadow */
}

.about-img {
  width: 50%;
  /* Image section takes up 50% */
}

.about-img img {
  display: none;
  max-width: 100%;
  /* Ensure image is responsive */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.about-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .about-hero {
    flex-direction: column;
    /* Stack content and image vertically on smaller screens */
    height: auto;
  }

  .about-content,
  .about-img {
    width: 100%;
    /* Full width for both sections */
    margin-top: 20px;
  }

  .about-content h1 {
    font-size: 36px;
    /* Adjusted font size for smaller screens */
  }

  .about-content p {
    font-size: 20px;
    /* Adjusted font size for smaller screens */
  }
}

@media (max-width: 768px) {
  .about-content h1 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: auto;
    padding: 10px;
  }

  .about-content h1 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 18px;
  }
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e3a8a;
}

.section-subtitle {
  color: #6b7280;
  max-width: 700px;
  margin: auto;
}

.wwr {
  position: relative;
  width: 100%;
  background-image: url('../background-boder.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #000000;
}

/* Add the overlay using ::after */
.wwr::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  /* default - no overlay on desktop */
  transition: background-color 0.3s ease;
  z-index: 1;
}

/* Content stays on top */
.wwr-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px;
  text-align: center;
}

.wwr-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.wwr-content p {
  font-size: 1.2rem;
  line-height: 1.7;
}

/* Mobile: enable overlay */
@media (max-width: 768px) {
  .wwr::after {
    /* color: white; */
    background-color: rgba(0, 0, 0, 0.8);
    /* Dark overlay only on mobile */
  }

  .wwr-content {
    color: white;
    padding: 80px 15px;
  }

  .wwr-content h1 {
    font-size: 2rem;
  }

  .wwr-content p {
    font-size: 1rem;
  }
}

.orbit-container {
  position: relative;
  width: 500px;
  height: 500px;
  margin: auto;
}

.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #03406e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-weight: bold;
  font-size: 1.2rem;
}

.orbit-item {
  position: absolute;
  width: 140px;
  height: 140px;
  background: white;
  border: 2px solid #03406e;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
}

.item-1 {
  top: -5%;
  left: 50%;
  transform: translate(-50%, 0);
}

.item-2 {
  top: 19%;
  left: 85%;
  transform: translate(-50%, -50%);
}

.item-3 {
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
}

.item-4 {
  top: 82%;
  left: 85%;
  transform: translate(-50%, -50%);
}

.item-5 {
  top: 105%;
  left: 50%;
  transform: translate(-50%, -100%);
}

.item-6 {
  top: 82%;
  left: 15%;
  transform: translate(-50%, -50%);
}

.item-7 {
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
}

.item-8 {
  top: 19%;
  left: 15%;
  transform: translate(-50%, -50%);
}

.orbit-item svg {
  width: 109px;
  height: 32px;
  margin-bottom: 8px;
  color: #03406e;
}

@media screen and (max-width: 768px) {
  .orbit-container {
    width: 309px;
    height: 340px;
  }

  .orbit-item {
    width: 90px;
    height: 90px;
    padding: 5px;
  }

  .orbit-item svg {
    width: 80px;
    height: 24px;
    margin-bottom: 4px;
  }

  .orbit-item span {
    font-size: 0.8rem;
  }

  .center-circle {
    width: 130px;
    height: 130px;
    font-size: 1rem;
  }

}



/* banner-button  */

.banner-section-2 {
  /* margin-top: 40px; */
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../banner-background-without-image-min.jpg');
  background-size: cover;
  background-position: center;
  gap: 30px;
  padding: 60px;
  /* border-radius: 20px; */
  min-height: 400px;
}

.banner-content-2 {
  margin-left: -100px;
  max-width: 815px;
  text-align: left;
  padding: 30px;
}

.banner-content-2 h4 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #ccc;
  text-transform: uppercase;
}

.banner-content-2 h1 {
  font-size: 61px;
  margin-bottom: 20px;
}

.banner-content-2 em {
  font-style: italic;
  font-weight: bold;
  color: #c8f080;
}

.banner-content-2 p {
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-a {
  text-align: center;
  --c: #fff;
  background: linear-gradient(90deg, #0000 33%, #fff5, #0000 67%) var(--_p, 100%) / 300% no-repeat, #03406e;
  color: #0000;
  border-radius: 50%;
  width: 325px;
  height: 325px;
  border: none;
  transform: perspective(500px) rotateY(calc(20deg * var(--_i, -1)));
  text-shadow: calc(var(--_i, -1) * 0.08em) -.01em 0 var(--c), calc(var(--_i, -1) * -0.08em) .01em 2px #0004;
  outline-offset: .1em;
  transition: 0.3s;
  box-sizing: border-box;
  padding: 1px 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, sans-serif;
  font-weight: bold;
  font-size: 2rem;
  margin: 0 auto;
  cursor: pointer;
}

.btn-a:hover,
.btn-a:focus-visible {
  --_p: 0%;
  --_i: 1;
}

.btn-a:active {
  text-shadow: none;
  color: var(--c);
  box-shadow: inset 0 0 9e9q #0005;
  transition: 0s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .banner-section-2 {
    flex-direction: column;
    padding: 40px;
    gap: 20px;
  }

  .banner-content-2 {
    margin-left: 0;
    max-width: 90%;
    text-align: center;
  }

  .banner-content-2 h1 {
    font-size: 48px;
  }

  .banner-content-2 p {
    font-size: 18px;
  }

  .btn-a {
    width: 250px;
    height: 250px;
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .banner-section-2 {
    padding: 30px;
    background-position: left;
  }

  .banner-content-2 h1 {
    font-size: 36px;
  }

  .banner-content-2 p {
    font-size: 16px;
  }

  .btn-a {
    width: 200px;
    height: 200px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .banner-section-2 {
    padding: 20px;
    gap: 15px;
  }

  .banner-content-2 h1 {
    font-weight: 800;
    font-size: 28px;
  }

  .banner-content-2 p {
    font-size: 14px;
  }

  .banner-content-2 h4 {
    font-size: 12px;
  }

  .btn-a {
    width: 205px;
    height: 205px;
    font-size: 1.2rem;
    padding: 18px;
  }
}

.why-choose-us-section {
  display: flex;
  justify-content: center;
  background-color: white;
  /* padding: 3rem 0; */
  margin: auto;
}

.why-choose-us-container {
  width: 100%;
  max-width: 1356px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  min-height: 500px;
  /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
}

.why-choose-us-left-boxes {
  /* padding: 38px 10px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #016387;
  /* padding: 1.5rem;
  gap: 1.5rem; */
}

.why-choose-us-left-boxes .box {
  text-align: center;
}

.why-choose-us-left-boxes .box .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.why-choose-us-left-boxes .box h3 {
  padding-top: 20px;
  font-weight: 800;
  font-size: 1.8rem;
}

.why-choose-us-left-boxes .box p {
  font-size: 1.2rem;
  /* color: #4a4a4a; */
}

.dark-c {
  background-color: #016387;
  color: #ffff;

}

.light-c {
  background-color: #9be1fa;
  color: #fff;
}

.light-c h3 {
  padding-top: 20px;
  font-weight: 800;
  font-size: 1.8rem;
  color: #001d32;
}

.dark-c h3 {
  padding-top: 20px;
  font-weight: 800;
  font-size: 1.8rem;
  color: #a5c9f3;
}

.light-c p {
  font-size: 19.2px;
  padding: 20px;
  color: #4a4a4a;
}

.dark-c p {
  font-size: 19.2px;
  padding: 20px;
  color: #ffffff;
}


.why-choose-us-center-image img {

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-us-right-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* padding: 2rem; */
  background-color: #9be1fa;
}

.why-choose-us-heading {
  padding-right: 20px;
  text-align: center;
  margin-bottom: 2rem;
}

.why-choose-us-heading h2 {
  text-align: right;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.why-choose-us-heading h2 span {
  color: #03406e;
}

.why-choose-us-heading p {
  text-align: right;
  font-size: 1.2rem;
  color: #4a4a4a;
}

.why-choose-us-right-boxes {
  display: grid;
  grid-template-columns: 1fr;
  /* gap: 1.5rem; */
}

.why-choose-us-right-boxes .box {
  padding: 1.5rem;
  text-align: center;
}

.why-choose-us-right-boxes .box .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* .why-choose-us-right-boxes .box h3 {
  font-weight: 600;
  font-size: 1.5rem;
}

.why-choose-us-right-boxes .box p {
  font-size: 1.2rem;
} */

.why-choose-us-right-boxes .box.emerald {
  background-color: #9be1fa;
  color: white;
}

.why-choose-us-right-boxes .box.gray {
  background-color: #016387;
  color: white;
}

@media (min-width: 768px) {
  .why-choose-us-container {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-choose-us-center-image {
    grid-column: span 1;
  }

  .why-choose-us-right-content {
    grid-column: span 2;
  }

  .why-choose-us-right-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-choose-us-container {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-choose-us-center-image {
    grid-column: span 1;
  }

  .why-choose-us-right-content {
    grid-column: span 2;
  }
}

/* / Apply order for mobile view / */
@media (max-width: 767px) {
  .why-choose-us-container {
    display: flex;
    flex-direction: column-reverse;
  }

  .why-choose-us-section {
    display: block;
  }

  .why-choose-us-right-content {
    flex-direction: column-reverse;
  }

  .why-choose-us-left-boxes,
  .why-choose-us-right-content,
  .why-choose-us-center-image {
    order: 2;
  }

  .why-choose-us-heading {
    order: 1;
  }
}

/* pop-up-form */

.proposal-btn {
  padding: 12px 24px;
  font-size: 16px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px;
}

.proposal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: 20px;
  box-sizing: border-box;
}

.proposal-popup {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 435px;
  max-height: 90vh;
  background: #fff;
  border-radius: 10px;
  overflow-y: auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  animation: proposalIn 0.25s ease-in-out;
  position: relative;
  box-sizing: border-box;
}

@keyframes proposalIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.proposal-header {
  background: #89b6d7;
  padding: 0px;
  text-align: center;
}

.proposal-header h2 {
  margin: 0;
  font-size: 35px;
}

.proposal-header p {
  font-size: 14px;
  color: #555;
  margin: 8px 0 0;
}

/* UPDATED: Social icons centered + flexbox */
.proposal-header .social-icons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  /* Center horizontally */
  align-items: center;
  /* Center vertically */
}

.proposal-header .social-icons i {
  margin: 0 8px;
  color: #555;
  cursor: pointer;
  font-size: 20px;
  transition: color 0.3s;
}

.proposal-header .social-icons i:hover {
  color: #007bff;
}

.proposal-form-content {
  padding: 19px;
  box-sizing: border-box;
}

.proposal-form-content input,
.proposal-form-content select,
.proposal-form-content textarea {
  width: 100%;
  padding: 9px 15px;
  margin: 7px 0;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 25px;
  background: #fff;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

.proposal-form-content textarea {
  border-radius: 15px;
  resize: vertical;
}

.proposal-form-content input:focus,
.proposal-form-content select:focus,
.proposal-form-content textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* GET MY PROPOSAL BUTTON */
.submit-proposal-btn {
  width: 100%;
  margin-top: 0px;
  background-color: #03406e;
  color: white;
  border: none;
  padding: 9px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-proposal-btn:hover {
  background-color: #007bff;
}

/* CLOSE BUTTON */
.proposal-close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #888;
  transition: color 0.3s, transform 0.2s;
}

.proposal-close-btn:hover {
  color: #000;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .proposal-popup {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
  }
}

.checkmark-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  border: 4px solid #28a745;
  position: relative;
  box-sizing: content-box;
  margin: auto;
}

.checkmark {
  transform: rotate(45deg);
  height: 40px;
  width: 20px;
  border-bottom: 4px solid #28a745;
  border-right: 4px solid #28a745;
  position: absolute;
  top: 18px;
  left: 26px;
  animation: checkmark 0.5s ease-out forwards;
}

@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 0;
  }

  20% {
    height: 0;
    width: 20px;
    opacity: 1;
  }

  40% {
    height: 40px;
    width: 20px;
  }

  100% {
    height: 40px;
    width: 20px;
  }
}

/* case-study-content-page  */

/* about-client */

.fe-section {
  text-align: center;
  padding: 40px 20px;
}

.fe-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #000;
}

.fe-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.fe-subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #555;
}

.fe-info-row {
  display: flex;
  justify-content: space-around;
  /* gap: 250px; */
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.fe-info-block {
  width: 369px;
  text-align: center;
}

.fe-timeline {
  padding-bottom: 60px;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  gap: 30px;
  max-width: 1242px;
  margin: 0 auto;
  /* flex-wrap: wrap; */
}

.fe-step {
  flex: 1 1 250px;
  text-align: center;
  position: relative;
}

.fe-circle {
  width: 35px;
  height: 35px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-bottom: 10px;
}

.fe-line {
  position: absolute;
  top: 17px;
  left: calc(50% + 20px);
  width: calc(100% - 0px);
  height: 2px;
  background: #000;
  z-index: -1;
}

.fe-step:last-child .fe-line {
  display: none;
}

@media (max-width: 768px) {
  .fe-timeline {
    flex-direction: column;
    gap: 10px;
  }

  .fe-step {
    margin-bottom: -148px;
  }

  .fe-icon {
    font-size: 2rem;
    margin-bottom: 5px;
  }

  .fe-title {
    font-size: 1.2rem;
  }

  .fe-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .fe-circle {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .fe-step .fe-line {
    display: none;
  }

  .fe-info-row {
    gap: 10px;
  }
}

.results-section {
  padding: 0px 20px 66px 20px;
  /* background: linear-gradient(135deg, #f0f4f8, #d9e2ec); */
  text-align: center;
}

.results-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #102a43;
  position: relative;
}

.results-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #2f80ed;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.result-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.result-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #334e68;
}

.result-card p {
  margin: 8px 0;
  font-size: 1rem;
  color: #486581;
}

.improvement {
  font-weight: bold;
  font-size: 1.1rem;
}

.improvement.positive {
  color: #166437;
}

.improvement.negative {
  color: #c0392b;
}

/* Responsive Design */
@media (max-width: 768px) {


  .results-title {
    font-size: 2rem;
  }

  .result-card h3 {
    font-size: 1.1rem;
  }

  .result-card p {
    font-size: 0.95rem;
  }
}

/* languagr */
#language-selector {
  margin-bottom: 20px;
}

select {
  padding: 5px 10px;
  border-radius: 4px;
}


/* video-container-2 */

.video-container-2 {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  /* display: flex; */
  align-items: center;
  justify-content: center;
}

.video-iframe-3 {
  width: 90vw;
  height: 50vw;
  max-width: 900px;
  max-height: 70vh;
  aspect-ratio: 16/9;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  background: #000;
  display: block;
}

.close-video-2 {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 2rem;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
}