/********** Template CSS **********/
:root {
    --primary: #348E38;
    --secondary: #525368;
    --light: #E8F5E9;
    --dark: #0F4229;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


.scpl-text{
    color: #348E38;
}

.key-topic-head{
    color: #000;
    font-weight: bold;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 25%);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 66, 0, .8), rgba(15, 66, 41, .6)), url(../img/banners/breadcrums-img.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}


/*** Facts & Quote ***/
.facts,
.quote {
    background: rgba(0, 92, 62, 51%);
}


/*** Service ***/
.service-item {
    position: relative;
    text-align: center;
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

/* .service-item:hover .service-img img {
    transform: scale(1);
} */

.service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
}

.service-item:hover .service-text {
    background: rgba(15, 66, 41, .6);
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item:hover .service-text h4 {
    color: #FFFFFF;
}

.service-item:hover .service-text p {
    color: var(--light);
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
}

.service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.service-item:hover .service-text .btn {
    width: 112px;
}


/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 44, 7);
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
}

.team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: .5s;
}

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


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #072A19;
}

.copyright a {
    color: #FFFFFF;
}

.copyright a:hover {
    color: var(--primary);
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
  .blink-hard {
  animation: blinker 1s step-end infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

/* ==================chairs========================== */
 .single_advisor_profile {
    position: relative;
    margin-bottom: 50px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    z-index: 1;
    /* border-radius: 15px; */
    -webkit-box-shadow: 0 0.25rem 1rem 0 rgba(47, 91, 234, 0.125);
    box-shadow: 0 0.25rem 1rem 0 rgba(47, 91, 234, 0.125);
}
.single_advisor_profile .advisor_thumb {
    /* position: relative; */
    z-index: 1;
    /* border-radius: 15px 15px 0 0; */
    margin: 0 auto;
    /* padding: 30px 30px 0 30px; */
     /* background-color: #3ffd5f; */
    overflow: hidden;
}
.single_advisor_profile .advisor_thumb::after {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    position: absolute;
    /* width: 150%;
    height: 80px; */
    bottom: -45px;
    left: -25%;
    content: "";
    background-color: #ffffff;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
}
@media only screen and (max-width: 575px) {
    .single_advisor_profile .advisor_thumb::after {
        height: 160px;
        bottom: -90px;
    }
}
.single_advisor_profile .advisor_thumb .social-info {
    position: absolute;
    z-index: 1;
    width: 100%;
    bottom: 0;
    right: 30px;
    text-align: right;
}
.single_advisor_profile .advisor_thumb .social-info a {
    font-size: 14px;
    color: #020710;
    padding: 0 5px;
}
.single_advisor_profile .advisor_thumb .social-info a:hover,
.single_advisor_profile .advisor_thumb .social-info a:focus {
    color: #3f43fd;
}
.single_advisor_profile .advisor_thumb .social-info a:last-child {
    padding-right: 0;
}
.single_advisor_profile .single_advisor_details_info {
    position: relative;
    z-index: 1;
    padding: 30px;
    text-align: right;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    border-radius: 0 0 15px 15px;
    background-color: #ffffff;
    height: 161px;
}
.single_advisor_profile .single_advisor_details_info::after {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    position: absolute;
    z-index: 1;
    width: 185px;
    height: 3px;
    background-color: #14b72a;
    content: "";
    top: 10px;
    right: 112px;
}
.single_advisor_profile .single_advisor_details_info h6 {
    margin-bottom: 0.25rem;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single_advisor_profile .single_advisor_details_info h6 {
        font-size: 14px;
    }
}
.single_advisor_profile .single_advisor_details_info p {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single_advisor_profile .single_advisor_details_info p {
        font-size: 12px;
    }
}
.single_advisor_profile:hover .advisor_thumb::after,
.single_advisor_profile:focus .advisor_thumb::after {
    background-color: #070a57;
}
.single_advisor_profile:hover .advisor_thumb .social-info a,
.single_advisor_profile:focus .advisor_thumb .social-info a {
    color: #ffffff;
}
.single_advisor_profile:hover .advisor_thumb .social-info a:hover,
.single_advisor_profile:hover .advisor_thumb .social-info a:focus,
.single_advisor_profile:focus .advisor_thumb .social-info a:hover,
.single_advisor_profile:focus .advisor_thumb .social-info a:focus {
    color: #ffffff;
}
.single_advisor_profile:hover .single_advisor_details_info,
.single_advisor_profile:focus .single_advisor_details_info {
    background-color: #066309;
}
.single_advisor_profile:hover .single_advisor_details_info::after,
.single_advisor_profile:focus .single_advisor_details_info::after {
    background-color: #ffffff;
}
.single_advisor_profile:hover .single_advisor_details_info h6,
.single_advisor_profile:focus .single_advisor_details_info h6 {
    color: #ffffff;
}
.single_advisor_profile:hover .single_advisor_details_info p,
.single_advisor_profile:focus .single_advisor_details_info p {
    color: #ffffff;
}
/* =======================ends=========================== */
.nav-bg{
   background-color: #3c7d23;
   color: #ffffff;
}
.idae-card{
    background: linear-gradient(90deg,rgba(29, 55, 65, 1) 31%, rgba(60, 125, 35, 1) 70%);
        border-radius: 30px;
}

@media (max-width: 767px) {
    #serviceCarousel .carousel-item > .row > div {
        display: none;
    }

    #serviceCarousel .carousel-item > .row > div:first-child {
        display: block;
    }
}
/* MOBILE - show only 1 advisor */
@media (max-width: 575px) {
    #advisorCarousel .carousel-item .col-12 {
        display: none;
    }

    #advisorCarousel .carousel-item .col-12:first-child {
        display: block;
    }
}

