html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000;
}

a:active,
a:hover {
  outline: 0;
}

a {
  color: #898989;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

a:hover {
  color: #ee7f22;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

input:focus-visible {
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  list-style: none;
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1c1c1c;
  line-height: normal;
  font-weight: 600;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 26px;
}

h6 {
  font-size: 24px;
}

p {
  font-size: 16px;
  color: #898989;
  line-height: normal;
}

.banyan-btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #ee7f21;
  border-color: transparent;
  color: #ffffff;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  height: 60px;
  line-height: 56px;
  padding: 0px 50px;
  border: 1px solid #fff;
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
}

.banyan-btn:hover {
  color: #ee7f21;
  border: 1px solid #ee7f21;
}

.banyan-btn:hover::after {
  transform: skewX(45deg) scale(1, 1);
}

.banyan-btn::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: #ffffff;
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.scrolltop {
  display: none;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 10;
}

.scroll {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: #fff;
  background: rgb(238 127 33);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 30px;
  padding: 10px 15px;
  text-align: center;
  margin: 0 0 0 0;
  cursor: pointer;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
}

.scroll:hover {
  background: #727271;
  color: #fff;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
}

.scroll:hover .fa {
  padding-top: -10px;
}

.scroll .fa {
  font-size: 25px;
  margin-top: 0px;
  margin-left: 0px;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
}


.header-row-1 {
  padding: 10px 0;
  background: #f1fbff;
}


.header-logo {
  width: 180px;
  margin: auto;
}

.header-logo img {
  width: 100%;
}

.hr1-right.text-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-gap: 30px;
  height: 100%;
}

.header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
}

.header-btn-icon {
  width: 40px;
}

.header-btn-icon img {
  width: 100%;
}

.header-btn-text {
  text-align: left;
}

.header-btn-text span {
  font-size: 15px;
  color: #3081a1;
  font-weight: 500;
}

