/********** Template CSS **********/
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99;
}
.uw-widget-custom-trigger {
    bottom: 70px !important;
    right: 5px !important;
    background: #064c7b !important;
}
    .uw-widget-custom-trigger .short-key{
        bottom:4px !important;
        padding:0px;
    }
.suggestions {
    position: absolute;
    top: 26px;
    left: 11px;
    background: #fff;
    border: 0px solid #ccc;
    width: 94%; /* match your search box width */
    max-height: 105px; /* limit height */
    overflow-y: auto; /* vertical scroll */
    margin-top: 2px;
    padding: 0;
    list-style: none;
    z-index: 9999; /* keep it above other elements */
    cursor: pointer;
}

    .suggestions li {
        padding: 8px 12px;
        cursor: pointer;
    }

        .suggestions li:hover {
            background-color: #f0f0f0;
        }


@media screen and (max-width: 600px) {
    .suggestions {
        font-size: 13px;
        top: 38px;
        width: 90%;
    }
}

@media screen and (max-width: 500px) {
    .suggestions {
        font-size: 11px;
    }
}

.search-container {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.search-box {
    width: 100%;
    padding: 8px 30px 4px 39px;
    border: 0px solid #ccc;
    border-radius: 0;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

    .search-box:focus {
        border-color: #0078d7;
        box-shadow: 0 0 5px rgba(0,120,215,0.4);
    }

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #555;
}

.mic-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #555;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 600px) {
    .search-box {
        font-size: 14px;
        padding: 10px 40px 10px 35px;
    }
}

.goog-te-gadget-icon {
    display: none !important;
}

.goog-te-gadget-simple {
    background-color: #ecebf0 !important;
    border: 0 !important;
    font-size: 12px;
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px 12px !important;
    cursor: pointer;
    position: relative;
    border-radius: 0px;
}

    .goog-te-gadget-simple span {
        color: #000 !important;
    }

.skiptranslate span {
    display: inline-block !important;
}

.goog-te-gadget-simple::after {
    content: "";
    font-size: 10px;
    color: #3e3065;
    margin-left: 6px;
}
.faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

    .faq-question .icon {
        transition: transform 0.3s ease;
        font-weight: bold;
        font-size: 1.2rem;
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 0;
}

    .faq-answer p {
        margin: 10px 0;
    }

.faq-item.active .faq-answer {
    max-height: 250px; /* enough for content */
    padding: 10px 0;
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
    content: "–";
}
.con{ font-size:14px; color:#fff;}
.navbar-expand-lg
{
    flex-wrap:wrap;
}
.dropdown-item{
 font-size:.85em;
 font-weight:bold;
}
.logo{
    width:70%;
    height:auto;
}
.row{
    margin-left:0px;
    margin-right:0px;
}
.sticky-top .logo{
    width:50%;
    height:auto;
}
body {
    overflow-x: hidden !important;
    background: #ffffec;
}
/*** 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 {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}


    .btn.btn-primary,
    .btn.btn-secondary {
        color: #FFFFFF;
    }

.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;
    border-radius: 0px;
}


/*** 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: 0px;
    padding: 8px 15px;
    color: #FFFFFF;
    font-size: 15px;
    outline: none;
}

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: #064c7b;
    }

@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: 95px;
}

.navbar-light .navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
    border-right: 1px solid #cd8021;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .logo{
        width:170px;
        height:auto;
    }
    .sticky-top .logo {
        width: 100%;
        height: auto;
        padding:5px;
    }
    .px-4{
        padding:10px 0px !important;
    }
    .topp{
        font-size:10px !important;
        font-weight:normal
    }
    .con{
        font-size:.75em;
        text-align:center;
    }
    .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-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}
.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: #1d863a;
    border-color: #1d863a;
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../images/banners/banner1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height:250px;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

    .section-title::before {
        position: absolute;
        content: "";
        width: calc(100% + 80px);
        height: 2px;
        top: 4px;
        left: -40px;
        background: #1d863a;
        z-index: -1;
    }

    .section-title::after {
        position: absolute;
        content: "";
        width: calc(100% + 120px);
        height: 2px;
        bottom: 5px;
        left: -60px;
        background: #1d863a;
        z-index: -1;
    }

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: #ffffbf;
    transition: .5s;
}

    .service-item:hover {
        margin-top: -10px;
        background: #e2fbe1;
    }

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: black;
}


/*** 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);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    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,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: #1d863a !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: none;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

    .testimonial-carousel .owl-dot.active {
        background: #1d863a;
        border-color: #1d863a;
    }


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

    .footer .btn.btn-social:hover {
        color: #1d863a;
    }

.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 {
        letter-spacing: 0px;
        color: #e79530;
        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 .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.mark
{
    /*background: #f9f9f9;
    font-size:20px;*/
    padding:0px 20px;
    /*border-left:solid;
    border-right:solid;
    border-color:lightgray;*/
}

.gallery
{
     object-fit: fill;
     height:250px;
     overflow:hidden;
}

.myimg
{
    height:300px;
    overflow:hidden;
}

.heading
{
    color:#0c458c;
    padding-top:10px;
    text-align:center;
}
.para
{
    text-align:center;
    margin-top:-10px;
}

.data1
{
    text-align:center;
}


.container{
	width: 100%;
	max-width: 1200px;
	padding: 0px;
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	font-size:16px;
}
	
.newsec {
  display:none;
  padding: 20px;
  border: 1px solid #ddd;
  overflow: hidden;
}

.tab input {
  display: none;
}

label {
  display: inline-block;
  margin: 0 0 -1px;
  padding: 15px 25px;
  font-weight: bold;
  text-align: center;
  color: #1e3f79;
  border: 1px solid transparent;
}

label:before {
  font-weight: normal;
  margin-right: 10px;
}

label:hover {
  color: #888;
  cursor: pointer;
}

input:checked + label {
  color: #636363;
  border: 1px solid #ddd;
  border-top: 5px solid #1e3f79 ;
  border-bottom: 1px solid #fff;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4,
#tab5:checked ~ #content5,
#tab6:checked ~ #content6,
#tab7:checked ~ #content7 {
  display: block;
}
ul > li{
	margin-bottom: 10px;
}



.anch
{
    transition-duration:0.3s;
}

.anch:hover
{
    color:red;
    word-spacing:2px;
}


.fotos {
    transition: 0.7s ease;
    filter:brightness(70%);
}


.data
{
    object-fit:cover;
    overflow:hidden;
    height:220px;
    padding:10px;
    color:dodgerblue;
}
    .fotos:hover {
        transform: scale(1.1);
        filter: brightness(100%);
    }

.fotos {
    width: 100%;
    height: 200px;
}

.ank
{
    text-align:center;
}

.topp
{
    transition-duration:0.8s;
    padding:8px 15px;
    font-size:14px;
    font-weight:bold;
    color:#fff;
}
.topp:hover
{
    color:#ddd;
}


.head
{
    padding:15px 0;
}

.imgs
{
    padding-bottom:8px;
}

.imgs:hover
{
    color:white;
}

.anc:hover
{
    border-radius:15px;
}

/* Unique class names to avoid conflicts */
.custom-video-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    margin: 20px auto;
    width: 100%;
    max-width: 350px;
    text-align: center;
    position: relative;
}

    .custom-video-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

.custom-video-frame {
    width: 100%;
    height: 200px;
    border: none;
}

.custom-video-content {
    padding: 15px;
}

.custom-video-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}

.custom-video-description {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-video-card {
        max-width: 90%;
    }
}