/********** Template CSS **********/
.bg-primary {
    background-color: #011d41 !important;
}
.btn-light {
    color: #03095f;
    background-color: #ffffff;
    border-color: #ffffff;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}


/*** 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: 600;
    text-transform: uppercase;
}

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

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

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

.btn-sm-square {
    width: 32px;
    height: 32px;
    color: #011d41;
}

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

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    background: #000f51;
    border-color: #000f51;
    color: #fff;
}

.btn-primary:hover {
    color: #fffcfc;
    background-color: #015b44;
    border-color: #015b44;
}
/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--bs-dark);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
 color:#008564;
}

.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 {
        margin-top: 15px;
        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 .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: left;
    background: linear-gradient(360deg, rgb(42 123 155 / 60%) 19%, rgb(247 127 127 / 83%) 31% 31%, rgb(164 225 189 / 82%) 72%, rgb(255 255 255 / 0%) 99%, rgb(220 244 230 / 0%) 73%);
    padding: 3rem;
    padding-left: 11rem;
    z-index: 1;
}

.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 70px;
    text-indent: 0;
    margin: 5px 0;
    border: 2px solid #FFFFFF;
    overflow: hidden;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }

    .carousel .carousel-caption {
        padding-left: 10rem;
    }
}

@media (max-width: 768px) {
    .carousel .carousel-item {
        min-height: 500px;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }

    .carousel .carousel-caption {
        padding-left: 9rem;
    }
}

@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 5rem;
    }
}

.page-header {
    background: linear-gradient(rgb(21 42 178 / 69%), rgb(239 140 140 / 44%)), url(../img/banner-01.jpg) center center no-repeat;
    background-size: cover;
}


/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}

.about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;
    border: 5px solid #008564;
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes animateUpDown { 
    0% { 
        top: -25px;
    }
    50% { 
        top: -45px;
    }
    100% { 
        top: -25px;
    } 
}


/*** Features ***/
.feature {
    background: linear-gradient(to right, rgba(0, 0, 0, .1), rgb(0 24 130 / 83%) 50%), url(../img/about-gco.jpg) left top no-repeat;
    background-size: cover;
    padding: 100px 0px;
}

.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.feature-icon {
    position: relative;
    transition: .5s;
}

.feature-item:hover .feature-icon {
    margin-left: 3rem;
}

.feature-item a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--bs-secondary);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.feature-item a:hover {
    color: var(--bs-primary) !important;
}

.feature-item a:hover::after {
    background: var(--bs-primary);
}

.experience .progress {
    height: 5px;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}
.feature-item h5{
    color: #FFFFFF;
}
.feature-item p{
    color: #c9c9c9;
    text-align: justify;
}
.feature-item .feature-icon{
    background: -webkit-linear-gradient(-34deg, #008764 5%, #003c57 53%, #002452 91%);
}
.grn{
    color: #43ed98;
}
.light-grn{
    color: #bdd5f9 !important;
}
/*** Service ***/
.service .service-item {
    position: relative;
    margin-top: 45px;
}

.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: #011d41;
}

.service .service-inner:hover::before {
    height: 100%;
    top: 0;
}

.service .service-item img {
    margin-top: -45px;
    padding-left: 45px;
}

.service .service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service .service-item:hover h5,
.service .service-item:hover p {
    color: var(--bs-white);
}

.service .service-item:hover a {
    padding-left: 45px !important;
}


/*** Appoinment ***/
.appoinment {
    background-size: cover;
    background: linear-gradient(to left, rgba(0, 0, 0, .1), rgb(0 24 130 / 83%) 45%), url(../img/adelaide.jpg) right center no-repeat;
    padding: 150px 0px;
}
.appoinment-2 {
    background-size: cover;
    background: linear-gradient(to left, rgba(0, 0, 0, .1), rgb(0 24 130 / 83%) 45%), url(../img/banner-04.jpg) right center no-repeat;
    padding: 150px 0px;
}
.appoinment-3 {
    background: linear-gradient(to left, rgba(0, 0, 0, .1), rgb(0 16 89 / 94%) 30%), url(../img/adelaide.jpg) right center no-repeat;
    padding: 50px 0px 101px;
}

/*** Team ***/
.team .team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.testimonial-img div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-duration: 5s;
}

.testimonial-img div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: .1s;
}

.testimonial-img div:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: .4s;
}

.testimonial-img div:nth-child(3) {
    top: 20%;
    left: 60%;
    animation-delay: .7s;
}

