@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

a{

  text-decoration: none;
   color: #1C1632;
}

/************************** SHORTCUT CLASSES *****************************/
.recent{
  padding: 30px 0;
}
.headin_1h3 {
  font-size: 24px;
  color: #101F9D;
  margin-bottom: 26px;
}
.hr-img-right{
  margin-left: 13px;
    width: 46px;
    transform: scaleX(-1);
}
.hr-img-left{
  margin-right: 16px;
  width: 46px;
}
h2{
  color: #1C1632;
  font-size: 35px;
  margin-top: 10px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

/*************************************** FIRST NAVIGATION BAR ********************************/
nav{
    background-color: #101F9D;
    color: #fff;
}
nav hr{
    width: 2px;
    height: 34px;
    border: none;
    background-color: #1ABDFE;
    margin: 0 20px;
}
.navbar{
    display: flex;
    padding: 15px 0;
    align-items: center;
    justify-content: space-between;
    width: 92%;
    margin: auto;
}
.nav-left, .nav-right{
    display: flex;
    gap: 9px;
}
nav p{
    font-size: 14px;
}
nav img{
    height: 18px;
    width: 18px;
    object-fit: contain;
}
.navbar-left{
    display: flex;
    align-items: center;
}
#lang{
    border: none;
    background-color: transparent;
    color: #fff;
    font-size: 15px;
}
.navbar-right{
    display: flex;
}
.fa-brands{
    color: white;
    background-color: transparent;
}
.nav-links a:hover{
    opacity: 0;
    transition: 0.6s;
}
.nav-links{
    display: flex;
    gap: 15px;
    align-items: center;
}
.nav-links img{
    height: 16px;
    width: 14px;
}



/************************************** navbar logo div **************************/
/* navbar */
.logo-div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    border: 1px solid grey;
    border-radius: 50px;
    width: 95%;
    position: absolute;
    z-index: 10;
    bottom: 76%;
    background: #fff;
    left: 2.5%;
}
.navv-logo img{
  width: 60px;
  height: 60px;
}
.navv-menu{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.navv-menu a{
    text-decoration: none;
    color: #000;
    font-size: 18px;
}
.navv-menu a:active{
    color: #101F9D;
}
.dropdown-menu{
    display: none;
}
.navv-button button{
    background: linear-gradient(90deg, #101F9D 0%, #1ABDFE 132.55%);
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
}
.hamburger{
    color: black;
    font-size: 24px;
    cursor: pointer;
    display: none;
}
.dropdown-menu a{
    display: block;
}
.dropdown-link{
        position: relative;
    }
    .dropdown-menu {
        position: absolute;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        padding: 20px;
        border-radius: 10px;
        background: #fff;
        width: max-content;
        top: 45px;
    }
    .dropdown-link.active .dropdown-menu {
        display: block;
    }
@media(min-width:1024px){
}
@media (max-width: 1023px) {
    .navv-menu{
        display: none;
        flex-direction: column;
        gap: 15px;
        width: 95%;
        margin-top: 15px;
    }
    .navv-menu.active{
        display: flex;
        background-color: #fff;
        flex-direction: column;
        position: absolute;
        width: 95%;
        top: 90%;
        right: 3%;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
    }
    .navv-logo img{
      width: 70px;
      height: 70px;
    }
    .hamburger{
        display: block;
        font-size: 24px;
        margin-left: 0;
    }
    .navv-button button{
        display: none;
    }
    .dropdown-menu {
        position: static;
        padding-left: 15px;
        /* width: 900px; */
    }
    .dropdown-link.active .dropdown-menu {
        display: flex;
        flex-direction: column;
        width: 500px;
        border: none;
        box-shadow: none;
    }
    .logo-div{
      border-radius: 1px;
    width: 100%;
    top: 0;
    left: 0;
    height: 20vh;
    }
}
@media(max-width:768px){
.dropdown-link.active .dropdown-menu {
        width: 310px;
    }
    .navv-menu a {
      font-size: 17px;
    }
  }
  @media(max-width:555px){
    .dropdown-link.active .dropdown-menu {
        width: 270px;
    }
    .navv-menu a {
      font-size: 16px;
    }
  }
@media (max-width:430px){
    .navv-logo img{
      width: 50px;
      height: 50px;
    }
    .logo-div{
      height: 15vh;
    }
}
@media(max-width:310px){
  .solution-card > div {
    width: 250px;
    height: 175px;
  }
}


/* MAIN BANNER SECTION */
.back1 {
    min-height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)),
    
        url("/assets/images/Solar\ panels-bg.png");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 26px 0;
}
.banner-content {
    margin-left: 4%;
    margin-top: 130px;
    width: 70%;
}
.banner-content h1 {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.banner-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #fff;
}

