:root {
  --primary-color: #104862;
  --text-color: #d9d9d9;
  --description-color: #bfbfbf;
  --accent-color: #ff0000;
  --white-color: #FFFFFF;
  --orange-color: #FFC000;
}

@font-face {
  font-family: 'optimanormal';
  src: url('../fonts/optima-webfont.woff2') format('woff2'),
       url('../fonts/optima-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Aptos";
  src: url("https://db.onlinewebfonts.com/t/7dd5f4bf5d38875ca1822a830b6e6fe4.eot");
  src: url("https://db.onlinewebfonts.com/t/7dd5f4bf5d38875ca1822a830b6e6fe4.eot?#iefix")format("embedded-opentype"),
  url("https://db.onlinewebfonts.com/t/7dd5f4bf5d38875ca1822a830b6e6fe4.woff2")format("woff2"),
  url("https://db.onlinewebfonts.com/t/7dd5f4bf5d38875ca1822a830b6e6fe4.woff")format("woff"),
  url("https://db.onlinewebfonts.com/t/7dd5f4bf5d38875ca1822a830b6e6fe4.ttf")format("truetype"),
  url("https://db.onlinewebfonts.com/t/7dd5f4bf5d38875ca1822a830b6e6fe4.svg#Aptos")format("svg");
}

body {
  font-family: 'Aptos', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--primary-color);
  color: var(--text-color);
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
}

