@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #e22028;
  --secondary-color: #344a83;
  --tertiary-color: #1668b1;
  --light-color: #fff8e4;
  --grey-color: #c5c5c5;
  --dark-color: #3f3f3f;
  --black-color: #000000;
  --white-color: #ffffff;
  --primary-transition: all ease-in-out 0.35s;
}

* {
  scrollbar-color: var(--secondary-color) var(--grey-color);
  scrollbar-width: thin;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", serif;
  color: var(--black-color);
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1180px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", serif;
  line-height: 1.2;
  color: var(--black-color);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.heading-one {
  font-size: 100px;
}

.heading-two {
  font-size: 54px;
}

.heading-three {
  font-size: 30px;
}

.heading-four {
  font-size: 24px;
}

.heading-five {
  font-size: 20px;
}

.heading-six {
  font-size: 18px;
}

/* Slick Dots */
.slick-prev,
.slick-next,
.slick-next:hover,
.slick-prev:hover,
.slick-next:focus,
.slick-prev:focus {
  width: 36px;
  height: 36px;
}

.slick-prev::before,
.slick-next:before {
  display: none;
}

.slick-prev {
  background: transparent url(../images/arrow-prev.svg) no-repeat left center;
  left: -80px;
}

.slick-next {
  background: transparent url(../images/arrow-next.svg) no-repeat right center;
  right: -80px;
}

.slick-prev:hover,
.slick-prev:focus {
  background: transparent url(../images/arrow-prev.svg) no-repeat left center;
  opacity: .5;
}

.slick-next:hover,
.slick-next:focus {
  background: transparent url(../images/arrow-next.svg) no-repeat right center;
  opacity: .5;
}

.slick-dots li {
  margin: 0;
}

.slick-dots li button,
.slick-dots li.slick-active button:before {
  display: none;
}

.slick-dots li button {
  margin: 0 4px;
  background-color: var(--grey-color);
  border-radius: 100%;
  display: block;
  height: 12px;
  width: 12px;
  padding: 0;
  border: 0;
}

.slick-dots li.slick-active button {
  /* background-color: var(--primary-color); */
  background-color: currentColor;

}

.sc-pt-70 {
  /* padding-top: 70px; */
  padding-top: 25px;
}

.sc-pb-70 {
  padding-bottom: 70px;
  /* padding-bottom: 10px; */
}

.sc-pt-50 {
  /* padding-top: 50px; */
  padding-top: 0px;
  /*Update by sujay 03062025*/
}

.sc-pb-50 {
  padding-bottom: 50px;

}

.sc-pt-30 {
  padding-top: 30px;
}

.sc-pb-30 {
  padding-bottom: 30px;
}

p:not(:last-child) {
  margin-bottom: 1.4rem;
}

.slick-dotted.slick-slider {
  margin: 0;
}

/* buttons */
.button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  color: var(--black-color);
  font-size: 16px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--black-color);
}

.button img {
  margin-left: 10px;
}

.button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  border-radius: 6px;
  z-index: -2;
}

.button:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--primary-color);
  transition: all 0.3s;
  border-radius: 6px;
  z-index: -1;
}

.button:hover {
  color: var(--white-color);
}

.button:hover:before {
  width: 100%;
}

.button:focus {
  outline: 0;
  box-shadow: none;
  outline: 0;
}

.button-primary {
  color: var(--white-color);
  border-color: var(--primary-color);
}

.button-primary:after {
  background-color: var(--primary-color);
}

.button-primary:before {
  background-color: var(--secondary-color);
}

.button-primary:hover {
  border-color: var(--secondary-color);
}

.button-primary-line {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.button-primary-line:after {
  background-color: var(--white-color);
}

.button-primary-line:before {
  background-color: var(--tertiary-color);
}

.button-primary-line:hover {
  border-color: var(--tertiary-color);
}

.button-secondary {
  color: var(--white-color);
  border-color: var(--secondary-color);
}

.button-secondary:after {
  background-color: var(--secondary-color);
}

.button-secondary:before {
  background-color: var(--primary-color);
}

.button-secondary:hover {
  border-color: var(--primary-color);
}

.button-white-line {
  color: var(--white-color);
  border-color: var(--white-color);
}

.button-white-line:after {
  background-color: transparent;
}

.button-white-line:before {
  background-color: var(--tertiary-color);
}

.button-white-line:hover {
  border-color: var(--tertiary-color);
}

/* HEADER STYLE */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  background: var(--white-color);
  transition: var(--primary-transition);
  -webkit-box-shadow: 1px 6px 16px -12px rgba(0, 0, 0, 0.36);
  -moz-box-shadow: 1px 6px 16px -12px rgba(0, 0, 0, 0.36);
  box-shadow: 1px 6px 16px -12px rgba(0, 0, 0, 0.36);
}

