/* KashIT - Technology & IT Solutions Template */
/* Basado en index-3.html */

/* Flaticon Font */
@import url("/assets/templates/kashit/flaticon_kashIT-flat-d15e8313.css");

/* Owl Carousel Base Styles */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.no-js .owl-carousel {
  display: block;
}

:root {
  --main-color: #0092ff;
  --main-color-rgb: 0, 146, 255;
  --color-two: #1f2937;
  --color-two-rgb: 31, 41, 55;
  --color-three: #4b5563;
  --color-three-rgb: 75, 85, 99;
  --color-four: #f3f4f6;
  --color-four-rgb: 243, 244, 246;
  --color-seven: #9ca3af;
  --color-eight: #111827;
  --color-nine: #f59e0b;
  --white-color: #ffffff;
  --white-color-rgb: 255, 255, 255;
  --black-color: #000000;
  --black-color-rgb: 0, 0, 0;
  
  --font-10: 10px;
  --font-12: 12px;
  --font-14: 14px;
  --font-16: 16px;
  --font-18: 18px;
  --font-20: 20px;
  --font-24: 24px;
  --font-32: 32px;
  --font-48: 48px;
  --font-80: 80px;
  
  --margin-zero: 0px;
  --margin-top-5: 5px;
  --margin-top-15: 15px;
  --margin-top-20: 20px;
  --margin-top-25: 25px;
  --margin-top-30: 30px;
  --margin-top-35: 35px;
  --margin-top-40: 40px;
  --margin-top-50: 50px;
  --margin-bottom-15: 15px;
  --margin-bottom-20: 20px;
  --margin-bottom-25: 25px;
  --margin-bottom-30: 30px;
  --margin-right-15: 15px;
  
  --padding-zero: 0px;
  --padding-top-10: 10px;
  --padding-top-100: 100px;
  --padding-top-110: 110px;
  --padding-bottom-100: 100px;
  --padding-right-20: 20px;
  --padding-right-30: 30px;
  --padding-right-85: 85px;
  --padding-left-5: 5px;
  --padding-left-40: 40px;
  --padding-left-55: 55px;
  --padding-left-85: 85px;
}

/* Base Styles */
.kashit-template {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--color-three);
  margin: 0;
  padding: 0;
}

.kashit-template * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.kashit-template a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.kashit-template img {
  max-width: 100%;
  height: auto;
}

/* Auto Container */
.auto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.row.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

.col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8,
.col-md-6, .col-md-12, .col-sm-6, .col-sm-12 {
  padding: 0 15px;
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-6 { width: 50%; }
}

@media (min-width: 992px) {
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333%; }
  .col-lg-5 { width: 41.667%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333%; }
  .col-lg-8 { width: 66.667%; }
}

/* Header Style Three */
.main-header {
  position: relative;
  background: var(--white-color);
}

