@charset "utf-8";
/* @import url("https://fonts.cdnfonts.com/css/gilroy-bold?styles=20876,20877,20878,20879,20880"); */
@import url("../css/variable.css");

/*
1.  Common 
2.  Header 
3.  Banner Section
4.  Second Section 
5.  Service Section
6.  About Us Section
7.  Testimonial Section 
8.  Contact Us Section
9.  Client Section 
10. Footer
11. Site Page Banner Section
12. About Us Page
    1. Impact Section
    2. Our Mission Section
13. FAQ Page
    1. Accordian Section
14. Privacy & Policy Page
    1. Privacy Section 
15. Responsive       
*/

/*Common CSS start */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* overflow-x: hidden; */
}
/* ----------- */
body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  max-width: 100vw;
}
h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  line-height: 70px;
  font-size: 60px;
  color: var(--text1);
  /* margin: 0; */
  /* overflow-y: hidden; */
}
h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: var(--text1);
  font-size: 55px;
  line-height: 63px;
  /* margin: 0; */
}
h3 {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  color: var(--text1);
  font-size: 40px;
  line-height: 50px;
  /* margin: 0; */
}
h4 {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  color: var(--white);
  font-size: 18px;
  line-height: 20px;
  /* margin: 0; */
}
p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  /* color: var(--text1); */
  font-size: 24px;
  /* line-height: 37px; */
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s;
}
button {
  outline: none;
  border: none;
}
/* --------- */

.fixed-top {
  top: -40px;
  transform: translateY(40px);
  transition: transform 0.3s;
  box-shadow: 0px 0px 12px 1px #00000012;
}
.site-btn,
.contact-btn {
  padding: 10px 20px;
  /* border: 1px solid var(--skyblue); */
  background: var(--black);
  border-radius: 4px;
  font-size: 18px;
  color: var(--white);
  font-weight: 400;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.site-btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0;
  left: -100%;
  background: var(--text);
  top: 0;
  transition: 0.5s;
  z-index: -1;
}

.site-btn:hover::before {
  left: 0;
  width: 100%;
  background: var(--skyblue);
}
.section {
  padding: 60px 0;
}
/*Common CSS end */

/* Header/Navbar CSS start */
.navbar {
  background-color: var(--white);
}
.brookshield-logo {
  font-family: "Orelega One", sans-serif;
  font-size: 25px;
  font-weight: regular;
  color: var(--black);
}
.nav-item {
  font-family: "Inter";
  font-size: 14px;
}
header nav .navbar-nav .nav-link {
  font-size: 16px;
  color: var(--text);
  font-weight: 400;
  margin: 0 15px;
}
header nav .navbar-nav .nav-link.active,
header nav .navbar-nav .nav-link:hover {
  color: var(--skyblue) !important;
}
header .site-btn {
  font-size: 16px;
}

/* Header/Navbar Css ends */
/* Banner Css start */
.banner-section {
  background: var(--banner);
}

/* .banner-title {
    font-size: 50px; 
  } */

.banner-title .highlight {
  color: var(--text1);
}

.banner-subtitle {
  line-height: 35px;
}

.banner-image {
  max-width: 100%;
  height: auto;
}

/* Banner Css ends */
/* Second Section CSS start */
.section.second-sec {
  background-color: var(--lightyellow);
  padding: 10px 0;
}

.sec-contain {
  display: flex;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
  color: var(--white);
}
.sec-contain p {
  margin-left: 5px;
  color: var(--white);
}
.tracksec {
  flex: 1;
  min-width: 200px;
  padding: 20px;
}

.tracksec p {
  margin: 5px 0 0;
  font-size: 20px;
  color: var(--text1);
}
/* Second Section CSS end */
/* Our- service section css start */
.services-section {
  /* padding: 30px 0; */
  background-color: vsr(--white);
}
.services-header {
  text-align: center;
  margin-bottom: 50px;
}
.services-header p {
  color: var(--text2);
  max-width: 900px;
  text-align: center;
  word-break: break-word;
  margin: 0 auto;
}
.services-content {
  margin-bottom: 40px;
}
/* Odd-numbered services (1st, 3rd, etc.) - text on right, image on left */
.services-content:nth-child(odd) .col-md-6:first-child {
  order: 2; /* image */
}

