/* === Global Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

.language-switcher {
  display: flex;
  gap: 10px;
  margin-left: auto;
  align-items: center;
}

.lang-btn {
  background-color: #f0f0f0;
  color: #333;
  border: 1px solid #ccc;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.lang-btn:hover {
  background-color: #dcdcdc;
}
.language-switcher {
  display: flex;
  gap: 12px;
  padding-left: 20px;
  align-items: center;
  margin-top: 10px;
}

.lang-btn {
  background-color: #ffffff;
  color: #333;
  border: 1px solid #ccc;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: background 0.3s ease;
}

.lang-btn:hover {
  background-color: #f0f0f1;
}
.goog-te-gadget {
  font-size: 0;
}
.goog-te-gadget span {
  display: none;
}

.translate-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}

.translate-button select {
  appearance: none;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.translate-button select:hover {
  background-color: #f0f0f0;
}

/* Remove Google branding */
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}

#google_translate_element {
  display: inline-block;
}


/* === Container === */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Header Base === */
.site-header {
  width: 100%;

  position: fixed;
  top: 0;
  z-index: 999;
  padding: 20px 0;
  transition: all 0.3s ease;
  background-color: transparent;
}

.site-header.scrolled {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* === Header Layout === */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* === Logo === */
.logo img {
  max-height: 90px;
   
}



/* === Navigation === */
.nav-menu ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  color: #fff;
}

.site-header.scrolled .nav-menu a {
  color: #333;
}

/* === Buttons === */
.header-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
}

.btn-outline:hover {
  background: #0c62ff;
  color: #fff;
  border-color: #0c62ff;
}

.btn-primary {
  background: #0c62ff;
  color: #fff;
  border-color: #0c62ff;
}

.btn-primary:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.site-header.scrolled .btn-outline {
  color: #333;
  border-color: #333;
}

.site-header.scrolled .btn-outline:hover {
  background-color: #0c62ff;
  color: #fff;
  border-color: #0c62ff;
}

.site-header.scrolled .btn-primary {
  background-color: #0c62ff;
  color: #fff;
}

/* === Hamburger Toggle (Mobile) === */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

.site-header.scrolled .menu-toggle {
  color: #333;
}

/* === Responsive Styles === */
@media (max-width: 1023px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    display: none;
    padding: 20px;
  }
  /* === Logo === */
.logo img {
  max-height: 30px;
   
}


  .nav-menu.open {
    display: flex;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu a {
    color: #333;
  }

  .header-buttons {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .logo {
    flex: 1;
  }
}
/* === Full-width banner background but content limited === */
.banner-section {
  background-color: #1c2b5f;
  width: 100%;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  padding: 0;
}


/* === Shared container === */
.banner-inner,
.partners-row {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 100px 0 100px  ; /* 20px side padding for smaller screens */
}

/* === Banner Inner Section === */
.banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}


.banner-left {
  flex: 1;
}

.banner-left h1 {
  font-size: 42px;
  line-height: 53px;
  margin-bottom: 20px;
}

.banner-description {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 30px;
  max-width: 500px;
}

.banner-buttons-row {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.buttons {
  display: flex;
  gap: 15px;
}

.banner-small-desc {
  font-size: 13px;
  line-height: 19px;
  color: #e0e0e0;
  max-width: 250px;
}
.banner-right {
  flex: 1;
  text-align: right;
}

.banner-right img {
  max-width: 100%;
  height: auto;
}


/* === Partner Logos === */
.partners-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
  justify-items: center;
  padding: 40px 20px;
}

.partners-row img {
  height: 86px;
  width:  153px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Optional: make logos white if needed */
}

/* === Responsive Media Queries === */