/* TABLET - show only 2 advisors */
@media (min-width: 576px) and (max-width: 991px) {
    #advisorCarousel .carousel-item .col-sm-6 {
        display: none;
    }

    #advisorCarousel .carousel-item .col-sm-6:nth-child(-n+2) {
        display: block;
    }
}
/* MOBILE - show only 1 card */
@media (max-width: 575px) {
    #scientificCarousel .carousel-item .col-12 {
        display: none;
    }

    #scientificCarousel .carousel-item .col-12:first-child {
        display: block;
    }
}

/* TABLET - show only 2 cards */
@media (min-width: 576px) and (max-width: 991px) {
    #scientificCarousel .carousel-item .col-sm-6 {
        display: none;
    }

    #scientificCarousel .carousel-item .col-sm-6:nth-child(-n+2) {
        display: block;
    }
}
/* Default (Desktop) – keep as it is */

/* Tablet */
@media (max-width: 991px) {
    #header-carousel h1 {
        font-size: 40px;
    }

    #header-carousel h3 {
        font-size: 18px;
    }
    .carousel-caption{
        top: 104px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    #header-carousel h1 {
        font-size: 26px !important;
        line-height: 1.3;
    }

    #header-carousel h3 {
        font-size: 14px !important;
        line-height: 1.5;
    }

    #header-carousel .btn {
        font-size: 14px;
        padding: 8px 14px;
        margin-bottom: 10px;
        display: inline-block;
    }
    .carousel-caption{
        top: 104px;
    }

}
/* ====================highlights===================== */
.bg-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.4s ease;
}

/* Background zoom layer */
.bg-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: inherit;
    background-position: inherit;
    background-image: inherit;
    transition: transform 1s ease;
    z-index: 0;
}

/* Dark gradient overlay */
.bg-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.75)
    );
    z-index: 1;
}

/* Content stays above */
.bg-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 30px;
}

/* Smooth zoom effect */
.bg-card:hover::after {
    transform: scale(1.15);
}

/* Slight lift effect */
.bg-card:hover {
    transform: translateY(-8px);
}

/* Icon */
.icon-box img {
    width: 60px;
}

/* Read button */
.read-btn {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.read-btn:hover {
    letter-spacing: 1px;
}
#serviceCarousel .carousel-control-prev,
#serviceCarousel .carousel-control-next {
    z-index: 5;
    width: 5%;
}

#serviceCarousel .carousel-control-prev-icon,
#serviceCarousel .carousel-control-next-icon {
    background-color: rgba(0,0,0,0.6);
    border-radius: 50%;
    padding: 15px;
}
.bg-card {
    position: relative;
    overflow: hidden;
}

.bg-card-content {
    position: relative;
    z-index: 1;
}

/* =============internation board=============== */
#advisorCarousel2 {
    position: relative;
}

/* Ensure controls are always on top and clickable */
#advisorCarousel2 .carousel-control-prev,
#advisorCarousel2 .carousel-control-next {
    z-index: 9999 !important;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    pointer-events: auto;
}

/* Style arrows for visibility */
#advisorCarousel2 .carousel-control-prev-icon,
#advisorCarousel2 .carousel-control-next-icon {
    background-color: rgba(0,0,0,0.7);
    border-radius: 50%;
    padding: 20px;
}

/* Prevent cards from blocking clicks */
#advisorCarousel2 .carousel-item,
#advisorCarousel2 .row,
#advisorCarousel2 .single_advisor_profile {
    position: relative;
    z-index: 1;
}

/* ==================report============================= */
    