.header-style-three {
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Header Top */
.header-top {
  background: var(--color-two);
  padding: 12px 0;
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.header-top_nav {
  display: flex;
  gap: 25px;
}

.header-top_nav a {
  color: rgba(255,255,255,0.7);
  font-size: var(--font-14);
}

.header-top_nav a:hover {
  color: var(--white-color);
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-top_email {
  color: rgba(255,255,255,0.7);
  font-size: var(--font-14);
}

.header-top_email span {
  color: var(--main-color);
  font-weight: 600;
}

.header-top_email:hover {
  color: var(--white-color);
}

.header-top_social {
  display: flex;
  gap: 15px;
}

.header-top_social a {
  color: rgba(255,255,255,0.7);
  font-size: var(--font-14);
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-top_social a:hover {
  background: var(--main-color);
  color: var(--white-color);
}

/* Header Lower */
.header-lower {
  padding: 20px 0;
  background: var(--white-color);
}

.inner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-box .logo-text {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-two);
  background: linear-gradient(135deg, var(--main-color) 0%, var(--color-two) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-outer {
  display: flex;
  align-items: center;
}

.main-menu .navigation {
  display: flex;
  list-style: none;
  gap: 35px;
}

.main-menu .navigation li a {
  color: var(--color-two);
  font-weight: 500;
  font-size: var(--font-16);
  padding: 10px 0;
  position: relative;
}

.main-menu .navigation li a:hover,
.main-menu .navigation li.current a {
  color: var(--main-color);
}

.outer-box {
  display: flex;
  align-items: center;
}

.header-phone_inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone_icon {
  width: 50px;
  height: 50px;
  background: var(--main-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-18);
}

.phone-info {
  display: flex;
  flex-direction: column;
}

.phone-label {
  font-size: var(--font-12);
  color: var(--color-three);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.phone-info a {
  color: var(--color-two);
  font-weight: 700;
  font-size: var(--font-16);
}

/* Slider Three / Hero */
.slider-three {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f3f4f6 100%);
  overflow: hidden;
}

.slider-three .row {
  align-items: center;
}

.slider-three_circle-layer-one,
.slider-three_circle-layer-two,
.slider-three_circle-layer-three {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0,146,255,0.1);
}

.slider-three_circle-layer-one {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
}

.slider-three_circle-layer-two {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 10%;
  background: rgba(0,146,255,0.05);
}

.slider-three_circle-layer-three {
  width: 150px;
  height: 150px;
  bottom: 15%;
  left: 30%;
  background: rgba(0,146,255,0.03);
}

.slider-three_title-column {
  position: relative;
}

.slider-three_title-inner {
  position: relative;
  padding-top: 60px;
}

.slider-three_heading {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--color-two);
  line-height: 1.15;
  margin-bottom: 25px;
}

.slider-three_text {
  font-weight: 400;
  line-height: 1.8;
  font-size: var(--font-18);
  color: var(--color-three);
  margin-bottom: 35px;
  max-width: 90%;
}

.slider-three_button-box {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.slider-three_image-column {
  position: relative;
  min-height: 450px;
}

.slider-three_image-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-rocket-icon {
  font-size: 200px;
  color: var(--main-color);
  opacity: 0.8;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.slider-three_play {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.slider-three_play span {
  position: relative;
  width: 100px;
  height: 100px;
  z-index: 10;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: var(--font-24);
  color: var(--white-color);
  background: var(--main-color);
  box-shadow: 0 10px 40px rgba(0,146,255,0.4);
  transition: all 0.3s ease;
}

.slider-three_play span:hover {
  background: var(--color-two);
  transform: scale(1.1);
}

.slider-three_image-circle_one,
.slider-three_image-circle-two,
.slider-three_image-circle-three {
  position: absolute;
  border-radius: 50%;
}

.slider-three_image-circle_one {
  width: 400px;
  height: 400px;
  border: 2px dashed rgba(0,146,255,0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 20s linear infinite;
}

.slider-three_image-circle-two {
  width: 320px;
  height: 320px;
  background: rgba(0,146,255,0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slider-three_image-circle-three {
  width: 250px;
  height: 250px;
  border: 3px solid var(--main-color);
  opacity: 0.1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Buttons */
.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 35px;
  font-size: var(--font-16);
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-style-one {
  background: var(--main-color);
  color: var(--white-color);
}

.btn-style-one:hover {
  background: var(--color-two);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-style-two {
  background: transparent;
  color: var(--color-two);
  border: 2px solid var(--color-two);
}

.btn-style-two:hover {
  background: var(--color-two);
  color: var(--white-color);
  transform: translateY(-3px);
}

.btn-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* About One Style Two */
.about-one {
  position: relative;
  padding: 100px 0 70px;
}

.about-one_pattern {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0,146,255,0.02) 0%, transparent 50%);
  pointer-events: none;
}

.about-one_image-column {
  position: relative;
}

.about-one_image-inner {
  position: relative;
  padding: 40px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-one_pattern-two {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 200px;
  background: rgba(0,146,255,0.1);
  border-radius: 30px;
}

.about-one_color-layer-two {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 150px;
  height: 150px;
  background: var(--main-color);
  border-radius: 50%;
  opacity: 0.1;
}

.about-one_counter {
  position: absolute;
  left: 0;
  top: 40px;
  background: var(--main-color);
  color: var(--white-color);
  padding: 30px 35px;
  border-radius: 20px;
  text-align: center;
  z-index: 5;
  box-shadow: 0 15px 40px rgba(0,146,255,0.3);
}

.about-one_counter-words {
  font-size: 42px;
  font-weight: 800;
}

.about-one_counter-text {
  font-size: var(--font-14);
  margin-top: 5px;
  opacity: 0.9;
}

.about-one_image-two {
  position: relative;
  z-index: 2;
}

.about-icon-main {
  font-size: 180px;
  color: var(--main-color);
  opacity: 0.8;
}

.about-one_image-three {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 120px;
  height: 120px;
  background: var(--white-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  z-index: 5;
}

.about-icon-secondary {
  font-size: 60px;
  color: var(--main-color);
}

.about-one_content-column {
  position: relative;
}

.about-one_content-inner {
  padding-left: 30px;
}

.about-one_title {
  color: var(--main-color);
  font-weight: 600;
  font-size: var(--font-16);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.about-one_heading {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--color-two);
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-one_text {
  color: var(--color-three);
  margin-bottom: 30px;
  line-height: 1.8;
}

.about-one_block {
  margin-bottom: 30px;
}

.about-one_block-icon {
  width: 65px;
  height: 65px;
  background: var(--color-four);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--main-color);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.about-one_block:hover .about-one_block-icon {
  background: var(--main-color);
  color: var(--white-color);
}

.about-one_block-heading {
  font-size: var(--font-18);
  font-weight: 600;
  color: var(--color-two);
  margin-bottom: 10px;
}

.about-one_block-text {
  color: var(--color-three);
  font-size: var(--font-14);
  line-height: 1.7;
}

.about-one_button-box {
  margin-top: 30px;
}

/* Sponsors */
.sponsors-one {
  padding: 60px 0;
  background: var(--white-color);
  border-top: 1px solid var(--color-four);
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
}

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

.client-logo-placeholder {
  background: var(--color-four);
  padding: 25px 20px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--color-three);
  font-size: var(--font-14);
  transition: all 0.3s ease;
}

.client-logo-placeholder:hover {
  background: var(--main-color);
  color: var(--white-color);
}

/* Services Two - Grid en lugar de carrusel */
.services-two {
  position: relative;
  padding: 110px 0px 80px;
  background-color: var(--color-four);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Services - Original KashIT Template Styles */
.service-block_two {
  position: relative;
  margin-bottom: 30px;
}

.service-block_two-inner {
  position: relative;
}

.service-block_two-image {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 370/400;
}

.service-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: var(--white-color);
}

.service-block_two-content {
  position: relative;
  padding: 22px 35px;
  margin-top: -40px;
  z-index: 10;
  margin-left: 30px;
  margin-right: 40px;
}

.service-block_two-content::before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 50px;
  background-color: var(--color-two);
  transform: matrix(1, 0, 0, -1, 0, 0);
  transition: all 300ms ease;
}

.service-block_two-inner:hover .service-block_two-content::before {
  background-color: var(--main-color);
}

.service-block_two-title {
  position: relative;
  font-weight: 500;
  z-index: 1;
}

.service-block_two-title a {
  position: relative;
  color: var(--white-color);
}

.service-block_two-title a:hover {
  color: var(--white-color);
}

.service-block_two-overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145.07deg, rgba(29, 44, 56, 0.63) 20.56%, rgba(0, 146, 255, 0.56) 89.42%);
  transition: transform 0.4s ease;
  transform: scale(0, 1);
  transform-origin: right center;
}

.service-block_two-inner:hover .service-block_two-overlay {
  transform: scale(1, 1);
  transform-origin: left center;
}

.service-block_two-icon {
  position: relative;
  width: 100px;
  height: 100px;
  text-align: center;
  line-height: 98px;
  border-radius: 150px;
  color: var(--white-color);
  font-size: 40px;
  border: 1px solid rgba(var(--white-color-rgb), 0.15);
}

/* Feature One */
.feature-one {
  padding: 80px 0;
  background: var(--white-color);
}

.feature-one .inner-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.feature-block_one {
  text-align: center;
}

.feature-block_one-inner {
  padding: 40px 25px;
  background: var(--color-four);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.feature-block_one-inner:hover {
  background: var(--main-color);
  transform: translateY(-5px);
}

.feature-block_one-icon {
  width: 80px;
  height: 80px;
  background: var(--white-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  color: var(--main-color);
  transition: all 0.3s ease;
}

.feature-block_one-inner:hover .feature-block_one-icon {
  background: var(--white-color);
  color: var(--main-color);
  transform: rotateY(360deg);
}

.feature-block_one-title {
  font-size: var(--font-16);
  font-weight: 600;
  color: var(--color-two);
  line-height: 1.5;
  transition: all 0.3s ease;
}

.feature-block_one-inner:hover .feature-block_one-title {
  color: var(--white-color);
}

/* Steps Two */
.steps-two {
  position: relative;
  padding: 110px 0px 80px;
  background: var(--white-color);
}

.steps-two .sec-title_heading{
  line-height: 42px;
  font-size: var(--font-32);
}

.steps-two_image-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-size: cover;
}

.steps-two_image-layer::before{
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0.90;
  background-color: var(--color-two);
}

.steps-two_content-column{
  position: relative;
  margin-bottom: var(--margin-bottom-30);
}

.steps-two_content-inner{
  position: relative;
}

.step-two_block{
  position: relative;
  margin-bottom: var(--margin-bottom-30);
}

.step-two_block:last-child{
  margin-bottom: var(--margin-zero);
}

.step-two_block-inner{
  position: relative;
  padding-left: 100px;
}

.step-two_block-icon{
  position: absolute;
  left: 0px;
  top: 2px;
  width: 70px;
  height: 70px;
  line-height: 66px;
  text-align: center;
  border-radius: 50px;
  color: var(--main-color);
  font-size: var(--font-34);
  border: 2px solid var(--main-color);
  transition: all 500ms ease;
}

.step-two_block-inner:hover .step-two_block-icon{
  color: var(--white-color);
  background-color: var(--main-color);
  transform: scale(-1) rotate(180deg);
}

.step-two_block-title{
  position: relative;
  font-weight: 500;
  font-size: 24px;
  color: var(--white-color);
}

.step-two_block-text{
  position: relative;
  line-height: 28px;
  font-size: var(--font-16);
  margin-top: 10px;
  color: rgba(var(--white-color-rgb), 0.70);
}

.steps-two_image-column{
  position: relative;
  margin-bottom: var(--margin-bottom-30);
}

.steps-two_image-inner{
  position: relative;
  padding-left: 30px;
}

.steps-two_image-inner::before{
  position: absolute;
  content: '';
  left: 60px;
  top: 30px;
  right: -30px;
  bottom: -30px;
  z-index: 1;
  border-radius: 25px;
  border: 5px solid var(--main-color);
}

.steps-two_image{
  position: relative;
  border-radius: 35px;
  overflow: hidden;
  display: block;
}

.steps-two_image::before{
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  background: linear-gradient(145.07deg, rgba(29, 44, 56, 0.45) 20.56%, rgba(0, 146, 255, 0.4) 89.42%);
}

.steps-two_image img{
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 270/496;
  object-fit: cover;
  display: block;
}

.steps-two_image.style-two{
  transform: translateY(65px);
}

.steps-two_icon{
  position: absolute;
  left: 52%;
  top: 46%;
  width: 70px;
  height: 70px;
  z-index: 10;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  font-size: 28px;
  color: var(--white-color);
  background-color: var(--main-color);
  transform: translateX(-50%) translateY(-50%);
  box-shadow: 0 5px 20px rgba(0,146,255,0.4);
}

.steps-two_pattern-layer{
  position: absolute;
  left: -30px;
  top: -100px;
  right: 0px;
  opacity: 0.10;
  bottom: 0px;
  width: 721px;
  height: 481px;
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
  background-repeat: repeat;
}

.steps-two.style-two .step-two_block-title{
  color: var(--color-two);
}

.steps-two.style-two .step-two_block-text{
  color: var(--color-three);
}

/* Team One */
.team-one {
  position: relative;
  padding: 100px 0 70px;
  background: var(--color-four);
}

.team-block_one {
  margin-bottom: 30px;
}

.team-block_one-inner {
  position: relative;
  background: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.team-block_one-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.team-block_one-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.team-block_one-image img,
.team-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  font-size: 64px;
  color: var(--main-color);
}

.team-block_one-social {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -60px;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(to top, var(--main-color), transparent);
  transition: all 0.4s ease;
  list-style: none;
}

.team-block_one-inner:hover .team-block_one-social {
  bottom: 0;
}

.team-block_one-social li a {
  width: 40px;
  height: 40px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  font-size: var(--font-14);
  transition: all 0.3s ease;
}

.team-block_one-social li a:hover {
  background: var(--color-two);
  color: var(--white-color);
}

.team-block_one-content {
  padding: 25px;
  text-align: center;
}

.team-block_one-title {
  font-size: var(--font-20);
  font-weight: 600;
  margin-bottom: 5px;
}

.team-block_one-title a {
  color: var(--color-two);
}

.team-block_one-title a:hover {
  color: var(--main-color);
}

.team-block_one-designation {
  color: var(--main-color);
  font-size: var(--font-14);
  font-weight: 500;
}

/* Gallery Three */
.gallery-three {
  position: relative;
  padding: 100px 0 70px;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  overflow: hidden;
}

.gallery-three_pattern-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 50%, rgba(0,146,255,0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(0,146,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-three_icon-one {
  position: absolute;
  right: 50px;
  top: 50px;
  width: 100px;
  height: 100px;
  background: rgba(0,146,255,0.1);
  border-radius: 20px;
  transform: rotate(45deg);
}

.gallery-three_block {
  margin-bottom: 30px;
}

.gallery-three_block-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-three_block-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-three_block-image img,
.gallery-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--white-color);
}

.gallery-three_block-overlay-two {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.gallery-three_block-inner:hover .gallery-three_block-overlay-two {
  opacity: 1;
}

.gallery-three_block-icon {
  width: 50px;
  height: 50px;
  background: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: var(--font-18);
}

.gallery-three_block-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,146,255,0.95) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-three_block-inner:hover .gallery-three_block-overlay {
  opacity: 1;
}

.gallery-three_block-category {
  color: rgba(255,255,255,0.8);
  font-size: var(--font-14);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.gallery-three_block-heading {
  font-size: var(--font-22);
  font-weight: 600;
}

.gallery-three_block-heading a {
  color: var(--white-color);
}

.gallery-three_block-heading a:hover {
  color: var(--white-color);
  text-decoration: underline;
}

/* Testimonial Two - Grid en lugar de carrusel */
.testimonial-two {
  position: relative;
  padding: 100px 0px 100px;
  background: var(--color-four);
  overflow: hidden;
}

.testimonial-two_authors-outer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  pointer-events: none;
}

.testimonial-two_authors-outer .author-one {
  position: absolute;
  left: 7%;
  top: 17%;
  width: 78px;
  height: 78px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--color-four);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-three);
  font-size: 32px;
}

.testimonial-two_authors-outer .author-two {
  position: absolute;
  left: 17%;
  top: 29%;
  width: 62px;
  height: 62px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--color-four);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-three);
  font-size: 24px;
}

.testimonial-two_authors-outer .author-three {
  position: absolute;
  left: 25%;
  top: 13%;
  width: 82px;
  height: 82px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--color-four);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-three);
  font-size: 36px;
}

.testimonial-two_authors-outer .author-four {
  position: absolute;
  right: 17%;
  top: 19%;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--color-four);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-three);
  font-size: 20px;
}

.testimonial-two_authors-outer .author-five {
  position: absolute;
  right: 7%;
  top: 25%;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--color-four);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-three);
  font-size: 28px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-block_two {
  position: relative;
  margin-bottom: 30px;
  min-width: 350px;
  scroll-snap-align: center;
  flex: 0 0 auto;
}