.main-header.fixed-header {
  box-shadow: 0 3px 5px rgb(0 0 0 / 11%);
}

.main-header .logo-widget {
  width: 290px;
  padding-top: 5px;
  padding-bottom: 5px;
  transition: var(--primary-transition);
}

.main-header .logo-widget img {
  width: 100%;
  height: auto;
}

/* Main Navigation */
.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Social Links */
.social-links {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.social-links li {
  margin: 0 5px;
  padding: 0;
  list-style-type: none;
}

.social-links li a {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 2px solid var(--dark-color);
  transition: var(--primary-transition);
}

.social-links li.facebook a:hover {
  background: #2d5593;
  border-color: #2d5593;
  color: #fff;
}

.social-links li.linkedin a:hover {
  background: #0e76a8;
  border-color: #0e76a8;
  color: #fff;
}

.social-links li.twitter a:hover {
  background: #0f1419;
  border-color: #0f1419;
  color: #fff;
}

.social-links a:hover img {
  filter: brightness(0) invert(1);
}

.helpline {
  border-left: 1px solid #707070;
  padding-left: 15px;
  margin: 0 15px;
  display: flex;
  align-items: center;
}

.helpline-text h6 {
  margin: 0;
  color: var(--tertiary-color);
}

.helpline-text span {
  display: block;
  font-weight: 600;
  font-size: 10px;
}

.helpline .phone-icon {
  margin: 0 10px;
  display: inline-block;
  animation: ring 3s ease-in-out infinite;
}

.helpline-num h6 {
  margin: 0;
  color: var(--black-color);
}

.helpline-num span {
  display: block;
  font-weight: 600;
  font-size: 10px;
}

@keyframes ring {

  0%,
  100% {
    transform: translateX(0);
  }

  10% {
    transform: translateX(-5px);
  }

  20% {
    transform: translateX(5px);
  }

  30% {
    transform: translateX(-5px);
  }

  40% {
    transform: translateX(5px);
  }

  50% {
    transform: translateX(0);
  }
}

.customer-zone .customer-img {
  display: none;
}

/* Banner */

.banner {
  position: relative;
}

.search-panel-main {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
}

.search-panel {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 20px 0;
  width: 100%;
}

.search-form {
  display: flex;
  align-items: center;
  background-color: rgba(217, 217, 217, 0.75);
  border-radius: 6px;
  padding: 10px 15px;
}

.search-input {
  background-color: transparent;
  width: 272px;
  font-size: 16px;
  border: 0;
  outline: none;
}

.search-button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.search-button img {
  width: 25px;
  height: 25px;
}

.search-input:focus {
  border-color: #007BFF;
}

.banner .item {
  position: relative;
  overflow: hidden;
}

.banner .item img.banner-main {
  width: 100%;
  height: 630px;
  object-fit: cover;
}

.banner .item .cover {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.banner .item .cover .banner-content {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.banner .item .cover .banner-content .heading {
  color: var(--white-color);
  font-weight: 300;
  display: flex;
  margin-bottom: 0;
}

.banner .item .cover .banner-content .heading .play-button {
  margin-left: 25px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.play-button {
  display: inline-block;
  /* animation: rotate 3s linear infinite; */
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.play-button:hover {
  animation: none;
  transform: scale(1.1);
}

.banner .item .cover .banner-content p {
  color: var(--white-color);
  font-size: 40px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 500;
}

@-webkit-keyframes fadeInUpAnimation {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUpAnimation {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-content .heading,
.banner-content .content {
  opacity: 0;
  transform: translateY(20px);
}

.banner-content .heading.fadeInUp,
.banner-content .content.fadeInUp {
  animation: fadeInUpAnimation 0.6s ease-out forwards;
}

.banner-content .content.fadeInUp {
  animation-delay: 0.5s;
}

.banner .slick-dots {
  right: 40px;
  bottom: 40px;
  width: 100%;
  text-align: center;
  left: 0;
}

.up-dowin {
  position: absolute;
  bottom: 32px;
  right: 35px;
}

/* Pulse Animation on Hover */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
    /* Slightly enlarge the button */
  }

  100% {
    transform: scale(1);
  }
}

.svg-play-button {
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  /* Indicates clickable */
}

.svg-play-button:hover {
  animation: pulse 1s ease-in-out infinite;
  /* Pulses when hovered */
}

/* Bounce Animation */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
    /* Moves up */
  }

  60% {
    transform: translateY(-5px);
    /* Slight downward bounce */
  }
}

.svg-play-button {
  animation: bounce 2s ease infinite;
  /* Bounces continuously every 2 seconds */
  cursor: pointer;
  /* Indicates clickable */
}

.about-sec h2 {
  color: var(--tertiary-color);
}

.about-sec .row {
  align-items: center;
}

.about-list {
  padding: 0;
  margin: -113px 0 0 0;
  list-style-type: none;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.38);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.38);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.38);
  position: relative;
  z-index: 1;
  border-radius: 6px;
  overflow: hidden;
}

