body {
  font-family: 'Poppins', Arial, sans-serif;
}
/* NAVBAR */
.navbar .nav-link {
  font-weight: 500;
  color: #333;
  padding: 0px 15px !important;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #2b1d5c;
}
.navbar-toggler-icon {
  width: 1.2em !important;
  height: 1.2em !important;
}

.btn-primary {
  background-color: #2b1d5c;
  border: none;
}
.btn-primary:hover {
  background-color: #1f1446;
}
.logo-img{
        height: 40px;
}

@media (max-width: 991px) {
  .navbar .nav-link {
    padding: 8px 15px !important;
            border-bottom: 1px solid;
}
.btn-primary {
   
    margin-top: 15px;
    margin-bottom: 10px;
}
}

.hero {
  background: url("../images/landing-page.webp") center center / cover no-repeat;
  padding: 11rem 0 7rem 0;
}

.banner-text {
  display: inline-block;   /* content jitka titkach size */
  background: #ffffffd6;
  color: #2E2E2E;
  box-shadow: 0px 0px 14px 0px #C2C2C240;
  padding: 20px 20px 20px 55px;
  position: relative;
  border-radius: 4px;
  max-width: 100%;   /* responsive safety */
}
/* Red vertical line */
.banner-text::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 20px;
  height: calc(100% - 45px);
  width: 8px;
  background-color: #e30613; /* red line */
  border-radius: 10px;
}
.hero h1 {
  font-family: Poppins;
  font-weight:600;
  font-size: 44px;
  margin-bottom: 10px;
}
.para {
 font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.7;
    padding-bottom: .8rem;
}
.info-card-why-choose {
  background: #fff;
  border-radius: 12px;
  padding: 15px 15px 0px 15px;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  height:100%;
}
.service-card {
  position: relative;
  padding: 20px;
  border-radius: 16px;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
      gap: 10px;
}

.service-card h6 {
  font-weight: 600;
  
}

.service-card p {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.service-card .arrow {
  width: 28px;
  height: 28px;
}

.service-card .icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 45px;
  opacity: 0.8;
}

/* Background colors */
.green { background: #e9fff6; color: #009966; }
.yellow { background: #fff5d9; color: #e0a800; }
.orange { background: #fff1e6; color: #ff7a00; }
.blue { background: #eaf0ff; color: #2f5bea; }
.purple { background: #f4ecff; color: #8a3ffc; }
.lightblue { background: #eef1ff; color: #3f51b5; }
.greenlight { background: #ecffea; color: #2e7d32; }
.sky { background: #eaf7ff; color: #0288d1; }


.services-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.4fr 1.4fr 1.6fr;
  gap: 24px;
  align-items: stretch; /* ⭐ KEY */
}

/* CTA */
.cta {
 background: url("../images/TR_2.webp") center center / cover no-repeat;
  color: #fff;
  padding: 70px 0;
}

.ttl{
font-weight: 600;
font-size: 26px;
color: #000000;
}
a.btn.btn-outline-light {
    padding: 10px 20px;
}
/* Tabs */
.tabs {
  /*display: flex;*/
  gap: 15px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
  box-shadow: 0px 5px 9.8px 0px #EEEEEE;
}
.tab {
  background: none;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 400;
  color: #555;
  position: relative;
}
.tab.active {
  color: #1f1446;
  font-weight: 600;
  background: linear-gradient(0deg, #FFFFFF 7.61%, #CADDFF 100%); 
}
.tab.active::after {
  content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1f1446;
    top: -1px;
}
/* Cards Grid */
.cards-grid {
  display: grid;
grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.Market-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

.Market-card h4 {
  font-size: 17px;
  /*margin: 8px 0;*/
}

.Market-card span {
  font-size: 12px;
  color: #777;
}

.Market-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}
#logo-ticker {
  background: #fff;
  padding: 40px 0;
  overflow: hidden;
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.logo {
  flex: 0 0 auto;
  padding: 0 30px;
   /*box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);*/
}

.logo img {
  display: block;
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

 /*Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Pause on hover */
#logo-ticker:hover .logo-track {
  animation-play-state: paused;
}
.Testimonial-card{
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
border-radius: 8px;
padding: 24px;
height:100%;

}
.Testimonial-card h4{
     font-size: 17px;   
}
.Testimonial-card span{
        font-size: 14px;
      color:#0F297A;
}
.info-card-why-choose h4{
    font-size: 18px;
    margin-bottom: 0;
    margin-left: 10px;
} 
.info-card-why-choose img{
    width: 14%;
}
.info-card-why-choose p{
    font-size: 15px;
       margin-top:  10px;
        margin-bottom: 0;
} 
.ptb {
  padding: 3rem 0rem;
}
/* Tablet */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  button.tab {
      width:100%;
              border-bottom: 1px solid;
}
 
}

/* Mobile */
@media (max-width: 575px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .hero {
    padding: 8rem 0 2rem 0;
  }
  .hero h1 {
    font-size: 28px;
}
.ptb {
  padding: 1rem 0rem;
}
.ttl {
    
    font-size: 22px;
}
.para {
    font-size: 0.9rem;
   line-height: 1.5;
}
.logo-img{
        height: 45px;
}
}

.contact-form {
    box-shadow: 0px 0px 14px 0px #B0B0B040;
    padding: 30px;
}


.contact-cardq {
    box-shadow: 0px 0px 14px 0px #B5D6FF69;
    padding: 10px;
    border-top: 4px solid #0F297A;
    font-size: 15px;
}

.pt-10{
       padding-top: 5rem;
}
.title-contact {
    font-weight: 400;
    font-size: 20px;
    color: #0F297A;
}


.container-fluid{
         --bs-gutter-x: 0rem;
}
























/*footer*/
.site-footer {
  background: #2a255a;
  color: #fff;
  padding: 60px 0 20px;
  font-size: 14px;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 15px;
}

.footer-text {
  line-height: 1.6;
  opacity: 0.9;
margin-right: 20px;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 8px;
  opacity: 0.9;
}

.footer-list a {
  color: #fff;
  text-decoration: none;
}

.footer-list a:hover {
  text-decoration: underline;
}

.partner-logos img {
  max-width: 100px;
  margin-bottom: 10px;
  display: block;
  background: #fff;
  padding: 6px;
  border-radius: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

.social-icons a {
  margin-left: 10px;
}

.social-icons img {
  width: 25px;
  height: 25px;
}
p.footer-down {
    margin-top: 6px;
}
.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-link:hover {
  text-decoration: none;
}
.Market-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