.testimonial-block_two-inner {
  position: relative;
  text-align: center;
}

.testimonial-block_two-author {
  position: relative;
  margin: 0 auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0px 10px 15px rgba(0,0,0,0.10);
}

.testimonial-block_two-quote {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 30px;
  height: 30px;
  z-index: 1;
  font-weight: 700;
  line-height: 30px;
  border-radius: 50px;
  color: var(--white-color);
  background-color: var(--main-color);
  font-family: 'Font Awesome 6 Free';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-12);
}

.author-img-placeholder,
.testimonial-block_two-author img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  font-size: 40px;
  overflow: hidden;
}

.testimonial-block_two-separator {
  position: relative;
  width: 50px;
  height: 2px;
  background: var(--main-color);
  margin: 25px auto;
}

.testimonial-block_two-text {
  position: relative;
  font-size: var(--font-18);
  color: var(--color-three);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 20px;
}

.testimonial-block_two-designation {
  position: relative;
  font-weight: 700;
  color: var(--color-two);
  font-size: var(--font-18);
}

.testimonial-block_two-designation span {
  font-weight: 400;
  color: var(--color-three);
}

/* News One Style Two */
.news-one.style-two {
  background: var(--color-four);
}

.news-one {
  padding: 100px 0 70px;
}

.news-one_block {
  margin-bottom: 30px;
}

.news-one_block-inner {
  background: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.news-one_block-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.news-one_block-content {
  padding: 30px;
}

.news-one_block-upper-box {
  margin-bottom: 20px;
}

.news-one_block-category {
  display: inline-block;
  background: rgba(0,146,255,0.1);
  color: var(--main-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: var(--font-12);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.news-one_block-title {
  font-size: var(--font-20);
  font-weight: 600;
  margin-bottom: 12px;
}

.news-one_block-title a {
  color: var(--color-two);
}

.news-one_block-title a:hover {
  color: var(--main-color);
}

.news-one_block-text {
  color: var(--color-three);
  font-size: var(--font-15);
  line-height: 1.7;
}

.news-one_block-lower-box {
  border-top: 1px solid var(--color-four);
  padding-top: 20px;
}

.news-author-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-one_block-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-14);
  color: var(--color-three);
}

.news-one_block-author_image {
  width: 40px;
  height: 40px;
  background: var(--color-four);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-three);
  font-size: var(--font-14);
}

.news-one_block-author i {
  color: var(--main-color);
  font-style: normal;
  font-weight: 500;
}

.news-one_block-date {
  text-align: center;
  color: var(--color-two);
  font-weight: 700;
  font-size: var(--font-24);
  line-height: 1;
}

.news-one_block-date span {
  display: block;
  font-size: var(--font-12);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-three);
}