/* === Fix container above 1440px === */
@media (min-width: 1441px) {
  .banner-inner,
  .partners-row {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Tablet */
@media (max-width: 1023px) {
  .banner-section {
    height: 70vh;
    padding: 70px 20px 0 20px;
  }

  .banner-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 0;
  }

  .banner-left h1 {
    font-size: 32px;
    line-height: 42px;
  }

  .banner-description {
    font-size: 14px;
    line-height: 20px;
  }

  .partners-row img {
display: none;
  }

  .banner-right {
    width: 100%;
    text-align: center;
  }

  .banner-right img {
   display: none;
  }

  .buttons {
    align-items: flex-start;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .banner-section {
    height: 70vh;
    padding: 70px 20px 20px 20px;
  }

  .banner-inner {
    padding: 40px 0;
    gap: 30px;
  }

  .banner-left h1 {
    font-size: 24px;
    line-height: 34px;
  }

  .banner-description {
    font-size: 13px;
    line-height: 18px;
  }

  .banner-small-desc {
    font-size: 12px;
    line-height: 18px;
  }

  .partners-row {
  
    display: none;
  }
  .partners-row img {
   display: none;
  }
  .buttons {
    width: 100%;
    gap: 10px;
  }

  .buttons a {
    width: 100%;
    text-align: center;
  }
}

/* === Info Section Wrapper === */
.info-section {
  background: #f9f9f9;
  padding: 100px 20px;
}

.info-container {
  max-width: 1440px;
  margin: 0 auto;
}

/* === Section Intro Text === */
.section-tagline {
  text-align: center;
  font-size: 19px;
  margin-bottom: 20px;
  color: #0c62ff;
  font-weight: bold;
}

.section-heading {
  text-align: center;
  font-size: 39px;
  font-weight: 600;
  color: #1c2b5f;
  margin-bottom: 60px;
  line-height: 44px;
}

/* === Boxes Grid === */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* === Individual Box === */
.info-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.box-icon {
  width: 40px;
  height: 40px;
  fill: #0c62ff;
  margin-bottom: 20px;
}

.box-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #1c2b5f;
}

.box-description {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 20px;
  color: #444;
  flex-grow: 1;
}

.box-btn {
  align-self: flex-start;
  padding: 10px 18px;

  color: #0c62ff;
  background: transparent;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}



/* === Responsive === */

/* Tablet */
@media (max-width: 1023px) {
  .info-section {
    padding: 60px 20px;
  }

  .info-boxes {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading {
    font-size: 28px;
  }

  .box-title,
  .box-description {
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .info-section {
    padding: 40px 20px;
  }

  .section-heading {
    font-size: 18px;
    line-height: 25px;
  }

  .section-tagline {
    font-size: 14px;
  }

  .box-title,
  .box-description {
    font-size: 13px;
  }

  .box-btn {
    font-size: 13px;
    padding: 8px 16px;
  }

  .box-icon {
    width: 35px;
    height: 35px;
  }
}

/* === ZIGZAG Section Base === */
.zigzag-section {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 100px 20px;
  max-width: 1440px;
  margin: 0 auto;
}

/* === Row Structure === */
.zigzag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* === Reverse Row for 2nd & 4th === */
.zigzag-row.reverse {
  flex-direction: row-reverse;
}

/* === Image Column === */
.zigzag-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.zigzag-image img {
  width: 100%;
  max-width: 750px;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  aspect-ratio: 750 / 650;
}

/* === Corner Connecting Effect === */
.zigzag-row:not(:last-child) .zigzag-image img {
  border-bottom-right-radius: 80px;
}

.zigzag-row.reverse:not(:last-child) .zigzag-image img {
  border-bottom-left-radius: 80px;
}

.zigzag-row + .zigzag-row .zigzag-image img {
  border-top-left-radius: 80px;
}

.zigzag-row.reverse + .zigzag-row.reverse .zigzag-image img {
  border-top-right-radius: 80px;
}

/* === Text Box === */
.zigzag-text {
  flex: 1;
  background: #f5f7fa;
  padding: 100px;
  box-sizing: border-box;
  min-width: 300px;
  border-radius: 12px;
}

.zigzag-text h2 {
  font-size: 32px;
  line-height: 47px;
  color: #1c2b5f;
  margin-bottom: 20px;
}

.zigzag-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* === Tablet (≤ 1023px) === */
@media (max-width: 1023px) {
  .zigzag-text {
    padding: 40px;
  }

  .zigzag-text h2 {
    font-size: 26px;
    line-height: 40px;
  }

  .zigzag-text p {
    font-size: 15px;
  }

  .zigzag-section {
    padding: 60px 20px;
  }
}

/* === Mobile (≤ 767px) === */
@media (max-width: 767px) {
  .zigzag-row,
  .zigzag-row.reverse {
    flex-direction: column;
  }

  .zigzag-image img {
    border-radius: 0;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }

  .zigzag-text {
    padding: 30px;
    border-radius: 0 0 20px 20px;
  }

  .zigzag-text h2 {
    font-size: 22px;
    line-height: 32px;
  }

  .zigzag-text p {
    font-size: 14px;
  }
}



/* === Parallax Section === */
.parallax-section {
  background-image: url('scrool\ img.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  color: #fff;
  padding: 100px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  
}



/* === Icon === */
.parallax-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 0 #0c62ff) brightness(0) invert(1); /* blue tint on white icon */
}

/* === Heading === */
.parallax-heading {
  font-size: 28px;
  margin-bottom: 40px;
  line-height: 42px;
  font-weight: 500;
}

/* === Text === */
.parallax-text {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
  color: #eee;
}

/* === Responsive === */
@media (max-width: 1023px) {
  .parallax-section {
    padding: 80px 20px;
  }

  .parallax-heading {
    font-size: 26px;
  }

  .parallax-text {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .parallax-section {
    padding: 40px 20px;
  }

  .parallax-heading {
    font-size: 18px;
    line-height: 28px;
  }

  .parallax-text {
    font-size: 14px;
  }

  .parallax-overlay {
    padding: 0 ;
  }
}

/* === Main Gradient Background === */
.gradient-wrapper {
  background: linear-gradient(to bottom, #202142 0%, #1a3377 50%, #0d5df0 100%);
  padding: 100px 20px 0 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === Review Section Container === */
.review-section {
  max-width: 900px;
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
  padding: 0 20px;
}

/* === Review Text === */
.review-text {
  font-size: 24px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 50px;
  color: #fff;
text-align: left;
}

/* === Quote Box === */
.review-quote-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* === Quote Image === */
.quote-img img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  }

/* === Company Info Text === */
.quote-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.quote-company {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

.quote-rank {
  font-size: 14px;
  color: #ccc;
}

/* === Tablet (≤1023px) === */
@media (max-width: 1023px) {
  .review-text {
    font-size: 20px;
    padding: 0 10px;
  }

  .quote-info {
    text-align: center;
    align-items: center;
  }

  .review-quote-box {
    flex-direction: row;
  }
}

/* === Mobile (≤767px) === */
@media (max-width: 767px) {
  .review-text {
    font-size: 18px;
    line-height: 1.5;
  }

  .review-quote-box {
    flex-direction: column;
    gap: 10px;
  }

  .quote-img img {
    width: 50px;
    height: 50px;
  }

  .quote-info {
    text-align: center;
    align-items: center;
  }

  .quote-company {
    font-size: 15px;
  }

  .quote-rank {
    font-size: 13px;
  }
}

.nav-circles {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4); /* Inactive */
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.circle.active {
  background-color: #fff; /* Active circle */
}

/* === Tabs Section Layout === */
.tabs-section {
  padding: 0;
  text-align: center;
  color: #fff;
}

.tabs-intro {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}

.tabs-heading {
  font-size: 32px;
  margin-bottom: 40px;
  color: #fff;
}

/* === Tab Box Styling === */
.tabs-wrapper {
  border: 2px solid white;
  border-radius: 20px;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  max-width: 1200px;
  margin: 0 auto;
}

/* === Tab Buttons === */
.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.tab-btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 14px;
}

.tab-btn.active {
  background: #fff;
  color: #0d5df0;
}

/* === Tab Content === */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: left;
}

/* === Tab Image === */
.tab-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
}

/* === Tab Text Box === */
.tab-text {
  flex: 1;

}

.tab-text h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #fff;
}

.tab-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 40px;
}



/* === Responsive Styles === */
@media (max-width: 1023px) {
  .tab-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .tab-text {
    text-align: center;
  }

  .tab-text h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .tab-btn {
    font-size: 12px;
    padding: 8px 12px;
  }

  .tabs-heading {
    font-size: 24px;
  }

  .tab-text p {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .tab-buttons {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    max-width: 300px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    text-align: center;
  }

  .tab-btn.active {
    background-color: #fff;
    color: #0d5df0;
  }
}

.centered-info-block {
  text-align: center;
  max-width: 800px;
  margin: 60px auto 100px;
  padding: 0 20px;
  color: #fff;
}

.icon-wrapper img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1); /* Makes dark icons white-like */
}