.about-list li {
  display: flex;
  align-items: center;
}

.about-list li .lefa-img {
  width: 110px;
  height: 110px;
  border-right: 1px solid #d0dfeb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-list li .lefa-con {
  height: 10%;
  padding-left: 25px;
  flex: 1;
}

.about-list h3,
.about-list p {
  margin: 0;
}

.about-list li:first-child {
  background-color: #d8ebff;
}

.about-list li:nth-child(2) {
  background-color: #deefff;
}

.about-list li:nth-child(3) {
  background-color: #e9f5ff;
}

.about-list li:last-child {
  background-color: #f8fbff;
}

.about-con {
  padding-left: 30px;
}

/* Business */
.business-sec {
  background-color: #f7f7f7;
}

.heading-top {
  margin-bottom: 25px;
}

.business-sec .heading-top h2 {
  color: var(--tertiary-color);
}

.business-card {
  padding: 25px;
  position: relative;
  height: 175px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  overflow: hidden;
  justify-content: space-between;
  border: 1px solid #8c9aa8;
}

.business-card h3 {
  margin: 0;
  color: #333;
  font-weight: 400;
}

.business-card img {
  max-width: 70px;
}

.circle {
  position: absolute;
  width: 150px;
  height: 150px;
  background-color: rgba(100, 149, 237, 0.2);
  border-radius: 50%;
  bottom: -57px;
  right: -28px;
  transform: scale(1);
  opacity: 0.8;
  transition: transform 0.6s ease, opacity 0.6s ease;
}


.business-card:hover .circle {
  transform: scale(5.3);
  opacity: 0.8;
}


.business-card .circle {
  transform: scale(1);
  opacity: 0.8;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.year-sec {
  background: url(../images/yearbg.jpg) no-repeat 0 0;
  background-size: cover;
}

.year-sec .row {
  margin: 0;
}

.year-sec .col-md-4 {
  padding-left: 0;
  padding-right: 0;
}

.year-sec h2 {
  color: var(--white-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.year-card {
  padding: 15px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
  animation: float 4s infinite ease-in-out;
  /* Subtle floating effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Smooth hover effect */
}

.year-card.card-1 {
  /* background-color: #1668b1; */
  background-color: #6FA287;
}

.year-card.card-2 {
  /* background-color: #083862; */
  background-color: #ADDC91;

}

.year-card.card-3 {
  /* background-color: #01213d; */
  background-color: #6FA287;

}

.year-card p {
  font-size: 22px;
  color: var(--white-color);
  margin: 0;
}

.year-card img {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0px);
  }
}

.year-card:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px #00000033;
}

.year-card:hover img {
  transform: translateX(5px);
}

/* YOUR POWER OUR PRIORITY */
.power-section .heading-top h2 {
  color: var(--tertiary-color);
}

.power-section .slick-track {
  display: flex !important;
}