/* Counter One */
.counter-one {
  position: relative;
  padding: 80px 0;
  background: var(--main-color);
}

.counter-one.style-two {
  background: var(--white-color);
  padding: 100px 0;
}

.counter-one .inner-container {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 60px 40px;
}

.counter-one.style-two .inner-container {
  background: linear-gradient(135deg, var(--main-color) 0%, #0066cc 100%);
}

.counter-one_count-column {
  position: relative;
}

.counter-one_count-inner {
  text-align: center;
  color: var(--white-color);
}

.counter-one_text {
  font-size: var(--font-15);
  margin-bottom: 15px;
  opacity: 0.9;
}

.counter-one_counter {
  font-size: 48px;
  font-weight: 800;
}

.counter-number {
  display: inline;
}

/* CTA One */
.cta-one {
  position: relative;
  padding: 60px 0;
  background: var(--color-two);
}

.cta-one.style-two {
  background: #0f172a;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-icon {
  width: 60px;
  height: 60px;
  background: var(--main-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white-color);
}

.logo-text-sm {
  font-size: 28px;
  font-weight: 700;
  color: var(--white-color);
}

.cta-one_text {
  color: rgba(255,255,255,0.7);
  font-size: var(--font-16);
  text-align: right;
}

/* Footer - Exacto al original */
.main-footer {
  position: relative;
  background-color: var(--color-two);
  color: rgba(255,255,255,0.7);
}

.main-footer_widgets {
  padding: 100px 0 90px;
}

.main-footer_title {
  position: relative;
  font-weight: 500;
  color: var(--white-color);
  font-size: var(--font-20);
  text-transform: capitalize;
  margin-bottom: 20px;
}

.main-footer_list {
  list-style: none;
  position: relative;
}

.main-footer_list li {
  position: relative;
  margin-bottom: 15px;
}

.main-footer_list li a {
  position: relative;
  opacity: 0.70;
  font-size: var(--font-16);
  color: var(--white-color);
  transition: all 0.3s ease;
}

.main-footer_list li a:hover {
  color: var(--main-color);
  padding-left: 5px;
}

.footer-text {
  position: relative;
  line-height: 24px;
  opacity: 0.70;
  font-size: var(--font-14);
  color: var(--white-color);
  margin-bottom: 25px;
}

/* Subscribe Form - Exacto al original */
.subscribe-form {
  position: relative;
}

.subscribe-form .form-group {
  position: relative;
  display: block;
  margin: 0px;
  width: 100%;
}

.subscribe-form .form-group input[type="email"] {
  position: relative;
  display: block;
  width: 100%;
  line-height: 28px;
  height: 52px;
  font-size: 14px;
  color: var(--white-color);
  border-radius: 50px;
  background: none;
  padding: 10px 70px 10px 30px;
  transition: all 300ms ease;
  border: 1px solid rgba(var(--white-color-rgb), 0.10);
}

.subscribe-form .form-group input::placeholder {
  color: rgba(255,255,255,0.5);
}

.subscribe-form button {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 52px;
  height: 52px;
  cursor: pointer;
  font-weight: 700;
  background: none;
  border-radius: 50px;
  font-size: var(--font-16);
  color: var(--main-color);
  border: 1px solid rgba(var(--white-color-rgb), 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscribe-form button:hover {
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.footer-privacy {
  position: relative;
  opacity: 0.70;
  line-height: 28px;
  font-size: var(--font-14);
  color: var(--white-color);
  margin-top: 35px;
  padding-left: 40px;
}

.footer-privacy a {
  position: relative;
  color: var(--main-color);
}

.footer-privacy:before {
  position: absolute;
  content: '\f00c';
  left: 0px;
  top: 5px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50px;
  text-align: center;
  font-size: var(--font-12);
  color: var(--main-color);
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  background-color: rgba(var(--main-color-rgb), 0.10);
}

/* Links Widget Padding */
.links-widget {
  padding-left: 40px;
}

/* News Widget Block - Exacto al original */
.news-widget {
  padding-left: 35px;
}

.news-widget-block {
  position: relative;
  min-height: 80px;
  padding-left: 85px;
  margin-bottom: 25px;
}

.news-widget_image {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 70px;
  height: 74px;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  font-size: 28px;
}

.news-widget_title {
  position: relative;
  font-size: var(--font-16);
  font-weight: 500;
  margin-bottom: 5px;
}

.news-widget_title a {
  position: relative;
  color: var(--white-color);
}

.news-widget_title a:hover {
  color: var(--main-color);
}

.news-widget_post-date {
  position: relative;
  letter-spacing: 0.5px;
  font-size: var(--font-12);
  text-transform: capitalize;
  margin-top: 5px;
  color: rgba(var(--white-color-rgb), 0.50);
}

.news-widget_post-date a {
  color: var(--main-color);
}

.footer-copyright {
  position: relative;
  padding: 40px 0px;
  text-align: center;
  background-color: rgba(0,0,0,0.2);
}

.copyright {
  position: relative;
  font-size: var(--font-16);
  color: rgba(var(--white-color-rgb), 0.70);
}

.copyright a {
  position: relative;
  color: var(--main-color);
}

/* Scroll To Top */
.scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(0,146,255,0.4);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--color-two);
  transform: translateY(-3px);
}

/* Page Title */
.page-title {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--main-color) 0%, #0066cc 100%);
  text-align: center;
  color: var(--white-color);
}

.page-title h1 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  margin-bottom: 15px;
}

.bread-crumb {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.bread-crumb li {
  position: relative;
  color: rgba(255,255,255,0.8);
}

.bread-crumb li:not(:last-child)::after {
  content: '/';
  margin-left: 15px;
}

.bread-crumb li a {
  color: rgba(255,255,255,0.8);
}

.bread-crumb li a:hover {
  color: var(--white-color);
}

/* Contact Page */
.contact-info_one {
  padding: 80px 0 50px;
  background: var(--white-color);
}

.contact-info-column {
  margin-bottom: 30px;
}

.info-inner {
  text-align: center;
  padding: 40px 30px;
  background: var(--color-four);
  border-radius: 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.info-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.info-inner .icon {
  width: 80px;
  height: 80px;
  background: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--white-color);
}

.info-inner a,
.info-inner .location {
  display: block;
  font-size: var(--font-18);
  font-weight: 600;
  color: var(--color-two);
  margin-bottom: 5px;
}

.info-inner .text {
  color: var(--color-three);
  font-size: var(--font-14);
}

.contact-form-section {
  padding: 50px 0 80px;
  background: var(--white-color);
}

.comment-form-outer {
  max-width: 800px;
  margin: 0 auto;
}

.title-box {
  margin-bottom: 40px;
}

.title-box h3 {
  font-size: var(--font-32);
  font-weight: 700;
  color: var(--color-two);
  margin-bottom: 10px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--color-two);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: var(--font-16);
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white-color);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--main-color);
  box-shadow: 0 0 0 3px rgba(0,146,255,0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.comment-text {
  margin-top: 10px;
  font-size: var(--font-14);
  color: var(--color-three);
}

.map-one {
  position: relative;
}

.map-one iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(20%);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--color-four);
}