.car {
  max-width: 50em;
  flex-direction: row;
  border: 0;
  background-color: #dedede;
  box-shadow: 0 7px 7px rgba(0, 0, 0, 0.18);
  margin: 3em auto;
}
.car.dark {
  color: #fff;
}
.car.card.bg-light-subtle .card-title {
  color: dimgrey;
}

.car img {
  max-width: 40%;
  margin: auto;
  padding: 0.5em;
  border-radius: 0.7em;
}
.report {
  display: flex;
  justify-content: space-between;
}
.car:hover{
    background-color: #8f9696;
    color:white;
}
/* Mobile View */
@media (max-width: 768px) {
  .car {
    flex-direction: column;   /* stack image and content */
    max-width: 100%;
    margin: 1.5em auto;
  }

  .car img {
    max-width: 100%;          /* full width image */
    width: 100%;
    margin: 0;
    border-radius: 0.7em 0.7em 0 0;
  }

  .report {
    flex-direction: column;
    padding: 1rem;
    text-align: center;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-text {
    font-size: 0.95rem;
  }
}


/* ===================================================== */
   
.testimonial:after {
    position: absolute;
    top: -0 !important;
    left: 0;
    content: " ";
    /* background: url(../img/banners/testimono-bg.jpg); */
    background-size: 100% 100px;
    width: 100%;
    height: 100px;
    float: left;
    z-index: 99;
}

.testimonial {
    min-height: 375px;
    position: relative;
background: 
  linear-gradient(rgba(36, 64, 43, 0.7), rgba(38, 67, 47, 0.7)),
  url("../img/banners/testimono-bg.jpg");
background-position: center;
background-repeat: no-repeat;
    padding-top: 50px;
    padding-bottom: 50px;
    background-position: center;
        background-size: cover;
}
#testimonial4 .carousel-inner:hover{
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
#testimonial4 .carousel-inner:active{
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
#testimonial4 .carousel-inner .item{
  overflow: hidden;
}

.testimonial4_indicators .carousel-indicators{
  left: 0;
  margin: 0;
  width: 100%;
  font-size: 0;
  height: 20px;
  bottom: 15px;
  padding: 0 5px;
  cursor: e-resize;
  overflow-x: auto;
  overflow-y: hidden;
  position: absolute;
  text-align: center;
  white-space: nowrap;
}
.testimonial4_indicators .carousel-indicators li{
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  text-indent: 0;
  margin: 2px 3px;
  cursor: pointer;
  display: inline-block;
  background: #ffffff;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators .active{
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  margin: 2px 3px;
  background-color: #9dd3af;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar{
  height: 3px;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb{
  background: #eeeeee;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.testimonial4_control_button .carousel-control{
  top: 175px;
  opacity: 1;
  width: 40px;
  bottom: auto;
  height: 40px;
  font-size: 10px;
  cursor: pointer;
  font-weight: 700;
  overflow: hidden;
  line-height: 38px;
  text-shadow: none;
  text-align: center;
  position: absolute;
  background: transparent;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.6s cubic-bezier(0.3,1,0,1);
  transition: all 0.6s cubic-bezier(0.3,1,0,1);
}
.testimonial4_control_button .carousel-control.left{
  left: 7%;
  top: 50%;
  right: auto;
}
.testimonial4_control_button .carousel-control.right{
  right: 7%;
  top: 50%;
  left: auto;
}
.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover{
  color: #000;
  background: #fff;
  border: 2px solid #fff;
}

.testimonial4_header{
  top: 0;
  left: 0;
  bottom: 0;
  width: 550px;
  display: block;
  margin: 30px auto;
  text-align: center;
  position: relative;
}
.testimonial4_header h4{
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial4_slide{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  margin: auto;
  padding: 20px;
  position: relative;
  text-align: center;
}
.testimonial4_slide img {
    top: 0;
    left: 0;
    right: 0;
    width: 136px;
    height: 136px;
    margin: auto;
    display: block;
    color: #f2f2f2;
    font-size: 18px;
    line-height: 46px;
    text-align: center;
    position: relative;
    border-radius: 50%;
    box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -o-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
}
.testimonial4_slide p {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.4;
    margin: 40px 0 20px 0;
}
.testimonial4_slide h4 {
  color: #ffffff;
  font-size: 22px;
}

.testimonial .carousel {
	padding-bottom:50px;
}
.testimonial .carousel-control-next-icon, .testimonial .carousel-control-prev-icon {
    width: 35px;
    height: 35px;
}

/* Tablet */
@media (max-width: 992px) {
  .testimonial4_slide{
      width: 85%;
      padding: 15px;
  }
  .testimonial4_slide p{
      font-size: 18px;
  }
  .testimonial4_slide img{
      width: 110px;
      height: 110px;
  }
  .testimonial4_control_button .carousel-control.left{
      left: 3%;
  }
  .testimonial4_control_button .carousel-control.right{
      right: 3%;
  }
}

/* Mobile */
@media (max-width: 576px) {

  .testimonial{
      padding-top: 30px;
      padding-bottom: 30px;
  }

  .testimonial4_slide{
      width: 95%;
      padding: 10px;
  }

  .testimonial4_slide img{
      width: 80px;
      height: 80px;
      box-shadow: none;
  }

  .testimonial4_slide p{
      font-size: 15px;
      line-height: 1.6;
      margin: 20px 0 15px 0;
  }

  .testimonial4_slide h4{
      font-size: 18px;
  }

  /* Move arrows below for mobile */
  .testimonial4_control_button .carousel-control{
      top: auto;
      bottom: -10px;
      transform: none;
      width: 32px;
      height: 32px;
      line-height: 28px;
  }

  .testimonial4_control_button .carousel-control.left{
      left: 40%;
  }
  .testimonial4_control_button .carousel-control.right{
      right: 40%;
  }

  /* Reduce heading */
  .heading.white-heading{
      font-size: 24px;
      margin-bottom: 20px;
  }
}

/* ------testimonial  close-------*/
/* ===========haven an idia=============== */

/* Tablet view */
@media (max-width: 991px) {
    .idae-card {
        padding: 30px 20px !important;
    }
    .idae-card h2 {
        font-size: 26px;
    }
    .idae-card p {
        font-size: 15px;
        line-height: 1.6;
    }
    .idae-card .btn {
        padding: 12px 24px;
        margin-top: 15px;
    }
}

/* Mobile view */
@media (max-width: 576px) {
    .container-xxl {
        padding-left: 10px;
        padding-right: 10px;
    }

    .idae-card {
        padding: 20px 15px !important;
        border-radius: 12px;
    }

    .idae-card h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .idae-card p {
        font-size: 14px;
        margin-bottom: 12px;
        text-align: justify;
    }

    .idae-card .btn {
        width: 100%;
        font-size: 15px;
        padding: 12px;
        margin-top: 10px;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .idae-card h2 {
        font-size: 20px;
    }
    .idae-card p {
        font-size: 13.5px;
    }
}
/* =============gallry==================== */

        
@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.gallery-item {
  display: block;
}

.gallery-item img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s;
}

.gallery-item:hover img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
}

.lightbox-modal .modal-content {
  background-color: var(--lightbox);
}

.lightbox-modal .btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  z-index: 10;
  filter: invert(1) grayscale(100);
}