.services-content:nth-child(odd) .col-md-6:last-child {
  order: 1; /* text */
}

/* Even-numbered services (2nd, 4th, etc.) - text on left, image on right */
.services-content:nth-child(even) .col-md-6:first-child {
  order: 1; /* text */
}

.services-content:nth-child(even) .col-md-6:last-child {
  order: 2; /* image */
}

.services-card {
  padding: 30px;
  border-radius: 16px;
  /* width:  670px;
    height: 400px; */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.web-dev-card {
  background: var(--web-dev);
}
.mobile-app-card {
  background: var(--mobile-app);
}
.web-consult-card {
  background: var(--web-consult);
}
.saas-sol-card {
  background: var(--saas-sol);
}

.graphic-design-card {
  background: var(--graph-des);
}

.digital-marketing-card {
  background: var(--digital-marketng);
}
.services-card h3 {
  margin-bottom: 15px;
  color: var(--text1);
}

.services-card p {
  color: var(--text2);
  margin-bottom: 20px;
  line-height: 34px;
}

.contact-btn {
  padding: 10px 18px;
  font-size: 14px;
}

.services-image img {
  max-width: 100%;
  height: auto;
}

/* Our - service section css end */
/* about us sec starts */
section.about-sec {
  background: var(--aboutussec);
  position: relative;
  padding: 0;
  min-height: 500px;
}
.about-sec .container {
  max-width: 100vw;
  width: 100vw;
  padding: 0;
  margin: 0;
  position: relative;
}
.about-sec .row {
  display: flex;
  min-height: 500px;
  margin: 0;
  width: 100vw;
}
.about-cntnt {
  width: 50vw;
  flex: 1 1 50%;
  background: var(--aboutussec);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px 60px 8vw;
  margin-top: 88px;
}
.about-cntnt h2 {
  margin-bottom: 30px;
}

.about-cntnt p {
  line-height: 36px;
}

.about-sec .col-md-6:last-child {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50vw; /* Half of viewport width */
}

.about-img {
  width: 50vw;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}
/* about us sec ends */
/* testimonial-sec starts*/
.testimonial-sec {
  background-color: var(--testimonialsec);
}
.testimonial-row {
  align-items: center;
  justify-content: center;
}
.testimonial-header {
  margin-bottom: 70px;
  text-align: center;
}
.testimonial-header p {
  color:var(--text2)
}
.testimonial-img-wrapper {
  position: relative;
  padding: 20px;
  background-color: #e9f4fe;
  display: inline-block;
  border-radius: 8px;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  font-size: 1.2rem;
  padding: 8px 12px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.stars {
  margin-bottom: 20px;
}
.quote {
  margin-bottom: 10px;
}
.line-blw {
  display: flex;
  width: 87%;
  justify-content: center;
  margin-top: 27px;
}
.arrow.left {
  left: -20px;
}

.arrow.right {
  right: -20px;
}


.testimonial-img-wrapper {
  position: relative;
  padding: 20px;
  background-color: var(--testmonial-imgbg);
  display: inline-block;
  border-radius: 8px;
}

.testimonial-img {
  max-width: 80%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.testimonial-img .img-fluid {
    width: 79%;
    position: relative;
    z-index: 1;
    height: 100%;
    object-fit: cover;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* background: white; */
  border: none;
  font-size: 1.2rem;
  padding: 8px 12px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

img.left-arrow {
  position: absolute;
  left: 54px;
}

img.right-arrow {
  position: absolute;
  right: 54px;
}

.quote {
  font-size: 2rem;
}

.testimonial-text {
  font-size: 30px;
  line-height: 41px;
  font-family: "Inter";
  font-weight: bold;
  color: var(--text3);
}

.testimonial-content .name {
  font-family: "Manrope", sans-serif;
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  color: var(--text3);
  margin-top: 30px;
}
.testimonial-content .text-desgnation {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--text4);
  margin-top: 3px;
}
.img-fluid {
  max-width: 100%;
  height: 100%;
}
.shape-bottom-right {
    position: absolute;
    bottom: 0px;
    right: 39px;
}
.shape-bottom-right img {
    width: 117px;
}
.shape-top-left {
  position: absolute;
  top: 0px;
  left: 37px;
}
/* testimonial-sec ends */
/* contact sec css starts */
.contact-section {
  background-color: var(--contactsec);
  /* padding: 30px 0; */
}
.contact-header {
  text-align: center !important;
  margin-bottom: 80px;
}
.contact-header p {
  /* margin-bottom: 40px; */
  max-width: 590px;
  margin: 20px auto;
  line-height: 33px;
}

.contact-map-imgwrap {
  position: relative;
  width: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map-imgwrap .map {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.india-label-img {
  position: absolute;
  left: 76%;
  top: 33%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 150px;
  max-width: 80%;
  pointer-events: none;
}

.contact-form-wrapper {
  background-color: var(--formsec);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper .form-control {
  border-radius: 6px;
  font-size: 14px;
  padding: 12px;
}

.submit-btn {
  background-color: #000;
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #333;
}

/* contact sec css ends */
/* Client section css starts*/
.our-client {
  display: flex;
  justify-content: space-between;
  gap: 0px;
}
.client-item img {
  /* max-height: 20px; */
  margin: auto;
  height: 23px;
  object-fit: contain;
}
/* Client section css end*/
/* Footer CSS start */
.section.footer-sec {
  background: var(--footer);
  /* padding-bottom: 0; */
  font: var(--white);
}
.footer-sec a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  line-height: 28px;
  display: block;
}
/* .footer-sec a:hover {
    color: var(--skyblue);
  } */
.social li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  line-height: 35px;
}
.footer-qlsec {
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.footer-links,
.social-icons {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-links {
  gap: 60px;
}
.social-icons {
  gap: 32px;
}
footer a:hover {
  color: var(--skyblue);
}
.footer-links a {
  font-size: 16px;
  color: var(--white);
  line-height: 20px;
}

.footer-links a:hover {
  color: var(--skyblue);
}

.social-icons img {
  width: 17px;
  height: 14px;
  display: block;
  object-fit: contain;
}
img.twitter {
  height: 22px;
}

.copyright-text {
  font-size: 14px;
  text-align: center;
  color: var(--white);
  margin: 0;
}
footer p {
  color: var(--white);
  font-size: 16px;
  line-height: 20px;
}
.footer-links li {
  color: var(--white);
  font-size: 16px;
  line-height: 20px;
}
.footer-links img {
  height: 14px;
  width: 17px;
}
.footer-copysec {
    margin-top: 31px;
    display: flex;
    justify-content: space-between;
    /* overflow: hidden; */
}

.language-selector {
  position: relative;
  display: inline-block;
}

.language-toggle {
  background: none;
  border: none;
  color: var(--white);
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.language-toggle img {
  width: 16px;
  height: 16px;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--footer);
  border: 1px solid var(--border);
  padding: 0;
  margin: 5px 0 0;
  list-style: none;
  display: none;
  z-index: 1000;
  width: 100%;
}

.language-dropdown li {
  padding: 8px 12px;
  color: var(--white);
  cursor: pointer;
}

.language-dropdown li:hover {
  background-color: var(--white);
  color: var(--footer);
}

.language-selector.active .language-dropdown {
  display: block;
}


/* Footer CSS end */

/* Site Page Banner CSS starts */
.site-bnr-sec {
  position: relative;
  height: 412px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.site-bnr-sec .site-bnr-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.site-bnr-sec .site-bnr-overlay {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4); /* semi-transparent overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  text-align: center;
}

/* .site-bnr-sec .site-bnr-breadcrumb {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--white);
  } */
.site-bnr-breadcrumb,
.breadcrumb-bg {
  display: inline-block;
  background: rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
.site-bnr-breadcrumb a {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}
.site-bnr-breadcrumb span {
  font-size: 12px;
  font-weight: 700;
}
.site-bnr-sec h2 {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  color: var(--white);
  font-size: 42px;
  line-height: 47.5px;
}

/* Site Page Banner CSS end */
/* About Us Page */
/* About us impact section css starts */
.impact-section {
  background: var(--white);
  padding: 80px 0;
}

.impact-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.impact-image img {
  width: 100%;
  max-width: 500px;
}

.impact-content {
  flex: 1;
}

.impact-subtitle {
  color: var(--text5);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 24px;
}

.impact-content h2 {
  font-weight: 600;
  margin-bottom: 30px;
  font-family: "Inter", sans-serif;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 24px;
}

.impact-stats h3 {
  color: var(--text5);
  font-size: 60px;
  line-height: 72px;
}
.impact-stats div {
  margin: 10px 0;
}
.impact-stats p {
  font-size: 18px;
  color: var(--text1);
  line-height: 28px !important;
}
/* About us impact section css ends */

/* Our Mission section css starts */
.mission-values-sec {
  /* padding: 60px 0; */
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--white);
}

.mission-sec-subtitle {
  color: var(--text5);
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 24px;
}
.mission-sec-title {
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin-bottom: 25px;
}

.mission-sec-description {
  color: var(--text6);
  font-size: 20px;
  line-height: 30px;
  /* margin-bottom: 70px; */
  max-width: 600px;
  text-align: center;
  margin: 0 auto 70px auto;
  word-break: break-word;
}

.mission-sec-values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.mission-sec-value-item {
  flex: 0 1 calc(33.333% - 30px);
  box-sizing: border-box;
  text-align: center;
  padding: 10px;
  min-width: 250px;
}
.mission-sec-value-item h3 {
  color: var(--text7);
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  margin: 20px 0;
}
.mission-sec-value-item p {
  font-size: 16px;
  line-height: 24px;
  color: var(--text6);
}
.icon-circle {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/*  Our Mission section css ends */
/* About page css ends */
/* FAQ page css starts */
/* Accordian section css starts */
.faq-heading {
  text-align: center;
  margin-bottom: 30px;
}

p.faq-description {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--text2);
}
.faq-section .accordion-button {
  background-color: transparent;
  font-weight: 500;
  font-size: 18px;
  padding: 1rem 0;
  box-shadow: none;
  line-height: 28px;
  margin: 20px 0;
}
.accordion-button:not(.collapsed) {
  color: var(--text1);
}

.faq-section .accordion-button::after {
  content: "";
  background-image: url("../images/icons/plus-circle.svg"); /* your image path */
  background-size: contain;
  background-repeat: no-repeat;
  width: 1rem; /* adjust size as needed */
  height: 1rem;
  font-size: 20px;
  transform: none !important;
}

.faq-section .accordion-button:not(.collapsed)::after {
  content: "";
  background-image: url("../images/icons/minus-circle.svg"); /* your image path */
  background-size: contain;
  background-repeat: no-repeat;
  width: 1rem; /* adjust size as needed */
  height: 1rem;
}

.faq-section .accordion-body {
  font-size: 16px;
  padding: 0 0 1rem 0;
  color: var(--text8);
  line-height: 24px;
  width: 90%;
}

/* Accordian section css ends */
/* FAQ page css ends */

/* Privay & policy page css starts */
/* Privacy-sec css starts */
.section.privacy-policy-sec {
  font-family: "Inter";
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
}
.privacy-policy-sec .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.privacy-title {
  font-weight: bold;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin: 10px 0;
}

.privacy-text {
  font-weight: 300;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin: 10px 0;
}
.privacy-list {
  font-weight: 300;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin: 10px 0;
  list-style-type: disc;
  padding-left: 30px;
}

.privacy-list li {
  margin-bottom: 0.5rem;
}

.privacy-text a {
  text-decoration: underline;
  color: var(--black);
}
/* Privacy-sec css end */
/* Privay & policy page css end */

/* RESPONSIVE CSS STARTS (for all sections and pages) */

@media screen and (min-width: 2201px) {
  .language-selector.active .language-dropdown {
    display: block;
    bottom: 100%;
      top: auto;
      margin-bottom: 8px;
      margin-top: 0;
  }
}
@media screen and (min-width: 1901px) and (max-width: 2200px) {
  .language-selector.active .language-dropdown {
    display: block;
    bottom: 100%;
      top: auto;
      margin-bottom: 8px;
      margin-top: 0;
  }
}
@media screen and (min-width: 1501px) and (max-width: 1900px) {
  .language-selector.active .language-dropdown {
    display: block;
    bottom: 100%;
      top: auto;
      margin-bottom: 8px;
      margin-top: 0;
  }
}
@media screen and (min-width: 1351px) and (max-width: 1500px) {
  .language-selector.active .language-dropdown {
    display: block;
    bottom: 100%;
      top: auto;
      margin-bottom: 8px;
      margin-top: 0;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1350.5px) {
  .language-selector.active .language-dropdown {
    display: block;
    bottom: 100%;
      top: auto;
      margin-bottom: 8px;
      margin-top: 0;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199.5px) {
  html,
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .container,
  .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
  }
  h1 {
    line-height: 45px;
    font-size: 35px;
}
h2 {
  font-size: 44px;
  line-height: 55px;
}
h3 {
  font-size: 32px;
  line-height: 42px;
}
p {
  font-size: 22px;
  line-height: 34px ;
}
.about-cntnt {
  margin-top: 30px;
}
.india-label-img {
  left: 77%;
  top: 38%;
  width: 110px;
}
.language-selector.active .language-dropdown {
  display: block;
  bottom: 100%;
    top: auto;
    margin-bottom: 8px;
    margin-top: 0;
}
.footer-copysec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-links {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 32px;
}
  .footer-links {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .footer-links p {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
  .footer-links li {
    display: flex;
    align-items: center;
  }
  .social-icons {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: 24px;
  }
.impact-wrapper {
  justify-content: center;
}

.impact-content {
  text-align: center !important;
}
.impact-stats {
  width: 100% !important;
}
.impact-stats {
display: grid !important;
grid-template-columns: repeat(2, 1fr);
/* gap: 24px; */
}
}
@media screen and (min-width: 768px) and (max-width: 991.5px) {
  html,
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .container,
  .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
  }
  h1 {
    line-height: 45px;
    font-size: 35px;
}
h2 {
  font-size: 44px;
  line-height: 55px;
}
h3 {
  font-size: 32px;
  line-height: 42px;
}
p {
  font-size: 18px;
  line-height: 24px;
  margin: 0;
}
.sec-contain {
  display: grid ;
  grid-template-columns: 1fr 1fr ;
  gap: 24px ;
  justify-items: center ;
  align-items: center ;
}
.tracksec {
  width: 100% ;
  text-align: center ;
  margin-bottom: 0 ;
}
.services-header p {
  max-width: 500px;
}
.about-cntnt p {
  line-height: 26px;
}
.about-cntnt h2 {
  margin-bottom: 20px;
}

/* .testimonial-sec .row.align-items-center {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.testimonial-img,
.testimonial-img.text-center,
.testimonial-img-wrapper {
  width: 100%;
  max-width: 340px;
  margin: 0 auto 24px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-img .img-fluid {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.testimonial-content {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0 12px;
}
.testimonial-text {
  font-size: 24px;
  line-height: 1.4;
}
.carousel-control-prev,
.carousel-control-next {
  top: 45%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
} */
.impact-wrapper {
  justify-content: center;
}

.impact-content {
  text-align: center !important;
}
.impact-stats {
  width: 100% !important;
}
.impact-stats {
display: grid !important;
grid-template-columns: repeat(2, 1fr);
/* gap: 24px; */
}
.india-label-img {
 
  left: 77%;
  top: 42%;
  width: 77px;
}
.footer-copysec {
  flex-direction: column ;
  align-items: center ;
  gap: 22px ;
}
.footer-links {
  flex-direction: row ;
  flex-wrap: wrap;
  justify-content: center ;
  align-items: center ;
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  gap: 20px 24px;
}
.site-bnr-sec {
  height: 360px;
}
.navbar .nav-item .nav-link {
  font-size: 12px !important;
}
.navbar .site-btn {
  font-size: 15px;
}
.language-selector.active .language-dropdown {
  display: block;
  bottom: 100%;
    top: auto;
    margin-bottom: 8px;
    margin-top: 0;
}
}



@media screen and (min-width: 575.5px) and (max-width: 767.5px) {
  html,
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .container,
  .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
  }
  h1 {
    font-size: 40px !important;
    line-height: 50px !important;
   }

  .banner-image {
    max-width: 70%;
  }
  .sec-contain {
    display: grid ;
    grid-template-columns: 1fr 1fr ;
    gap: 24px ;
    justify-items: center ;
    align-items: center ;
  }
  .tracksec {
    width: 100% ;
    text-align: center ;
    margin-bottom: 0 ;
  }
  .services-header p {
    font-size: 18px;
    line-height: 25px;
    width: 80%;
}
  .services-content {
    flex-direction: column !important;
    display: flex !important;
  }
  .services-content .col-md-6:first-child {
    order: 1 !important; 
  }
  .services-content .col-md-6:last-child {
    order: 2 !important; 
  }
  .services-image {
    margin-top: 35px;
  }
  section.about-sec {
    min-height: unset;
    padding: 0 !important;
  }
  .about-sec .container,
  .about-sec .row {
    max-width: 100vw !important;
    width: 100vw !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: unset !important;
    position: static !important;
  }
  .about-cntnt {
    width: 100vw !important;
    padding: 32px 16px 16px 16px !important;
    margin-top: 0 !important;
    position: static !important;
    order: 1 !important;
  }
  .footer-sec .row {
    display: grid ;
    grid-template-columns: 1fr 1fr ;
    gap: 0 24px ; /* row gap 0, column gap 24px */
    width: 100% ;
  }
  .footer-sec .col-md-3 {
    width: 100% ;
    max-width: 100% ;
    margin-bottom: 32px ;
    text-align: left ;
  }


  .footer-sec .social-icons {
    gap: 16px;
    margin-top: 8px;

}
  .footer-copysec {
    flex-direction: column ;
    align-items: center ;
    gap: 18px ;
  }
  .footer-links {
    flex-direction: row ;
    flex-wrap: wrap;
    justify-content: center ;
    align-items: center ;
    width: 100%;
    margin-bottom: 0;
    padding: 0;
    gap: 20px 24px;
  }
  .footer-links p {
    order: 2;
    width: 100%;
    text-align: center ;
    font-size: 14px;
}
  .footer-links li {
    order: 1;
  }
  .about-img,
  .about-sec .col-md-6:last-child {
    width: 100vw ;
    height: auto ;
    position: static ;
    margin: 0 ;
    padding: 0 ;
    order: 2 ;
  }
  .about-img img {
    width: 100vw ;
    max-width: 100vw ;
    height: 400px ; 
    object-fit: cover ;
    display: block;
    margin: 0 auto ;
    padding: 0 ;
    border-radius: 0 ; /* Remove border radius for edge-to-edge look */
  }

  .impact-wrapper {
    justify-content: center;
  }

  .impact-content {
    text-align: center !important;
}
  .impact-stats {
    width: 100% !important;
}
.impact-stats {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  /* gap: 24px; */
}
.contact-form-wrapper {
  margin-top: 35px;
}
.testimonial-img .img-fluid {
  max-height: 400px;
}
img.right-arrow {
  position: absolute;
  right: 120px;
}

img.left-arrow {
  position: absolute;
  left: 120px;
}
.site-bnr-sec {
  height: 270px;
}
}

@media screen and (max-width: 767.5px) {
  html,
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .container,
  .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
  }
  h1 {
    font-size: 27px;
    line-height: 37px;
 }
 h2 {
  font-size: 40px;
  line-height: 55px;
}
 .banner-subtitle {
  line-height: 30px;
  font-size: 21px;
}
p {
  font-size: 16px;
  line-height: 22px;
}
header .site-btn {
    font-size: 16px;
    width: 100%;
    margin-top: 15px;
}
.banner-image {
  max-width: 90%;
  margin-top: 30px;
}
.sec-contain {
  gap: 24px;
}
  .tracksec {
    width: 100% ;
    text-align: center ;
    margin-bottom: 0 ;
  }
  .services-card h3 {
    margin-bottom: 15px;
    color: var(--text1);
    font-size: 30px;
    line-height: 40px;
}
.services-header p {
  font-size: 15px;
  line-height: 22px;
}
  .services-content {
    flex-direction: column !important;
    display: flex !important;
  }
  .services-content .col-md-6:first-child {
    order: 1 !important; 
  }
  .services-content .col-md-6:last-child {
    order: 2 !important; 
  }
  .services-image {
    margin-top: 35px;
  }
  section.about-sec {
    min-height: unset;
    padding: 0 !important;
  }
  .about-cntnt h2 {
    margin-bottom: 18px;
}
  .about-cntnt p {
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 20px;
}
  .about-sec .container,
  .about-sec .row {
    max-width: 100vw !important;
    width: 100vw !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: unset !important;
    position: static !important;
  }
  .about-cntnt {
    width: 100vw !important;
    padding: 32px 16px 16px 16px !important;
    margin-top: 0 !important;
    position: static !important;
    order: 1 !important;
  }
  .footer-sec .row {
    display: grid ;
    grid-template-columns: 1fr 1fr ;
    gap: 0 24px ; /* row gap 0, column gap 24px */
    width: 100% ;
  }
  .footer-sec .col-md-3 {
    width: 100% ;
    max-width: 100% ;
    margin-bottom: 32px ;
    text-align: left ;
  }


  .footer-sec .social-icons {
    gap: 16px;
    margin-top: 8px;

}
  .footer-copysec {
    flex-direction: column ;
    align-items: center ;
    gap: 18px ;
  }
  .footer-links {
    flex-direction: row ;
    flex-wrap: wrap;
    justify-content: center ;
    align-items: center ;
    width: 100%;
    margin-bottom: 0;
    padding: 0;
    gap: 20px 24px;
  }
  .footer-links p {
    order: 2;
    width: 100%;
    text-align: center ;
    font-size: 14px;
}
  .footer-links li {
    order: 1;
  }
  .about-img,
  .about-sec .col-md-6:last-child {
    width: 100vw ;
    height: auto ;
    position: static ;
    margin: 0 ;
    padding: 0 ;
    order: 2 ;
  }
  .about-img img {
    width: 100vw ;
    max-width: 100vw ;
    height: 400px ; 
    object-fit: cover ;
    display: block;
    margin: 0 auto ;
    padding: 0 ;
    border-radius: 0 ; /* Remove border radius for edge-to-edge look */
  }

  .testimonial-text {
    font-size: 18px;
    line-height: 25px;
}
img.star-icon {
  height: 18px;
}

.quote img {
  height: 18px;
  margin-bottom: 0;
}
.testimonial-content .name {
  font-size: 18px;
  line-height: 25px;
  margin-top: 16px;
}
.testimonial-content .text-desgnation {
  font-size: 15px;
  line-height: 24px;
  margin-top: 0px;
}
  /* .impact-wrapper {
    justify-content: center;
  }

  .impact-content {
   
}
.impact-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
} */
.impact-image {
  width: 100vw ;
  display: flex ;
  margin-bottom: 24px ;
}
.impact-image img {
  max-width: 320px ;
  height: auto ;
  margin: 0 auto ;
}
.impact-content {
  width: 100% ;
  text-align: center ;
  align-items: center ;
  justify-content: center ;
  display: flex ;
  flex-direction: column ;
  padding: 0 12px ;
}
.impact-stats {
  display: flex ;
  flex-direction: column ;
  align-items: center ;
  justify-content: center ;
  gap: 32px ;
  width: 100% ;
  margin: 0 auto ;
  padding: 0 ;
}
.impact-stats > div {
  width: 100% ;
  text-align: center ;
}
.impact-stats h3 {
  color: var(--text5);
  font-size: 50px;
  line-height: 65px;
}
.impact-content h2 {
  line-height: 50px
}
.contact-form-wrapper {
  margin-top: 10px;
}
.contact-header p {
  line-height: 25px;
}
.testimonial-img .img-fluid {
  max-height: 400px;
}
img.right-arrow {
  position: absolute;
  right: 0;
}
.testimonial-content {
    min-height: 277px;
}
img.left-arrow {
  position: absolute;
  left: 0;
}
.site-bnr-sec {
  height: 200px;
}
.india-label-img {
  left: 77%;
  top: 41%;
  width: 82px;
}
.client-item img {
  height: 18px;
}
.site-bnr-sec h2 {
  font-size: 30px;
  line-height: 40px;
}
.site-bnr-breadcrumb, .breadcrumb-bg {
  padding: 6px 8px;
  font-size: 10px;
  margin-bottom: 5px;
}
.site-bnr-breadcrumb a {
  font-size: 10px;
}
.site-bnr-breadcrumb span {
  font-size: 10px;
}
.faq-heading {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 10px;
}
p.faq-description {
  font-size: 16px;
  line-height: 22px;
}
.mission-sec-title {
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 40px;
}
.mission-sec-description {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 35px;
}
.mission-sec-values-grid {
  gap: 22px;
}
.contact-header {
  margin-bottom: 0px;
}
footer p {
  font-size: 16px;
  line-height: 26px;
}
}


/* RESPONSIVE CSS ENDS */