.centered-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 5px;
}

.centered-description {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
  .centered-title {
    font-size: 22px;
  }

  .centered-description {
    font-size: 14px;
  }

  .icon-wrapper img {
    width: 50px;
    height: 50px;
  }
}


/* === Banner Section for Services Page === */
.services-banner {
  background-color: #f2f7ff;
  padding: 100px;
}

.services-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* === Image === */
.services-banner-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
}

/* === Text Content === */
.services-banner-content {
  flex: 1;
  max-width: 600px;
}

.section-tag {
  font-size: 15px;
  font-weight: 600;
  color: #0d5df0;
  margin-bottom: 10px;
}

.services-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #1c1c1c;
}

.services-description {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 30px;
}

/* === Responsive Styles === */
@media (max-width: 1023px) {
  .services-banner {
    padding: 20px;

  }

  .services-banner-inner {
    flex-direction: column;
    text-align: start;
    gap: 30px;
  }

  .services-heading {
    font-size: 32px;
  }

  .services-description {
    font-size: 14px;
  }

  .services-banner-content {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .services-heading {
    font-size: 26px;
    
  }

  .services-description {
    font-size: 14px;
  }

  .section-tag {
    font-size: 13px;
  }
}
/* === Secondary Header === */
.secondary-header {
  position: sticky;
  top: 0;
  background-color: #fff;
  color: #000;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  padding: 15px 0;
}

.secondary-header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.secondary-logo img {
  max-height: 90px;
}

/* === Nav Menu === */
.secondary-nav-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.secondary-nav-menu a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}