.accordion-box {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.accordion {
  background: var(--white-color);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.acc-btn {
  padding: 25px 30px;
  font-weight: 600;
  color: var(--color-two);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.acc-btn:hover {
  color: var(--main-color);
}

.icon-outer {
  width: 30px;
  height: 30px;
  background: var(--color-four);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.acc-btn.active .icon-outer {
  background: var(--main-color);
  color: var(--white-color);
  transform: rotate(180deg);
}

.acc-content {
  display: none;
  padding: 0 30px 25px 75px;
}

.acc-content.current {
  display: block;
}

.acc-content .text {
  color: var(--color-three);
  line-height: 1.8;
}

/* Mission Vision */
.mission-vision {
  padding: 80px 0;
  background: var(--white-color);
}

.mission-block,
.vision-block {
  padding: 50px;
  border-radius: 25px;
  text-align: center;
  height: 100%;
}

.mission-block {
  background: linear-gradient(135deg, var(--main-color) 0%, #0066cc 100%);
  color: var(--white-color);
}

.vision-block {
  background: var(--color-four);
  color: var(--color-two);
}

.mission-icon,
.vision-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
}

.vision-icon {
  background: var(--white-color);
  color: var(--main-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-block h3,
.vision-block h3 {
  font-size: var(--font-24);
  font-weight: 700;
  margin-bottom: 20px;
}

.mission-block p,
.vision-block p {
  line-height: 1.8;
  opacity: 0.9;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: var(--color-four);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.value-block {
  background: var(--white-color);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--color-four);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--main-color);
  transition: all 0.3s ease;
}

.value-block:hover .value-icon {
  background: var(--main-color);
  color: var(--white-color);
}

.value-block h4 {
  font-size: var(--font-20);
  font-weight: 600;
  color: var(--color-two);
  margin-bottom: 10px;
}

.value-block p {
  color: var(--color-three);
  font-size: var(--font-14);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
  .about-one_content-inner {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .slider-three_heading {
    font-size: 42px;
  }
  
  .slider-three_image-column {
    min-height: 350px;
    margin-top: 40px;
  }
  
  .hero-rocket-icon {
    font-size: 150px;
  }
  
  .main-menu .navigation {
    display: none;
  }
  
  .header-phone {
    display: none;
  }
  
  .header-top_nav {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .testimonial-two_authors-outer {
    display: none;
  }
  
  .steps-two_content-inner {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .header-top-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .slider-three {
    padding: 80px 0 60px;
  }
  
  .slider-three_heading {
    font-size: 32px;
  }
  
  .slider-three_button-box {
    flex-direction: column;
  }
  
  .theme-btn {
    width: 100%;
    justify-content: center;
  }
  
  .slider-three_play {
    top: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-one_text {
    text-align: center;
  }
  
  .services-carousel,
  .feature-one .inner-container {
    grid-template-columns: 1fr;
  }
  
  .counter-one_counter {
    font-size: 36px;
  }
  
  .mission-block,
  .vision-block {
    padding: 30px;
    margin-bottom: 20px;
  }
  
  .gallery-three_icon-one {
    display: none;
  }
}

/* Mobile Menu Toggle */
.mobile-nav-toggler {
  display: none;
  cursor: pointer;
}

@media (max-width: 991px) {
  .mobile-nav-toggler {
    display: block;
  }
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}
/* KashIT - Technology & IT Solutions Template */
/* Basado en index-3.html */

/* Owl Carousel Base Styles */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.no-js .owl-carousel {
  display: block;
}

/* Owl Carousel Navigation Styles */
.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-two);
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  pointer-events: auto;
  transition: all 0.3s ease;
  border: 1px solid var(--color-four);
}

.owl-carousel .owl-nav .owl-prev {
  left: 10px;
}

.owl-carousel .owl-nav .owl-next {
  right: 10px;
}

.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
  background: var(--main-color);
  color: var(--white-color);
}

/* Owl Dots */
/* Owl Dots - Default */
/* Position dots absolutely at bottom of carousel with more spacing */
.owl-carousel {
  position: relative;
  padding-bottom: 90px !important;
}

.owl-carousel .owl-dots {
  position: absolute !important;
  bottom: -50px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  text-align: center;
  margin-top: 0 !important;
  display: flex !important;
  justify-content: center;
  gap: 10px;
}

.owl-carousel .owl-dot {
  display: inline-block !important;
  width: 14px !important;
  height: 14px !important;
  background: rgba(0,0,0,0.08) !important;
  border: 2px solid rgba(0,0,0,0.2) !important;
  border-radius: 3px !important;
  margin: 0 !important;
  transition: all 0.3s ease !important;
}

.owl-carousel .owl-dot.active {
  background: var(--main-color) !important;
  border-color: var(--main-color) !important;
  width: 14px !important;
  height: 14px !important;
  border-radius: 3px !important;
}

/* Dark Background Carousel Styles */
.gallery-three .owl-nav .owl-prev,
.gallery-three .owl-nav .owl-next {
  background: rgba(255,255,255,0.1);
  color: var(--white-color);
}

.gallery-three .owl-nav .owl-prev:hover,
.gallery-three .owl-nav .owl-next:hover {
  background: var(--main-color);
}

/* Sponsors Carousel Specific */
.sponsors-carousel .owl-nav {
  display: none;
}

.sponsors-carousel .owl-dots {
  position: absolute !important;
  bottom: -50px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  margin-top: 0 !important;
}

/* Testimonial Carousel Specific */
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  background: var(--white-color);
  border: 1px solid var(--color-four);
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--main-color);
  border-color: var(--main-color);
}

.testimonial-carousel .owl-dots {
  position: absolute !important;
  bottom: -50px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  margin-top: 0 !important;
}

.testimonial-carousel .owl-dot {
  background: rgba(0,0,0,0.1) !important;
  border-radius: 2px !important;
  width: 12px !important;
  height: 12px !important;
}

.testimonial-carousel .owl-dot.active {
  background: var(--main-color) !important;
  border-radius: 2px !important;
  width: 12px !important;
  height: 12px !important;
}

/* Services Carousel Specific */
.services-two {
  position: relative;
  padding: 120px 60px;
}

/* Ocultar flechas de navegación en servicios */
.services-two .owl-nav {
  display: none !important;
}

/* Hero Slider Specific */
.slider-three .owl-nav {
  display: none;
}

.slider-three .owl-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  display: flex;
  gap: 10px;
}

.slider-three .owl-dot {
  width: 14px !important;
  height: 14px !important;
  background: rgba(255,255,255,0.3) !important;
  border: 2px solid rgba(255,255,255,0.6) !important;
  border-radius: 3px !important;
  opacity: 1 !important;
  margin: 0 !important;
}

.slider-three .owl-dot.active {
  background: var(--main-color) !important;
  border-color: var(--main-color) !important;
  width: 14px !important;
  height: 14px !important;
  border-radius: 3px !important;
}

:root {
  --main-color: #0092ff;
  --main-color-rgb: 0, 146, 255;
  --color-two: #1f2937;
  --color-two-rgb: 31, 41, 55;
  --color-three: #4b5563;
  --color-three-rgb: 75, 85, 99;
  --color-four: #f3f4f6;
  --color-four-rgb: 243, 244, 246;
  --color-seven: #9ca3af;
  --color-eight: #111827;
  --color-nine: #f59e0b;
  --white-color: #ffffff;
  --white-color-rgb: 255, 255, 255;
  --black-color: #000000;
  --black-color-rgb: 0, 0, 0;
  
  --font-10: 10px;
  --font-12: 12px;
  --font-14: 14px;
  --font-16: 16px;
  --font-18: 18px;
  --font-20: 20px;
  --font-24: 24px;
  --font-32: 32px;
  --font-48: 48px;
  --font-80: 80px;
  
  --margin-zero: 0px;
  --margin-top-5: 5px;
  --margin-top-15: 15px;
  --margin-top-20: 20px;
  --margin-top-25: 25px;
  --margin-top-30: 30px;
  --margin-top-35: 35px;
  --margin-top-40: 40px;
  --margin-top-50: 50px;
  --margin-bottom-15: 15px;
  --margin-bottom-20: 20px;
  --margin-bottom-25: 25px;
  --margin-bottom-30: 30px;
  --margin-right-15: 15px;
  
  --padding-zero: 0px;
  --padding-top-5: 5px;
  --padding-top-10: 10px;
  --padding-top-15: 15px;
  --padding-top-20: 20px;
  --padding-top-25: 25px;
  --padding-top-30: 30px;
  --padding-top-40: 40px;
  --padding-top-50: 50px;
  --padding-top-60: 60px;
  --padding-top-70: 70px;
  --padding-top-80: 80px;
  --padding-top-100: 100px;
  --padding-top-110: 110px;
  --padding-top-120: 120px;
  --padding-bottom-5: 5px;
  --padding-bottom-10: 10px;
  --padding-bottom-15: 15px;
  --padding-bottom-20: 20px;
  --padding-bottom-25: 25px;
  --padding-bottom-30: 30px;
  --padding-bottom-40: 40px;
  --padding-bottom-50: 50px;
  --padding-bottom-60: 60px;
  --padding-bottom-70: 70px;
  --padding-bottom-80: 80px;
  --padding-bottom-100: 100px;
  --padding-bottom-110: 110px;
  --padding-bottom-120: 120px;
}

/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-three);
  background: var(--white-color);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--color-two);
  margin: 0 0 15px;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: var(--main-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-two);
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.auto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Page Wrapper */
.page-wrapper {
  position: relative;
  overflow: hidden;
}

/* Header Style Three */
.main-header {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  background: var(--white-color);
}

.main-header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white-color);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* Header Top */
.header-top {
  position: relative;
  padding: 12px 0;
  background: var(--color-two);
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top_nav a {
  position: relative;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-right: 25px;
  transition: all 0.3s ease;
}

.header-top_nav a:hover {
  color: var(--white-color);
}

.header-top_nav a:not(:last-child):after {
  content: '|';
  position: absolute;
  right: -15px;
  color: rgba(255,255,255,0.3);
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-top_email {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.header-top_email span {
  color: var(--main-color);
  margin-right: 5px;
}

.header-top_email:hover {
  color: var(--white-color);
}

.header-top_social {
  display: flex;
  gap: 15px;
}

.header-top_social a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: all 0.3s ease;
}

.header-top_social a:hover {
  color: var(--main-color);
}

/* Header Lower */
.header-lower {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-four);
}

.inner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Box */
.logo-box .logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-two);
}

