@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}

/* =========================== */
/*NavBar Section Starts*/
/* =========================== */
.navbar {
  z-index: 100;
}

header {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.loader_div {
  display: none;
}

.nav-bg img {
  margin-left: 20px;
}

.navbar-light .navbar-nav .nav-link {
  color: black;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
  background: linear-gradient(132.74deg, #F56005 -0.08%, #FFA238 98.2%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

header .nav-item {
  margin: 0 30px;
  font-size: 17px;
  color: #000;
}

.navbar-toggler-icon {
  display: none;
}

/* Custom hamburger button */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 24px;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
  background: transparent !important;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none;
}

.navbar-toggler span {
  display: block;
  position: absolute;
  height: 3px;
  width: 80%;
  background: #333;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.navbar-toggler span:nth-child(1) {
  top: 0px;
}

.navbar-toggler span:nth-child(2),
.navbar-toggler span:nth-child(3) {
  top: 10px;
}

.navbar-toggler span:nth-child(4) {
  top: 20px;
}

/* Transform to X when open */
.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}

.navbar-toggler[aria-expanded="true"] span {
  background: linear-gradient(132.74deg, #F56005 -0.08%, #FFA238 98.2%);
}

.nav-link {
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #007bff;
}

@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 1rem;
  }
}

/*Responsive NavBar Section Starts*/

@media only screen and (max-width: 1024px) {
  header .nav-item {
    margin: 0px 15px;
    font-size: 15px;
  }

  .nav-bg img {
    margin-left: 10px;
  }

  .nav-link {
    padding: 0rem 0rem !important;
  }
}

@media only screen and (max-width: 441px) {
  header .nav-logo {
    width: 70px;
    height: 25px;
  }

}

@media only screen and (max-width: 767px) {
  .nav-bg img {
    width: 118px;
    height: 30px;
  }
}

/* =========================== */
/*NavBar Section End*/
/* =========================== */

/* =========================== */
/* Hero Section Starts */
/* =========================== */
.hero-section {
  position: relative;
}

.hero-section img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  z-index: 2;
}

.hero-content h1 {
  font-size: 55px;
  line-height: 58px;
  margin-bottom: 20px;
}

.hero-content .banner-title p {
  font-size: 40px;
  font-style: italic;
}

.hero-content .banner-para {
  margin: 12px 0;
}

.hero-content .banner-para p {
  font-size: 20px;
  margin-bottom: 65px;
}

.hero-content a {
  color: #FFFFFF !important;
  font-size: 18px;
  font-weight: bold;
  width: fit-content;
  border-radius: 30px;
  background: radial-gradient(circle at left center,
      rgba(247, 161, 62, 1) 25%,
      rgba(245, 96, 5, 1) 70%,
      rgba(245, 96, 5, 1) 100%);
  border: none;
  padding: 13px 26px;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    background 0.45s ease,
    color 0.45s ease,
    box-shadow 0.35s ease;
}

.hero-content a:hover {
  transform: translateY(-4px);
  background: #f3f0f0;
  color: #070606 !important;
}