.power-section .slick-slide {
  display: flex;
  height: auto;
  margin: 0 20px;
}

.power-section .slick-list {
  margin: 0 -20px;
}

.testimonial-item {
  position: relative;
  transition: var(--primary-transition);
  /*text-align: justify; /*update by sujay 12052025*/
}

.testimonial-item figure {
  margin: 0;
  position: absolute;
  right: 20px;
  width: 22px;
    /* width: 55px; */
  height: 40px;
  top: 34px;
  transition: var(--primary-transition);
}

.testimonial-item .testimonial-card {
  /* margin: 55px auto 20px auto;
  transition: var(--primary-transition); */
  margin: 0px auto 0px auto;
  transition: var(--primary-transition);
}

.testimonial-item .testimonial-card-inner {
  padding: 40px 30px 30px 30px;
  border-radius: 6px;
  background-color: #f3faff;
  height: 100%;
  transition: var(--primary-transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.testimonial-item .testimonial-card blockquote {
  color: var(--black-color);
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-item .testimonial-card cite {
  display: inline-block;
  margin-top: 15px;
  padding-top: 15px;
  font-size: 16px;
  color: var(--dark-color);
  border-top: 1px solid var(--primary-color);
}

.testimonial-item:hover figure {
  right: 30px;
}

.testimonial-item:hover .testimonial-card-inner {
  padding-top: 50px;
  padding-bottom: 20px;

}

.inovaion-section {
  background: url(../images/inobation-bg.jpg) no-repeat 0 0;
  background-size: cover;
  height: 400px; /*update by sujay 05062025*/
}

.inovaion-section .slick-slide {
  margin: 0 20px;
}

.inovaion-section .slick-list {
  margin: 0 -20px;
}

.inovaion-section .heading-top h2,
.inovaion-section .heading-top p {
  color: var(--white-color);
}

.inovaion-card {
  background-color: #122436;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: flex;
  overflow: hidden;
  align-items: center;
  padding: 10px;
}

.inovaion-card .inovaion-card-img {
  width: 270px;
  height: 240px;
  overflow: hidden;
}

.inovaion-card .inovaion-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--primary-transition);
}

.inovaion-card .inovaion-card-content {
  flex: 1;
  padding: 20px;
}

.inovaion-card .inovaion-card-title {
  margin-bottom: 5px;
  color: var(--white-color);
  font-weight: bold;
  font-size: 16px;
}

.inovaion-card .button {
  margin-top: 15px;
  display: inline-flex;
}

.inovaion-card:hover .inovaion-card-img img {
  transform: scale(1.1);
}

/* Footer */
.footer-socika {
  padding-top: 25px;
  padding-bottom: 25px;
  background: rgb(4, 85, 156);
  background: linear-gradient(90deg,
      rgba(4, 85, 156, 1) 0%,
      rgba(171, 0, 7, 1) 100%);
}

.footer-socika ul {
  justify-content: center;
}

.footer-socika ul li {
  border: 1px solid var(--white-color);
  border-radius: 4px;
}

.footer-socika ul li img {
  filter: brightness(0) invert(1);
}

.social-links li.twitter a:hover,
.footer-socika ul li a:hover {
  background-color: var(--secondary-color);
}

.social-links li.twitter a:hover img,
.footer-socika ul li a:hover img {
  filter: brightness(0) invert(0);
}

.footer {
  background-color: #f8fbff;
  font-size: 13px;
}

.footer h4,
.footer h5 {
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--tertiary-color);
}

.footer-top .footer-link-content {
  padding: 25px;
  border-radius: 6px;
  background-color: var(--white-color);
  border: 1px solid #707070;
}

.footer-top .footer-link-content .con {
  margin-top: 25px;
}

.footer p {
  color: var(--black-color);
  margin: 0 0 5px 0;
}

.footer a {
  color: #191919;
}

.footer a:hover {
  color: var(--tertiary-color);
}

.footer img {
  margin-top: 50px;
  width: 100%;
  height: auto;
}

.footer .footer-bottom {
  background-color: #2a3846;
  padding: 20px 0 10px 0;
  margin-top: 50px;
  font-size: 11px;
  text-align: center;
}

.footer .footer-bottom p,
.footer .footer-bottom a {
  color: var(--light-color);
}