/* Navigation */
.main-menu .navigation {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px;
}

.main-menu .navigation > li > a {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-two);
  padding: 10px 0;
  display: block;
  position: relative;
}

.main-menu .navigation > li > a:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--main-color);
  transition: all 0.3s ease;
}

.main-menu .navigation > li:hover > a:before,
.main-menu .navigation > li.current > a:before {
  width: 100%;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a {
  color: var(--main-color);
}

/* Header Phone */
.header-phone_inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone_icon {
  width: 45px;
  height: 45px;
  background: var(--main-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.phone-info {
  line-height: 1.4;
}

.phone-label {
  display: block;
  font-size: 12px;
  color: var(--color-seven);
}

.phone-info a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-two);
}

/* Slider Three */
.slider-three {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f3f4f6 100%);
  overflow: hidden;
}

.slider-three_circle-layer-one,
.slider-three_circle-layer-two,
.slider-three_circle-layer-three {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0,146,255,0.1);
}

.slider-three_circle-layer-one {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
}

.slider-three_circle-layer-two {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 10%;
  background: rgba(0,146,255,0.05);
}

.slider-three_circle-layer-three {
  width: 150px;
  height: 150px;
  bottom: 15%;
  left: 30%;
}

.slider-three_title-inner {
  position: relative;
  z-index: 2;
}

.slider-three_heading {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--color-two);
  line-height: 1.15;
  margin-bottom: 25px;
}

.slider-three_text {
  font-size: 18px;
  color: var(--color-three);
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 90%;
}