.btn {
  padding: 10px 20px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  border-radius: 30px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #fff;
}

.btn-primary {
  background-color: #0c62ff;
  color: #fff;
  border: none;
}

/* === Toggle Button (Mobile) === */
.secondary-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* === Responsive === */
@media (max-width: 1023px) {
  .secondary-menu-toggle {
    display: block;
  }

  .secondary-nav-menu {
    display: none;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }

  .secondary-nav-menu.open {
    display: block;
  }

  .secondary-nav-menu ul {
    flex-direction: column;
    gap: 15px;
  }

  .secondary-header-buttons {
    width: 100%;
    margin-top: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 1023px) {
  .secondary-header-buttons {
    display: none;
  }
}

/* === Stats Section === */
.stats-section {
  background-color: #20203f;
  padding: 100px 20px;
  color: #fff;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

/* === Stat Box === */
.stat-box h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.stat-box p {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}

/* === Tablet & Mobile: 2 columns, 2 rows === */
@media (max-width: 1023px) {
  .stats-section {
    padding: 40px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 2fr);
    gap: 30px;
  }

  .stat-box h2 {
    font-size: 32px;
  }

  .stat-box p {
    font-size: 14px;
  }
}

/* === Small Mobile: Optional tweak for stacked layout if needed === */
@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr ;
  }
}