.header-btn-text a {
  display: block;
  color: #1c1c1c;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.header-cta-section .inner-cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

label {
    color: #ffffff;
}

.cta-text {
  font-size: 25px;
  font-weight: bold;
  color: #0c4b5d;
  animation: textSlide 4s linear infinite;
}

@keyframes textSlide {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.cta-button {
  background-color: #207991;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: bounce 2s infinite;
}

.cta-button:hover {
  background-color: #0c4b5d;
  transform: scale(1.05);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 600px) {
  .cta-section {
    flex-direction: column;
    text-align: center;
  }

  .cta-button {
    margin-top: 15px;
  }
}


.contact-form-section {
  background-color: #eeeeee;
}

.contact-form-title h4 {
  font-size: 30px;
  font-weight: 800;
  color: #714A94;
  margin-bottom: 0px;
  line-height: 50px;
  text-transform: uppercase;
}

.contact-form-title p {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 400;
}


.contact-form-left .form-control {
  display: block;
  width: 100%;
  border: 1px solid #0c4b5d;
  min-height: 50px;
  padding: 10px 20px;
  background-color: #ffffff;
  border-radius: 5px;
  outline: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.contact-form-left .form-control:focus {
  background-color: #fff;
  border-color: #eeeeee;
  border: 1px solid #0c4b5d;
  box-shadow: none;
}

.contact-form-left .form-error {
  color: red;
  font-size: 14px;
}

.banner-left-form.contact-form-left {
  padding: 40px;
  background: #3081a1;
  border-radius: 10px;
}

button.btn.cta-button.white {
  background-color: #f26b41;
  color: white;
}

.showcase {
  position: relative;
  width: 100%;
}

.video-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#unmuteButton {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}


.banner-right-video {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.banner-right-video::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff6b6b, #3081a1, #0a576f, #0a576f);
  border-radius: 22px;
  z-index: -1;
  animation: borderGlow 3s ease-in-out infinite alternate;
}

video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}


.article-row-1 {
  background: url(../images/banner-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}


/* About Section */
.about {
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #3081a1;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #3081a1, #0a576f, #0a576f);
  border-radius: 2px;
}

h2.section-title.text-left::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  transform: unset;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #3081a1, #0a576f, #0a576f);
  border-radius: 2px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 16px;
  line-height: 26px;
}


.feature-box {
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-top: 4px solid #3081a1;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-box .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #3081a1;
}

.feature-box h3 {
  color: #3081a1;
  margin-bottom: 1rem;
  font-size: 20px;
  font-weight: 600;
}



/* Services Section */
.services {
  padding: 80px 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-category {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #3081a1;
}

.service-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-category h3 {
  color: #3081a1;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-category .icon {
  font-size: 1.8rem;
  color: #3081a1;
}

.service-list {
  list-style: none;
}

.service-list li {
  padding: 0.5rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
  transition: color 0.3s ease;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3081a1;
  font-weight: bold;
}

.service-list li:hover {
  color: #3081a1;
}

.free-trial {
  background: linear-gradient(45deg, #3081a1, #44a08d);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 0.5rem;
}



/* Why Choose Us Section */
.why-choose {
  padding: 80px 0;
  background: linear-gradient(135deg, #3081a1 0%, #0a576f 100%);
  color: white;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.advantage-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.advantage-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #4ecdc4;
}

.advantage-card h3 {
  color: white;
  font-size: 22px;
  font-weight: 800;
}

.advantage-card p {
  opacity: 0.8;
  line-height: 1.6;
  color: #fff;
}

.about-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}




/* Testimonial */
.testimonial-box .testimonial-box--inner {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.testimonial-box .testimonial-box--image {
  position: absolute;
  z-index: 1;
  left: 60px;
  top: 50px;
  transform: translateY(-50%);
  border: 4px solid rgba(0, 38, 95, .1);
  border-radius: 100%;
}

.testimonial-box .testimonial-box--image img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 100%;
  transition: all 0.5s ease-in-out;
}

.testimonial-box .testimonial-box--inner .testimonial-box--icon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  font-size: 25px;
  font-weight: 700;
  color: #0a576f;
}

.testimonial-box .testimonial-box--inner .testimonial-box--holder {
  position: relative;
  padding: 120px 30px 40px 40px;
  width: 100%;
  background-color: #FFFFFF;
  border-bottom: 8px solid #3081a1;
  border-radius: 15px;
  transition: all 0.5s ease-in-out;
  box-shadow: 0px 15px 25px 0px rgba(0, 0, 0, 0.07);
}

.testimonial-box .testimonial-box--inner .testimonial-box--designation {
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 0px;
  color: #f26b41;
}

.testimonial-box .testimonial-box--inner .testimonial-box--title {
  color: #3081a1;
  margin-bottom: 5px;
}


.testimonial-box .testimonial-box--inner .testimonial-box--description {
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  line-height: 27px;
  margin-bottom: 14px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;

}

.testimonial-box .testimonial-box--inner .testimonial-box--meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.testimonial-box .testimonial-box--inner .testimonial-box--meta-right {
  color: #FFFFFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  padding: 5px 15px;
  border-radius: 6px;
  background-color: #efc322;
  flex-shrink: 0;
}

.testimonial-inner {
  padding-top: 50px;
}


.dark {
  background: linear-gradient(135deg, #3081a1 0%, #0a576f 100%);
}

.dark .cta-text {
  color: #fff;
  background: transparent;
  -webkit-text-fill-color: rgba(255, 255, 255)
}



/* Contact Section */
.contact {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.contact-item .icon {
  font-size: 1.5rem;
  color: #4ecdc4;
  min-width: 30px;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2c5aa0;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4ecdc4;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}


@media only screen and (max-width: 767px) {
  .hr1-right.text-right.mobile-none {
    display: none;
  }

  .hr1-left.text-left {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-cta-section .inner-cta-section {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .section-title {
    text-align: center;
    font-size: 28px;
  }
  
  .contact-item .icon {
    display: none;
}
}