/* =========================== */
/* Responsive Hero Section Starts */
/* =========================== */
@media only screen and (max-width: 1024px) {
  .hero-content {
    top: 35%;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 10px;
  }

  .hero-content .banner-title p {
    font-size: 28px;
    width: 96%;
  }

  .hero-content .banner-para p {
    font-size: 18px;
    margin-bottom: 50px;
  }

  .hero-content a {
    font-size: 16px;
    padding: 18px 14px 17px 24px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-content {
    top: 25%;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 12px;
  }

  .hero-content .banner-title p {
    font-size: 24px;
    width: 100%;
  }

  .hero-content .banner-para p {
    font-size: 17px;
    margin-bottom: 45px;
  }

  .hero-content a {
    font-size: 16px;
    padding: 16px 13px 15px 22px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-content {
    top: 13%;
    padding-top: 48px;
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 10px;
  }

  .hero-content .banner-title p {
    font-size: 24px;
    width: 95%;
  }

  .hero-content .banner-para {
    margin: 10px 0;
  }

  .hero-content .banner-para p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .hero-content a {
    font-size: 15px;
    padding: 14px 12px 13px 20px;
    border-radius: 25px;
  }
}

@media only screen and (max-width: 576px) {
  .hero-content {
    top: 15%;
    padding-left: 30px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 8px;
  }

  .hero-content .banner-title p {
    font-size: 20px;
    width: 96%;
  }

  .hero-content .banner-para {
    margin: 8px 0;
  }

  .hero-content .banner-para p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .hero-content a {
    font-size: 14px;
    padding: 13px 11px 12px 18px;
    border-radius: 22px;
  }
}

@media only screen and (max-width: 441px) {
  .hero-content {
    top: 22%;
    padding-left: 10px;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 7px;
  }

  .hero-content .banner-title p {
    font-size: 18px;
    width: 97%;
  }

  .hero-content .banner-para {
    margin: 7px 0;
  }

  .hero-content .banner-para p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .hero-content a {
    font-size: 13px;
    padding: 12px 10px 11px 16px;
    border-radius: 20px;
  }
}

@media only screen and (max-width: 390px) {
  .hero-content {
    top: 20%;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 6px;
  }

  .hero-content .banner-title p {
    font-size: 17px;
    width: 98%;
  }

  .hero-content .banner-para {
    margin: 6px 0;
  }

  .hero-content .banner-para p {
    font-size: 13px;
    margin-bottom: 22px;
  }

  .hero-content a {
    font-size: 13px;
    padding: 11px 9px 10px 15px;
    border-radius: 18px;
  }
}

@media only screen and (max-width: 375px) {
  .hero-content {
    top: 20%;
    padding-left: 5px;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 6px;
  }

  .hero-content .banner-title p {
    font-size: 16px;
    width: 98%;
  }

  .hero-content .banner-para {
    margin: 5px 0;
  }

  .hero-content .banner-para p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .hero-content a {
    font-size: 12px;
    padding: 10px 8px 9px 14px;
    border-radius: 16px;
  }
}

@media only screen and (max-width: 350px) {
  .hero-content {
    top: 18%;
  }

  .hero-content h1 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 5px;
  }

  .hero-content .banner-title p {
    font-size: 15px;
    width: 99%;
  }

  .hero-content .banner-para {
    margin: 5px 0;
  }

  .hero-content .banner-para p {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .hero-content a {
    font-size: 12px;
    padding: 9px 7px 8px 13px;
    border-radius: 15px;
  }
}

/* =========================== */
/* Hero Section End */
/* =========================== */

/* =========================== */
/* WhoWEAre Section Starts */
/* =========================== */
.whoweare {
  padding: 25px 0;
  background-color: #F7F7FF;
}

.whoweare .header {
  font-size: 50px;
}

.whoweare p {
  font-size: 20px;
}

/* =========================== */
/* Responsive WhoWEAre Section Starts */
/* =========================== */
@media (max-width: 1024px) {
  .whoweare .header {
    font-size: 46px;
  }

  .whoweare p {
    font-size: 19px;
  }
}

@media (max-width: 991px) {
  .whoweare .header {
    font-size: 42px;
  }

  .whoweare p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .whoweare .header {
    font-size: 38px;
    text-align: left;
  }

  .whoweare p {
    font-size: 17px;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .whoweare .header {
    font-size: 34px;
  }

  .whoweare p {
    font-size: 16px;
  }
}

@media (max-width: 441px) {
  .whoweare .header {
    font-size: 30px;
  }

  .whoweare p {
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  .whoweare .header {
    font-size: 28px;
  }

  .whoweare p {
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  .whoweare .header {
    font-size: 26px;
  }

  .whoweare p {
    font-size: 14px;
  }
}

@media (max-width: 350px) {
  .whoweare .header {
    font-size: 24px;
  }

  .whoweare p {
    font-size: 13px;
  }
}

/* =========================== */
/* WhoWEAre Section Ends */
/* =========================== */

/* =========================== */
/* WeOffer Section Starts */
/* =========================== */
.weoffer {
  padding: 80px 0;
  background-color: #F7F7FF;
}

.weoffer-head {
  text-align: start;
  font-size: 45px;
  color: #000;
  margin-bottom: 40px;
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 20px;
}

.weoffer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.weoffer-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.weoffer p {
  font-size: 20px;
  padding-bottom: 20px;
}

.weoffer-row>div {
  border-radius: 50px;
  padding: 2rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.weoffer-row>div:nth-child(odd) {
  background-color: #6C67A3;
  color: #fff;
}

.weoffer-row>div:nth-child(even) {
  background-color: #FFFFFF;
  color: #000;
}

.weoffer-row>div:hover {
  transform: translateY(-6px);
}

.weoffer-row h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 50px;
}

.weoffer-row p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .custom-container {
    padding: 0 16px;
  }

  .weoffer-row p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .weoffer-head {
    font-size: 2.2rem;
  }

  .weoffer-text {
    font-size: 1.1rem;
  }

  .weoffer-row>div {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .weoffer {
    padding: 60px 0;
  }

  .weoffer-head {
    font-size: 2rem;
  }

  .weoffer-text {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .weoffer-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .weoffer-row>div {
    padding: 1.25rem;
  }

  .weoffer-row h3 {
    font-size: 1.2rem;
  }

  .weoffer-row p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 576px) {
  .weoffer-row>div {
    border-radius: 25px;
  }

  .whoweare {
    padding: 25px 0 10 0 !important;
  }

  .whoweare .py-5 {
    padding-top: 1rem !important;
    padding-bottom: 0rem !important;
  }
}

@media (max-width: 480px) {

  .weoffer p {
    font-size: 16px;
  }

  .custom-container {
    padding: 0 12px;
  }

  .weoffer-head {
    font-size: 1.8rem;
  }

  .weoffer-text {
    font-size: 0.95rem;
  }

  .weoffer-row {
    grid-template-columns: 1fr !important;
  }

  .weoffer-row>div {
    padding: 1rem;
  }

  .weoffer-row h3 {
    font-size: 1.1rem;
    margin-bottom: 24px;
  }

  .weoffer-row p {
    font-size: 0.85rem;
  }
}

/* =========================== */
/* Weoffer Section Ends */
/* =========================== */

/* =========================== */
/* WeExcel Section Starts */
/* =========================== */
.weexcel {
  padding: 60px 0 30px 0;
  background-color: #6C67A3;
  color: #FFFFFF;
}

.weexcel h2 {
  font-size: 50px;
  margin-bottom: 40px;
  width: 55%;
}

.weexcel .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.weexcel h3 {
  font-size: 28px;
  margin-bottom: 30px;
  min-height: 70px;
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.weexcel h3:hover {
  transform: translateY(-8px);
  transition: transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.weexcel p {
  font-size: 20px;
  line-height: 1.6;
  width: 90%;
}

.weexcel .bg-white {
  background-color: #f1F1F1 !important;
  color: #000;
}

.border-top {
  padding: 45px 0;
  border-top: 1px solid #000 !important;
  border-bottom: 1px solid #000 !important;
  border-left: none !important;
  border-right: none !important;
}

.weexcel-cta {
  background-color: #000;
  color: #FFFFFF;
  padding: 40px 60px;
  text-align: center;
  border: none;
  border-radius: 60px;
  margin: 55px auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  max-width: 1200px;
}

.weexcel-cta .col-md-9 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 30px;
  margin: 0;
}

.weexcel-cta .col-md-3 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
}

.weexcel-cta h2 {
  font-size: 36px;
  margin-bottom: 10px;
  text-align: left;
  margin: 0;
}

.weexcel-cta p {
  font-size: 20px;
  text-align: left;
  margin: 0;
}

.weexcel-cta-button {
  color: #FFFFFF !important;
  font-size: 18px;
  font-weight: bold;
  width: fit-content;
  border-radius: 30px;
  background: radial-gradient(circle at left center,
      rgba(247, 161, 62, 1) 25%,
      rgba(245, 96, 5, 1) 70%,
      rgba(245, 96, 5, 1) 100%);
  border: none;
  padding: 13px 26px;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    background 0.45s ease,
    color 0.45s ease,
    box-shadow 0.35s ease;
}

.weexcel-cta-button:hover {
  transform: translateY(-4px);
  background: #f3f0f0;
  color: #070606 !important;
}

/* =========================== */
/* Media Queries */
/* =========================== */
@media screen and (max-width: 1024px) {
  .weexcel-cta {
    padding: 35px 50px;
  }

  .weexcel-cta h2 {
    font-size: 32px;
  }

  .weexcel-cta p {
    font-size: 18px;
  }

  .weexcel-cta-button {
    font-size: 17px;
    padding: 16px 35px;
  }

  .weexcel h2 {
    font-size: 40px;
    margin-bottom: 8px;
    width: 70%;
  }

  .weexcel-cta-button {
    padding: 16px 12px;
    font-size: 13px;
  }

  .weexcel h3 {
    min-height: 65px;
  }
}

@media screen and (max-width: 1280px) {
  .weexcel-cta-button {
    padding: 15px 10px;
    font-size: 12px;
  }
}

@media screen and (max-width: 991px) {
  .weexcel-cta {
    padding: 30px 40px;
  }

  .weexcel-cta h2 {
    font-size: 28px;
  }

  .weexcel-cta p {
    font-size: 17px;
  }

  .weexcel-cta-button {
    font-size: 16px;
    padding: 15px 32px;
  }

  .weexcel h3 {
    min-height: 60px;
    font-size: 24px;
  }

  .weexcel p {
    font-size: 16px;
  }
}

@media screen and (max-width: 800px) {
  .weexcel-cta-button {
    padding: 12px 10px;
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .weexcel h2 {
    font-size: 35px;
    margin-bottom: 30px;
    width: 100%;
  }

  .weexcel-cta {
    padding: 30px 35px;
    flex-direction: column;
    text-align: center;
  }

  .weexcel-cta .col-md-9 {
    padding-right: 0;
    margin-bottom: 25px;
  }

  .weexcel-cta .col-md-3 {
    justify-content: center;
  }

  .weexcel-cta h2 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 12px;
  }

  .weexcel-cta p {
    font-size: 16px;
    text-align: center;
    margin-top: 0;
  }

  .weexcel-cta-button {
    font-size: 16px;
    padding: 15px 30px;
  }

  .weexcel h3 {
    min-height: auto;
  }
}

@media screen and (max-width: 576px) {
  .weexcel-cta {
    padding: 25px 30px;
    border-radius: 40px;
  }

  .weexcel .bg-white {
    padding-left: 18px;
  }

  .weexcel p {
    width: 95%;
  }

  .weexcel-cta h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .weexcel-cta p {
    font-size: 15px;
  }

  .weexcel-cta-button {
    font-size: 15px;
    padding: 14px 28px;
  }

  .weexcel-cta .col-md-9 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 441px) {
  .weexcel h2 {
    font-size: 30px;
    margin-bottom: 20px;
    width: 100%;
  }

  .weexcel-cta {
    padding: 22px 25px;
    border-radius: 35px;
  }

  .weexcel-cta h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .weexcel-cta p {
    font-size: 14px;
  }

  .weexcel-cta-button {
    font-size: 14px;
    padding: 13px 25px;
  }

  .weexcel-cta .col-md-9 {
    margin-bottom: 18px;
  }

  .weexcel-cta-button {
    padding: 10px 18px;
    font-size: 14px;
  }
}

@media screen and (max-width: 360px) {
  .weexcel-cta h2 {
    font-size: 22px;
  }

  .weexcel-cta p {
    font-size: 10px;
  }

  .weexcel-cta-button {
    padding: 8px 12px;
    font-size: 10px;
  }
}

@media screen and (max-width: 390px) {
  .weexcel-cta {
    padding: 20px 22px;
    border-radius: 30px;
  }

  .weexcel-cta h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .weexcel-cta p {
    font-size: 13px;
  }

  .weexcel-cta-button {
    font-size: 13px;
    padding: 12px 22px;
  }

  .weexcel-cta .col-md-9 {
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 370px) {
  .weexcel-cta {
    padding: 18px 20px;
    border-radius: 28px;
  }

  .weexcel-cta h2 {
    font-size: 20px;
    margin-bottom: 7px;
  }

  .weexcel-cta p {
    font-size: 12px;
  }

  .weexcel-cta-button {
    font-size: 12px;
    padding: 11px 20px;
  }

  .weexcel-cta .col-md-9 {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 350px) {
  .weexcel-cta {
    padding: 16px 18px;
    border-radius: 25px;
  }

  .weexcel-cta h2 {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .weexcel-cta p {
    font-size: 11px;
  }

  .weexcel-cta-button {
    font-size: 11px;
    padding: 10px 18px;
  }

  .weexcel-cta .col-md-9 {
    margin-bottom: 14px;
  }
}

/* =========================== */
/* Weexcel section ends */
/* =========================== */
/* =========================== */
/* Ai-Industry Section starts */
/* =========================== */
.industries-section {
  padding: 80px 0;
}

.industries-section h2 {
  font-size: 42px;
  font-weight: 400;
  color: #000;
  margin-bottom: 50px;
  width: 89%;
  line-height: 1.2;
}

.highlight {
  font-style: italic;
  font-weight: 600;
}

.industries-section .description {
  font-size: 20px;
  color: #333;
  line-height: 1.8;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.industry-tag {
  background-color: #e8e8e8;
  border: none;
  border-radius: 50px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.industry-tag:hover {
  background-color: #d8d8d8;
  transform: translateY(-2px);
}

.industry-tag.others {
  font-style: italic;
}

@media only screen and (max-width: 1024px) {
  .industries-section {
    padding: 60px 0;
  }

  .industries-section h2 {
    font-size: 42px;
  }

  .industry-tags {
    gap: 16px;
  }

  .industry-tag {
    padding: 16px 35px;
    font-size: 17px;
  }

  .industries-section .description {
    font-size: 18px;
    line-height: 27px;
  }
}

@media only screen and (max-width: 767px) {
  .industries-section {
    padding: 50px 0;
  }

  .industries-section h2 {
    font-size: 36px;
  }

  .industries-section .description {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .industry-tags {
    gap: 14px;
    justify-content: left;
  }

  .industry-tag {
    padding: 14px 30px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 576px) {
  .industries-section {
    padding: 40px 0;
  }

  .industries-section h2 {
    font-size: 28px;
  }

  .industries-section .description {
    font-size: 18px;
    margin-bottom: 35px;
  }

  .industry-tags {
    gap: 12px;
  }

  .industry-tag {
    padding: 12px 25px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 390px) {
  .industries-section h2 {
    font-size: 22px;
  }

  .industries-section .description {
    font-size: 15px;
  }

  .industry-tag {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* =========================== */
/* Ai-Industry Section ends */
/* =========================== */

/* =========================== */
/* Ai Case studies Section Starts */
/* =========================== */
.ai-case-study {
  padding: 40px 0;
  background: #fff;
}

.ai-case-study .header-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 80px;
  padding-bottom: 30px;
  border-bottom: 1px solid #000;
}

.ai-case-study .header-section h1 {
  font-size: 40px;
  line-height: 1.1;
}

.ai-case-study .header-section p {
  font-size: 20px;
  line-height: 32px;
}

.ai-case-study .carousel-wrapper {
  position: relative;
}

.ai-case-study .case-study-item {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 0 20px;
}

.ai-case-study .case-study-content h3 {
  font-size: 30px;
  font-weight: 400;
  color: #000;
  line-height: 44px;
  margin-bottom: 60px;
}

.ai-case-study .read-more-btn {
  color: #FFFFFF !important;
  font-size: 18px;
  font-weight: bold;
  width: fit-content;
  border-radius: 30px;
  background: radial-gradient(circle at left center,
      rgba(247, 161, 62, 1) 25%,
      rgba(245, 96, 5, 1) 70%,
      rgba(245, 96, 5, 1) 100%);
  border: none;
  padding: 8px 20px;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    background 0.45s ease,
    color 0.45s ease,
    box-shadow 0.35s ease;
}

.ai-case-study .read-more-btn:hover {
  transform: translateY(-4px);
  background: #f3f0f0;
  color: #070606 !important;
}

.ai-case-study .carousel-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.ai-case-study .fixed-carousel-nav {
  position: absolute;
  top: 0%;
  left: 17px;
  z-index: 100;
  display: flex;
  gap: 20px;
  align-items: center;
}

.ai-case-study .carousel-nav button {
  background: transparent;
  border: none;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  padding: 0;
}

.ai-case-study .prev-btn::before {
  content: '';
  width: 40px;
  height: 4px;
  background: #000;
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.ai-case-study .prev-btn::after {
  content: '';
  width: 16px;
  height: 16px;
  border-left: 4px solid #000;
  border-bottom: 4px solid #000;
  position: absolute;
  left: 8px;
  top: 0%;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}

.ai-case-study .next-btn::before {
  content: '';
  width: 40px;
  height: 4px;
  background: #000;
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.ai-case-study .next-btn::after {
  content: '';
  width: 16px;
  height: 16px;
  border-right: 4px solid #000;
  border-top: 4px solid #000;
  position: absolute;
  right: 8px;
  top: 0%;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}

.ai-case-study .case-study-image {
  flex: 0 0 50%;
}

.ai-case-study .case-study-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 40px;
}

.ai-case-study .owl-carousel .owl-item {
  opacity: 1;
}

/* =========================== */
/* Responsive Styles */
/* =========================== */
@media only screen and (max-width: 1200px) {
  .ai-case-study .case-study-content h3 {
    font-size: 36px;
  }

  .ai-case-study .case-study-item {
    gap: 60px;
  }

  .ai-case-study .fixed-carousel-nav {
    left: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .ai-case-study {
    padding: 60px 0;
  }

  .ai-case-study .fixed-carousel-nav {
    top: -10%;
  }

  .ai-case-study .header-section {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
    padding-bottom: 40px;
  }

  .ai-case-study .header-section,
  .ai-case-study .header-right {
    flex: 1 1 100%;
  }

  .ai-case-study .header-section h1 {
    font-size: 44px;
  }

  .ai-case-study .case-study-item {
    gap: 50px;
  }

  .ai-case-study .case-study-content h3 {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 45px;
  }

  .ai-case-study .case-study-image img {
    height: 450px;
  }

  .ai-case-study .fixed-carousel-nav {
    left: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .ai-case-study {
    padding: 50px 0;
  }

  .ai-case-study .container {
    padding: 0 20px;
  }

  .ai-case-study .case-study-item {
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
  }

  .ai-case-study .case-study-content,
  .ai-case-study .case-study-image {
    flex: 1 1 100%;
  }

  .ai-case-study .case-study-content h3 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .ai-case-study .case-study-image img {
    height: 400px;
    border-radius: 30px;
  }

  .ai-case-study .header-section h1 {
    font-size: 38px;
  }

  .ai-case-study .read-more-btn {
    padding: 18px 45px;
    font-size: 16px;
  }

  .ai-case-study .carousel-nav button {
    width: 50px;
    height: 50px;
  }

  .ai-case-study .prev-btn::before,
  .ai-case-study .next-btn::before {
    width: 30px;
    height: 3px;
  }

  .ai-case-study .prev-btn::after,
  .ai-case-study .next-btn::after {
    width: 12px;
    height: 12px;
    border-width: 3px;
  }

  .ai-case-study .fixed-carousel-nav {
    top: -8%;
  }

  .ai-case-study .header-section {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 60px;
    padding-bottom: 8px;
  }
}

@media only screen and (max-width: 576px) {
  .ai-case-study {
    padding: 40px 0;
  }

  .ai-case-study .header-section p {
    font-size: 18px;
    line-height: 24px;
  }

  .ai-case-study .header-section {
    margin-bottom: 16px;
    padding-bottom: 5px;
  }

  .ai-case-study .case-study-content h3 {
    font-size: 21px;
    line-height: 32px;
    margin-bottom: 21px;
  }

  .ai-case-study .controls-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .ai-case-study .read-more-btn {
    padding: 8px 24px;
    font-size: 12px;
  }

  .ai-case-study .case-study-image img {
    height: 350px;
    border-radius: 25px;
  }

  .ai-case-study .carousel-nav button {
    width: 45px;
    height: 45px;
  }

  .ai-case-study .fixed-carousel-nav {
    position: relative;
    left: 26px;
    margin-top: 0;
  }
}

@media only screen and (max-width: 441px) {
  .ai-case-study .header-section h1 {
    font-size: 26px;
  }

  .ai-case-study .case-study-content h3 {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 16px;
  }
}

@media only screen and (max-width: 420px) {
  .ai-case-study .header-section h1 {
    font-size: 28px;
  }

  .ai-case-study .case-study-content h3 {
    font-size: 18px;
    line-height: 22px;
  }

  .ai-case-study .case-study-image img {
    height: 300px;
  }

  .ai-case-study .read-more-btn {
    padding: 14px 35px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 360px) {
  .ai-case-study .header-section h1 {
    font-size: 26px;
  }

  .ai-case-study .read-more-btn {
    padding: 8px 20px;
    font-size: 10px;
  }

  .ai-case-study .case-study-content h3 {
    font-size: 18px;
    line-height: 22px;
  }

  .ai-case-study .case-study-image img {
    height: 280px;
    border-radius: 20px;
  }
}

/* =========================== */
/* Ai Case studies Section ends */
/* =========================== */

/* =========================== */
/* Global brand Section Starts */
/* =========================== */
.global-brands {
  padding: 70px 0;
  background: white;
  text-align: center;
}

.global-brands h2 {
  font-size: 44px;
  margin-bottom: 30px;
  font-weight: 400;
}

.global-brands p {
  margin-bottom: 40px;
  width: 68%;
  margin-left: auto;
  font-size: 18px;
  margin-right: auto;
}

.global-brands .division {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 70px;
  justify-items: center;
}

.global-brands .division img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.global-brands .division li {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.global-brands .division li:hover {
  transform: scale(1.08);
}

/* =========================== */
/* Media Queries */
/* =========================== */
@media screen and (max-width: 1024px) {
  .global-brands h2 {
    font-size: 35px;
  }

  .global-brands p {
    font-size: 18px;
    width: 90%;
  }

  .global-brands .division {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .global-brands .division {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 991px) {
  .global-brands p {
    font-size: 16px;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .global-brands p {
    font-size: 18px;
    width: 100%;
  }

  .global-brands {
    text-align: left;
  }

}

@media screen and (max-width: 576px) {
  .global-brands p {
    font-size: 18px;
    width: 100%;
  }

  .global-brands h2 {
    font-size: 28px;
  }
}

@media screen and (max-width: 441px) {
  .global-brands h2 {
    font-size: 26px;
  }

  .global-brands .division {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 360px) {
  .global-brands h2 {
    font-size: 22px;
  }
}

/* =========================== */
/* Global brand Section Ends */
/* =========================== */
/* =========================== */
/* Testimonial Section Starts */
/* =========================== */
.testimonial-section {
  padding: 80px 0;
  background-color: #6C67A3;
  color: #FFFFFF;
}

.testimonial-section h2 {
  font-size: 45px;
  margin-bottom: 20px;
  text-align: center;
}

.testimonial-section .testimonial-para {
  font-size: 20px;
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-section .testimonial-card {
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.testimonial-section .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-section .profile-image {
  width: 141px;
  height: 110px;
  object-fit: contain;
}

.testimonial-section .testimonial-name {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.2;
}

.testimonial-section .testimonial-title {
  font-size: 20px;
  font-style: italic;
  color: #666;
  margin-bottom: 30px;
  font-weight: 400;
}

.testimonial-section .testimonial-text {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 40px;
  flex-grow: 1;
}

.testimonial-section .testimonial-divider {
  width: 100%;
  height: 1px;
  background: #000000;
  margin-top: auto;
}

/* =========================== */
/* ---- Responsive Styles ----- */
/* =========================== */
@media only screen and (max-width: 1024px) {
  .testimonial-section h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-section .testimonial-card {
    padding: 25px;
  }

  .testimonial-section .profile-image {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
  }

  .testimonial-section .testimonial-name {
    font-size: 28px;
  }

  .testimonial-section .testimonial-title {
    font-size: 19px;
    margin-bottom: 25px;
  }

  .testimonial-section .testimonial-text {
    font-size: 18px;
    margin-bottom: 35px;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial-section .testimonial-card {
    padding: 30px;
  }

  .testimonial-section .profile-image {
    width: 95px;
    height: 95px;
  }

  .testimonial-section .testimonial-name {
    font-size: 26px;
  }

  .testimonial-section .testimonial-title {
    font-size: 18px;
  }

  .testimonial-section .testimonial-text {
    font-size: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-section {
    padding: 50px 0;
  }

  .testimonial-section .testimonial-card {
    padding: 25px;
    margin-bottom: 0px;
  }

  .testimonial-section .profile-image {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
  }

  .testimonial-section .testimonial-name {
    font-size: 24px;
  }

  .testimonial-section .testimonial-title {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .testimonial-section .testimonial-text {
    font-size: 15px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 576px) {
  .testimonial-section h2 {
    text-align: left;
  }

  .testimonial-section .testimonial-para {
    text-align: left;
  }

  .testimonial-section {
    padding: 40px 0;
  }

  .testimonial-section .testimonial-card {
    padding: 25px;

  }

  .testimonial-section .profile-image {
    width: 80px;
    height: 80px;
  }

  .testimonial-section .testimonial-name {
    font-size: 22px;
  }

  .testimonial-section .testimonial-title {
    font-size: 16px;
  }

  .testimonial-section .testimonial-text {
    font-size: 14px;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 441px) {
  .testimonial-section h2 {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .testimonial-section .testimonial-para {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .testimonial-section .testimonial-card {
    padding: 22px;
  }

  .testimonial-section .profile-image {
    width: 75px;
    height: 75px;
  }

  .testimonial-section .testimonial-name {
    font-size: 20px;
  }

  .testimonial-section .testimonial-title {
    font-size: 15px;
  }

  .testimonial-section .testimonial-text {
    font-size: 14px;
  }
}

@media only screen and (max-width: 390px) {
  .testimonial-section {
    padding: 35px 0;
  }

  .testimonial-section .testimonial-card {
    padding: 20px;
    border-radius: 20px;
  }

  .testimonial-section .profile-image {
    width: 70px;
    height: 70px;
  }

  .testimonial-section .testimonial-name {
    font-size: 19px;
  }

  .testimonial-section .testimonial-title {
    font-size: 14px;
  }

  .testimonial-section .testimonial-text {
    font-size: 13px;
    margin-bottom: 22px;
  }
}

@media only screen and (max-width: 375px) {
  .testimonial-section .testimonial-card {
    padding: 18px;
  }

  .testimonial-section .profile-image {
    width: 68px;
    height: 68px;
  }

  .testimonial-section .testimonial-name {
    font-size: 18px;
  }
}

@media only screen and (max-width: 350px) {
  .testimonial-section {
    padding: 30px 0;
  }

  .testimonial-section .testimonial-card {
    padding: 16px;
    border-radius: 18px;
  }

  .testimonial-section .profile-image {
    width: 65px;
    height: 65px;
  }

  .testimonial-section .testimonial-name {
    font-size: 17px;
  }

  .testimonial-section .testimonial-title {
    font-size: 13px;
  }

  .testimonial-section .testimonial-text {
    font-size: 12px;
    margin-bottom: 20px;
  }
}

/* =========================== */
/* Testimonials Section Ends */
/* =========================== */
/* =========================== */
/* Technologies Section Starts */
/* =========================== */
.ai-development-section {
  padding: 50px 0;
}

.ai-development-section .section-title {
  font-size: 44px;
  margin-bottom: 50px;
  line-height: 1.2;
}

.ai-development-section .section-title em {
  font-style: italic;
}

.ai-development-section .tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.ai-development-section .tech-item {
  text-align: start;
}

.ai-development-section .tech-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

.ai-development-section .tech-item p {
  font-size: 12px;
  color: #333;
  margin: 0;
}

.ai-development-section .process-section {
  border-radius: 10px;
  height: 650px;
  overflow-y: auto;
  margin-top: 70px;
}

.ai-development-section .process-section::-webkit-scrollbar {
  width: 2px;
}

.ai-development-section .process-section::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.ai-development-section .process-section::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.ai-development-section .process-section::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.ai-development-section .process-title {
  font-size: 40px;
  margin-bottom: 40px;
  line-height: 1.2;
}

.ai-development-section .process-title em {
  font-style: italic;
}

.ai-development-section .process-step {
  margin-bottom: 40px;
}

.ai-development-section .process-step h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.ai-development-section .process-step p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 10px;
}

/* =========================== */
/* Responsive Styles */
/* =========================== */
@media (max-width: 1024px) {
  .ai-development-section .section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 21px;
  }

  .ai-development-section .process-title {
    font-size: 34px;
  }
}

@media (max-width: 1199px) {
  .ai-development-section .section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .ai-development-section .process-title {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .ai-development-section .section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .ai-development-section .process-title {
    font-size: 28px;
  }

  .ai-development-section .process-section {
    margin-top: 30px;
    height: 500px;
  }

  .ai-development-section .tech-grid {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .ai-development-section {
    padding: 30px 0;
  }

  .ai-development-section .section-title {
    font-size: 40px;
    text-align: left;
    margin-bottom: 21px;
  }

  .ai-development-section .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .ai-development-section .tech-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .ai-development-section .process-section {
    padding: 30px 20px;
    height: 400px;
  }

  .ai-development-section .process-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .ai-development-section .process-step h3 {
    font-size: 20px;
  }

  .ai-development-section .process-step p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .ai-development-section .section-title {
    font-size: 25px;
  }

  .ai-development-section .tech-item img {
    width: 50px;
    height: 50px;
  }

  .ai-development-section .tech-item p {
    font-size: 10px;
  }

  .ai-development-section .process-title {
    font-size: 28px;
  }

  .ai-development-section .process-step {
    margin-bottom: 30px;
  }

  .ai-development-section .process-step h3 {
    font-size: 18px;
  }
}

@media (max-width: 400px) {
  .ai-development-section .tech-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding-left: 29px;
  }

  .ai-development-section .process-section {
    height: 350px;
  }
}

@media (max-width: 390px) {
  .ai-development-section .process-title {
    font-size: 25px;
  }
}

/* =========================== */
/* Technologies Section Ends */
/* =========================== */
/* =========================== */
/* Insight Section Starts */
/* =========================== */
.insights {
  padding: 40px 0;
  background: #f5f5f5;
}

.insights-content {
  color: #050101;
}

.insights-head {
  font-size: 56px;
  padding-top: 10px;
  width: 72%;
  line-height: 55px;
  margin-bottom: 28px;
}

.insights-text {
  font-size: 18px;
  width: 80%;
}

#insights .owl-stage {
  padding: 0 !important;
  transition: all 5s;
}

.card-content {
  padding: 30px 20px !important;
  transition: all 5s;
}

.card-content2 {
  padding: 30px 15px !important;
  color: #000;
  transition: background 5s;
}

.insights-card-title {
  font-size: 24px;
  margin-bottom: 31px;
}

.insights-card-text {
  font-size: 20px;
  line-height: 23px;
}

.text-color {
  color: #fff !important;
}

.insights-card:hover .text-color,
.card-content:hover .text-color {
  color: #000 !important;
}

.insights-card {
  position: relative;
}

.invisible-content {
  display: none;
}

.invisible-content p {
  margin-top: 70px;
  font-size: 15px;
}

.invisible-content a {
  position: absolute;
  bottom: 4%;
  right: 8%;
  font-weight: 800;
  color: #fff;
}

.insights .owl-theme .owl-dots {
  display: none;
}

.card-content:hover {
  background-image: linear-gradient(-21deg, rgba(116, 142, 142, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.card-content:hover .invisible-content {
  display: contents;
}

.bg-hover1:hover {
  background: linear-gradient(#1c7c3f, #c3543e);
}

.bg-hover2:hover {
  background: linear-gradient(#4bbbcc, #af2153);
}

.bg-hover3:hover {
  background: linear-gradient(#ee9e2d, #6b8938);
}

.bg-hover4:hover {
  background: linear-gradient(#c2b2eb, #f05bed);
}

.card-content2:hover .invisible-content {
  display: contents;
}

.card-content2:hover .invisible-content a {
  color: #000;
}

@media only screen and (max-width: 480px) {
  .insights .custom-container {
    width: 90%;
  }

  .insights-card-title {
    font-size: 22px;
  }

  .insights-text {
    font-size: 15px;
  }

  .insights-card-text {
    font-size: 16px;
  }

  .insights-head {
    font-size: 25px !important;
    line-height: 30px !important;
    width: 80%;
  }

  .invisible-content p {
    font-size: 16px;
    margin-top: 81px;
    line-height: 23px;
  }

  .inslight-content {
    padding: 0;
  }

  .invisible-content a {
    right: 6%;
  }

  .insights .owl-theme .owl-dots {
    display: block;
    padding-bottom: 20px;
    margin-top: 0;
  }

  #insights .owl-dots .owl-dot.active span,
  #insights .owl-dots .owl-dot:hover span {
    background: #007bff !important;
  }
}

@media only screen and (min-width: 481px) and (max-width: 820px) {
  .insights .custom-container {
    width: 80%;
  }

  .insights-head {
    width: 90%;
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 10px;
  }

  .insights-card {
    margin: 0;
  }

  .card-content,
  .card-content2 {
    padding: 10px 10px !important;
  }

  .insights-card-title {
    margin-bottom: 10px;
    font-size: 8px;
  }

  .insights-card-text {
    font-size: 10px;
    line-height: 13px;
  }

  .invisible-content p {
    font-size: 8px;
    margin-top: 26px;
    opacity: 1;
  }

  .invisible-content a {
    font-size: 10px;
  }
}

@media only screen and (min-width: 821px) and (max-width: 1024px) {
  .insights-card {
    margin: 0;
  }

  .insights-head {
    font-size: 40px;
    line-height: 43px;
    width: 88%;
  }

  .insights-card-title {
    font-size: 8px;
    margin-bottom: 20px;
  }

  .insights-card-text {
    font-size: 10px;
    line-height: 16px;
  }

  .invisible-content p {
    margin-top: 20px;
    font-size: 9px;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1370px) {
  .insights-head {
    font-size: 52px;
    line-height: 51px;
    width: 62%;
  }

  .insights-card {
    margin: 5px;
  }

  .insights-card-title {
    font-size: 10px;
  }

  .insights-card-text {
    font-size: 14px;
    line-height: 21px;
  }

  .invisible-content p {
    margin-top: 25px;
    font-size: 10px;
  }

  .invisible-content a {
    font-size: 12px;
  }
}

@media screen and (min-width: 1536px) and (max-width: 1920px) {
  .insights-head {
    width: 63%;
  }

  .insights-card {
    margin: 5px;
  }

  .insights-card-title {
    font-size: 15px;
    font-style: italic;
  }

  .insights-card-text {
    font-size: 20px;
    line-height: 24px;
  }

  .invisible-content {
    font-size: 18px;
    line-height: 16px;
  }

  .invisible-content p {
    font-size: 14px;
  }

  #button {
    font-size: 18px;
  }
}

@media only screen and (max-width: 2560px) {
  .insights-head {
    font-size: 45px;
    line-height: 53px;
    width: 78%;
  }

  .insights-card-title {
    font-size: 10px;
  }

  .insights-card-text {
    font-size: 15px;
    line-height: 18px;
  }

  .invisible-content p {
    font-size: 12px;
    margin-top: 31px;
    line-height: 15px;
  }

  .invisible-content a {
    font-size: 12px;
  }
}

.insights .owl-theme .owl-dots,
.insights .owl-dots,
.owl-carousel .owl-dots {
  display: none !important;
}

@media only screen and (max-width: 480px) {
  .insights .owl-theme .owl-dots {
    display: block !important;
    padding-bottom: 20px;
    margin-top: 0;
  }

  .insights .owl-dots:not(:last-child) {
    display: none !important;
  }
}

/* =========================== */
/* Insights Section Ends */
/* =========================== */
/* =========================== */
/* Faq Section Starts */
/* =========================== */
.faq {
  padding: 64px 0;
}

.faq .faq-head {
  text-align: center;
  font-size: 48px;
  margin-bottom: 40px;
}

.faq .accordion-item {
  border-top: 1px solid #000 !important;
}

.faq .accordion-item:first-child {
  border-top: none !important;
}

.faq .accordion-item {
  border-top: 1px solid #000 !important;
}

.faq .accordion-btn {
  background-color: #fff !important;
  color: #000 !important;
  padding: 28px 25px !important;
  font-size: 22px !important;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: none !important;
}

.faq .accordion-text {
  font-size: 18px;
}

.faq .accordion-btn:focus {
  box-shadow: none !important;
}

.faq .faq-num {
  padding-right: 20px;
  font-weight: 600;
}

/* =========================== */
/* RESPONSIVE */
/* =========================== */
@media only screen and (max-width: 480px) {
  .faq {
    padding: 50px 0;
  }

  .faq .faq-head {
    font-size: 32px;
    line-height: 35px;
  }

  .faq .accordion-btn {
    font-size: 16px !important;
    padding: 14px 10px !important;
  }

  .faq .accordion-text {
    font-size: 14px;
  }
}

@media only screen and (min-width: 481px) and (max-width: 820px) {
  .faq {
    padding: 50px 0;
  }

  .faq .faq-head {
    font-size: 30px;
    line-height: 35px;
  }

  .faq .accordion-btn {
    font-size: 18px !important;
    padding: 14px 25px !important;
  }

  .faq .accordion-text {
    font-size: 15px;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 821px) and (max-width: 1024px) {
  .faq .faq-head {
    font-size: 40px;
    line-height: 38px;
  }

  .faq .accordion-btn {
    font-size: 20px !important;
    padding: 20px 25px !important;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1366px) {
  .faq .faq-head {
    font-size: 34px;
    line-height: 40px;
  }

  .faq .accordion-btn {
    font-size: 20px !important;
    padding: 22px 25px !important;
  }

  .faq .accordion-text {
    font-size: 15px;
  }
}

@media only screen and (min-width: 2560px) {
  .faq .faq-head {
    font-size: 62px;
    line-height: 70px;
  }

  .faq .accordion-btn {
    font-size: 40px !important;
  }

  .faq .accordion-text {
    font-size: 30px;
  }
}

/* =========================== */
/* Faq Section Ends */
/* =========================== */
/* =========================== */
/* AI Awards Section Starts */
/* =========================== */
.ai-award-section {
  padding: 50px 0;
  background-color: #EFEFFF;
}

.ai-award-section .section-title {
  font-size: 45px;
  text-align: center;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.section-title strong {
  font-weight: 700;
  font-style: italic;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.features-container {
  margin-bottom: 80px;
}

.feature-item {
  position: relative;
  padding: 0 15px;
  text-align: center;
}

.feature-item h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0;
  transition: transform 0.3s ease;
  line-height: 1.4;
}

.feature-item h3:hover {
  transform: translateY(-8px);
  transition: transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-divider {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background-color: #1a1a1a;
}

.features-container .col-lg-3:last-child .feature-divider {
  display: none;
}

.awards-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.awards-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 66px;
}

.award-item {
  text-align: center;
  position: relative;
  padding: 20px;
}

.award-wreath {
  width: 180px;
  height: 180px;
  margin: 0 auto 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-wreath img {
  width: 140%;
  height: 100%;
  object-fit: contain;
}

.award-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
}

.award-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #000;
}

.award-source {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 1px;
}

.bottom-line {
  width: 100%;
  height: 2px;
  background-color: #1a1a1a;
  margin-top: 40px;
}

/* =========================== */
/* Responsive Design */
/* =========================== */
@media (max-width: 1024px) {
  .ai-award-section .section-title {
    text-align: center;
    margin-bottom: 15px;
  }

  .awards-container {
    gap: 18px;
  }

  .section-subtitle {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .award-wreath img {
    width: 124%;
  }

  .award-content {
    top: 47%;
  }

  .awards-title {
    margin-bottom: 0px;
  }
}

@media (max-width: 991px) {
  .ai-award-section .section-title {
    font-size: 2.5rem;
  }

  .awards-container {
    gap: 42px;
  }

  .awards-title {
    font-size: 2.5rem;
  }

  .feature-item h3 {
    font-size: 18px;
  }

  .divider {
    display: none;
  }

  .feature-item {
    border-bottom: 1px solid #d0d0d0;
    padding: 25px 15px;
  }

  .feature-item:last-child {
    border-bottom: none;
  }

  .feature-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .ai-award-section .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }

  .ai-award-section .section-title {
    text-align: left;
  }

  .awards-title {
    font-size: 2rem;
  }

  .award-wreath {
    width: 150px;
    height: 150px;
  }

  .award-text {
    font-size: 0.8rem;
  }

  .award-source {
    font-size: 0.9rem;
  }

  .awards-container {
    gap: 30px;
  }

  .awards-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    justify-items: center;
  }

  .award-item {
    padding: 10px 0 !important;
  }

  .award-wreath {
    width: 120px !important;
    height: 120px !important;
  }

  .award-text {
    font-size: 0.75rem !important;
  }

  .award-source {
    font-size: 0.8rem !important;
  }

  .features-container .row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }

  .features-container .col-lg-3,
  .features-container .col-md-6,
  .features-container .col-12 {
    width: 100% !important;
    padding: 0 !important;
  }

  .feature-item {
    border-bottom: none !important;
  }

  .section-subtitle {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .ai-award-section .section-title {
    font-size: 1.75rem;
  }

  .awards-title {
    font-size: 1.75rem;
  }

  .award-wreath {
    width: 130px;
    height: 130px;
  }

  .main-section {
    padding: 40px 0;
  }

}

@media (max-width: 390px) {
  .awards-container {
    gap: 0px;
  }
}

/* =========================== */
/* Awards Section Ends */
/* =========================== */

/* Contact Form Section Start */
.contactForm {
  padding: 65px 0 55px 0;
}

.contactForm .form-group {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid #ced4da;
  align-items: center;
}

.contactForm .form__f.form-group {
  border: unset;
  gap: unset;
  height: min-content;
}

.contactForm .form__f .form-control {
  padding: 17px 11px;
  font-size: 13px;
  color: #637091;
  border-radius: 0;
  border: 1px solid #ced4da;
}

.contactForm .form-control {
  border: unset;
  font-size: 13px;
  padding: 10px 0.75rem;
}

.contactForm .form-control:focus {
  box-shadow: unset;
}

.contactForm .col-md-6 {
  margin-bottom: 50px;
}

.contactForm label {
  margin: 0;
}

.contactForm label.error {
  position: absolute;
  bottom: 0;
}

.contactForm .border-none {
  border: unset;
}

.contactForm .iti label.error {
  bottom: unset;
  left: -94px;
}

.contactForm .chooseService {
  display: unset;
}

.contactForm .contactService {
  display: none;
}

.contactForm .contactService+label {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #000;
  border-radius: 50px;
  cursor: pointer;
  margin: 10px 5px 0 0;
}

.contactForm .contactService:checked+label {
  background-color: #337ab7;
  color: #fff;
  border-color: #337ab7;
}

.contactForm .otherService {
  display: none;
  margin-top: 10px;
  border: none;
  border-bottom: 1px solid #ced4da;
  border-radius: unset;
  width: 70%;
}

.contactForm #others:checked~.otherService {
  display: inline;
}

.contactForm input[type="radio"] {
  display: none;
}

.contactForm .radio-label {
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: grey;
}

.contactForm input[type="radio"]:checked+.radio-label {
  color: #000;
}

.contactForm small {
  color: #92b0b3;
  font-size: 11px;
  margin-top: 10px;
  display: block;
}

.contactForm .box-header {
  color: #444;
  display: block;
  position: relative;
}

.contactForm .box-tools {
  float: right;
}

.contactForm .dropzone-wrapper {
  color: #92b0b3;
  position: relative;
  height: 45px;
  background-color: #e9ecef;
  border-radius: 8px;
}

.contactForm .dropzone-desc {
  position: absolute;
  margin: 0 auto;
  top: 50%;
  left: 5px;
  transform: translate(10%, -50%);
}

.contactForm .dropzone,
.contactForm .dropzone:focus {
  position: absolute;
  outline: none !important;
  width: 100%;
  cursor: pointer;
  opacity: 0;
  height: 45px;
}

.contactForm .dropzone-wrapper:hover,
.contactForm .dropzone-wrapper.dragover {
  background: #ecf0f5;
}

.contactForm .preview-zone .box {
  box-shadow: none;
  border-radius: 0;
  margin: 0 auto;
  align-items: center;
  margin-bottom: 5px;
}

.contactForm .hidden {
  display: none !important;
}

.contactForm .box-body p {
  margin-bottom: 0;
  font-size: 13px;
}

.contactForm .form-group .control-label {
  margin-bottom: 15px;
}

.contactForm .dropzone-desc p {
  font-size: 14px;
  margin-top: 5px;
}

.contactForm .remove-preview {
  font-size: 12px;
  padding: 0 10px;
  background-color: #ed3237;
  color: #fff;
}

.contactForm .alert.alert-success.alert-dismissable {
  padding: 0;
  margin: 0;
  border: none;
  text-align: center;
}

.contactForm .contactSlash {
  font-size: 20px;
  opacity: 0.3;
}

.contactForm #fileError {
  color: red;
  font-size: 12px;
  margin-bottom: 0;
}

.contactForm .buttonAlignment {
  display: flex;
  justify-content: end;
  align-items: center;
}

.contactForm .iti__selected-flag {
  background-color: #FFFFFF;
}

.project-related,
.career-related {
  margin-bottom: 30px;
}

.contactForm .chooseService label.d-inline {
  margin-bottom: 6px;
}

/* Contact Form Section End */
/* Responsive CSS Start */
@media (min-width: 1366px) {
  .contactForm .radio-label {
    font-size: 1.318vw;
  }

  .contactForm .form-control {
    font-size: 0.952vw;
    padding: 0.732vw 0.878vw;
  }

  .contactForm label {
    font-size: 1.025vw;
  }

  .contactForm .dropzone,
  .contactForm .dropzone-wrapper {
    height: 3.294vw;
  }

  .contactForm .form__f .form-control {
    font-size: 0.952vw;
    padding: 1.245vw 0.805vw;
  }

  .contactForm .main-btn {
    padding: 1.098vw 1.83vw;
    font-size: 1.171vw;
  }

  .contactForm small {
    font-size: 0.805vw;
  }

  .contactForm label.error {
    font-size: 0.878vw !important;
  }
}

@media only screen and (max-width: 767px) {
  .chooseService-flex {
    overflow-x: auto;
    white-space: nowrap;
    display: flex !important;
    flex-wrap: nowrap;
    -ms-overflow-style: none;
  }

  .chooseService-flex::-webkit-scrollbar {
    width: 0;
    /* Chrome, Safari, Opera */
    height: 0;
  }

  .chooseService-flex div.d-inline {
    margin: 0 2px;
    flex: 0 0 auto;
  }
}

@media only screen and (max-width: 441px) {
  .contactForm .form__f.form-group {
    gap: unset;
  }
}

/* =========================== */
/* Footer Section  */
/* =========================== */


/*Starting-Footer */

.footer {
  background-color: #161b25;
  height: 100%;
  padding-top: 4.4270833333vw;
  padding: 50px 20px 35px 20px;
}

.footer-list {
  padding-top: 10px;
}

.footer-item p {
  color: #ccc;
}

.footer-item {
  list-style: none;
  padding-bottom: 25px;
  color: #8e929d;
}

.footer-item a {
  text-decoration: none;
  color: #8e929d;
  font-size: 13px;
}

.footer-item a:hover {
  color: #007bff !important;
}

.ftr-address {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.footer-line {
  color: #8e929d !important;
  margin-left: 10px;
  margin-right: 10px;
  border: 0.5px solid rgb(255, 255, 255, 0.2) !important;
}

.footer-content {
  color: #8e929d;
  padding-top: 4.4270833333vw;
  padding-bottom: 4.4270833333vw;
}

.footer-content a {
  text-decoration: none;
  color: #8e929d;
  font-size: 13px;
}

.contact a {
  display: inline-block;
}

.marquee-footer {
  height: 175px;
  position: relative;
  overflow: hidden;
  padding-top: 46px;
}

.marquee-footer h3 {
  font-size: 150px;
  color: #8e929d;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  line-height: 75px;
  text-align: center;
  /* Starting position */
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  /* Apply animation to this element */
  -moz-animation: marquee 10s linear infinite;
  -webkit-animation: marquee 10s linear infinite;
  animation: marquee 10s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.footer-bottom {
  color: #8e929d;
  text-align: left;
  font-size: 13px;
  padding-top: 10px;
}

.footer-bottom a {
  text-decoration: none;
  color: #8e929d;
}

.footer-bottom a:hover {
  color: #ff8450;
}

.copyrights {
  padding-bottom: 5px;
}

.address {
  position: relative;
  color: #8e929d;
  margin-bottom: 33px;
  cursor: pointer;
}

.hover-div {
  text-align: left;
  padding-top: 26px;
}

.hover-div p {
  font-size: 13px;
}

.social-media {
  display: flex;
  justify-content: right;
}

.social-media img:hover {
  color: #fff;
  background-color: #007bff;
  border-radius: 50%;
}

.social-icon {
  width: 65% !important;
}

.all-rights {
  display: inline;
  color: #8e929d !important;
}

@media only screen and (max-width: 720px) {
  .footer-content {
    margin-top: 20px;
  }

  .line {
    display: none;
  }

  .footer-content-head {
    margin-top: 20px;
  }

  .footer-item {
    padding-bottom: 12px;
  }

  .footer-item a {
    font-size: 13px;
  }

  .footer-bottom {
    text-align: center;
    margin-left: 0;
  }

  .social-media {
    margin: 0px 10px;
  }

  .social-media {
    display: flex;
    justify-content: center;
  }

  .marquee-footer {
    height: 86px;
    padding-top: 0;
  }

  .marquee-footer h3 {
    font-size: 50px;
    -moz-animation: marquee 8s linear infinite;
    -webkit-animation: marquee 8s linear infinite;
    animation: marquee 8s linear infinite;
  }

  .address {
    margin-bottom: 10px;
  }

  .hover-div {
    padding-top: 0;
  }

  .country-icon {
    display: none;
  }

  .hover-div {
    margin-left: 0px;
  }

  .div-india {
    padding-top: 15px;
  }

  .hidden-text {
    width: 60%;
    margin-left: 25px;
  }

  .social-media {
    margin-bottom: 20px;
  }

  .hidden-text {
    opacity: 1;
    padding-top: 0;
    top: 90%;
    left: 2%;
  }

  .footer-list {
    padding-left: 0px;
  }

  .footer-content {
    padding-left: 10px;
  }

  .footer-content .col-6 {
    padding: 0 !important;
  }

  .all-rights {
    display: block;
    text-align: center;
  }

  .contact-line {
    display: none;
  }
}

@media only screen and (min-width: 481px) and (max-width: 820px) {
  .marquee-footer h3 {
    font-size: 108px;
  }

  .all-rights {
    display: block;
    text-align: center;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .contact-line {
    display: none;
  }

  .footer-item {
    padding-bottom: 15px;
  }

  .footer .col-md-3 {
    padding: 0 !important;
  }
}

@media (min-width: 540px) and (max-width: 650px) {
  .marquee-footer h3 {
    font-size: 72px;
  }
}

@media only screen and (max-width: 767px) {
  .ftr-address {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer .footer-content-head,
.footer .address h5 {
  margin-bottom: 20px;
}



@media (min-width: 720px) and (max-width: 730px) {
  .marquee-footer h3 {
    font-size: 95px;
  }
}

@media only screen and (min-width: 821px) and (max-width: 1024px) {
  .marquee-footer h3 {
    font-size: 100px;
  }

  .contact-line {
    display: none;
  }
}

@media (min-width: 1360px) {
  .footer-item h5 {
    font-size: 1.471vw;
  }

  .footer-item a {
    font-size: 1vw;
  }

  .footer-content-head {
    font-size: 1.471vw;
  }

  .footer-content a {
    font-size: 1vw;
  }

  .marquee-footer h3 {
    font-size: 6.353vw;
  }

  .address h5 {
    font-size: 1.471vw;
  }

  .address p {
    font-size: 1vw !important;
  }

  .footer-bottom {
    font-size: 1vw !important;
  }

  .footer-item {
    padding-bottom: 1.103vw;
  }

  .footer-content {
    padding-left: 0;
  }

  .footer-list {
    padding-left: 0;
  }

  .hover-div {
    margin-left: 0;
  }

  .footer-bottom {
    padding-left: 10px;
  }
}

@media only screen and (min-width: 2560px) {
  .footer-list {
    font-size: 40px;
  }
}


.footer ul li::before {
  content: none !important;
}

.copyrights {
  background-color: transparent !important;
}

.copyrights li.list-inline-item a {
  border: none !important;
  padding: 0 !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.ps-2 {
  padding-left: 0 !important;
}

.gap-2 {
  gap: 8px !important;
}

.contact-social-bar li:hover:nth-child(4) a,
.copyrights li:hover:nth-child(4) a,
.pin-color::after {
  background: transparent !important;
}

.contact-social-bar li:hover:nth-child(3) a,
.copyrights li:hover:nth-child(3) a,
.pin-color::after {
  background: transparent !important;
}

.contact-social-bar li:hover:nth-child(2) a,
.copyrights li:hover:nth-child(2) a,
.pin-color::after {
  background: transparent !important;
}

.contact-social-bar li:hover:nth-child(1) a,
.copyrights li:hover:nth-child(1) a,
.pin-color::after {
  background: transparent !important;
}

.copyrights {
  padding: 0 !important;
}

.footer a:hover {
  color: #007BFF !important;
}

@media (min-width: 540px) {
  .footer-list {
    padding-left: 0;
  }
}

/* SEO DEVELOPMENT SECTION CTA CSS */
.seo-cta {
  background: linear-gradient(90deg, rgba(255, 67, 111, 1) 8%, rgba(255, 154, 79, 1) 83%);
  color: #FFFFFF;
  padding: 80px 50px;
  text-align: center;
  border: none;
  border-radius: 30px;
  margin: 60px 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.seo-cta h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
  width: 82%;
  text-align: left;
}

.seo-cta p {
  font-size: 18px;
  font-weight: 300;
  width: 70%;
  text-align: left;
}

.seo-cta-button {
  background: #FFFFFF;
  color: #ff4757;
  padding: 18px 20px;
  border: none;
  border-radius: 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.4s ease, background-color 0.4s ease, color 0.4s ease;
}

.seo-cta-button:hover {
  transform: translateY(-2px);
  background: #000;
  color: #f7f7f7;
}

/* Media Queries */
@media screen and (max-width: 1024px) {

  .seo-cta h2 {
    font-size: 26px;
  }

  .seo-cta p {
    font-size: 16px;
    width: 80%;
  }

  .seo-cta-button {
    padding: 16px 12px;
    font-size: 13px;
  }
}

@media screen and (max-width: 1280px) {

  .seo-cta-button {
    padding: 15px 10px;
    font-size: 12px;
  }

  .seo-cta {
    width: 90%;
  }

}

@media screen and (max-width: 991px) {
  .seo-cta-button {
    padding: 17px 12px;
    font-size: 10px;
  }
}

@media screen and (max-width: 800px) {

  .seo-cta-button {
    padding: 12px 10px;
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .seo-cta h2 {
    font-size: 28px;
    width: 90%;
  }

  .seo-cta p {
    font-size: 16px;
    width: 90%;
  }

  .seo-cta {
    padding: 30px 0;
  }
}

@media screen and (max-width: 576px) {
  .seo-cta h2 {
    font-size: 22px;
    width: 100%;
  }

  .seo-cta p {
    font-size: 12px;
    width: 100%;
  }

  .seo-cta-button {
    padding: 10px 8px;
    font-size: 10px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 441px) {
  .seo-cta h2 {
    font-size: 20px;
  }

  .seo-cta p {
    font-size: 14px;
  }

  .seo-cta-button {
    padding: 8px 6px;
    font-size: 14px;
  }
}

@media screen and (max-width: 360px) {
  .seo-cta h2 {
    font-size: 16px;
  }

  .seo-cta p {
    font-size: 10px;
  }

  .seo-cta-button {
    padding: 6px 15px;
    font-size: 10px;
  }
}

/* SEO CTA Section Ends*/