/* BUTTONS */
.banner-buttons {
    display: flex;
    gap: 15px;
}
.btn {
    padding: 15px 23px;
    border-radius: 7px;
    border: 1px solid #0033cc;
    cursor: pointer;
    font-size: 16px;
}
.primary-btn {
    background: #0033cc;
    color: #fff;
}
.secondary-btn {
    background: transparent;
    border: 1px solid grey;
    color: #fff;
}
.banner-section .owl-carousel button.owl-dot{
  background-color: #fff;
  height: 10px;
  width: 10px;
  border-radius: 50%;
}
.banner-section .owl-carousel .owl-dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: 10px;
}
.banner-section .owl-carousel .owl-dots .active{
  background-color: #0D6EFD;
}




/*********************************** ABOUT SECTION *************************/
.about-section {
  background-color: #f7f9ff;
}
.about-container {
  width: 88%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.about-image-box {
  width: 50%;
}
.about-image-box img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.about-image-box {
  width: 50%;
  position: relative;   
}
.about-content-box {
  width: 50%;
}
.about-label {
  font-size: 24px;
  font-weight: 600;
  color: #101F9D;
}
.about-content-box p {
  font-size: 18px;
  line-height: 1.7;
  color: #434141;
  margin-bottom: 10px;
}

/* LIST */
.about-features {
  list-style: none;
  margin: 15px 0;
}
.about-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #434141;
}
.about-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0033cc;
}
.image-overlay-box{
    border-radius: 13px;
    border: none;
    width: fit-content;
    background-color: #fff;
    padding: 30px;
    text-align: center;
    position: absolute;
    bottom: -22px;
    right: -18px;
    box-shadow: 0px 8px 10px -6px #0000001A;
    box-shadow: 0px 20px 25px -5px #0000001A;

}
.image-overlay-box h3{
  font-size: 35px;
  color: #155DFC;
}
.image-overlay-box p{
  font-size: 14px;
  color: #45556C;
}
/* BUTTON */
.about-btn {
  background: linear-gradient(90deg, #101F9D 0%, #1ABDFE 132.55%);
  color: #fff;
  border: none;
  padding: 16px 26px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}


/******************************SLIDER SECTION **********************8*/
.testimonial-section {
  background-color: #ffffff;
  text-align: center;
}
 .testimonial-container {
  width: 70%;
  margin: auto;
}
.testimonial-heading h4 {
  font-size: 18px;
  color: #0033cc;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.testimonial-heading h4::before,
.testimonial-heading h4::after {
  content: "";
  position: absolute;
  top: 62%;
  width: 40px;
  height: 2px;
  background-color: #0033cc;
}
.testimonial-heading h4::before {
  left: -50px;
}
.testimonial-heading h4::after {
  right: -50px;
}
.testimonial-heading p {
  font-size: 20px;
  color: #1C1632;
  margin-bottom: 23px;
  font-weight: 700;
}
.client-image-box {
  margin-bottom: 30px;
}
.client-image-box img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0px 5px 15px 0px #007BFF33;
}
.testimonial-text p {
  font-size: 20px;
  line-height: 26px;
  color: #555555;
  margin-bottom: 15px;
}
.testimonial-text h5 {
  font-size: 20px;
  color: #0D6EFD;
  font-weight: 700;
} 

.testimonial-section .slider_adjust{
  width: 75%;
  margin: auto;
}
 .testimonial-section .owl-carousel .owl-item img {
    display: inline!important;
    width: 9%!important;
} 
.testimonial-section .owl-carousel .client-image-box img {
  width: 180px !important;
}
 .testimonial-section .owl-carousel .owl-nav button.owl-prev{
  align-items: center;
    display: flex;
    font-size: 38px;
    justify-content: center;
    position: absolute;
    left: -100px;
    top: 50%;
    width: 32px;
    height: 32px;
    background-color: #0D6EFD;
    border-radius: 50%;
    color: #fff;
}
.testimonial-section .owl-carousel .owl-nav button.owl-next{
  align-items: center;
    display: flex;
    font-size: 38px;
    justify-content: center;
    position: absolute;
    right: -100px;
    top: 50%;
    width: 32px;
    height: 32px;
    background-color: #0D6EFD;
    border-radius: 50%;
    color: #fff;
}

/********************************* SOLAR ENERGY ****************************/
.services-wrapper {
  /* padding: 40px 0; */
  background-color: #F2F2F2;
  padding-bottom: 100px;
}
.services-heading {
  text-align: center;
  margin-bottom: 2%;
  padding-top: 2%;
}
.services-cards {
  width: 88%;
  margin: auto;
  display: flex;
  gap: 50px;
}
.service-card {
  flex: 1;
  height: 320px;
  position: relative;
  background-size: cover;
  background-position: center;
  z-index: 1;
          border: 1px solid #0000003b;
        border-radius: 8px;
}
/* background image */
.service-bg-1 {
  background-image: url("/assets/images/solar\ img-1.png");
}
.service-bg-2 {
  background-image: url("/assets/images/solar\ img-2.png");
}
.service-bg-3 {
  background-image: url("/assets/images/solar\ img-3.png");
}
.service-overlay {
  position: absolute;
  z-index: 5;
  top: 55%;
  right: 29px;
  width: 86%;
  background: linear-gradient(90deg, #101F9D 0%, #1ABDFE 100%);
  padding: 0px 20px 25px;
  color: #fff;
}
.service-icon-box {
  background: #fff;
  width: 80px;
  height: 85px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon-box img {
  width: 38px;
}
.service-overlay h3 {
  font-size: 25px;
  margin-bottom: 8px;
}
.service-overlay a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}

/********************************* What Makes RK Solar Energy the Right Choice? *************************/
.why-choose-wrapper {
  background-color: #f8faff;
}
.why-choose-container {
  width: 88%;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}
.why-choose-content h2{
  margin-bottom: 2%;
}
.why-choose-content {
  width: 80%;
}
.why-heading {
  font-size: 32px;
  margin-bottom: 30px;
  margin-top: 2%;
  color: #1D3557;
}
.why-card {
  display: flex;
  gap: 15px;
  background: #ffffff;
  padding: 18px 40px 18px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0px 4px 12px 0px #00000014;
}
.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon img {
  width: 40px;
}
.why-text h4 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #101F9D;
}
.why-text p {
  font-size: 16px;
  line-height: 1.4;
  color: #6C757D;
}
.why-video-box {
  width: 45%;
  height: 100vh;
}
.why-video-box video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  height: 80%;
  margin-top: 80px;
}

