/********** Template CSS **********/
:root {
    --primary: #0069bf;
    --light: #F5F5F5;
    --white: #ffffff;
	--lightblue: #01B0F1;
    --dark: #353535;
}


a.text-center {
    margin: 0 auto;
    display: block;
}

a:hover{color: var(--lightblue) !important;}

.owl-carousel-item a:hover{color: var(--white) !important; text-decoration: underline;;}
.owl-carousel-item .col-12.col-lg-8 a:hover{color: var(--white) !important; text-decoration: underline;;}
.owl-carousel-item .col-12.col-lg-8 a {
    padding: 1rem 3rem !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.btn-blue {
    color: var(--bs-white);
    background-color: #0069bf;
    border-color: #0069bf;
    text-decoration: none;
}

.btn-blue:hover {
    color: var(--bs-white) !important;
    text-decoration: none;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.bold {
    font-weight: 600;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

h12 {
    text-align: right;
  }

/*** 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;
}
.container2 {
    text-align: center;
}

.image-wrapper {
    display: inline-block;
    margin: 50px;
    position: relative;
    max-width: 50%;
    height: auto;
    box-align: center;
}

.justified-text{
    text-align: justify;
}

.popup {
    display: none;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(179, 179, 179, 0.637);
    padding: 20px;
    border: 1px solid rgb(255, 255, 255);
    z-index: 100;
}

.hover-image {
    cursor: pointer;
}

.close-btn {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
    align-items: center;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
    margin-top: 400px;
    line-height: 20px;
}

body {
    overflow-x: hidden;
}

.btn-primary:hover {
    background-color: #0d6efdd9;
    border-color: #0d6efdd9;
}

.hide {
    display: none;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #e9ecef;
    color: var(--lightblue) !important
}

.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 .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@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 ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 200px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: #23a9e1;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
    margin-top: 280px

    

}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    margin-top: 280px
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 160px
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #0bb0f7;
    border: 1px solid #FFFFFF;
    transition: .5s;
    margin-top: 160px
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    margin-top: 160px
}

.page-header {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.103)), url(../img/er1.jpg) center center no-repeat;
    background-size: cover;
}
.page-header2 {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.103)), url(../img/er2.jpg) center center no-repeat;
    background-size: cover;
}
.page-header3 {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.103)), url(../img/er3.jpg) center center no-repeat;
    background-size: cover;
}
.page-header4 {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.103)), url(../img/er4.jpg) center center no-repeat;
    background-size: cover;
}
.page-header5 {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.103)), url(../img/er5.jpg) center center no-repeat;
    background-size: cover;
}
.page-header6 {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.103)), url(../img/er6.jpg) center center no-repeat;
    background-size: cover;
}
.page-header7 {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.103)), url(../img/er7.jpg) center center no-repeat;
    background-size: cover;
}
.page-header8 {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.103)), url(../img/er8.jpg) center center no-repeat;
    background-size: cover;
}
.page-header9 {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.103)), url(../img/er9.jpg) center center no-repeat;
    background-size: cover;
}
.page-header10 {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.103)), url(../img/er10.jpg) center center no-repeat;
    background-size: cover;
}
.page-header11 {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.103)), url(../img/er11.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}
table {
    margin: 0 auto; /* Center the table on the page */
}
td {
    text-align: center; /* Center align the content in cells */
    padding: 10px; /* Add padding for better spacing */
}



.container2 {
    position: relative;
    width: 50%;
  }
  
  .image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
  }
  
  .middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
  }
  
  .container:hover .image {
    opacity: 0.3;
  }
  
  .container:hover .middle {
    opacity: 1;
  }
  
  .text {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    font-size: 16px;
    padding: 50px 40px;
  }

/*** Section Title ***/
.section-title h1 {
    position: relative;
    display: inline-block;
    padding: 0 60px;
}

.section-title.text-start h1 {
    padding-left: 0;
}

.section-title h1::before,
.section-title h1::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 5px;
    bottom: 0;
    background: var(--white);
}

.section-title h1::before {
    left: 0;
}

.section-title h1::after {
    right: 0;
}

.section-title.text-start h1::before {
    display: none;
}

/*** Home Page ***/
#footer a{color: #fff;}
#footer a:hover{text-decoration: underline;}
#footer .allrights{text-align: center;}

/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item img {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.1);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    bottom: 0;
    left: 50%;
    background: rgba(53, 53, 53, .7);
    transition: .5s;
}

.portfolio-item:hover .portfolio-overlay {
    width: 100%;
    height: 100%;
    left: 0;
}