/* === CTA Split Section === */
.cta-split-section {
  padding: 30px 100px 30px 100px;
  background-color: #fff;
}

.cta-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-direction: row; /* Desktop: text left, image right */
}

/* === Text Box (left column) === */
.cta-text-box {
  flex: 1;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.cta-text-box h2 {
  font-size: 32px;
  line-height: 47px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #1c1c1c;
}

.cta-text-box p {
  font-size: 15px;
  line-height: 31px;
  color: #444;
  margin-bottom: 30px;
}

.cta-link {
  font-size: 15px;
  font-weight: 500;
  color: #0c62ff;
  text-decoration: none;
  display: inline-block;
}

.cta-link .arrow {
  margin-left: 6px;
}

/* === Image (right column) === */
.cta-image img {
  width: 620px;
  height: 433px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* === Responsive Styles for Tablet & Mobile (≤1023px) === */
@media (max-width: 1023px) {
  .cta-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-image {
    order: 1;
    width: 100%;
  }

  .cta-text-box {
    order: 2;
    max-width: 100%;
    text-align: left;
  }

  .cta-image img {
    width: 100%;
    height: auto;
  }

  .cta-text-box h2 {
    font-size: 26px;
    line-height: 38px;
  }

  .cta-text-box p {
    font-size: 14px;
    line-height: 26px;
  }
}

/* === Client Review Section === */
.client-review-section {
  background-color: #f2f7ff;
  padding: 100px 20px;
}

.client-review-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
}

.section-label {
  font-size: 16px;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.label-underline {
  width: 100%;
  height: 1px;
  background-color: #0c62ff;
  margin-bottom: 30px;
}

.client-quote {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #222;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.client-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.client-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.client-name {
  font-weight: 600;
  font-size: 16px;
  color: #111;
}

.client-rank {
  font-size: 14px;
  color: #666;
}

/* === Responsive === */
@media (max-width: 1023px) {
  .client-review-inner {
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  .client-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-img {
    margin-bottom: 10px;
  }
}

/* === Contact Section === */
.contact-section {
  padding: 100px;
  background-color: #fff;
}

.contact-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* === Left Column === */
.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 42px;
  line-height: 53px;
  margin-bottom: 20px;
  color: #1c1c1c;
}

.contact-description {
  font-size: 15px;
  line-height: 31px;
  color: #444;
  margin-bottom: 20px;
}

/* === Icon Boxes === */
.icon-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.icon-item p {
  font-size: 15px;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

/* === Highlight Box === */
.highlight-box {
  background-color: #f2f7ff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #222;
}

/* === Right Column: Form === */
.contact-form-container {
  flex: 1;
  min-width: 300px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 40px;
  border-radius: 10px;
  background: #fff;
}

.contact-form-container h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1c1c1c;
}

.contact-form-container .form-description {
  font-size: 12px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

/* === Contact Form Fields === */
.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  flex: 1 1 calc(50% - 20px);
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  min-width: 220px;
}

.contact-form textarea {
  flex: 1 1 100%;
  min-height: 120px;
}

.contact-form button {
  flex: 1 1 100%;
  background-color: #0c62ff;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.contact-form button:hover {
  background-color: #094ed2;
}

/* === Responsive Styles === */
@media (max-width: 1023px) {
  .contact-section {
    padding: 60px 30px;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-form input,
  .contact-form select {
    flex: 1 1 100%;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 40px 20px;
  }

  .contact-info h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .contact-form-container {
    padding: 25px;
  }

  .contact-form-container h3 {
    font-size: 20px;
  }
}

.Icon-contact {
  width: 100px;
  height: 100px;
  object-fit: contain; /* optional: keeps image from stretching */
}


.about-banner-container {
  padding: 100px;
  background-color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  min-height: 60vh; /* full viewport height */
}

.about-banner-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-intro,
.about-heading,
.about-description {
  margin: 0; /* remove default margin */
}

.about-intro {
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  color: #0c62ff;
}

.about-heading {
  font-family: sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 55px;
  color: #20203f;
}

.about-description {
  font-family: 'Poppins', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 34px;
  color: #20203f;
}
@media (max-width: 440px) {
  .about-banner-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.about-banner-container{
  padding: 20px;
  align-items: start;
}
.about-heading{
  text-align: start;
}
.about-description{
  text-align: start;
}
}
.stats-row-section {
  background-color: #f2f7ff;
  padding: 80px 20px;
}

.stats-row-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-column {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.stat-column h2 {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #0c62ff;
  margin: 0 0 10px 0;
}

.stat-column p {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin: 0;
  line-height: 24px;
}
@media (max-width: 768px) {
  .stats-row-container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .stat-column {
    width: 100%;
  }
}
.founder-story-section {
  background-color: #ffffff;
  padding: 80px 80px;
}

.founder-story-container {
 text-align: start;
  margin: 0 auto;
}

.founder-heading {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  font-size: 39px;
  line-height: 48px;
  color: #000000;
  margin-bottom: 30px;
}

.founder-paragraph {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #20203f;
  margin-bottom: 20px;
}
@media (max-width: 440px) {
  .founder-heading {
    font-size: 28px;
    line-height: 36px;
  }

  .founder-paragraph {
    font-size: 15px;
    line-height: 28px;
  }
}

/* General section styles */
.founders-section {
  padding: 80px 80px;
  background-color: #fff;
  font-family: Arial, sans-serif;
}

/* Heading style */
.founders-heading {
  text-align: center;
  font-size: 40px;
  color: #000;
  margin-bottom: 50px;
  
}

/* Row setup: horizontal for desktop, stack on mobile */
.founders-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* Each founder column */
.founder-column {
  flex: 1 1 45%;
  text-align: start;
}

/* Image style */
.founder-image {
  width: 492px;
  max-width: 492px;
  height: auto;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 16px;
  border-radius: 8px;
}

/* Founder name */
.founder-name {
  font-size: 32px;
  margin-top: 50px;
  color: #000;
  margin: 10px 0 5px;
  font-weight: 600;
  text-align: start;
}

/* Title */
.founder-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: start;
  color: #0c62ff;
}

/* Description */
.founder-description {
  font-size: 15px;
  line-height: 31px;
  font-weight: 400;

  text-align: start;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .founders-row {
    flex-direction: column;
    align-items: center;
  }
.founder-story-section{
  padding: 30px;
}
  
}
.office-section {
  background-color: #f2f7ff;
  padding: 60px 20px;
  text-align: center;
}

.office-section h1 {
  font-size: 32px;
  color: #222;
  margin-bottom: 10px;
}

.office-section p {
  font-size: 16px;
  color: #444;
  margin: 5px 0;
}

.office-box {
  background-color: white;
  max-width: 400px;
  margin: 40px auto 0;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.office-box h2 a {
  text-decoration: none;
  color: #007bff;
  font-size: 20px;
}

.office-box p {
  font-size: 14px;
  color: #333;
  margin: 5px 0;
}
/* Mobile devices (up to 485px) */
@media (max-width: 485px) {
  .office-section {
    padding: 40px 10px;
  }

  .office-section h1 {
    font-size: 24px;
  }

  .office-box {
    margin-top: 20px;
    padding: 15px;
  }

  .office-box h2 a {
    font-size: 18px;
  }

  .office-box p {
    font-size: 13px;
  }
}

/* Tablet devices (441px to 768px) */
@media (min-width: 441px) and (max-width: 768px) {
  .about-banner-container {
    padding: 60px 30px; /* 425px was way too large */
  }
}

/* Mobile devices (up to 440px) */
@media (max-width: 440px) {
  .about-banner-container {
    padding: 40px 20px;
  }
}

@media (max-width: 1023px){
  .founders-section{
    padding: 30px;
  }
  .office-section{
    padding: 40px;
  }
}