/********************************** ENVIRNMENT ****************************8*/
.environment-wrapper {
  background-color: #fbfdff;
}
.environment-heading {
  text-align: center;
  margin-bottom: 40px;
}
.env-small-heading {
  font-size: 14px;
  color: #0033cc;
  font-weight: 600;
  margin-bottom: 8px;
}
.environment-content {
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.environment-column {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.environment-item {
  text-align: center;
}
.environment-item img {
  width: 165px;
  margin-bottom: 15px;
}
.environment-item h3 {
  font-size: 42px;
  font-weight: 700;
  color: #434141;
  margin-bottom: 6px;
}
.environment-item p {
  font-size: 24px;
  color: #434141;
  font-weight: 500;
}

/************************** GALLERY *************************/

.gallery-section{
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  background-color: #F0F8FF;
}
.galleryy{
  display: flex;
  gap: 20px;
}
.gall-img{
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  height: 240px;
  box-shadow: 0px 4px 15px 0px #007BFF33;

}
.gall-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-content{
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin: auto;
}


/*************************** RECENT PROJECT DIV ****************************/

.iconimg{
  width: 24px;
}
.projectimg{
  width: 100%;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}
.loc{
    align-items: center;
    display: flex;
    gap: 10px;
    margin-top: 11px;
}
.project{
  border-radius: 14px;
  background-color: #FFFFFF;
  width: 25%;
  box-shadow: 1px 6px 13px 1px #00000059;
  border: 1px solid #E2E8F0;
}
.project-content{
  display: flex;
  gap: 20px;
  width: 92%;
  margin: auto;
  margin-top: -25px;
}
.conntent{
  padding: 20px;
}
.conntent h4{
  font-size: 18px;
  color: #0F172B;
}
.syatemm{
  font-size: 14px;
  color: #45556C;
}
.system{
  color: #155DFC;
  font-weight: 600;
  margin-top: 40px;
}

/**************************** Latest Update ***************************/
.blog-wrapper {
  width: 92%;
  margin: auto;
  display: flex;
  gap: 18px;
}
.blog-card {
  border: 1px solid #a2a6cd;
  flex: 1;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}
.blog-img img {
  width: 100%;
  height: 322px;
  object-fit: cover;
  display: block;
}
.blog-content {
  padding: 20px;
}
.blog-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}
.blog-meta span{
  font-size: 16px;
  color: #1C1632;
}

.blog-content h3 {
  font-size: 20px;
  color: #1C1632;
  font-weight: 550;
  margin-bottom: 10px;
}
.blog-content a + a{
  border: 1px solid #0000004f;
    border-radius: 5px;
    text-decoration: none;
    padding: 3px 7px;
    color: #000;
    font-size: 14px;
    margin-top: 10px;
    display: block;
    width: fit-content;
}

/******************************** EXCLUSIVE SECTION *******************************/
.exclusive{
  background: linear-gradient(90deg, #001BFF 0%, #101F9D 100%);
  padding: 50px 10px;
}
.exclusive-main{
  text-align: center;
  margin: auto;
}
.exclusive-main h4{
  font-size: 45px;
  color: #fff;
}
.exclusive-main p{
  font-size: 20px;
  margin-top: 25px;
  color: #FFF7ED;
}
.exclusive-main button{
  font-size: 21px;
  color: #101F9D;
  font-weight: 600;
  padding: 15px 25px;
  border-radius: 9px;
  border: none;
  background-color: #fff;
  box-shadow: 0px 8.08px 10.11px -6.06px #0000001A;
  box-shadow: 0px 20.21px 25.26px -5.05px #0000001A;
  margin-top: 25px;

}


/**************************** SOLAR SOLUTION ***************************/
.solution-main{
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  justify-content: space-around;
  margin-bottom: 20px;
  row-gap: 20px;
}
.solution{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solution .about-btn{
  margin-top: 10px;
  display: block;
  width: fit-content;
  padding: 10px 15px;
}

.sol-icon img{
  height: 40px;
  width: 40px;
}
.solution-card > div{
  width: 290px;
  height: 210px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.solution-card > div:first-child img{
  width: 100%;
  height: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.sol-icon{
  background-color: #F9FAFB;
  padding: 20px;
}
.sol-icon h4{
  font-size: 19px;
  margin: 10px 0;
}

/****************8 FEEDBACK SECTION *******************/
.feedback-card {
    width: 250px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .stars {
    color: gold;
    margin-bottom: 10px;
    font-size: 18px;
  }

.user{
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.feedback_cards{
  /* width: 95%; */
}
  .user img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
  }
   .feedback-text {
    font-size: 14px;
    margin-bottom: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
.feedback-text.expanded {
    -webkit-line-clamp: unset;
  }

  .read-more {
    color: #1a73e8;
    cursor: pointer;
    font-size: 14px;
    /* user-select: none; */
  }
   .user-info {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-top: 12px;
  }

  .user-info img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-right: 8px;
  }
  .feedback_cards .feedback-card {
  margin: 10px;
}
.owl-carousel .owl-item img {
    display: block;
    width: 10% !important;
}

/************************************* FOOTER ******************************8*/
.footer{
  background-color: #101F9D;
  padding: 40px 0;
}
.footer-main{
  display: flex;
  gap: 20px;
  width: 90%;
  margin: auto;
}
.footer-main h5{
  font-size: 22px;
  color: #E2E2E2;
  margin-bottom: 20px;
}
.energy{
  width: 35%;
}
.energy h4{
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 11px;
}
.footer-main p{
  color: #E2E2E2;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 10px;
}
.num{
  display: flex;
  gap: 12px;
  align-items: center;
}
.num img{
  width: 22px;
    margin-top: -17px;
}
.quick{
  width: 15%;
}
.offerr{
  width: 20%;
}
.touch{
  width: 30%;
}
.footer-2{
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.footer a{
  color: #1ABDFE;
  font-size: 18px;
}
.footer p{
  color: #E2E2E2;
  font-size: 18px;
}
.footer-links{
  display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a{
  text-decoration: none;
    color: #fff;
}
.call-num a{
  color: #fff;
  text-decoration: none;
}
.touch h5{
  margin-bottom: 27px;
}
.common-banner h1{
  text-align: center;
}

.anchor-tag{
  padding: 2% 4%;
  background-color: #101F9D;
  color: #fff;
  border-radius: 5px;
}

/* ================= SOLUTION NEW ================= */

.solution_new {
  padding: 60px 0;
}

.solution_new__container {
  width: 90%;
  margin: auto;
  text-align: center;
}

/* layout */
.solution_new__main {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* card */
.solution_new__card {
  width: 320px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

/* image */
.solution_new__card .solution_new__image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* content */
.solution_new__card .solution_new__content {
  padding: 22px;
  background: #ffffff;
  transition: all 0.4s ease;
}

.solution_new__card .solution_new__content img {
  width: 42px;
  margin-bottom: 10px;
}

.solution_new__card .solution_new__content h4 {
  font-size: 20px;
  margin: 8px 0;
  color: #111;
  transition: color 0.3s ease;
}

.solution_new__card .solution_new__content p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* button */
.solution_new__card .solution_new__content a {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 18px;
  background: #0033cc;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ================= HOVER EFFECT ================= */

.solution_new__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 51, 204, 0.25);
}

.solution_new__card:hover .solution_new__content {
  background: #0033cc;
}

.solution_new__card:hover h4,
.solution_new__card:hover p {
  color: #ffffff;
}

.solution_new__card:hover a {
  background: #ffffff;
  color: #0033cc;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .solution_new__card {
    width: 100%;
    max-width: 360px;
  }
}

/* ================= VIDEO TESTIMONIAL ================= */

.testimonial_video_new {
  padding: 80px 0;
  background: #f9fafb;
}

.testimonial_video_new__container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.testimonial_video_new__heading {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial_video_new__heading h2 {
  font-size: 32px;
  margin-top: 15px;
}

/* grid */
.testimonial_video_new__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* card */
.testimonial_video_new__card {
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  transition: 0.3s ease;
}

.testimonial_video_new__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(0,51,204,0.25);
}

/* inline video box */
.video-trigger {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  background-color: #000;
}

/* play button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65px;
  height: 65px;
  background: #0033cc;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.play-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}

/* iframe */
.video-trigger iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* responsive */
@media (max-width: 1024px) {
  .testimonial_video_new__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonial_video_new__grid {
    grid-template-columns: 1fr;
  }

  .testimonial_video_new__heading h2 {
    font-size: 24px;
  }
}


.active-nav-btn{
  color: #0033cc;
}

/* ================= OUR PARTNERS ================= */

.partners {
  padding: 60px 0;
  background: #F9FAFB;
}

.partners__container {
  width: 90%;
  margin: auto;
  text-align: center;
}

.partners__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1C1632;
}

/* slider wrapper */
.partners__slider {
  overflow: hidden;
  position: relative;
}

/* moving track */
.partners__track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

/* logo box */
.partner {
  min-width: 180px;
  height: 90px;
  margin: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s;
}

.partner img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* responsive */
@media (max-width: 768px) {
  .partner {
    min-width: 140px;
    margin: 0 15px;
  }
}

@media (max-width: 480px) {
  .partner {
    min-width: 120px;
    margin: 0 10px;
  }
}