.portfolio-item .portfolio-overlay .btn {
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay .btn {
    opacity: 1;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 38px;
    top: 50%;
    left: -38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    border: 5px solid var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(35, 169, 225, 0.7), rgba(35, 169, 225, 0.7)), url(../img/footer.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    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;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
.diagram-container {
    position: relative;
    width: 250px;
    height: 250px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
  }

  .main-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: #3498db;
    text-align: center;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    box-sizing: border-box;
    color: white;
  }

  .main-circle p {
    margin-top: 50%;
    transform: translateY(-50%);
  }

  .scrollable-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0;
    list-style: none;
    transition: transform 0.5s;
    transform-origin: 50% 50%;
  }

  .scrollable-ring li {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #ecf0f1;
    border: solid 1px #bdc3c7;
    border-radius: 50%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
  }

  .scrollable-ring li img {
    width: 100%;
  }

  .scrollable-ring li p {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
  .list-topics-content {
    position: relative;
    top: -98px;
    z-index: 1;
}
.list-topics-content ul li { display: inline-block;}

.single-list-topics-content{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: auto;
    background:#fff;
    border-radius: 3px;
    margin-right: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0px 10px rgba(71, 71, 71, 0.2);
    -webkit-transition: .3s linear; 
    -moz-transition:.3s linear; 
    -ms-transition:.3s linear; 
    -o-transition:.3s linear;
    transition: .3s linear;
}
.single-list-topics-content h2>a { margin: 13px 0;}
/*.single-list-topics-content:last-child{margin-right: 0;}*/

.single-list-topics-icon [class^="flaticon-"]:before,.single-list-topics-icon [class*=" flaticon-"]:before,.single-list-topics-icon [class^="flaticon-"]:after,.single-list-topics-icon [class*=" flaticon-"]:after {font-size: 45px;color:#343a3f;}
.single-list-topics-content:hover .single-list-topics-icon [class^="flaticon-"]:before,.single-list-topics-content:hover .single-list-topics-icon [class*=" flaticon-"]:before,.single-list-topics-content:hover .single-list-topics-icon [class^="flaticon-"]:after,.single-list-topics-content:hover .single-list-topics-icon [class*=" flaticon-"]:after {color:#fff;}

.single-list-topics-content:hover h2>a,.single-list-topics-content:hover p{color: #fff!important;}
.single-list-topics-content:hover{
    color: #fff;
    background:#ffffff;
    box-shadow: 0 5px 10px rgba(71,71,71,.4);
}

/*-------------------------------------
        6. Works 
--------------------------------------*/
.works{padding: 0 0 90px;}
.works-content {margin-top: 73px;}

.single-how-works{
    text-align: center;
    padding:50px 42px;
    border-radius: 3px;
    box-shadow: 0 0px 5px rgba(71,71,71,.2);
    margin-bottom: 30px;
    -webkit-transition: .3s linear; 
    -moz-transition:.3s linear; 
    -ms-transition:.3s linear; 
    -o-transition:.3s linear;
    transition: .3s linear;
}

.single-how-works-icon {
    display: inline-block;
    color: #50616c;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #eef2f6;
    border-radius: 50%;
}
.single-how-works h2 a {
    font-size:  18px;
    margin: 35px 0 20px;
}
.single-how-works h2 a span {text-transform:  lowercase;}
.single-how-works p {margin-bottom: 25px;text-transform: initial;}

.single-how-works-icon [class^="flaticon-"]:before,.single-how-works-icon [class*=" flaticon-"]:before,.single-how-works-icon [class^="flaticon-"]:after,.single-how-works-icon [class*=" flaticon-"]:after {font-size: 35px;}
.single-how-works:hover .single-how-works-icon [class^="flaticon-"]:before,.single-how-works:hover .single-how-works-icon [class*=" flaticon-"]:before,.single-how-works:hover .single-how-works-icon [class^="flaticon-"]:after,.single-how-works:hover .single-how-works-icon [class*=" flaticon-"]:after {color:#ff545a;}

.welcome-hero-btn.how-work-btn {
    display: inline-block;
    margin: 0;
    width: 100px;
    height: 35px;
    font-size: 12px;
    background: transparent;
    color: #767f86;
    border: 1px solid #d3d6d9;
    border-radius: 3px;
}

.single-how-works:hover h2 a,.single-how-works:hover p{color: #fff;}
.single-how-works:hover .single-how-works-icon{background: #fff;}
.single-how-works:hover .welcome-hero-btn.how-work-btn{background: #fff;color: #ff545a;}
.single-how-works:hover{box-shadow: 0 0px 10px rgba(71,71,71,.4);background: #ff545a;}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #ffffff;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #ffffff;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: #777777;
    font-size: 30px;
    transition: .5s;
}

/*** Team ***/
.team-item {
    transition: .5s;
}
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    /*color: var(--light) !important;*/
}

.service-item:hover .text-center h5,
.service-item:hover .text-center h4,
.service-item:hover .text-center p,
.service-item:hover .text-center a  {
    color: #fff;
}

/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.image-container{ 
    overflow: hidden;
    position: relative; 
}
.image-container img{
    transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
    -webkit-transition: all ease-in-out .4s;
    -moz-transition: all ease-in-out .4s;
}
.translate-effect-right img{ 
    max-width: none !important;
    width: 33.3333% !important;
    transition: opacity .35s,transform .45s;
    -webkit-transform: translate3d(-40px,0,0);
    transform: translate3d(-36px,0,0);
}
.translate-effect-right:hover img {
    opacity: .6;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.service-item {
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 40px;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}

/*** Services Popup ***/

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.service-item:hover .popup-content h4  {
    color: #555;
}

.popup-content {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 1px solid #0069bf;
    z-index: 9999;
}

button.read-more-btn {
    color: #0069bf;
    text-decoration: none;
    border: none;
    background: #f5f5f5;
}

.service-item:hover button.read-more-btn,
button.read-more-btn:hover {
    color: #fff;
    text-decoration: none;
    border: none;
    background: #0069bf;
}

button.close-btn {
    color: #fff;
    background-color: #0069bf;
    border: 1px solid #0069bf;
    padding: 5px 5px;
}

button.read-more-btn:hover {
    color: #fff;
    background-color: #0069bfe8;
    border: 1px solid #0069bf;
    padding: 5px 5px;
    font-weight: 500;
}

/*** Industries ***/
#industries .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 50px;
    margin: 20px;
    max-width: 100%;
}

.circle-group {
    position: relative;
    width: 400px; /* Adjust as needed */
    height: 400px; /* Adjust as needed */
}

.big-circle {
    width: 180px;
    height: 180px;
    background-color: #156082;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.big-circle p {
    margin: 0;
    padding: 0 10px;
}

#industries .read-more-btn {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: transparent;
    color: white;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#industries .read-more-btn:hover {
    background-color: transparent;
}

.small-circle {
    width: 140px;
    height: 140px;
    background-color: #6c757d;
    border-radius: 50%;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.small-circle1 {
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.small-circle2 {
    top: 50%;
    left: 90%;
    transform: translate(-50%, -50%);
}

.small-circle3 {
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.small-circle4 {
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
}

.circle-group:hover .small-circle {
    opacity: 1;
}

.circle-group:hover .big-circle {
    background-color: #01B0F1; /* Change this color as needed */
}

.small-circle h4, .small-circle p {
    margin: 0;
}

.small-circle h4 {
    font-size: 14px;
    font-weight: bold;
}

.small-circle p {
    font-size: 13px;
}

.content-section {
    margin: 20px;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 8px;
    display: block;
}

p#content-text {
    font-weight: 600;
}

/*Carousel*/
.owl-carousel .owl-item img { 
    margin: 0 auto;
}

.owl-carousel a.align-center {
    margin: 0 auto;
}

.btn-white{color: #fff;}

/*Form*/
#contactForm .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

::-ms-input-placeholder { /* Edge 12-18 */
    color: var(--dark);
    opacity: 1
  }
  
  ::placeholder {
    color: var(--dark);
    opacity: 1
  }

  .btn-light {
    color: var(--dark);
    background-color: #f5f5f5;
    border-color: #f5f5f5;
}

.form-control:focus,.form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

select {
    color: #555;
  }
  
  select:invalid {
    color: #999999;
  }

  button#subject {
    width: 100%;
    text-align: left;
    background-color: #f5f5f5;
    border: 1px solid #ced4da;
    overflow: hidden;
    font-weight: normal;
}

.form-control,select, .form-control:read-only, .form-control:disabled {
    background-color: #f5f5f5;
    border: 1px solid #ced4da;
}


form#contactForm input[type="checkbox"] {
    margin-right: 5px;
    margin-left: 10px;
}

form#contactForm .dropdown-menu {
    padding: .5rem;
}
  
#contactForm .btn.btn-primary {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

div#recaptcha {
    display: inline-block;
}

div#recaptchaError {
    color: #dc3545;
}