.testimonial-img div:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    box-shadow: 0 0 10px 10px var(--bs-white) inset;
    z-index: 1;
}

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

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

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
 color:#008564;
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Appoinment ***/
.newsletter {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-3.jpg) left center no-repeat;
    background-size: cover;
}


/*** Footer ***/

.bg-light {
    background-color: #ffffff !important;
}
.footer h5{
    color: #00126f;
}
.footer .text-primary {
    color: #0c0a5f !important;
}
.footer p{
    color: #00126f;
    font-weight: 700;
    font-size: 17px;
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    text-transform: capitalize;
    transition: .3s;
    color: #00126f;
    font-weight: 700;
    font-size: 17px;
}

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

.footer .btn.btn-link:hover {
    color:#0c0a5f;
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #020931;
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
 color:#008564;
}
/*** Service ***/
.service-item {
    position: relative;
    margin-top: 2.5rem;
    overflow: hidden;
    background-color: #0d0d0d;
}

.service-item .service-img {
    position: relative;
    display: inline-block;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: calc(100% - 12rem);
    height: calc(100% - 12rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.service-item.service-item-left {
    border-radius: 500px 0 0 500px;
    background: linear-gradient(to right, rgb(0 11 67), rgb(7 25 113));
}

.service-item.service-item-right {
    border-radius: 0 500px 500px 0;
    background: linear-gradient(to right, rgb(0 11 67), rgb(7 25 113));
}

@media (max-width: 767.98px) {
    .service-item.service-item-left,
    .service-item.service-item-right {
        border-radius: 500px 500px 0 0;
        background: linear-gradient(to bottom, var(--bs-secondary), var(--bs-dark));
        text-align: center;
    }
}
.carousel-item h1 {
  font-size: 50px ; 
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-weight: 700;
    text-transform: math-auto;
    background: -webkit-linear-gradient(-34deg, #008764 5%, #003c57 53%, #002452 91%);
    -webkit-background-clip: text;
    color: #ffffff00;
    margin-top: 10px;

}
.carousel-item h2 {
  color: #002452;
  margin: 12px 0;
  font-size: 29px;
  font-weight: 600;
}
.carousel-item h3 {
  color: #008764;
  margin: 0px 0px 30px 0px;
  font-size: 25px;
  font-weight: 600;
}
.carousel-item hr {
  height: 5px;
  background: linear-gradient(151deg, rgba(0,0,0,1) 0%, rgba(0,186,45,1) 0%, rgba(0,49,147,1) 70%);
  width: 100%;
  opacity: 1;
  border-radius: 50%;
}
.carousel-item .carousel-item-img {
  text-align: right;
}
.carousel-item .carousel-item-img img{
  -webkit-animation: a-seven 10s infinite linear;
  animation: a-seven 10s infinite linear;
  padding-left: 100px;
}
.sm-logo h2 {
    font-size: 40px;
}

/* Between 1200px and 991px */
@media (max-width: 1200px) {
    .sm-logo h2 {
        font-size: 16px;
    }
}

/* Below 991px */
@media (max-width: 991.98px) {
    .sm-logo h2 {
        font-size: 16px;
    }
}
@media (min-width: 1500px) {
    .sm-logo h2 {
  font-size: 30px;
}
  .carousel-item h1 {
  font-size: 100px;
  }
  .carousel-item h2 {
  margin: 5px 0;
  font-size: 45px;
 }
 .hero h3 {
  color: #008764;
  margin: 0px 0px 10px 0px;
  font-size: 20px;
}

}

@media (min-width: 767px) {
  .sm-logo-767 {
  font-size: 20px;
  }
}
@media (min-width: 651px) {
 .navbar-brand .sm-logo-767 {
  font-size: 20px !important;
  }
}
@media (min-width: 467px) {
 .navbar-brand .sm-logo-767 {
  font-size: 20px !important;
  }
}
.bg-1{
    background-color: #015b44;
}
.bg-2{
    background-color: #000f51;
}

/* ...........................ABOUT.................................... */

/*--Section Spacing--*/
.section-title {
	margin-bottom: 50px;
	margin-top: -7px
}

.section-title h2 {
	font-weight: 700;
	font-size: 38px;
	margin-bottom: 0;
	padding-bottom: 15px;
	position: relative
}

.section-title h2:before {
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 300px;
	height: 2px;
	background: linear-gradient(45deg, rgba(0,0,0,1) 0%, rgba(0,186,45,1) 0%, rgba(0,49,147,1) 70%);
	border-radius: 5px
}
.section-padding {
  padding-top: 150px;
  padding-bottom: 150px;
}

@media only screen and (max-width: 1199px) {
  .section-padding {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

@media only screen and (max-width: 991px) {
  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section-title h2{
    font-size: 24px; 
  }
  .section-title h2:before {
    width: 150px;
  }
}

@media only screen and (max-width: 767px) {
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}


.meeta-about-section-3 .about-images-3-wrap {
  display: flex;
  align-items: center;
  position: relative;
}

.meeta-about-section-3 .about-images-3-wrap .shape-1 {
  position: absolute;
  top: -28px;
  left: 178px;
  z-index: -1;
}

.meeta-about-section-3 .about-images-3-wrap .shape-2 {
  position: absolute;
  bottom: 0;
  left: 185px;
  z-index: -1;
}

.meeta-about-section-3 .about-images-3-wrap .about-img-big {
  padding-right: 12px;
}

.meeta-about-section-3 .about-images-3-wrap .about-img-big img {
  border-radius: 15px;
  width: 100%;
}

.meeta-about-section-3 .about-images-3-wrap .about-img-small {
  padding-left: 12px;
}

.meeta-about-section-3 .about-images-3-wrap .about-img-small .image-1 {
  margin-bottom: 24px;
}

.meeta-about-section-3 .about-images-3-wrap .about-img-small .image-1 img {
  border-radius: 15px;
}

.meeta-about-section-3 .about-images-3-wrap .about-img-small .image-2 img {
  border-radius: 15px;
}


.meeta-about-section-3 .about-content-3-wrap .meeta-section-title-2 {
  margin-bottom: 30px;
}

.meeta-about-section-3 .about-content-3-wrap .meeta-section-title-2 .main-title {
  font-size: 40px;
  line-height: 48px;
}

.meeta-about-section-3 .about-content-3-wrap .about-content-3 .text {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  color: #1a0a1e;
  margin-bottom: 15px;
}

.meeta-about-section-3 .about-content-3-wrap .about-content-3 p {
  font-size: 16px;
}


@media only screen and (max-width: 1199px) {
  .meeta-about-section-3 .about-images-3-wrap .shape-2 {
    position: absolute;
    bottom: 0;
    left: 137px;
    z-index: -1;
  }
  .meeta-about-section-3 .about-content-3-wrap {
    padding-left: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .meeta-about-section-3 .about-images-3-wrap {
    justify-content: center;
  }
  .meeta-about-section-3 .about-images-3-wrap .shape-1 {
    left: 240px;
  }
  .meeta-about-section-3 .about-images-3-wrap .shape-2 {
    left: 255px;
  }
  .meeta-about-section-3 .about-content-3-wrap {
    padding-left: 0px;
    margin-top: 20px;
  }
  .section-title h2{
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .meeta-about-section-3 .about-images-3-wrap {
    justify-content: center;
  }
  .meeta-about-section-3 .about-images-3-wrap .shape-1 {
    left: 50px;
  }
  .meeta-about-section-3 .about-images-3-wrap .shape-2 {
    left: 168px;
  }
}

@media only screen and (max-width: 575px) {
  .meeta-about-section-3 .about-images-3-wrap {
    display: block;
    text-align: center;
  }
  .meeta-about-section-3 .about-images-3-wrap .shape-1 {
    display: none;
  }
  .meeta-about-section-3 .about-images-3-wrap .shape-2 {
    display: none;
  }
  .meeta-about-section-3 .about-images-3-wrap .about-img-small {
    padding-left: 0px;
  }
  .meeta-about-section-3 .about-images-3-wrap .about-img-small .image-1 {
    display: none;
  }
  .meeta-about-section-3 .about-images-3-wrap .about-img-small .image-2 {
    display: none;
  }
  .meeta-about-section-3 .about-content-3-wrap .meeta-section-title-2 .main-title {
    font-size: 30px;
    line-height: 40px;
  }
}
.breadcrumb-item a{
    color: #e5f105;
}
.service-text h3{
    color: #fff;
}
.service-text p{
    color: #e3e3e3;
}
.hostcity{
    padding: 80px 0px;
}
.hostcity h5{
  font-size: 30px;
  color: #02834e;
  margin-bottom: 20px;  
}
.category-img {
    border: 3px solid #2ecc71;
    width: 100%;
    max-width: 120px;
    display: block;
}
.cat-box {
    border-left: 3px solid #2ecc71;
    padding-left: 10px;
    margin-top: 10px;
}
.cat-box h4,
.cat-box p {
    text-align: left;
}


/*--------------------------------------------------------------
# Table
--------------------------------------------------------------*/
.clients{
  /*background-image: url(../../images/excbg-11.jpg);*/
  background-repeat: no-repeat;
  padding: 0px 10px;
  background-position: center top;

}
.clients table{
  background: linear-gradient(140deg, rgba(0,0,36,1) 0%, rgba(9,9,121,1) 26%, rgba(4,6,54,1) 87%);
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  border-radius: 30px;
  border-image:none !important;
  width:100% !important;

}

.clients table th {
  border: none;
  border-collapse: separate;
  border-spacing: 30px;
  border-radius: 13px;
  text-align: center;
  font-weight: 500;
  font-size: 22px;
}
.clients table th span {
  font-size: 14px;
  font-weight: 300;
}
.clients table, td {
  border: 2px solid;
  border-image: linear-gradient(45deg, #00f088, #104da6, #32137b, #050222) 1;
  border-collapse: separate;
  border-spacing: 20px;
  font-weight: 500;
  font-size: 17px;
}
.clients table td {
  padding: 10px;
    border-collapse: separate !important;
    border-spacing: 15px;
    border: double 2px transparent;
    border-radius: 15px;
    background-image: linear-gradient(#010131, #001281), radial-gradient(circle at top left, #00f088, #104da6, #32137b,#050222) !important;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    color: #ffffff;
}
.clients h4{
  font-weight: 500;
  font-size: 17px;
}

.clients p{
  font-weight: 500;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .clients {
    padding: 20px 0px;
   }
  .clients .mb{
    padding-left: 220px;
  }
  .clients table th{
     font-size: 10px;
  }
  .clients table td{
    padding: 12px;
    font-size: 10px;
  }
}

    .conference-flow{
      padding:80px 0px;
      background:#f5f7fb;
    }

    /* 3×3 grid */
    .flow-grid{
      display:grid;
      grid-template-columns:repeat(3, 1fr);  /* 3 columns desktop [web:66][web:78] */
      gap:40px 60px;
      max-width:1200px;
      margin:0 auto;
    }

    .flow-card{
      position:relative;
      padding:6px;
      border-radius:26px;
    }

    .flow-inner{
      position:relative;
      width:100%;
      height:180px;
      border-radius:26px;
      background:#ffffff;
      box-shadow:0 4px 10px rgba(0,0,0,0.06);
      border:2px solid #004a9f;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:12px;
    }

    .flow-inner.green{
      border-color:#00a86b;
    }

    .flow-inner::before,
    .flow-inner::after{
      content:"";
      position:absolute;
      width:26px;
      height:6px;
      background:#004a9f;
      border-radius:10px;
      left:50%;
      transform:translateX(-50%);
    }
    .flow-inner.green::before,
    .flow-inner.green::after{
      background:#00a86b;
    }
    .flow-inner::before{ top:-3px; }
    .flow-inner::after{ bottom:-3px; }

    /* circle image icon */
    .flow-icon{
      width:80px;
      height:80px;
      border-radius:50%;
      background:#e6f0ff;
      display:flex;
      align-items:center;
      justify-content:center;
      overflow:hidden;                  /* crop image to circle [web:4][web:80] */
    }
    .flow-icon img{
      width:70%;
      height:70%;
      object-fit:contain;               /* keep aspect ratio [web:79] */
      display:block;
    }

    .flow-text{
      text-align:center;
      font-size:14px;
      font-weight:600;
      color:#002b5c;
      line-height:1.3;
    }

    /* right arrows (cols 1–2) */
    .flow-card.right::after{
      content: "";
      position: absolute;
      top: 50%;
      right: -40px;
      width: 40px;
      height: 5px;
      background: #004a9f;
    }
    .flow-card.right::before{
      content: "";
      position: absolute;
      top: 51%;
      right: -55px;
      border: 12px solid transparent;
      border-left-color: #004a9f;
      transform: translateY(-50%);
    }

    /* down arrows (rows 1–2, middle col) */
    .flow-card.down::after{
      content: "";
      position: absolute;
      top: 50%;
      right: -40px;
      width: 40px;
      height: 5px;
      background: #004a9f;
    }
    .flow-card.down::before{
      content: "";
      position: absolute;
      top: 51%;
      right: -55px;
      border: 12px solid transparent;
      border-left-color: #004a9f;
      transform: translateY(-50%);
    }

    /* responsive: 2 cols then 1 col */
    @media (max-width: 992px){
      .flow-grid{
        grid-template-columns:repeat(2, 1fr); /* tablet [web:66][web:78] */
      }
      .flow-card.right::before,
      .flow-card.right::after,
      .flow-card.down::before,
      .flow-card.down::after{
        display:none;
      }
    }

    @media (max-width: 576px){
      .flow-grid{
        grid-template-columns:1fr;
      }
    }
    .sponsor-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        /* smooth scrolling on iOS */
        max-width: 100%;
        padding-bottom: 8px;
        /* optional padding below scroll bar */
    }

    .sponsor-table-container {
        border-radius: 16px;
        padding: 0px 0px;
        max-width: 100vw;
        box-sizing: border-box;
        width: 1165px;
        border: 1px solid #e0e9ef;
        border-top: 0px;
    }

    .sponsor-table {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        min-width: 900px;
        box-shadow: 0 2px 12px rgba(32, 80, 180, 0.06);
        font-family: 'Segoe UI', sans-serif;
        margin: 0 auto;
        max-width: 1250px;
    }

    .sponsor-header-row {
        display: flex;
        background: #f5f5f5;
    }

    .entitlement-header {
        flex: 1.25;
        min-width: 160px;
        background: #011d41;
        color: #ffffff;
        font-weight: 500;
        padding: 16px 10px;
        border-right: 2px solid #ffffff;
        font-size: 18px;
        font-weight: 700;
    }

    .sponsor-header {
        flex: 1;
        text-align: center;
        font-weight: 700;
        color: #011d41;
        padding: 18px 0 8px 0;
        background: #fafdff;
        border-right: 2px solid #e0e9ef;
        font-size: 1.12em;
        border-radius: 16px 16px 0 0;
        position: relative;
    }

    .sponsor-header:last-child {
        border-right: none;
    }

    .sponsor-header .amt {
        display: block;
        font-weight: 700;
        font-size: 1.15em;
        color: #003e7b;
        margin-top: 3px;
    }

    .sponsor-row {
        display: flex;
        border-bottom: 1.5px solid #e1ecf5;
        background: #fafdff;
    }

    .sponsor-row:last-child {
        border-bottom: none;
    }

    .entitlement-cell {
        flex: 1.25;
        min-width: 160px;
        background: #011d41;
        color: #ffffff;
        font-weight: 500;
        padding: 16px 10px;
        border-right: 2px solid #ffffff;
        font-weight: 700;
    }

    .sponsor-cell {
        flex: 1;
        text-align: center;
        color: #011d41;
        padding: 16px 0;
        border-right: 2px solid #e0e9ef;
        background: #fff;
        font-size: 1em;
        font-weight: 500;
    }

    .sponsor-cell:last-child {
        border-right: none;
    }

    .sponsor-cell ul {
        text-align: left;
        display: inline-block;
        margin: 0;
        padding-left: 14px;
        font-size: 0.94em;
    }

    .sponsor-cell ul li {
        list-style: disc;
        margin-bottom: 3px;
        color: #011d41;
    }

    /* =================================================
Start Why Join Conference Style three Area
====================================================*/
.join-conference-style-three-area {
  overflow: hidden;
  position: relative;
  background-color: #f6f6fdff;
  background-repeat: no-repeat;
  padding-top: 100px;
}
.join-conference-style-three-area .single-conference-content .section-title.left-title {
  margin-bottom: 15px;
}
.join-conference-style-three-area .single-conference-content .bg-text {
  margin-bottom: 30px;
}

.conference-style-three-img {
  text-align: right;
  position: relative;
  border-radius: 10px;
  margin-bottom: 45px;
}
.conference-style-three-img img {
  border-radius: 10px;
}
.conference-style-three-img .conference-style-3 {
  position: absolute;
  top: -41px;
  right: 15px;
}
/*--------------------------------------------------------------
# Sponsors Section
--------------------------------------------------------------*/
.clients-wrap {
  border-top: 1px solid color-mix(#000, transparent 85%);
  border-left: 1px solid color-mix(#000, transparent 85%);
}

.client-logo {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(#000, transparent 85%);
  border-bottom: 1px solid color-mix(#000, transparent 85%);
  overflow: hidden;
}
.client-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

@media (max-width: 640px) {
.client-logo img {
    padding: 30px;
    max-width: 50%;
  }
}

.client-logo:hover img {
  transform: scale(1.1);
}