.slider-three_button-box {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-style-one,
.btn-style-two {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-style-one {
  background: var(--main-color);
  color: var(--white-color);
}

.btn-style-one:hover {
  background: var(--color-two);
  color: var(--white-color);
}

.btn-style-two {
  background: transparent;
  color: var(--color-two);
  border: 2px solid var(--color-two);
}

.btn-style-two:hover {
  background: var(--color-two);
  color: var(--white-color);
}

/* Slider Image Column */
.slider-three_image-column {
  position: relative;
}

.slider-three_image-inner {
  position: relative;
  text-align: center;
}

.hero-rocket-icon {
  font-size: 180px;
  color: var(--main-color);
  opacity: 0.8;
}

.slider-three_play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-three_play:hover {
  background: var(--main-color);
}

.slider-three_play .play-icon {
  color: var(--main-color);
  font-size: 24px;
  margin-left: 5px;
  transition: all 0.3s ease;
}

.slider-three_play:hover .play-icon {
  color: var(--white-color);
}

.slider-three_image-circle_one,
.slider-three_image-circle-two,
.slider-three_image-circle-three {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(0,146,255,0.2);
}

.slider-three_image-circle_one {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slider-three_image-circle-two {
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(0,146,255,0.15);
}

.slider-three_image-circle-three {
  width: 240px;
  height: 240px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,146,255,0.05);
  border: none;
}

/* About Section */
.about-one {
  position: relative;
  padding: 120px 0;
  background: var(--white-color);
}

.about-one_image-column {
  position: relative;
}

.about-one_image-inner {
  position: relative;
  padding: 40px;
}

.about-one_counter {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--main-color);
  color: var(--white-color);
  padding: 25px 30px;
  border-radius: 20px;
  text-align: center;
  z-index: 3;
}

.about-one_counter-words {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.about-one_counter-text {
  font-size: 14px;
  margin-top: 5px;
  opacity: 0.9;
}

.about-one_image-two,
.about-one_image-three {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon-main,
.about-icon-secondary {
  font-size: 100px;
  color: var(--main-color);
  opacity: 0.6;
}

.about-one_image-three {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 200px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 5px solid var(--white-color);
}

.about-one_content-inner {
  padding-left: 40px;
}

.about-one_title {
  font-size: 14px;
  font-weight: 600;
  color: var(--main-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.about-one_heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-one_text {
  font-size: 16px;
  color: var(--color-three);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-one_block {
  margin-bottom: 30px;
}

.about-one_block-icon {
  width: 60px;
  height: 60px;
  background: rgba(0,146,255,0.1);
  color: var(--main-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
}

.about-one_block-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.about-one_block-text {
  font-size: 14px;
  color: var(--color-seven);
  line-height: 1.6;
}

/* Sponsors Section */
.sponsors-one {
  position: relative;
  padding: 60px 0;
  background: var(--white-color);
  border-top: 1px solid var(--color-four);
  border-bottom: 1px solid var(--color-four);
}

.sponsors-outer {
  position: relative;
}

.sponsors-carousel {
  position: relative;
}

.sponsors-carousel .slide-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.sponsors-carousel .image-box {
  margin: 0;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.sponsors-carousel .image-box:hover {
  opacity: 1;
}

.client-logo-placeholder {
  width: 120px;
  height: 60px;
  background: var(--color-four);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-three);
}

/* Services Section */
.services-two {
  position: relative;
  padding: 120px 0;
  background: var(--white-color);
}

.sec-title {
  position: relative;
  margin-bottom: 50px;
}

.sec-title.centered {
  text-align: center;
}

.sec-title.light .sec-title_title,
.sec-title.light .sec-title_heading {
  color: var(--white-color);
}

.sec-title_title {
  font-size: 14px;
  font-weight: 600;
  color: var(--main-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.sec-title_heading {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.sec-title_separator {
  width: 60px;
  height: 3px;
  background: var(--main-color);
  margin: 0 auto;
}

.sec-title.centered .sec-title_separator {
  margin: 0 auto;
}

/* Feature One */
.feature-one {
  position: relative;
  padding: 0 0 120px;
  background: var(--white-color);
}

.feature-one .inner-container {
  display: flex;
  justify-content: space-between;
  background: var(--white-color);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  padding: 40px;
}

.feature-block_one {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--color-four);
}

.feature-block_one:last-child {
  border-right: none;
}

.feature-block_one-inner {
  position: relative;
}

.feature-block_one-icon {
  width: 70px;
  height: 70px;
  background: rgba(0,146,255,0.1);
  color: var(--main-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.feature-block_one-inner:hover .feature-block_one-icon {
  background: var(--main-color);
  color: var(--white-color);
  transform: translateY(-5px);
}

.feature-block_one-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

/* Team Section */
.team-one {
  position: relative;
  padding: 120px 0;
  background: var(--white-color);
}

.team-block_one {
  position: relative;
  margin-bottom: 30px;
}

.team-block_one-inner {
  position: relative;
}

.team-block_one-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}

.team-placeholder {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-placeholder i {
  font-size: 80px;
  color: var(--main-color);
  opacity: 0.5;
}

.team-block_one-social {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.team-block_one-inner:hover .team-block_one-social {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.team-block_one-social a {
  width: 40px;
  height: 40px;
  background: var(--white-color);
  color: var(--color-two);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.team-block_one-social a:hover {
  background: var(--main-color);
  color: var(--white-color);
}

.team-block_one-content {
  text-align: center;
  padding: 20px;
}

.team-block_one-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-block_one-title a {
  color: var(--color-two);
}

.team-block_one-title a:hover {
  color: var(--main-color);
}

.team-block_one-designation {
  font-size: 14px;
  color: var(--main-color);
}

/* Gallery Three */
.gallery-three {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  overflow: hidden;
}

.gallery-three_pattern-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.gallery-three_icon-one {
  position: absolute;
  top: 50%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(0,146,255,0.1);
  border-radius: 50%;
  transform: translateY(-50%);
}

.gallery-three_block {
  position: relative;
  margin-bottom: 30px;
}

.gallery-three_block-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-three_block-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-placeholder {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-placeholder i {
  font-size: 60px;
  color: var(--white-color);
  opacity: 0.3;
}

.gallery-three_block-overlay,
.gallery-three_block-overlay-two {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-three_block-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  align-items: flex-end;
  justify-content: flex-start;
  padding: 30px;
}

.gallery-three_block-overlay-two {
  background: rgba(0,146,255,0.9);
}

.gallery-three_block-inner:hover .gallery-three_block-overlay,
.gallery-three_block-inner:hover .gallery-three_block-overlay-two {
  opacity: 1;
}

.gallery-three_block-icon {
  width: 60px;
  height: 60px;
  background: var(--white-color);
  color: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.gallery-three_block-category {
  display: inline-block;
  background: var(--main-color);
  color: var(--white-color);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.gallery-three_block-heading {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.gallery-three_block-heading a {
  color: var(--white-color);
}

.gallery-three_block-heading a:hover {
  color: var(--main-color);
}

/* Testimonial Two */
.testimonial-two {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  overflow: hidden;
}

.testimonial-two_authors-outer {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-two_authors-outer span {
  display: inline-flex;
  width: 50px;
  height: 50px;
  background: var(--white-color);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--color-seven);
  font-size: 20px;
  margin: 0 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-two_authors-outer .author-one { transform: translateY(-20px); }
.testimonial-two_authors-outer .author-two { transform: translateY(10px); width: 60px; height: 60px; background: var(--main-color); color: var(--white-color); }
.testimonial-two_authors-outer .author-three { transform: translateY(-10px); }
.testimonial-two_authors-outer .author-four { transform: translateY(15px); }
.testimonial-two_authors-outer .author-five { transform: translateY(-5px); }

.testimonial-block_two {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-block_two-inner {
  position: relative;
  background: var(--white-color);
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.testimonial-block_two-author {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
}

.author-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-img-placeholder i {
  font-size: 40px;
  color: var(--main-color);
  opacity: 0.5;
}

.testimonial-block_two-quote {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: var(--main-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.testimonial-block_two-separator {
  width: 50px;
  height: 3px;
  background: var(--main-color);
  margin: 0 auto 25px;
}

.testimonial-block_two-text {
  font-size: 18px;
  color: var(--color-three);
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-block_two-designation {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-two);
}

.testimonial-block_two-designation span {
  font-weight: 400;
  color: var(--main-color);
}

/* News One */
.news-one {
  position: relative;
  padding: 120px 0;
  background: var(--white-color);
}

.news-one_block {
  margin-bottom: 30px;
}

.news-one_block-inner {
  position: relative;
  background: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  height: 100%;
}

.news-one_block-content {
  padding: 30px;
}

.news-one_block-category {
  display: inline-block;
  background: rgba(0,146,255,0.1);
  color: var(--main-color);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.news-one_block-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

.news-one_block-title a {
  color: var(--color-two);
}

.news-one_block-title a:hover {
  color: var(--main-color);
}

.news-one_block-text {
  font-size: 15px;
  color: var(--color-three);
  line-height: 1.7;
  margin-bottom: 20px;
}

.news-author-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--color-four);
}

.news-one_block-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-seven);
}

.news-one_block-author_image {
  width: 40px;
  height: 40px;
  background: var(--color-four);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-seven);
}

.news-one_block-author i {
  font-style: normal;
  color: var(--main-color);
}

.news-one_block-date {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-two);
  line-height: 1;
}

.news-one_block-date span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-seven);
}

/* Counter One */
.counter-one {
  position: relative;
  padding: 0 0 120px;
  background: var(--white-color);
}

.counter-one .inner-container {
  background: var(--main-color);
  border-radius: 30px;
  padding: 60px;
}

.counter-one_count-inner {
  text-align: center;
  color: var(--white-color);
}

.counter-one_text {
  font-size: 16px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.counter-one_counter {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}

/* CTA One */
.cta-one {
  position: relative;
  padding: 60px 0;
  background: var(--color-two);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-icon {
  width: 60px;
  height: 60px;
  background: var(--main-color);
  color: var(--white-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.logo-text-sm {
  font-size: 28px;
  font-weight: 800;
  color: var(--white-color);
}

.cta-one_text {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  text-align: right;
}

/* Main Footer */
.main-footer {
  position: relative;
  background: #1a2332;
  padding: 100px 0 0;
}

.main-footer_widgets {
  padding-bottom: 60px;
}

.main-footer_title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 25px;
}

.footer-text {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Subscribe Form */
.subscribe-form {
  position: relative;
}

.subscribe-form .form-group {
  position: relative;
  margin: 0;
}

.subscribe-form input[type="email"] {
  width: 100%;
  height: 56px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--white-color);
  padding: 10px 60px 10px 25px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.subscribe-form input[type="email"]:focus {
  border-color: var(--main-color);
  outline: none;
}

.subscribe-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.4);
}

.subscribe-form button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--main-color);
  border: none;
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-form button:hover {
  background: var(--white-color);
  color: var(--main-color);
}

.footer-privacy {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
  line-height: 1.6;
}

.footer-privacy a {
  color: var(--main-color);
}

/* Footer Links */
.main-footer_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-footer_list li {
  margin-bottom: 12px;
}

.main-footer_list li a {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  display: inline-block;
}

.main-footer_list li a:hover {
  color: var(--main-color);
  padding-left: 5px;
}

/* News Widget */
.news-widget-block {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.news-widget-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.news-widget_image {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  font-size: 24px;
}

.news-widget_title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 8px;
}

.news-widget_title a {
  color: var(--white-color);
}

.news-widget_title a:hover {
  color: var(--main-color);
}

.news-widget_post-date {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.news-widget_post-date a {
  color: var(--main-color);
}

/* Footer Copyright */
.footer-copyright {
  background: #141b26;
  padding: 25px 0;
  text-align: center;
}

.copyright {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.copyright a {
  color: var(--main-color);
}

/* Scroll To Top */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--main-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,146,255,0.4);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--color-two);
  transform: translateY(-3px);
}

/* About Page Styles */
.about-page {
  padding: 80px 0;
}

.page-header {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  text-align: center;
}

.page-header_title {
  font-size: 48px;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 15px;
}

.page-header_text {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
}

/* Mission & Vision */
.mission-vision {
  padding: 80px 0;
  background: var(--white-color);
}

.mission-block,
.vision-block {
  background: var(--color-four);
  padding: 50px;
  border-radius: 30px;
  height: 100%;
}

.mission-block_icon,
.vision-block_icon {
  width: 80px;
  height: 80px;
  background: var(--main-color);
  color: var(--white-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 25px;
}

.mission-block_title,
.vision-block_title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.mission-block_text,
.vision-block_text {
  font-size: 16px;
  color: var(--color-three);
  line-height: 1.8;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: var(--color-four);
}

.value-block {
  background: var(--white-color);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.value-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.value-block_icon {
  width: 80px;
  height: 80px;
  background: rgba(0,146,255,0.1);
  color: var(--main-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 25px;
}

.value-block_title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.value-block_text {
  font-size: 15px;
  color: var(--color-three);
  line-height: 1.7;
}

/* Contact Page Styles */
.contact-page {
  padding: 80px 0;
}

.contact-info {
  margin-bottom: 50px;
}

.contact-block {
  background: var(--white-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.contact-block_icon {
  width: 80px;
  height: 80px;
  background: rgba(0,146,255,0.1);
  color: var(--main-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.contact-block:hover .contact-block_icon {
  background: var(--main-color);
  color: var(--white-color);
}

.contact-block_title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-block_text {
  font-size: 15px;
  color: var(--color-three);
  line-height: 1.7;
}

.contact-block_text a {
  color: var(--main-color);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white-color);
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-two);
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  height: 56px;
  border: 1px solid var(--color-four);
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 15px;
  color: var(--color-two);
  background: var(--white-color);
  transition: all 0.3s ease;
}

.contact-form textarea {
  height: auto;
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--main-color);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-seven);
}

.contact-form button[type="submit"] {
  background: var(--main-color);
  color: var(--white-color);
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button[type="submit"]:hover {
  background: var(--color-two);
}

/* Map Section */
.map-section {
  position: relative;
}

.map-container {
  position: relative;
  height: 400px;
  background: var(--color-four);
  border-radius: 30px;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-seven);
}

.map-placeholder i {
  font-size: 60px;
  margin-bottom: 20px;
  color: var(--main-color);
  opacity: 0.5;
}

/* Services Page */
.services-page {
  padding: 80px 0;
  background: var(--white-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* Portfolio Page */
.portfolio-page {
  padding: 80px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* Blog Page */
.blog-page {
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .main-menu .navigation {
    gap: 25px;
  }
  
  .header-phone {
    display: none;
  }
  
  .about-one_content-inner {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .steps-two_image-column {
    margin-top: 40px;
  }
  
  .feature-one .inner-container {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .feature-block_one {
    flex: 1 1 calc(33.333% - 20px);
    border-right: none;
  }
}

@media (max-width: 991px) {
  .nav-outer {
    display: none;
  }
  
  .slider-three {
    padding: 100px 0 80px;
  }
  
  .slider-three_heading {
    font-size: 42px;
  }
  
  .slider-three_image-column {
    margin-top: 50px;
    text-align: center;
  }
  
  .sec-title_heading {
    font-size: 36px;
  }
  
  .services-carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .testimonials-grid {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .testimonial-block_two {
    flex: 1 1 calc(50% - 15px);
  }
  
  .counter-one_counter {
    font-size: 42px;
  }
  
  .contact-info .row > div {
    margin-bottom: 30px;
  }
  
  .mission-block,
  .vision-block {
    margin-bottom: 30px;
  }
  
  .owl-carousel .owl-nav .owl-prev {
    left: 10px;
  }
  
  .owl-carousel .owl-nav .owl-next {
    right: 10px;
  }
  
  .testimonial-two_authors-outer {
    display: none;
  }
  
  .steps-two_content-inner {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .header-top-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .slider-three {
    padding: 80px 0 60px;
  }
  
  .slider-three_heading {
    font-size: 32px;
  }
  
  .slider-three_button-box {
    flex-direction: column;
  }
  
  .theme-btn {
    width: 100%;
    justify-content: center;
  }
  
  .slider-three_play {
    top: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .sec-title_heading {
    font-size: 28px;
  }
  
  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .cta-one_text {
    text-align: center;
  }
  
  .services-carousel,
  .feature-one .inner-container {
    grid-template-columns: 1fr;
  }
  
  .feature-block_one {
    flex: 1 1 100%;
  }
  
  .counter-one_counter {
    font-size: 36px;
  }
  
  .mission-block,
  .vision-block {
    padding: 30px;
    margin-bottom: 20px;
  }
  
  .gallery-three_icon-one {
    display: none;
  }
  
  .about-one_counter {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 20px;
  }
  
  .testimonial-block_two-inner {
    padding: 30px;
  }
  
  .contact-form-wrapper {
    padding: 30px;
  }
  
  .owl-carousel .owl-nav {
    display: none;
  }
}

/* Mobile Menu Toggle */
.mobile-nav-toggler {
  display: none;
  cursor: pointer;
}

@media (max-width: 991px) {
  .mobile-nav-toggler {
    display: block;
  }
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

/* Force all owl dots to be squares - override CDN styles */
.owl-carousel .owl-dots .owl-dot {
  border-radius: 3px !important;
  width: 14px !important;
  height: 14px !important;
  padding: 0 !important;
  background: rgba(0,0,0,0.08) !important;
  border: 2px solid rgba(0,0,0,0.2) !important;
}

.owl-carousel .owl-dots .owl-dot span {
  display: none !important;
}

/* ============================================
   FLATICON STYLES
   ============================================ */

/* Ensure Flaticon font is applied to all flaticon classes */
span[class^="flaticon-"],
span[class*=" flaticon-"] {
  font-family: "Flaticon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

span[class^="flaticon-"]:before,
span[class*=" flaticon-"]:before {
  font-family: "Flaticon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

/* Step block icons specific styling */
.step-two_block-icon {
  font-family: "Flaticon";
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-two_block-icon:before {
  font-family: "Flaticon";
  line-height: 1;
}

.steps-two_icon {
  font-family: "Flaticon";
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-two_icon:before {
  font-family: "Flaticon";
  line-height: 1;
}
/* Portfolio Gallery Aspect Ratio Fix */
.gallery-three_block-image {
  aspect-ratio: 370/471;
}

/* Force Flaticon font for gallery overlay icons */
.gallery-three_block-icon {
  font-family: "Flaticon", sans-serif;
}

.gallery-three_block-icon:before {
  font-family: "Flaticon";
}

/* Ensure overlays are properly positioned */
.gallery-three_block-overlay {
  z-index: 3;
}

.gallery-three_block-overlay-two {
  z-index: 4;
}
