 /* Topbar styling */
 /* ====================================================
   Topbar Styling
---------------------------------------------------- */
.topbar {
    padding: 10px 0;
    background-color: white;
    border-bottom: 1px solid #dcdcdc;
}

.topbar .left-section {
    color: #007bff;
    font-weight: bold;
}

.topbar .left-section a:hover {
    color: #007bff;
}

.topbar .right-section {
    color: #2C2D3F;
}

.topbar .right-section i {
    color: #007bff;
    margin-right: 8px;
}

/* Flexbox layout for larger screens */
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Styling for the right-section */
.right-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.right-section .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.right-section .ms-3 {
    margin-left: 16px;
}

/* Responsive Styling: Ensure left-section in one row and right-section in another */
@media (max-width: 1024px) {
    .topbar .container {
        flex-direction: column; /* Stack left-section and right-section vertically */
        align-items: flex-start;
    }

    .right-section {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .right-section .contact-item {
        width: 48%; /* Two columns side by side */
    }
}

/* Small mobile (320px) */
@media (max-width: 320px) {
    .topbar {
        padding: 8px 0;
        font-size: 11px;
    }

    .topbar .container {
        flex-direction: column;
        align-items: center;
    }

    .right-section {
        flex-direction: column;
        align-items: center;
    }

    .right-section .contact-item {
        width: 100%;
        justify-content: center;
        margin-bottom: 8px;
    }
}

/* Mobile (480px) */
@media (max-width: 480px) {
    .topbar {
        padding: 10px 0;
        font-size: 14px;
    }

    .topbar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .right-section {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .right-section .contact-item {
        width: 48%; /* Two columns side by side */
    }
}


/* Tablet (768px) */
@media (max-width: 768px) {
    .topbar {
        padding: 12px 0;
        font-size: 15px;
    }

    .topbar .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .right-section {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .right-section .contact-item {
        width: 48%;
        justify-content: flex-start;
    }

    .right-section .ms-3 {
        margin-left: 0;
    }
}

/* Small Laptop (1024px) */
@media (max-width: 1024px) {
    .topbar {
        padding: 15px 0;
        font-size: 16px;
    }

    .topbar .container {
        flex-direction: column;
        justify-content: space-between;
        gap: 10px;
    }

    .right-section {
        justify-content: space-between;
        width: 100%;
        flex-wrap: nowrap;
    }

    .right-section .contact-item {
        width: 48%;
    }
}

/* Large Screens (1440px and above) */
@media (min-width: 1440px) {
    .topbar {
        padding: 20px 0;
        font-size: 18px;
    }

    .right-section {
        flex-direction: row;
        align-items: center;
    }

    .right-section .contact-item {
        width: auto;
    }
}




/* ====================================================
   Navbar Styling
   ---------------------------------------------------- */

.navbar-custom {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.4s ease;
    /* Smooth transition for sticky effect */
}

.navbar-custom.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    /* Adding more depth when sticky */
    transition: all 0.4s ease;
}

/* Navbar Brand */
.navbar-custom .navbar-brand {
    flex: 0 0 auto;
}

/* Navbar Links */
.navbar-custom .navbar-nav {
    flex: 1;
    justify-content: center;
}

.navbar-custom .nav-link {
    color: #2C2D3F;
    font-weight: 600;
    padding: 8px 15px;
    transition: color 0.3s, border-bottom 0.3s;
}

.navbar-custom .nav-link:hover {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

.navbar-custom .nav-link.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

/* Enroll Button Styling */
.navbar-custom .btn-enroll {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

.navbar-custom .btn-enroll:hover {
    background-color: #0056b3;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 91, 255, 0.5);
}

/* Dropdown Styling */
.dropdown-menu {
    width: 67vh;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

/* Dropdown Hover Effect */
.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================================
   Responsive Styling for Navbar
   ---------------------------------------------------- */

@media (max-width: 992px) {
    .navbar-custom .navbar-nav {
        justify-content: flex-start;
    }

    .navbar-custom .navbar-nav .nav-item {
        margin-left: auto;
        margin-right: auto;
    }

    .navbar-custom .btn-enroll {
        display: none;
        /* Hide the enroll button on smaller screens */
    }

    .navbar-custom .navbar-collapse {
        justify-content: space-between;
        /* Space between elements in collapsed navbar */
    }

    .navbar-custom .navbar-brand {
        flex: 1;
        /* Ensure brand takes up appropriate space */
    }

    .navbar-custom .navbar-nav {
        flex: 1;
        /* Ensure nav items take up appropriate space */
    }

    .navbar-custom .navbar-nav .nav-item {
        text-align: center;
        /* Center nav items */
    }
}

@media (max-width: 769px) {
    .navbar-custom {
        padding: 2px;
    }
    .navbar-custom .navbar-brand {
        flex: 1;
     
     
       /* border: 1px solid black; */
       
    }
    

    .navbar-custom .nav-link {
        padding-left: 0;
    }

    .navbar-custom .dropdown-menu {
        width: 100%;
        /* Full width on small screens */
    }
}

@media (max-width: 576px) {
    .navbar-custom .navbar-brand .logo {
        height: 40vh;
    }

    .navbar-custom .nav-link {
        font-size: 14px;
    }
}

/* Very small screens (less than 360px) */
@media (max-width: 390px) {
   
    .navbar-custom .navbar-brand {
        flex: 1;
    }

    .navbar-custom .navbar-nav {
        flex: 1;
        justify-content: space-between;
    }

    .navbar-custom .navbar-toggler {
        flex: 0 0 auto;
    }

    .navbar-custom .nav-link {
        font-size: 12px;
        padding: 5px 10px;
    }

    .navbar-custom .btn-enroll {
        display: none;
        /* Hide the enroll button on very small screens */
    }
}
@media (max-width: 380px) {
   
    .navbar-custom .navbar-brand {
        flex: 1;
      
    }
    .navbar-custom .navbar-brand img {
        flex: 1;
        height: 50px;
        
    }

    .navbar-custom .navbar-nav {
        flex: 1;
        justify-content: space-between;
    }

    .navbar-custom .navbar-toggler {
        flex: 0 0 auto;
    }

    .navbar-custom .nav-link {
        font-size: 8px;
        padding: 2px 8px;
    }

    .navbar-custom .btn-enroll {
        display: none;
        /* Hide the enroll button on very small screens */
    }
}

/* Sticky Navbar Animation */
.navbar-custom.sticky {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    /* Deep shadow effect */
    padding: 10px 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}
/* Slider */
.course-card {
border: 1px solid #ddd;
padding: 15px;
border-radius: 5px;
text-align: center;
transition: all 0.3s ease;
}
.course-card:hover {
background-color: #f1f1f1;
}
/* Course */
@media (max-width: 576px) {
    .col {
        max-width: 50%;
        flex: 0 0 50%;
    }
}

.course-slider .slick-slide {
    margin: 10px;
}

/* Course Slider Wrapper Padding */
.course-slider-wrapper {
    padding-left: 10%;
    padding-right: 10%;
}

/* Course Slider Wrapper Padding */
.course-slider-wrapper {
    padding: 0;  /* Remove left/right padding */
}

/* Individual Course Card Styling */
.course-card {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    margin: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.course-slider .slick-slide {
    margin: 0 20px;  /* Adjust spacing between slides */
}

.slick-prev,
.slick-next {
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slick-prev:hover,
.slick-next:hover {
    background-color: #0056b3;
}

/* Course Card Styling for Uniform Size */
.course-card {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    margin: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;  /* Set a fixed width for all cards */
    height: 200px;  /* Set a fixed height for all cards */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensure content is well spaced */
}

/* Ensure Icons and Text fit within the card */
.icon-size {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
    filter: grayscale(100%);
}

.course-card h4, /* Course title */
.course-card p { /* Course description */
    margin: 10px 0;
    flex: 1;  /* Flex to make sure text is evenly spaced */
    word-wrap: break-word;  /* Ensure long words wrap properly */
}

.course-card .category-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    flex: 0;
}

.course-card:hover .icon-size {
    transform: scale(1.2);
    filter: invert(30%) sepia(26%) saturate(7500%) hue-rotate(201deg) brightness(105%) contrast(103%);
}

/* Adjust Slider Container Padding */
.course-slider-wrapper {
    padding-left: 10%;  /* Slight padding on the sides */
    padding-right: 10%;
}

/* Set consistent spacing for slides */
.course-slider .slick-slide {
    margin: 0 20px;  /* Even margin between slides */
}

/* Arrow Styling */
.slick-prev, .slick-next {
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slick-prev:hover, .slick-next:hover {
    background-color: #0056b3;
}

/* Adjust Dots Color */
.slick-dots li button:before {
    color: #007bff;
}

.slick-dots li.slick-active button:before {
    color: #0056b3;
}

/* Responsive Styling for Course Cards */


.explore-btn {
    background-color: #0056b3;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.explore-btn:hover {
    background-color: #003063;
    transform: translateY(-3px);
}

/*** Team ***/
.team-item img {
    transition: .5s;

}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-text {
    height: 90px;
    overflow: hidden;
}

.team-item .team-text .bg-light,
.team-item .team-text .bg-primary {
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: .5s;
}

.team-item .team-text .bg-primary {
    flex-direction: row;
}

.team-item:hover .team-text .bg-light {
    margin-top: -90px;
}

.team-item .team-text .bg-primary .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-text .bg-primary .btn:hover {
    color: #FFFFFF;
    background: var(--secondary)
}

   /*===================
	Why choose CSS
=====================*/
.why-choose .choose-left h3{
	font-size:24px;
	font-weight:600;
	color:#2C2D3F;
	position:relative;
	padding-bottom:20px;
	margin-bottom:24px;
}
.why-choose .choose-left h3:before{
	position:absolute;
	content:"";
	left:0;
	bottom:0;
	height:2px;
	width:50px;
	background:#1a76d1;
}
.why-choose .choose-left p{
	margin-bottom:35px;
}

.why-choose .choose-left .list li {
	color: #868686;
	margin-bottom: 12px;
}
.why-choose .choose-left .list li:last-child{
	margin-bottom:0px;
}
.why-choose .choose-left .list li i{
	height:15px;
	width:15px;
	line-height:15px;
	text-align:center;
	background:#1a76d1;
	color:#fff;
	font-size:14px;
	border-radius:100%;
	padding-left:2px;
	margin-right:16px;
}
/* Start Faq CSS */
.why-choose{
	background:#fff;
}
.why-choose .choose-right{
	
	/* background-image:url('img/video-bg.jpg'); */
	/* background-size:cover;
	background-position:center;
	background-repeat:no-repeat; */
	position:relative;
    
}
.why-choose .choose-right img{
    height: 100%;
    width: 100%;

}
.wrapper {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
  }
  
  .video-main {
    position: relative;
    display: inline-block;
  }
  
  .video {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 100%;
    background: transparent;
    color: #fff;
    display: inline-block;
    background: #000000;
    z-index: 999;
  }
  
  @keyframes waves {
    0% {
      -webkit-transform: scale(0.2, 0.2);
      transform: scale(0.2, 0.2);
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
      opacity: 0.9;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }
    100% {
      -webkit-transform: scale(0.9, 0.9);
      transform: scale(0.9, 0.9);
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
  }
  
  .fa-play:before {
    content: "\f04b";
  }
  
  .waves {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";    */
    border-radius: 100%;
    right: -50px;
    bottom: -50px;
    z-index: -1;
     -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
  }
          
  .wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
  
  .wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
  }
  
  .wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
  }

/* 
/*=======================
	End Why choose CSS
=========================*/
testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    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;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

/*=========================
	Start Footer CSS
===========================*/

.footer{
	position:relative;
}
.footer .footer-top{
	padding:100px 0px;
	position:relative;
	background:#1A76D1;
}
.footer .footer-top:before{
	position:absolute;
	content:"";
	left:0;
	top:0;
	height:100%;
	width:100%;
	background:#000;
	opacity:0.1;
}

.footer .single-footer .social{
	margin:0px;
}
.footer .single-footer .social li{
	display:inline-block;
	margin-right:8px;
}
.footer .single-footer .social li:last-child{
	margin-right:25px;
}
.footer .single-footer .social li a {
	height: 34px;
	width: 34px;
	line-height: 34px;
	text-align: center;
	border: 1px solid #fff;
	text-align: center;
	padding: 0;
	border-radius: 100%;
	display: block;
	color:#fff;
	font-size: 16px;
    text-decoration: none;
}

.footer .single-footer .social li a :hover{
    background: #fff;
}
.footer .single-footer.f-link li a i{
	margin-right:10px;
}
.footer .single-footer.f-link li{
	display:block;
	margin-bottom:12px;
}
.footer .single-footer.f-link li:last-child{
	margin:0;
}
.footer .single-footer.f-link li a {
	display: block;
	color: #fff;
	text-transform: capitalize;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 400;
    text-decoration: none;
}
.footer .single-footer.f-link li a:hover{
	padding-left:3px;
    color: #000;
   
}
.footer .single-footer h2{
	color:#fff;
	font-size:20px;
	font-weight:600;
	text-transform:capitalize;
	margin-bottom:40px;
	padding-bottom:20px;
	text-transform:capitalize;
	position:relative;
}
.footer .single-footer h2::before{
	position: absolute;
	content: "";
	left: 0;
	bottom: 0px;
	height: 3px;
	width: 50px;
	background: #fff;
}
.footer .single-footer .time-sidual{
	margin-top:15px;
}
.footer .single-footer .time-sidual{
	overflow:hidden;
}
.footer .single-footer .time-sidual li {
	display: block;
	color: #fff;
	width: 100%;
	margin-bottom: 5px;
}
.footer .single-footer .time-sidual li span{
	display:inline-block;
	/* float:right; */
}
.footer .single-footer .day-head .time {
	font-weight: 400;
	float: right;
}
.footer .single-footer p{
	color:#fff;
}
.footer .single-footer .newsletter-inner{
	margin-top:20px;
	position:relative;
}
.footer .single-footer .newsletter-inner input {
	background: transparent;
	border: 1px solid #fff;
	height: 50px;
	line-height: 42px;
	width: 100%;
	margin-right: 15px;
	color: #fff;
	padding-left: 18px;
	padding-right: 70px;
	display: inline-block;
	/* float: left; */
	border-radius: 0px;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 400;
	border-radius: 5px;
}
.footer .single-footer .newsletter-inner input:hover{
	padding-left: 22px;
}
.footer input::-webkit-input-placeholder {
    opacity: 1;
    color: #fff !important;
}

.footer input::-moz-placeholder {
    opacity: 1;
    color: #fff !important;
}

.footer input::-ms-input-placeholder {
    opacity: 1;
    color: #fff !important;
}
.footer input::input-placeholder {
    opacity: 1;
    color: #fff !important;
}
.footer .single-footer .newsletter-inner .button {
	position: absolute;
	right: 0;
	top: 0;
	height: 50px;
	line-height: 50px;
	width: 50px;
	background: #fff;
	border-left: 1px solid #fff;
	text-shadow: none;
	box-shadow: none;
	display: inline-block;
	border-radius: 0px;
	border: none;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	border-radius: 0 5px 5px 0;
	color: #1A76D1;
	font-size: 25px;
}
.footer .single-footer .newsletter-inner .button i{
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.footer .single-footer .newsletter-inner .button:hover i{
	color:#2C2D3F;
}
.footer .copyright{
	background:#1A76D1;
	padding:25px 0px 25px 0px;
	text-align:center;
}
.footer .copyright .copyright-content p{
	color:#fff;
}
.footer .copyright .copyright-content p a{
	color:#fff;
	font-weight:400;
	text-decoration:underline;
	display:inline-block;
	margin-left:4px;
}
/*=========================
	End Footer CSS
===========================*/
.footer_sticky {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    
    color: white;
    text-align: center;
 }
 .footer_sticky .float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:60px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}


.footer_sticky .my-float{
	margin-top:16px;
}
.footer_sticky .float_comment{
	position:fixed;
	width:60px;
	height:60px;
	bottom:130px;
	left:40px;
	background-color:#2076ef;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.footer_sticky .comment{
    margin-top:16px;
}
.footer-bar {
    background-color:black;
    color: white;
    /* padding: 10px 0; */
    text-align: center;
    display: flex;
    justify-content: space-around;
    height: 33px;
    border-radius: 10px;
}
.footer-bar .footer-bar-location,
.footer-bar .footer-bar-demo{
    background-color: #2076ef;
    font-size: larger;
    width: 40vh;
    border-radius: 5px;
    margin: 0px 2px;
 
    /* height: 53px; */
}
.footer-bar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}


/* --------------------------------------query------------------------------ */
.query{
    width: 20%;
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index:1;
    /* height: 50px; */
    border-radius: 10px;
    /* margin-left: 100px; */
}
.query .query-ask{
    height: 20px;
}
.query .textarea{
    width: 100%;
}
@media (max-width: 576px) {
    .query{
        display: none;
    }
}