.container-xxl {
  max-width: 1600px !important;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.company-title,
.nav-link {
  font-family: 'optimanormal', serif;
}

.navbar {
  background-color: var(--primary-color);
  padding: 0;
}
.navbar .container-xxl{
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-brand img {
  max-height: 60px;
  width: auto;
}

.nav-link {
  padding: 0.5rem 1rem !important;
  color: #e8e8e8 !important;
  font-size: 1.3rem;
  letter-spacing: 1px;
  font-weight: 400;
}

.nav-item.active .nav-link, .nav-link:hover {
  opacity: 0.6;
}

.hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-logo {
  text-align: center;
  padding: 8rem 0 2rem 0;
}

.main-logo img {
  max-width: 50%;
}

.t-shape {
  position: relative;
  overflow: hidden;
}

.t-shape-container {
  position: relative;
  width: 60px; /* Width of horizontal + vertical line overlap */
  height: 75px; /* Height + vertical line overlap */
  margin: 0 auto;
}

.vertical-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 75px; /* Taller vertical line */
  background-color: rgba(209, 209, 209, 0.3);
  transform: translateX(-50%);
  z-index: 1;
}

.horizontal-line {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px; /* Shorter horizontal line */
  height: 2px;
  background-color: rgba(209, 209, 209, 0.3);
  transform: translateX(-50%);
  z-index: 1;
}

.fill-animation {
  position: absolute;
  background-color: var(--text-color);
  z-index: 2;
}

.vertical-fill {
  width: 2px;
  height: 0;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  animation: fillVertical 2s linear infinite;
}

.horizontal-fill-left, .horizontal-fill-right {
  height: 2px;
  width: 0;
  bottom: 0;
  animation: fillHorizontal 2s linear infinite;
}

.horizontal-fill-left {
  right: 50%;
}

.horizontal-fill-right {
  left: 50%;
}

@keyframes fillVertical {
  0% {
    height: 0;
  }
  40% {
    height: 75px;
  }
  60% {
    height: 75px;
  }
  100% {
    height: 75px;
  }
}

@keyframes fillHorizontal {
  0%, 40% {
    width: 0;
  }
  60% {
    width: 30px;
  }
  80% {
    width: 30px;
  }
  100% {
    width: 30px;
  }
}

.sliding-boxes {
  padding: 2rem 0;
  overflow: hidden;
}

.swiper-container {
  width: 100%;
  padding: 10px 0;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.grid-item {
  width: 100%;
  height: 180px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-5px);
}

.company-info {
  padding: 4rem 0;
}

.growth-section {
  padding: 4rem 0;
}

.company-description {
  max-width: 1300px;
}

.company-description p {
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-family: 'optimanormal', serif;
  line-height: 1.1;
  color: var(--text-color);
  font-weight: 400;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .company-title {
    font-size: 3rem;
  }
  
  .swiper-container {
    padding: 0.5rem;
  }
  
  .grid-item {
    height: 150px;
  }

  .company-description p {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 6rem;
    min-height: 30vh;
  }
  
  .company-title {
    font-size: 2.5rem;
  }
  
  .grid-item {
    height: 120px;
  }

  .company-description p {
    font-size: 1.8rem;
  }
}

.section-title {
  font-family: 'optimanormal', serif;
  font-size: 5rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  font-weight: 500;
}
.section-sub-title {
  font-family: 'optimanormal', serif;
  font-size: 2.5rem;
  color: var(--description-color);
  margin-bottom: 2rem;
}

.section-text {
  /* font-size: 1rem; */
  font-size: 18px;
  color: var(--description-color);
  margin-bottom: 0.8rem;
  line-height: 1.6;
  margin-right: 40px;
}

.nav-divider {
  width: 1px;
  height: 50px;
  background-color: var(--text-color);
  opacity: 0.3;
  margin: auto 1rem;
}

.navbar-nav {
  align-items: center;
}

.custom-btn {
  font-family: 'optimanormal', serif;
  background: var(--white-color);
  border: 1px solid var(--white-color);
  color: var(--primary-color);
  padding: 0.4rem 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  border-radius: 0;
}

.btn-arrow {
  font-size: 1.5rem;
  line-height: 1;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.btn-text {
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.custom-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
  border: 1px solid var(--white-color);
}

.custom-btn:hover .btn-text {
  transform: translateX(5px);
}

.philosophy-section {
  padding-right: 4rem;
}

.slider-title {
  font-family: 'optimanormal', serif;
  color: var(--orange-color);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.testimonial-content {
  color: var(--text-color);
  text-align: center;
}

.testimonial-content img {
  margin-bottom: 1.5rem;
}

.testimonial-text {
  position: relative;
  margin-bottom: 2rem;
}

.testimonial-text p {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}

.testimonial-author {
  text-align: right;
  font-size: 0.75rem;
}

.testimonial-author strong {
  display: block;
  color: var(--white-color);
}

.testimonial-author em {
  display: block;
  color: var(--description-color);
  font-style: normal;
}

.testimonial-author span {
  display: block;
  color: var(--description-color);
  font-size: 0.85rem;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--text-color) !important;
}

.swiper-pagination-bullet {
  background: var(--text-color) !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.values-section {
  padding: 6rem 0;
}
.values-list{
  margin-top: 13.8rem;
}

.values-list-more{
  margin-top: 19.8rem;
}

.value-item {
  margin-bottom: 2.5rem;
}

.value-item h3 {
  font-family: 'optimanormal', serif;
  color: var(--text-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.value-item h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 60%;
  height: 1px;
  background-color: #c00000;
}

.sub-title{
  color: var(--orange-color);
  font-size: 1.5rem;
  font-family: 'optimanormal', serif;
  position: relative;
  margin-bottom: 2rem;
}
.sub-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 58%;
  height: 1px;
  background-color: #c00000;
}

.value-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-item li {
  color: var(--description-color);
  font-size: 1rem;
  line-height: 1.5;
}

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

  .philosophy-section {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .values-list {
    padding-left: 0;
    margin-top: 2rem;
  }
}

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

  .value-item h3 {
    font-size: 1.5rem;
  }
}

.teamsk-way {
  padding: 6rem 0;
}

.progress{
	position:relative;
}
.progess-box {
  display: flex;
  justify-content: space-between;
  padding: 0 3rem 0 0;
}

.progress-bar-vertical {
  width: 50px;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  margin-right: 30px;
  float: left;
  background: none;
  padding-top: 50px;
}

.progess-box .progress-bar-vertical:last-child {
  margin-right: 0px;
}

.progress-bar-vertical .progress-bar {
  width: 100%;
  height: 0;
  -webkit-transition: height 2s ease;
  -o-transition: height 2s ease;
  transition: height 2s ease;
  margin-bottom: 50px;
}

.progress-bar h5 {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin: 0;
  white-space: nowrap;
	position: absolute;
	bottom: 70px;
	left: 14px;
	width: 100%;
	color:#fff;
	font-weight:bold;
	font-size:18px;
}
.progress-bar h5.black-text{
	color: #000;
}

.progress-bar span {
  writing-mode: vertical-rl;
  transform: rotate(-90deg);
  position: absolute;
	bottom: 5px;
	font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  left: 10px;
}

@media(max-width: 1399px) {
  .progess-box {
    margin-left: 50px !important;
  }
  .progress-bar-vertical {
    margin-right: 20px;
  }
}

@media(max-width: 1199px) {
  .progess-box {
    margin-left: 20px !important;
  }
  .progress-bar-vertical {
    width: 40px;
    margin-top: 25px;
  }
  .progress-bar h5 {
    font-size: 16px;
  }
  .values-list-more{
    margin-top: 16.2rem;
  }
  .values-list {
    margin-top: 11.5rem;
  }
}


.footer {
  padding: 0 0 4rem 0;
}
.footer .container-xxl{
  padding-top: 5rem;
  padding-bottom: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
  font-family: 'optimanormal', serif;
  font-size: 3rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.footer-description {
  font-size: 1.2rem;
  color: var(--description-color);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.contact-item {
  margin-bottom: 0.5rem;
}

.contact-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.directions-link {
  padding-left: 2rem;
  margin-top: 0 !important;
}

.address-block {
  display: block;
}

.link-underline{
  border-bottom: 1px solid #20698b;
}
.address-block .link-underline {
  display: inline-block;
  margin-top: 1rem;
}

.social-links p {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-links i {
  font-size: 1.2rem;
  margin-top: 0 !important;
}

.link-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  color: var(--text-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.link-underline::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--text-color);
  transition: width 0.3s ease;
}

.link-underline:hover {
  opacity: 1;
  color: var(--text-color);
  text-decoration: none;
}

.link-underline:hover::after {
  width: 100%;
}

.contact-item p i {
  font-size: 1.2rem;
  color: var(--text-color);
  opacity: 0.6;
  margin-top: 8px;
}

.contact-item a {
  color: var(--text-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-item a:hover {
  opacity: 1;
  text-decoration: none;
  color: var(--text-color);
}

@media (max-width: 992px) {
  .footer-title {
    font-size: 2.5rem;
  }

  .contact-info {
    padding-left: 0;
    margin-top: 3rem;
  }
  .values-list-more{
    margin-top: 14.6rem;
  }
  .values-list {
    margin-top: 10.2rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0;
  }

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

  .contact-item h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  .contact-info {
    text-align: center;
  }

  .contact-item {
    text-align: center;
  }

  .contact-item p,
  .social-links p {
    justify-content: center;
  }

  .address-block {
    text-align: left;
  }
  .values-list{
    margin: 20px 0 0 0;
  }
}

iframe{
  margin-top: 10px;
}

.sub-heading {
  font-family: 'optimanormal', serif;
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.sub-heading span {
  color: #FFD700;
}

.sub-text {
  color: var(--description-color);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.bg-orange {
  background-color: #fd7e14 !important;
}

.black-text {
  color: #000 !important;
}

@media(max-width: 1199px) {
  .testimonial .testimonial-left,
  .testimonial .testimonial-right {
    padding: 0px;
  }
}

.teamsk-way .slider-title{
	margin:0px;
}

/* Responsive Styles */
@media (max-width: 1600px) {
  .container-xxl {
    max-width: 1400px !important;
    padding: 0 3rem;
  }
  .growth-section, .company-info {
    padding: 3rem 0;
  }
  .teamsk-way{
    padding: 5rem 0;
  }
}

@media (max-width: 1399px) {
  .container-xxl {
    max-width: 1300px !important;
  }
  
  .company-description p {
    font-size: 2.2rem;
  }
  .growth-section, .company-info {
    padding: 2rem 0;
  }
  .teamsk-way{
    padding: 4rem 0;
  }
}

@media (max-width: 1199px) {
  .container-xxl {
    max-width: 1140px !important;
    padding: 0 2rem;
  }
  
  .section-title {
    font-size: 4rem;
  }
  .section-sub-title {
    font-size: 2.2rem;
  }
  
  .nav-link {
    font-size: 1.1rem;
  }
  .teamsk-way{
    padding: 3rem 0;
  }
}

@media (max-width: 992px) {
  .container-xxl {
    max-width: 900px !important;
    padding: 0 1.5rem;
  }
  
  .main-logo {
    padding: 6rem 0 2rem 0;
  }
  
  .section-title {
    font-size: 3.5rem;
  }
  .section-sub-title {
    font-size: 2rem;
  }
  
  .company-description p {
    font-size: 2rem;
  }
  
  .testimonial-content {
    padding: 0 2rem;
  }
  
  .values-section {
    padding: 4rem 0;
  }
  
  .footer-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .container-xxl {
    padding: 0 1.5rem;
  }
  
  .main-logo {
    padding: 4rem 0 1.5rem 0;
  }

  .main-logo img{
    max-width: 70%;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  .section-sub-title {
    font-size: 1.6rem;
  }
  
  .company-description p {
    font-size: 1.6rem;
  }
  
  .testimonial-content {
    padding: 0 1rem;
  }
  
  .testimonial-text p {
    font-size: 0.9rem;
  }
  
  .values-section {
    padding: 3rem 0;
  }
  
  .footer-title {
    font-size: 2rem;
  }
  
  .footer-description {
    font-size: 1rem;
  }
  
  .contact-item p {
    font-size: 1rem;
  }
  .growth-section, .company-info, .teamsk-way {
    padding: 1rem 0;
  }
  .section-text{
    max-width: 100%;
    width: 100%;
  }
  .contact-info p{
    justify-content: normal;
  }
}

@media (max-width: 576px) {
  .container-xxl {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .main-logo {
    padding: 1rem 0 1rem 0;
  }
  .main-logo img {
    max-width: 80%;
  }
  
  .section-title {
    font-size: 2rem;
  }
  .section-sub-title {
    font-size: 1.3rem;
  }
  
  .company-description p {
    font-size: 1.4rem;
  }
  
  .testimonial-content {
    padding: 0;
  }
  
  .testimonial-text p {
    font-size: 0.8rem;
  }
  
  .values-section {
    padding: 2rem 0;
  }
  
  .footer-title {
    font-size: 1.8rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .contact-item p {
    font-size: 0.9rem;
  }
  
  .nav-link {
    font-size: 1rem;
    padding: 0.5rem !important;
  }
  
  .navbar-brand img {
    max-height: 40px;
  }
}

/* Swiper Responsive Styles */
@media (max-width: 1199px) {
  
  .grid-item, .grid-item img {
    height: 160px !important;
  }
}

@media (max-width: 992px) {
  
  .grid-item, .grid-item img {
    height: 140px !important;
  }
}

@media (max-width: 768px) {
  
  .grid-item, .grid-item img {
    height: 120px !important;
  }
  .us-page p{
    text-align: left;
  }
  .us-page .col-md-6{
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 576px) {
  
  .grid-item, .grid-item img {
    height: 100px !important;
  }
}

/*  Inner Pages  */
.inner-page-container{
  padding: 8rem 0;
}
.inner-sections{
  padding: 3rem 0;
}

.inner-page-container .container-xxl{
  position: relative;
}
.sub-nav{
  position: static;
  top: 7rem;
  right: 7%;
  z-index: 9;
}
.sub-nav .nav-link{
  font-size: 1rem;
}
.sub-nav .nav-link:hover
/* .sub-nav .nav-link.active { */
{
  color: var(--orange-color) !important;
  opacity: 1 !important;
}

.client-logo-block{
  padding: 2rem 0;
}
.client-box {
  text-align: center;
  background: #fff;
  margin-bottom: 40px;
  padding: 20px 15px 20px;
  -moz-transition: .4s;
  -webkit-transition: .4s;
  transition: .4s;
  -webkit-box-shadow: 0 -2px 20px 0 rgb(0 0 0 / 6%);
  box-shadow: 0 -2px 20px 0 rgb(0 0 0 / 6%);
}
.client-box img{
  max-width: 100%;
}

.hr-block{
  background-color: #FFC000;
}

.black-text h2,
.black-text h3,
.black-text p,
.black-text li{
  color: #000;
}
.black-text .nav-link{
  color: #000 !important;
}
.black-text .nav-link:hover{
  color: #c00000 !important;
}
.black-text .custom-btn,
.white-text .custom-btn{
  background-color: #000;
  border-color: #000;
}
.black-text .custom-btn span,
.white-text .custom-btn span{
  color: #fff;
}

.business-block{
  background-color: #0070C0;
}
.white-text h2,
.white-text h3,
.white-text p,
.white-text li{
  color: #fff;
}

.ngo-block{
  background-color: #008F00;
}

.model-box{
	position: relative;
    padding: 25px 30px 40px;
    border: 1px solid #e1e1e1;
    margin-bottom: 50px;
    background: #f4f4f4;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    z-index: 1;
}
.model-box img{
	max-width: 100%;
}
.model-box:hover{
	box-shadow: 0 22px 70px rgb(0 0 0 / 13%);
}
.model-box a{
	text-decoration:none;
	text-align:center;
}
.model-box a h4{
	margin:20px 0 0 0;
	font-size:18px;
	font-weight:bold;
	color:#c90808;
}
.model-box:hover a h4{
	color: #333;
}

.contact-box{
	background:#F4F7FC;
	padding:20px;
	border-radius:4px;
	text-align:center;
	height: 100%;
}
.contact-box h3{
	color:#c00000;
	font-size:23px;
	font-weight:600;
	margin:0 0 20px 0;
}
.contact-box:hover{
	box-shadow: 15px 15px 38px 0px rgb(0 0 0 / 10%);
}
.contact-box p{
	color: #212529;
}
.contact-box p a{
	color: #212529;
	text-decoration: none;
}
.contact-box p a:hover{
	color: #c00000;
}

.pr-5{
  padding-right: 50px;
}
.pl-5{
  padding-left: 50px;
}

.model-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}
.model-buttons .btn {
  background-color: var(--primary-color);
  border: none;
  padding: 8px 15px;
  transition: all 0.3s ease;
}
.model-buttons .btn:hover {
  background-color: #2087b7;
  transform: translateY(-2px);
}
.model-buttons .btn i {
  margin-right: 5px;
}
.modal-content {
  background-color: #f8f9fa;
}
.modal-header {
  border-bottom: 1px solid #dee2e6;
}
.modal-body {
  padding: 20px;
}

.inquiry-form-container {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.form-section-title {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}
.form-label {
  font-weight: 500;
  color: #555;
}
.form-control, .form-select {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
  color: #000;
}
.select2-results__options li{
  color: #000;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
.btn-primary {
  background-color: var(--primary-color);
  border: none;
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #2087b7;
  transform: translateY(-2px);
}

/* Vertical Dots Navigation Styles */
.vertical-dots-nav {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.dot.active {
  background-color: #fff;
  transform: scale(1.2);
}

/* Tooltip Styles */
.dot .tooltip {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.dot .tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
}

.dot:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* Make sections clickable */
.inner-page-container {
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Content Slider Section Styles */
.content-slider-section {
  padding: 2rem 0;
  position: relative;
}

.contentSwiper .swiper-slide {
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.contentSwiper .swiper-slide-active {
  opacity: 1;
}

.content-slider-section .row {
  margin-bottom: 0;
  align-items: center;
}

.content-slider-section h4 {
  font-family: 'Aptos', sans-serif;
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 1.2rem;
  position: relative;
}

.content-slider-section p {
  color: #000;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.content-slider-section .about-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.content-slider-section .about-img:hover {
  transform: translateY(-5px);
}

.content-slider-section .about-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.content-slider-section .about-img:hover img {
  transform: scale(1.05);
}

/* Swiper Navigation Styles */

.swiper-button-next,
.swiper-button-prev {
    background: rgba(0, 0, 0, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev {
  background: rgba(255, 255, 255, 0.8);
  color: #000 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

.content-slider-section:hover .swiper-button-next,
.content-slider-section:hover .swiper-button-prev,
.testimonial-slider:hover .swiper-button-next,
.testimonial-slider:hover .swiper-button-prev {
    opacity: 1;
}
/* Swiper Pagination Styles */
.content-slider-section .swiper-pagination {
  bottom: 0;
}

.content-slider-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #000 !important;
  opacity: 0.5;
}

.content-slider-section .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Responsive styles for content slider */
@media (max-width: 992px) {
  .content-slider-section h4 {
    font-size: 1.3rem;
  }
  
  .content-slider-section .swiper-button-next,
  .content-slider-section .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 768px) {
  .content-slider-section {
    padding: 1.5rem 0;
  }
  
  .content-slider-section h4 {
    font-size: 1.2rem;
  }
  
  .content-slider-section p {
    font-size: 0.9rem;
  }
  
  .content-slider-section .swiper-button-next,
  .content-slider-section .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  
  .content-slider-section .swiper-button-next:after,
  .content-slider-section .swiper-button-prev:after {
    font-size: 1rem;
  }
}

.parsley-errors-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.parsley-errors-list li {
  font-size: 14px;
  color: #fc0000;
  padding: 3px 0 0 10px;
}

.form-control.parsley-error {
  border-color: #fc0000 !important;
}


/* Select2 Custom Styles */
.select2-container--default .select2-selection--multiple {
  border: 1px solid #ddd;
  border-radius: 5px;
  min-height: 45px;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #007bff;
  border: none;
  color: white;
  padding: 5px 10px;
  margin: 4px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: white;
  margin-right: 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #fff;
  background-color: rgba(255,255,255,0.2);
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #007bff;
}
.select2-dropdown {
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
  color: #000 !important;
}
.thankyou{
	max-width:600px;
	margin:0 auto;
}
.thankyou i{
	font-size: 3em;
	color: #fff;
}
.thankyou h4{
	margin:20px 0;
	font-weight:600;
}
.thankyou a{
	color: #fff;
}
.thankyou a:hover{
	color: #ff4e4e;
}
.modal .modal-title{
  color: #000;
}

@media(min-width: 768px){
  .company-info .row > .col-md-6:nth-child(2),
  .values-section .row > .col-md-6:nth-child(2),
  .teamsk-way .row > .col-md-6:nth-child(2),
  .footer .row > .col-md-6:nth-child(2){
      padding-left: 50px;
  }

  .row .col-md-6:nth-child(1) .content-slider-section{
    width: 80%;
  }
}

.text-right{
  text-align: right;
  margin-right: 12px;
}
.strategy-slider .about-img{
  width: 70% !important;
}