.lightbox-modal .modal-body {
  display: flex;
  align-items: center;
  padding: 0;
}

.lightbox-modal .lightbox-content {
  width: 100%;
}

.lightbox-modal .carousel-indicators {
  margin-bottom: 0;
}

.lightbox-modal .carousel-indicators [data-bs-target] {
  background-color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-inner {
  width: 75%;
}

.lightbox-modal .carousel-inner img {
  animation: zoomin 10s linear infinite;
}

.lightbox-modal .carousel-item .carousel-caption {
  right: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 2rem;
  background-color: var(--lightbox);
  color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
  width: auto;
}

.lightbox-modal .carousel-control-prev {
  left: 1.25rem;
}

.lightbox-modal .carousel-control-next {
  right: 1.25rem;
}

@media (min-width: 1400px) {
  .lightbox-modal .carousel-inner {
    max-width: 60%;
  }
}

[data-bs-theme=dark] .lightbox-modal {
  --bs-carousel-control-icon-filter: none;
}

.btn-fullscreen-enlarge,
.btn-fullscreen-exit {
  position: absolute;
  top: 1.25rem;
  right: 3.5rem;
  z-index: 10;
  border: 0;
  background: transparent;
  opacity: .6;
  font-size: 1.25rem;
}

.bi {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.035em;
  fill: currentcolor;
}
/* Center image inside lightbox modal */
.lightbox-modal .carousel-inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto; /* center horizontally */
}

.lightbox-modal .carousel-item {
    text-align: center;
}

.lightbox-modal .carousel-item img {
    max-height: 80vh;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

/* Center controls vertically */
.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
}


/* ===============join us========================= */
.big-register-btn {
    font-size: 20px;
    padding: 18px 40px;
    border-width: 2px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.big-register-btn i {
    margin-left: 10px;
    font-size: 20px;
}

/* Hover effect */
.big-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}
@media (max-width: 576px) {
    .big-register-btn {
        width: 100%;
        font-size: 18px;
        padding: 16px;
    }
}
