@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');



*{

    margin:0;

    padding:0;

    box-sizing: border-box;

}



:root{

    --theme_color1:#191919;

    --theme_color2:#f906a0;

    --theme_text_font:"Montserrat", sans-serif;

    --theme_heading_font:"Cormorant Infant", serif;

}



/* ======================= global css =================== */

html, body {

    -webkit-font-smoothing: antialiased;

}



body {

    font-family: var(--theme_text_font);

    font-size: 16px;

    line-height: 1.75em;

    font-weight: 400;

}



img {

    width: 100%;

    height: auto;

}



h1 {

    font-size: 48px;

}



h2 {

    font-size: 36px;

}



h3 {

    font-size: 27px;

}



h4 {

    font-size: 24px;

}



h5 {

    font-size: 20px;

}



h6 {

    font-size: 18px;

}



h1, h2, h3, h4, h5, h6 {

    font-family: var(--theme_heading_font);

    font-weight: 700;

    line-height: 1.3em;

    margin-bottom: 15px;

}



p {

    font-family: var(--theme_text_font);

    font-size: 16px;

    line-height: 1.75em;

    margin: 0px 0px 15px;

    font-weight: 400;

}



ul {

    list-style-type: none;

}



a {

    text-decoration: none;

}



a:hover {

    text-decoration: none;

}



a:link {

    text-decoration: none;

}



a:focus {

    outline: none;

}



img {

    width: 100%;

    height: auto;

    transition: 0.5s;

}



button, input, optgroup, select, textarea {

    font-family: "Montserrat", sans-serif;

}



input[type="password"]:focus, input[type="email"]:focus, input[type="text"]:focus, input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus, textarea:focus {

    outline: none;

}



input[type="password"], input[type="email"], input[type="text"], input[type="file"], textarea {

    max-width: 100%;

    margin-bottom: 15px;

    padding: 15px;

    height: auto;

    background-color: transparent;

    box-shadow: none;

    display: block;

    width: 100%;

    line-height: 1.5em;

    font-family: "Montserrat", sans-serif;

    font-size: 16px;

    font-weight: 400;

    background-image: none;

    border: 2px solid rgba(194, 74, 85, 0.2);

    border-radius: 5px;

}



input:focus, textarea:focus {

    border: 2px solid rgb(196, 73, 83);

}



input[type="submit"], input[type="reset"], input[type="button"], button {

    font-family: "Montserrat", sans-serif;

    font-size: 16px;

    font-weight: 400;

    text-shadow: none;

    box-shadow: none;

    transition: background-color 0.15s ease-out;

    border: none;

    position: relative;

    overflow: hidden;

    cursor: pointer;

}



input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, button:hover {

    border: none;

}



button.mfp-close:hover, button.mfp-arrow:hover {

    background: transparent;

}



.alert-success {

    background: transparent;

    border: 2px solid rgb(196, 73, 83);

    border-radius: 0px;

}



select {

    padding: 10px;

    border-radius: 5px;

}



th, tr, td {

    padding: 10px 0px;

}



input[type="radio"], input[type="checkbox"] {

    display: inline;

}



::-webkit-input-placeholder {

    font-size: 16px;

    font-weight: 400;

}

.section_paddingY{

    padding-top:60px;

    padding-bottom:60px;

}

.section_paddingTop{

    padding-top:60px !important;

}

.section_paddingBottom{

    padding-bottom:60px !important

}

.section_subTitle {

    display: inline-block;

    font-weight: 700;

    font-size: 12px;

    color: var(--theme_color2);

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom:0px;

    font-family: var(--theme_text_font);

}



.section_title {

    /* background: linear-gradient(-155deg, #ff5dbd 0%, #f906a0 100%); */

    color: #1a1a1a !important;

    /* background-clip: text; */

    font-size: 48px;

}

/* ======================= global css =================== */



/* ================= header =============== */

.uk_header {

    background: var(--theme_color1);

}

.uk_header.sticky nav.navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 99;

    background: #0c0c0c;

}

.navbarTop{

    background:url(../img/top-h.png);

    background-size:100% 100%;

}

.top_navbar_nav li a i {

    margin-right: 8px;

    font-size: 18px;

    color: var(--theme_color2);

}

.top_navbar_nav {

    display: flex;

    justify-content: end;

    list-style: none;

    margin: 0;

    padding: 10px 0;

    align-items: center;

}



.top_navbar_nav li {

    color: #fff;

    font-size: 15px;

    font-family: var(--theme_text_font);

}



.top_navbar_nav li:not(:last-child) {

    margin-right: 40px;

}



.top_navbar_nav li a {

    color: #fff;

    font-family: var(--theme_text_font);

}



.top_navbar_nav li.nav-item.button {

    background: var(--theme_color2);

    padding: 14px 30px;

    line-height: 1;

    text-transform: uppercase;

}

.top_navbar_nav li.nav-item.button a {

    font-weight: bold;

    letter-spacing: 2px;

}

.navbar-brand img {

    width: 250px;

}

.navbar-nav .nav-item .nav-link{

    color:#fff;

    font-family: var(--theme_text_font);

    font-weight: 500;

    letter-spacing: 0.2px;

    transition:0.5s;

}

.navbar-nav .nav-item .nav-link:hover{

    color:var(--theme_color2);

}

.navbar-nav .nav-item:not(:last-child){

    margin-right:15px;

}

.navbar-nav .nav-item:hover .dropdown-menu {

    display: block;

    margin-top:0px;

    visibility: visible;

    opacity: 1;

}



.navbar-nav .nav-item .dropdown-menu {

    margin-top: 20px;

    transition: 0.5s cubic-bezier(0.42, 0, 0.72, 0.76);

    background: #000000;

    border: none;

    display: block;

    visibility: hidden;

    opacity: 0;

    min-width: 220px;

    border-top: 3px solid var(--theme_color2);

}

.navbar-nav .nav-item .dropdown-menu li a{

    color:#fff;

}

.navbar-nav .nav-item .dropdown-menu li a:hover{

    color: var(--theme_text_color);

    background: none;

}



.dropdown-menu.megaWrapper {

    max-width: 800px;

    width: 800px;

    left: 50%;

    transform: translateX(-50%);

    padding: 0;

}



.megaWrapper .mega_menu_inner {

    display: flex;

}

.megaWrapper ul{

    padding:0px;

    margin:0px;

}



.megaWrapper .mega_menu_inner .megaMenu_items {

    width: 30%;

    padding: 16px;

    border-right: 1px solid #f95bbf;

}



.megaWrapper .mega_menu_inner .megaSubmenu_itemWrapper {

    width: calc(100% - 30%);

    padding: 16px;

}

.megaSubmenu_item_innerWrapper h4 {

    font-size: 24px;

    color: #fff;

    border-bottom: 1px solid #f95bbf;

    padding-bottom: 10px;

}



.megaMenu_items li a {

    border-radius: 4px;

    position: relative;

}



.megaMenu_items>ul>li.active>a,

.megaMenu_items>ul>li>a:focus,

 .megaMenu_items>ul>li>a:hover {

    background: var(--theme_color2) !important;

    color: #fff !important;

}

.navbar-nav .nav-item .dropdown-menu li a:hover{

    color:var(--theme_color2);

}

.megaMenu_items>ul>li>a:after {

    content:  "\ea6e";

    font-family: remixicon !important;

    font-style: normal;

    -webkit-font-smoothing: antialiased;

    position:absolute;

    right:10px;

    top:50%;

    transform:translateY(-50%);

}

.megaSubmenu_item_innerWrapper ul li a {

    padding: 0;

}

.megaMenu_items>ul>li.active .megaSubmenu_itemWrapper {
    display: block;
}


.navbar-nav .nav-item:hover>.nav-link {

    color: #f906a0;

}

.megaSubmenu_item_innerWrapper ul li a:hover {

    color: #e1dada !important;

}

.megaWrapper .megaSubmenu_item_innerWrapper ul li a {

    padding: 10px 0;

    display: block;

    line-height: 1;

}



.megaWrapper .megaSubmenu_item_innerWrapper ul li:not(:last-child) a {

    border-bottom: 1px solid var(--theme_color2);

}



.megaWrapper .megaSubmenu_item_innerWrapper ul li a:hover {

    color: var(--theme_color2) !important;

}

.navbar-nav .nav-item .dropdown-menu:not(.megaWrapper) li:not(:last-child) a.dropdown-item {

    border-bottom: 1px solid var(--theme_color2);

}

/* ================= header =============== */



/* =============== hero section ================ */

/* ================================================================== */



.hero-slider {



	width: 100%;



	height: 700px;



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



	position: relative;



	z-index: 0;



}





@media (max-width: 991px) {



	.hero-slider {



		height: 600px;



	}



}





@media (max-width: 767px) {



	.hero-slider {



		height: 500px;



	}



}





.hero-slider .swiper-slide {



	overflow: hidden;



	color: var(--white_color);



}





.hero-slider .swiper-container {



	width: 100%;



	height: 100%;



	position: absolute;



	left: 0;



	top: 0;



}





.hero-slider .slide-inner {



	width: 100%;



	height: 100%;



	position: absolute;



	left: 0;



	top: 0;



	z-index: 1;



	background-size: cover;



	background-position: center;



	display: flex;



	justify-content: center;



	align-items: center;



	text-align: left;



}





.hero-slider .swiper-button-prev,

.hero-slider .swiper-button-next {

    background: #fff;

    width: 55px;

    height: 55px;

    line-height: 53px;

    margin-top: -30px;

    text-align: center;

    color: var(--theme_color2);

    border-radius: 55px;

    opacity: 0;

    visibility: hidden;

    transition: all .3s ease;



}

.hero-slider .swiper-button-prev:hover,

.hero-slider .swiper-button-next:hover {

    background: var(--theme_color2);

    color: #fff;



}

.hero-slider .swiper-button-prev:hover:before,

.hero-slider .swiper-button-next:hover:before {

    color: #fff !important;



}





.hero-slider:hover .swiper-button-prev,



.hero-slider:hover .swiper-button-next {



	transform: translateX(0);



	opacity: 1;



	visibility: visible;



}

.hero-slider:hover .swiper-button-prev svg,



.hero-slider:hover .swiper-button-next svg{

    display: none;

}



@media (max-width: 767px) {





	.hero-slider .swiper-button-prev,



	.hero-slider .swiper-button-next {



		display: none;



	}



}





.hero-slider .swiper-button-prev {



	left: 25px;



	transform: translateX(50px);



}





.hero-slider .swiper-button-prev:before {



	font-family: remixicon !important;

    font-style: normal;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

	content: "\ea64";

	font-size: 15px;

	color: var(--theme_color2);

	font-style: normal;

	display: inline-block vertical-align middle;

	font-weight: 900;



}





.hero-slider .swiper-button-next {

	right: 25px;

	transform: translateX(-50px);



}





.hero-slider .swiper-button-next:before {



	font-family: remixicon !important;

    font-style: normal;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

	content: "\ea6e";

	font-size: 15px;

	color: var(--theme_color2);

	font-style: normal;

	display: inline-block vertical-align middle;

	font-weight: 900;



}





.hero-slider .swiper-pagination-bullet {



	width: 12px;



	height: 12px;



	text-align: left;



	line-height: 12px;



	font-size: 12px;



	color: #000;



	opacity: 0.3;



	background: var(--theme_color);



	transition: all .2s ease;



}





.hero-slider .swiper-pagination-bullet-active {



	opacity: 1;



	width: 40px;



	border-radius: 12px !important;



}





.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,



.hero-slider .swiper-pagination-custom,



.hero-slider .swiper-pagination-fraction {



	bottom: 30px !important;



}





.swiper-pagination {



	text-align: center;



}





.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {



	bottom: 50px;



	max-width: 1200px;



	padding: 0 15px;



	margin: 0 auto;



	left: 50%;



	transform: translateX(-50%);



}





@media (min-width: 767px) {



	.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {



		bottom: 30px;





	}



}





.hero-style .swiper-pagination {



	position: absolute;



	text-align: center;



	-webkit-transition: .3s opacity;



	-o-transition: .3s opacity;



	transition: .3s opacity;



	-webkit-transform: translate3d(0, 0, 0);



	transform: translate3d(0, 0, 0);



	z-index: 10;



	bottom: 30px;



	left: 50%;



	display: flex;



	align-items: center;



	gap: 10px;



}





/*--------------------------------------------------------------

#hero-style

--------------------------------------------------------------*/

.hero-style {

	height: 550px;

	transition: all .4s ease;

    overflow: hidden;

    background:url(../img/bg-1.png);

}



@media (max-width: 991px) {

	.hero-style {

		height: 600px;

	}

}



@media (max-width: 768px) {

	.hero-style {

		height: 400px;

	}

}



@media screen and (min-width: 992px) {

	.hero-style .container {

		padding-top: 0px;

	}

}





.hero-style .slide-title,

.hero-style .slide-text,

.hero-style .slide-btns {

	max-width: 500px;

}





.hero-style .slide-title h2 {

	font-size: 48px;

	font-weight: 600;

	line-height: 55px;

	color: #fff;

	margin: 0 0 40px;

	text-transform: capitalize;

	transition: all .4s ease;

}



.hero-style .slide-title h2 small {

	font-size: 48px;

	font-weight: 200;

}



.hero-style .slide-title h2 span {

	color: var(--theme_blue);

}



.hero-style .slide-title h2 span.green {

	color: var(--theme_green);

}



@media (max-width: 1199px) {

	.hero-style .slide-title h2 {

		font-size: 75px;

	}

}



@media (max-width: 991px) {

	.hero-style .slide-title h2 {

		font-size: 40px;

		margin: 0 0 25px;

	}

}



@media (max-width: 767px) {

	.hero-style .slide-title h2 {

		font-size: 35px;

		margin: 0 0 30px;

	}

}





.hero-style .slide-text p {



	opacity: 0.8;



	font-size: 20px;



	font-weight: 500;



	line-height: 1.25;



	color: #fff;



	margin: 0 0 40px;



	transition: all .4s ease;



}





@media (max-width: 768px) {



	.hero-style .slide-text p {

		font-size: 16px;

		font-size: 1rem;

		font-weight: normal;

		margin: 0 0 30px;

	}

}





.hero-style .slide-btns>a:first-child {



	margin-right: 10px;



}

/* =============== hero section ================ */



/* ================== page content ================== */

/* .home_main{

    background:#0c0c0c;

} */

.section_title.font_36 {

    font-size: 36px;

    line-height: 1.3em;

}

.about_video video {

    width: 100%;

    height: 450px;

    object-fit: cover;

    border-radius: 24px;

}

.text_white {

    color: rgb(221, 221, 221);

}

.about_video {

    padding-left: 60px;

}

.theme_button {

    font-size: 14px;

    text-transform: uppercase;

    padding: 14px 25px;

    line-height: 1;

    font-weight: 600;

    letter-spacing: 3px;

    background: var(--theme_color2);

    color: #fff;

    border-radius: 30px;

    display: inline-block;

}



.theme-btn-s2.theme_button {

    background: #fff;

    color: var(--theme_color2);

}

.btn-glow {

  position: relative;

  display: inline-block;

  padding: 14px 34px;

  border-radius: 40px;

  font-weight: 600;

  color: #fff;

  text-decoration: none;

  background: linear-gradient(135deg, #ff2fa0, #ff6ec7);

  /* box-shadow:

    0 0 10px rgba(255, 47, 160, 0.6),

    0 0 30px rgba(255, 47, 160, 0.5); */

  transition: all 0.35s ease;

}



/* glow hover */

.btn-glow:hover {

  transform: translateY(-2px);

  /* box-shadow:

    0 0 15px rgba(255, 47, 160, 0.8),

    0 0 45px rgba(255, 47, 160, 0.9); */

}





/* =============== course ================= */

/* .coursWrapper {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-gap: 30px;

} */



.courseItem {

    border-radius: 8px;

    overflow: hidden;

    padding: 0px;

    background: #fff;

    padding-bottom:8px;

}

.courseItem .course_content .course_title {

    font-size: 18px;

}



.courseItem .course_image {

    height: 240px;

    border-radius: 0px;

    overflow: hidden;

}



.courseItem .course_image img {

    height: 100%;

    width: 100%;

    object-fit: cover;

    transition: 0.5s;

}

.courseItem .course_image:hover img{

    transform:scale(1.1)

}



.courseItem  .course_content {

    color: #212121;

    padding: 16px;

}



.courseItem .course_content .course_list {

    list-style: none;

    margin-bottom: 30px;

    padding:0;

}



.courseItem .course_content .course_list li {

    margin-bottom: 4px;

    font-size: 14px;

    position: relative;

    padding-left: 32px;

}

.courseItem .course_content .course_list li:after {

    content: "\eb7b";

    font-family: remixicon!important;

    font-style: normal;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

    position: absolute;

    top: 1px;

    left: 0;

    color: #212121;

    border-radius: 50%;

    font-size: 16px;

}



.courseItem a.theme_button {

    text-align: center;

}



.slider_nav {

    display: flex;

    justify-content: end;

}



.slider_nav .theme_navBtn {

    width: 50px;

    height: 50px;

    border: 2px solid #1a1a1a;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 20px;

    border-radius: 50%;

    color: #1a1a1a;

    transition: 0.5s;

}





.slider_nav div:first-child {

    margin-right: 20px;

}



.slider_nav div:hover {

    background: #1a1a1a;

    color: #fff;

}



.our_courses {

    position:relative;

    z-index: 1;

    /* background:url(../img/banner-1/training-bg.webp); */

    background-size:cover;

    background-position:center center;

    position:relative;

    background:#1a1a1a;

}

.course_main {

    background: #242424;

    border-radius: 16px;

    position:relative;

    z-index: 1;

}

.our_courses:after {

    content: '';

    position: absolute;

    top: 0px;

    left: 0px;

    background: url(../img/shape.png);

    z-index: -1;

    opacity: 0.65;

    pointer-events: none;

    width: 200px;

    height: 200px;

    background-repeat: no-repeat;

}



.courses_wrap {

    padding: 30px;

    border-right: 1px solid #3e3939;

    margin-bottom: 0;

    height: 100%;

    max-height: 420px;

    overflow: hidden;

    overflow-y: auto;

}



/* Width */

.courses_wrap::-webkit-scrollbar {

  width: 8px;

}



/* Track */

.courses_wrap::-webkit-scrollbar-track {

  border-radius: 10px;

}



/* Thumb */

.courses_wrap::-webkit-scrollbar-thumb {

  background: #302e2f;

  border-radius: 4px;

}







.course_main div[class^="col-md"] {

   padding:0px;

}



.course_detailWrap {

    display: flex;

    padding: 30px;

}



.course_detailWrap .course_image {

    width: 40%;

}



.course_detailWrap .course_content {

    width: calc(100% - 40%);

    padding-left: 20px;

}



.course_content .course_title {

    font-size: 20px;

    margin-bottom: 10px;

    color:#fff;

}



.course_content .list-unstyled li {

    margin-bottom: 5px;

    position: relative;

    padding-left: 28px;

    color:#808080;

}



.course_content .list-unstyled li:after {

   content: "\eb7b";

    font-family: remixicon !important;

    font-style: normal;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

    position: absolute;

    top: 1px;

    left: 0;

    color: #808080;

    border-radius: 50%;

    font-size: 16px;

}



.course_detailWrap .course_image img {

    width: 100%;

    height: 100%;

    border-radius: 12px;

    object-fit: cover;

}



.courses_wrap .course_name {

    padding: 18px 20px;

    background: #302e2f;

    border-radius: 8px;

    position: relative;

    font-size: 16px;

    line-height: 1.2;

    cursor: pointer;

    transition: cubic-bezier(0.075, 0.82, 0.165, 1);

    font-family: var(--theme_heading_font);

    color: #808080;

}



.courses_wrap .course_name:after {

    content: "\ea6e";

    font-family: remixicon !important;

    font-style: normal;

    -webkit-font-smoothing: antialiased;

    position: absolute;

    right: 10px;

    top: 50%;

    transform: translateY(-50%);

}

.courses_wrap .course_name:not(:last-child) {

    margin-bottom: 16px;

}



.courses_wrap .course_name span.lavel {

    position: absolute;

    white-space: nowrap;

    font-size: 12px;

    background: linear-gradient(135deg, #ff2fa0, #ff6ec7);

    line-height: 1;

    padding: 4px 6px;

    border-radius: 4px;

    top: -6px;

    left: 16px;

    color: #fff;

}

.courses_wrap .course_name.active,

.courses_wrap .course_name:hover{

    background:var(--theme_color2);

    color:#fff;

}

.course_tab_panel {

    display: none;

}



.course_tab_panel.active {

    display: block;

}





/* ================= new course design ================= */

.ks-service-style-2 {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}



.ks-service-style-2 .ks-service-item {

    position: relative;

    /* padding: 30px; */

    min-height: 380px;

    color: #fff;

    z-index: 1;

    background:#242424;

    border:2px solid var(--theme_color2);

    border-radius: 20px;

    overflow: hidden;

}
.service_content_box{
    padding: 0px 30px 30px 30px;
}



/* .ks-service-style-2 .ks-service-item::before {

    content: "";

    position: absolute;

    inset: 0;

    display: block;

    background-color: #242424;

    z-index: -1;



    

    -webkit-mask-image: url("../img/mask-2.png");

    -webkit-mask-repeat: no-repeat;

    -webkit-mask-position: center;

    -webkit-mask-size: 100% 100%;



    mask-image: url("../img/mask-2.png");

    mask-repeat: no-repeat;

    mask-position: center;

    mask-size: 100% 100%;

} */

.ks-service-style-2 .ks-service-item .ks-service-link {

    position: absolute;

    bottom: 0;

    right: 0;

}

.ks-service-item .ks-service-link a {

    display: inline-block;

    border-radius: 200px;

    padding: 10px 15px;

    width: 48px;

    height: 62px;

    line-height: 41px;

    text-align: center;

    -webkit-transition: 0.3s;

    transition: 0.3s;

    color: var(--theme-color1-text-color);

    background: var(--theme_color2);

    position: relative;

    z-index: 1;

    overflow:hidden;

}

.ks-service-item .ks-service-link a::after {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    height: 100%;

    width: 100%;

    border-radius: 200px;

    -webkit-transform: scale(0);

    transform: scale(0);

    -webkit-transition: 0.3s;

    transition: 0.3s;

    background-color: #FFF;

    z-index: -1;

}

.ks-service-item:hover .ks-service-link a::after {

    -webkit-transform: scale(1.2);

    transform: scale(1.2);

}

.ks-service-item:hover .ks-service-link a svg path {

    fill:#1a1a1a !important;

}



.ks-service-item .ks-service-title {

    font-size: 20px;

}



.ks-service-item .ks-service-title a {

    color: #fff;

}



.ks-service-item .ks-service-thumb {

    border-radius: 20px;

    overflow: hidden;

    margin-bottom: 20px;

    position: relative;

}

.ks-service-item .ks-service-thumb img{

    width: 100%;

    border-radius: 20px;

    -webkit-transition: 1.3s all ease;

    transition: 1.3s all ease;

    min-height: 300px;

}



.ks-service-style-2 .ks-service-item:hover .ks-service-thumb img {

    -webkit-transform: scale(1.1);

    transform: scale(1.1);

}

.ks-service-style-2 .ks-service-item .ks-service-list-box {

    margin-bottom: 15px;

}

.ks-service-list-box ul li {

    line-height: 1.87;

    padding-left: 16px;

    position: relative;

    -webkit-transition: 0.3s;

    transition: 0.3s;

    margin-bottom: 2px;

    color: #909090;

    font-size: 14px;

}

.ks-service-list-box ul li::after {

    content: "";

    position: absolute;

    top: 50%;

    left: 0;

    height: 6px;

    width: 6px;

    border-radius: 50%;

    -webkit-transition: 0.3s;

    transition: 0.3s;

    -webkit-transform: translateY(-50%);

    transform: translateY(-50%);

    background-color: #808080;

}



.ks-service-style-2 .ks-service-item .ks-service-list-box ul {

    margin: 0;

    padding: 0;

}

.ks-service-style-2 .ks-service-item .ks-service-more {

    font-weight: 700;

    font-size: 12px;

    color: #909090;

    text-transform: uppercase;

    display: flex;

    justify-content:space-between;

    padding-top:16px;

    border-top:1px solid rgba(147, 147, 169, 0.3);

}

/* .ks-service-more::before {

    content: "";

    display: inline-block;

    height: 1px;

    width: 44%;

    -webkit-transform: translateY(-3px);

    transform: translateY(-3px);

    margin-right: 20px;

    background-color: rgba(147, 147, 169, 0.3);

} */



.ks-service-style-2 .ks-service-item .ks-service-more .ks-servicebtn {

    padding: 12px 20px;

    background: var(--theme_color2);

    color: #fff;

    line-height: 1;

    border-radius: 35px;

    transition: 0.5s;

    letter-spacing:1px;

     border:1px solid var(--theme_color2);

}

.ks-service-style-2 .ks-service-item .ks-service-more .ks-servicebtn:hover {

    transform:translateY(-3px);

    background:#fff;

    color:var(--theme_color2);

    border-color:#fff;

}



.ks-service-style-2 .ks-service-item .ks-service-more .ks-servicebtn:last-child:hover{

   border-color:var(--theme_color2);

    background:var(--theme_color2);

    color:#fff;

}







/* ================= new course design ================= */

/* .our_courses:after{

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    background: url(../img/shape.png);

    z-index: -1;

    opacity: 0.75;

    pointer-events: none;

    width:200px;

    height: 200px;

    background-repeat: no-repeat;

} */

.commercialCategory {

    padding: 0;

    margin: 0;

    margin-bottom: 30px;

    list-style: none;

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    grid-gap: 20px;

}



.commercialCategory li:not(:last-child) {

    margin-right: 8px;

}



.commercialCategory li {

    padding: 25px;

    border: 1px solid #242424;

    border-radius: 16px;

    font-size: 12px;

    font-weight: 600;

    line-height: 1;

    cursor: pointer;

    transition: 0.4s;

    text-transform: uppercase;

    letter-spacing: 0.2em;

    color: #ffffff;

    background: #242424;

}

.commercialCategory li .icon {

    display: block;

    margin-bottom: 20px;

}



.commercialCategory li .icon img {

    width: auto;

}



.commercialCategory li h4 {

    font-size: 20px;

    margin-bottom: 0;

    text-transform: capitalize;

    letter-spacing: 1px;

}



.section_title.text-white {

    color: #fff !important;

}

.our_courses .slider_nav .theme_navBtn {

    border: 2px solid #ffffff;

    color: #ffffff;

}



.commercialCategory li:hover, .commercialCategory li.active {

    background: var(--theme_color2);

    color: #fff;

    border-color: var(--theme_color2);

}

.white_image{

    display: none;

}

.commercialCategory li:hover span .white_image, .commercialCategory li.active span .white_image {

   display: block;

}

.commercialCategory li:hover span .dark_image, .commercialCategory li.active span .dark_image {

   display: none;

}

.cousrseTapPanel {

    display: none;

}

.cousrseTapPanel.active{

    display:block;

}

/* =============== course ================= */

/* ================== why_choose_section ====================== */

/* .why_choose_section{

    background:var(--theme_color1);

} */

.why_imageWrapper {

    position: relative;

    /* padding-right: 50px; */

    padding-bottom: 50px;

}



.why_imageWrapper .big_image {

    height: 580px;

    border-radius: 16px;

    overflow: hidden;

    border: 3px solid var(--theme_color2); 

}



.why_imageWrapper .small_image {

    width: 300px;

    height: 300px;

    position: absolute;

    bottom: 0;

    right: 0;

    /* border: 3px solid var(--theme_color2); */

    overflow: hidden;

    border-radius: 14px;

}



.why_imageWrapper .small_image img {

    height: 100%;

    width: 100%;

    object-fit: cover;

}



.why_imageWrapper .big_image img {

    height: 100%;

    object-fit: cover;

}
 .why-choose-slider {
    position: relative;
    overflow: hidden;
}

.why-choose-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.why-choose-slider .slide.active {
    opacity: 1;
    position: relative;
}

.why_choose_list {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    grid-column-gap: 30px;

}



.why_choose_list li {

    color: #fff;

    font-size: 18px;

    margin-bottom: 10px;

    padding-left: 34px;

    position: relative;

}

.why_choose_list li::after{

    content:'' ;

    width:24px;

    height:24px;

    background:url(../img/logo-fav.png);

    background-size:24px 24px;

    background-repeat: no-repeat;

    position:absolute;

    left:0;

    top:0;

    animation: 16s linear infinite circularAnimation;

}



@keyframes circularAnimation {

    0% {

        transform: rotate(0)

    }



    100% {

        transform: rotate(360deg)

    }

}



.placedStudent  .swiper-wrapper {

    transition-timing-function: linear;

}

.ctm_accrodion .accordion-item {

    border: 2px solid var(--theme_color2);

    border-radius: 16px;

    overflow: hidden;

}



.ctm_accrodion .accordion-item:not(:last-child) {

    margin-bottom: 10px;

}



.ctm_accrodion .accordion-item .accordion-header {

    line-height: 1em;

}



.ctm_accrodion .accordion-item .accordion-header .accordion-button {

    border: none;

    box-shadow: none;

    padding: 2px 20px;

    font-family: var(--theme_heading_font);

    font-weight: bold;

    font-size: 20px;

}



.ctm_accrodion .accordion-item .accordion-header .accordion-button:not(.collapsed) {

background:none;

}



.ctm_accrodion .accordion-item .accordion-body{

    border-top:2px solid var(--theme_color2);

}



/* ================== why_choose_section ====================== */



/* ================== Training transformation ================= */

.training_transformation_section{

    background:#1a1a1a;

    background-size:cover;

    background-position:center center;

    position:relative;

    z-index: 1;

    overflow: hidden;

}



/* .training_transformation_section::before{

    position: absolute;

    content: "";

    background-image: url(../img/banner-h1-6.png);

    background-repeat: no-repeat;

    background-size: cover;

    background-position: bottom left;

    bottom: 0;

    left: 0;

    width: 1484px;

    height: 100%;

    z-index: 1;

} */



.training_transformation_section .section_overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    z-index: -1;

}

.training_transformation_section .section_overlay:before {

    position: absolute;

    content: "";

    background-image: linear-gradient(300deg, var(--theme_color2) 0%, #1a1a1a 50%);

    width: 100%;

    height: 100%;

    top: 0;

    left: 0;

    opacity: 0.9;

}



.training_transform_wrapper {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 20px;

}



.training_transform_wrapper img {

    width: 100%;

    height: 320px; /* ðŸ‘ˆ image badi */

    object-fit: cover;

    border-radius: 12px;

    transition: 0.4s ease;

}



.training_transform_wrapper a:hover img {

    transform: scale(1.05);

}



.training_carousel .swiper-slide {

    transform: scale(0.8);

    transition: transform 0.35s ease, opacity 0.35s ease;

    opacity: 0.5;

}

.training_carousel .swiper-slide img{

    border-radius: 14px;

    height:390px;

    object-fit: cover;

}



/* Center slide */

.training_carousel .swiper-slide.active {

    transform: scale(1.2);

    opacity: 1;

    z-index: 3;

}

.training_carousel {

    padding: 44px;

    padding-bottom: 70px;

}

.training_carousel .swiper-pagination {

    bottom: 0px;

    display: inline-flex;

    margin: 0 auto;

    left: 50%;

    transform: translateX(-50%);

    justify-content: center;

}



.training_carousel span.swiper-pagination-bullet {

    background: #fff;

    width:10px;

    height:10px;

}

/* Center left & right */

/* .training_carousel .swiper-slide-prev,

.training_carousel .swiper-slide-next {

    transform: scale(1);

    opacity: 0.8;

    z-index: 2;

} */





.certificationSlider .swiper-slide img {

    border-radius:8px;

}

.awards .swiper-slide img{

    border-radius:12px

}



/* ================== Training transformation ================= */



/*  ================ our placement ============== */

.our_placementStudent{

    background:url(../img/banner-1/bg-5.png);

    background-size:cover;

    background-position:center center;

    position: relative;

    z-index: 1;

}

/*  ================ our placement ============== */

.our_placementStudent:after {

    content: '';

    width: 100%;

    height: 100%;

    position: absolute;

    left: 0;

    top: 0;

    background: #000;

    z-index: -1;

    opacity: 0.5;

}



.celebration_section {

    /* background: var(--theme_color2); */

    margin:0;

}

.celebration_section .wb_image {

    height: 400px;

    border-radius: 24px;

    overflow: hidden;

}



.celebration_section .wb_image img {

    height: 100%;

    width: 100%;

    object-fit: cover;

}

.about-tabs .about-tab {

    background: #fff;

    color: var(--theme_color2);

    padding: 10px 19px;

    line-height: 1;

    border-radius: 30px;

    cursor: pointer;

    font-weight: 500;

    font-size:13px;

}



.about-tabs .about-tab:not(:last-child) {

    margin-right: 10px;

}



nav.about-tabs {

    margin-bottom: 14px;

}



.about-tabs .about-tab.active {

    background: #c3067e;

    color: #fff;

}

/* ==================== certification ================== */

.awar_certification {

    background: #f7d2ea;

    position: relative;

    z-index: 1;

}

.awar_certification:after {

    content: '';

    width: 50%;

    right: 0;

    top: 0;

    position: absolute;

    height: 100%;

    pointer-events: none;

    background: #fbe9f4;

    z-index: -1;

}



.headings {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 30px;

}



/* .headings .slider_nav .theme_navBtn {

    border-color: #fff;

    color: #fff;

    width: 40px;

    height: 40px;

} */



.headings .section_title {

    margin-bottom: 0px;

}



/* ==================== certification ================== */

/* ==================== wardsVertical_slider ================= */

.h_450{

    height: 500px;

}

.awards {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-gap: 10px;

    padding: 30px 0;

}

.awards .swiper .swiper-wrapper{

    transition-timing-function: linear !important;

}

.awards .swiper-slide img {

    height: 100%;

}

/* ==================== wardsVertical_slider ================= */





/* ================== testimonials ============== */

.testimonial_careousel .swiper-slide img{

    height:380px;

    border:3px solid var(--theme_color2);

    border-radius:24px;

}

/* ================== testimonials ============== */

/* ================= faqs =============== */

.custom-accordion {

  background: #0c0c0c;

  border-radius: 12px;

}



.custom-accordion .accordion-item {

  background: transparent;

  border: none;

  border-bottom: 1px solid #222;

}



.custom-accordion .accordion-button {

  background: transparent;

  color: #fff;

  font-size: 24px;

  font-weight: 500;

  padding: 22px 0;

  box-shadow: none;

}



.custom-accordion .accordion-button::after {

  filter: invert(1);

}



.custom-accordion .accordion-button:not(.collapsed) {

  color: #ffffff;

  background: transparent;

}



.custom-accordion .accordion-button:focus {

  box-shadow: none;

}



.custom-accordion .accordion-body {

  color: #bdbdbd;

  font-size: 15px;

  padding: 0 0 20px 0;

  line-height: 1.6;

}



/* remove default bg */

.accordion-button:not(.collapsed)::after {

  transform: rotate(180deg);

}

.ctm_accrodion.faqs .accordion-item .accordion-header .accordion-button {

    padding: 14px 20px;

}



/* ================= faqs =============== */





/* ================ blog ================ */

.blog_section {

    background: var(--theme_color1);

    position: relative;

    overflow: hidden;

}

.blog_section:after {

    content: '';

    width: 500px;

    height: 500px;

    position: absolute;

    top: -91px;

    left: -130px;

    border-radius: 50%;

    border: 80px solid var(--theme_color2);

    filter: blur(92px);

}


.blog_item .blog_image img{

    height: 100%;

    width: 100%;

    object-fit: cover;

    transition: 0.5s;

}

.blog_item .blog_image:hover img{

    transform:scale(1.1)

}

.blog_item {
    margin: 0;
    background: #fff;
    padding: 0px;
    border-radius: 10px;
    border: 1px solid #f906a0;
}

.blog_item .blog_content {
    color: #1a1a1a;
    padding: 20px;

}



.blog_item .blog_content .blog_title {

    font-size: 19px;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

}

.blog_item .blog_content .blog_title a {

    color: #1a1a1a;

}
 


.blog_item .blog_content span.cat {
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-block;
    line-height: 1;
    color: #ec088e;
    border-radius: 30px;
}


.blog_item .blog_content .blog_footer {

    display: flex;

    justify-content: space-between;

}



.blog_item .blog_content .blog_footer .circle_btn {
    width: 120px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--theme_color2);
    border-radius: 30px;
    transition: 0.5s;
}

.blog_item:hover .blog_content .blog_footer .circle_btn {
    background: #f906a0;
}

.blog_item:hover .blog_content .blog_footer .circle_btn a{

    color:#fff;

}

.blog_item .blog_content .blog_footer .circle_btn a{

    color:#fff;
    
}
.blog_item:hover .blog_content .blog_footer .circle_btn{
    transform: translateY(-3px);
}
.blog_item .blog_content .blog_footer .date {

    font-size: 14px;

}

.blog_item .blog_content .blog_desc {

    display: -webkit-box;

    -webkit-line-clamp: 3;

    -webkit-box-orient: vertical;

    overflow: hidden;

}

/* ================ blog ================ */



/* ================ cta form =============== */

section.cta_section {

    background: url(../img/bgnew.webp);

    background-size:cover;

    background-position: center center;

}



/* .container.cta_container {

    padding: 40px;

    background: url(../img/bgnew.webp);

    border-radius: 36px;

} */

.container.cta_container .cta_logo{

    height:280px;

    width:auto;

}

.cta_container form {

    background: linear-gradient(0deg, #F805A0, #fb82db);

    padding: 30px;

    border-radius: 24px;

}



.cta_container form .form_title {

    text-align: center;

    color: #fff;

    margin-bottom: 30px;

}

.form_fields {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    grid-gap: 20px;

}



.form_fields .form_grooup.textarea {

    grid-column-start: 1;

    grid-column-end: 3;

}



.form_fields .form_grooup input:not([type="button"]), .form_fields .form_grooup select {

    width: 100%;

    background: #fff;

    border: none;

    padding: 10px;

    border-radius: 6px;

    height: 45px;

    margin-bottom: 0;

}



.form_fields .form_grooup textarea {

    background: #fff;

    border: none;

    border-radius: 6px;

    margin-bottom: 0;

}






/* Slider video style */
.testimonial_section_new .video-item {
  position: relative;
  cursor: pointer;
}

.testimonial_section_new .video-item img {
  width: 100%;
  border-radius: 12px;
}

.testimonial_section_new .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 10px 18px;
  border-radius: 50%;
}

/* Popup modal */
.testimonial_section_new .video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.testimonial_section_new .video-modal-content {
  position: relative;
  width: 80%;
  max-width: 800px;
}

.testimonial_section_new .video-modal iframe {
  width: 100%;
  height: 450px;
  border-radius: 10px;
}

.testimonial_section_new .close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}


/* ================ cta form =============== */

/* ================== inner banner ================== */


.breadcrumb_area {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    z-index: 0;
}

.breadcrumb_area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000000b3;
    z-index: 1;
}

.breadcrumb_area .container {
    position: relative;
    z-index: 2;
}

.breadcrumb_area h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}
.breadcrumb_area p {
    color: #fff;
    text-align: center;
    font-weight: 500;
}

/* ================== inner banner ================== */


/* ================== about us ================== */

section.about_page_section.section_paddingY {
    background: var(--theme_color1);
    position: relative;
    overflow: hidden;
    padding-top: 85px;
    padding-left: 50px;
}
.vision-mission-img img {
    height: 350px;
    object-fit: cover;
    border-radius: 5px;
}
.about_page_section:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    background: url(../img/shape.png);
    z-index: 9;
    opacity: 0.65;
    pointer-events: none;
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
}
.about_page_section h2 {
    color: #fff !important;
}
.about_page_section p {
    color: #fff !important;
}
.about_page_section .about_image_wrapper {
    position: relative;
    max-width: 500px;
    margin: auto;
    z-index: 1;
}
/* .about_page_section .about_image_wrapper::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 40px;
    width: 85%;
    height: 90%;
    background: #993f74;
    border-radius: 10%; 
    z-index: -1;
} */

.about_page_section .about_big_img {
    border-radius:10%;
    overflow: hidden;
    background: #f3f3f3;
}

.about_page_section .about_big_img img {
    width: 100%;
    height: 640px;;
    object-fit: cover;
    display: block;
}

/* Small circle box */

.about_page_section .about_small_circle {
    position: absolute;
    bottom: -20px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #ff5ebd;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about_page_section .about_small_circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Experience text overlay */

.about_page_section .experience_text {
    position: absolute;
    inset: 0;
    background: #1a1a1a8f;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
}
/* chairman section  */
.chairman_section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.chairman::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #00000085;
    z-index: 1;
    opacity: 0.5;
}
.chairman h2.section_title.font_36 {
    color: #fff !important;
}
.chairman p {
    color: #fff !important;
}
.chairman_section .col-md-6{
    z-index: 999;
}
.ceo_connect .connect_text {
    color: #f821a8 !important;
    line-height: 1 !important;
}
.chairman_section .about_image_wrapper img {
    height: 600px;
    object-fit: cover;
    border-radius:50px;
}
/* Connect wrapper */
.chairman_section .chairman_connect {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 15px;
    flex-wrap: wrap;
}

/* Text style */
.chairman_section .connect_text {
    color: #fff;
    line-height: 1;
}

.chairman_section .connect_text .big {
    display: block;
    font-size: 38px;
    line-height: 50px;
    font-weight: 500;
    font-family: cursive;
}

.chairman_section .connect_text .small {
    font-size: 17px;
    opacity: 0.85;
    padding-top: 5px;
}

/* Arrow image */
.chairman_section .connect_arrow img {
    width: 100%;
    height: auto;
    transform: rotate(
312deg);
}
/* Social icons list */
.chairman_section .connect_icons .footer_social {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0;
    margin: 0;
}
/* Social icons */
.chairman_section .connect_icons .footer_social li a img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    transition: 0.3s ease;
}
/* Hover effect */
.chairman_section .connect_icons .footer_social li a:hover img {
    transform: translateY(-4px) scale(1.1);
    filter: brightness(1.3);
}
.connect_arrow img {
    border-radius:none !important;
}
/* chairman section  */


/* vision mision  */

.vision_section .vision_card {
    background: #f7d2ea;
    padding: 21px 20px;
    text-align: center;
    position: relative;
    transition: 0.3s ease;
}
.vision_section .vision_card i {
    font-size: 40px;
    color: #ff5ebd;
    margin-bottom: 15px;
    display: inline-block;
}
.vision_section .vision_card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}
.vision_section .vision_card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}
.vision_section .left_card {
    border-radius: 0 120px 120px 0;
    transform: translateY(0px); /* upar shift */
}
.vision_section .right_card {
    border-radius: 120px 0 0 120px;
    transform: translateY(165px); /* niche shift */
}
.vision_section .vision_image {
    border-radius: 200px;
    overflow: hidden;
    padding: 10px;
    background: #ff5ebd;
}
.vision_section .vision_image img {
    width: 100%;
    height: 420px;
    object-position: top;
    object-fit: cover;
    border-radius: 200px;
}

/* vision mision  */
/* Big image */
.Highlights-slider {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.Highlights-slider::before {
    position: absolute;
    content: "";
    background-image: linear-gradient(300deg, var(--theme_color2) 0%, #1a1a1a 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.9;
}

/* Content overlay ke upar rahe */
.Highlights-slider .container {
    position: relative;
    z-index: 2;
}

/* Arrows */
.Highlights-slider .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 28px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.Highlights-slider .slider-arrow.left {
  left: 12%;
}

.Highlights-slider .slider-arrow.right {
  right:  12%;
}

.Highlights-slider .slider-arrow:hover {
  background: rgba(0,0,0,0.8);
}
.highlight_big {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 15px;
}

.highlight_big img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease;
}

.highlight_big img.active {
  opacity: 1;
}

/* Thumbnails */

.small-image {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.small-image img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
  border-radius: 6px;
}

.small-image img.active {
  opacity: 1;
  border: 2px solid #ff5ebd;
}
 
/* ================== about us ================== */


/* ================== contact us ================== */

.contact_enquiry {
    background: #f9f9f9;
}

.contact_enquiry .contact_box {
    background: #ffffff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s ease;
}

.contact_enquiry .contact_box:hover {
    transform: translateY(-6px);
}

/* Icon style */

.contact_enquiry .contact_box i {
    font-size: 36px;
    color: #ff5ebd;
    margin-bottom: 12px;
    display: inline-block;
}

.contact_enquiry .contact_box h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact_enquiry .contact_box p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.contact_enquiry .contact_box span {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: #666;
}
.contact_page_section{
    position:relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.contact_page_section .col-lg-4.col-md-6 {
    z-index: 99;
}
.contact_page_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #00000085;
    z-index: 1;
    opacity: 0.5;
}
.location_card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.location_card:hover {
    transform: translateY(-8px);
}

/* Map */

.location_card .map_box iframe {
    width: 100%;
    height: 270px;
    border: 0;
}

/* Content */

.location_content {
    padding: 20px;
}

.location_title {
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin-bottom: 10px; */
}
.location_content p {
    font-size: 15px;
    margin-bottom: 15px;
}

/* Buttons */

.location_buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}
 
.call_btn {
    background: #f3f3f3;
    padding: 8px 10px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    color: #333;
    width: 48.5%;
    text-align: center;
}

.direction_btn {
    background: linear-gradient(90deg, #ff2f92, #ff6ab0);
    color: #fff;
    padding: 8px 10px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    width: 48.5%;
    text-align: center;
}


/* ================== contact us ================== */




/* ================== gallery ================== */

/* Masonry gallery */

.custom_gallery .gallery_grid {
    column-count: 3;
    column-gap: 15px;
}

.custom_gallery .gallery_item {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.custom_gallery .gallery_item:hover {
    transform: scale(1.03);
}

/* Popup */

.gallery_popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gallery_popup img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
}

.popup_close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* Responsive */

@media (max-width: 768px) {
    .custom_gallery .gallery_grid {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .custom_gallery .gallery_grid {
        column-count: 1;
    }
}
.custom_gallery {
    background: var(--theme_color1);
    position: relative;
    overflow: hidden;
     z-index: 1;
}
.custom_gallery:after {
    content: '';
    width: 500px;
    height: 500px;
    position: absolute;
    top: -91px;
    left: -130px;
    border-radius: 50%;
    border: 80px solid var(--theme_color2);
    filter: blur(92px);
    z-index: -1;
}

/* ================== gallery ================== */


/* ================== branches ================== */

.branches_page {
    background: var(--theme_color1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.branches_page {
    background: var(--theme_color1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.branches_page:after {
    content: '';
    width: 500px;
    height: 500px;
    position: absolute;
    top: -91px;
    left: -130px;
    border-radius: 50%;
    border: 80px solid var(--theme_color2);
    filter: blur(92px);
    z-index: -1;
}
.branches_page h2,h3 {
    color: #fff;
}
.row.search-row {
    text-align: center;
}
.row.search-row h2 {
    font-size:42px;
}

.row.search-row input {
    width:60%;
    height:60px;
    border:3px solid #ff38a6;
    border-radius:5px;
    padding:10px;
}
.row.search-row input::placeholder {
   color:#a6a6a6;
   font-size:18px;
}
.branch-text p {
    color:#fff;
    font-size: 20px;
}
.branches_page h3 {
    font-size: 35px;
}
/* ===== Branch Card ===== */

.branch_card {
  border: 2px solid #ff4fb3;
  border-radius: 18px;
  padding: 25px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  height: 100%;
}

/* ===== Top Section Layout ===== */

.branch_top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.branch_info {
  flex: 1;
}

/* Address label */

.address_label {
  color: #ff4fb3;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
}

/* Title */

.branch_info h3 {
  font-size: 28px;
  margin: 8px 0;
  color: #ff2f92;
  font-weight: 700;
}

.branch_info p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Phone button */

.branch_phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffe3f3;
  padding: 10px 16px;
  border-radius: 30px;
  color: #ff2f92;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Buttons */

.branch_buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.btn_outline {
  border: 2px solid #ff4fb3;
  padding: 8px 16px;
  border-radius: 10px;
  color: #ff2f92;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn_outline:hover {
  background: #ff4fb3;
  color: #fff;
}

.btn_fill {
  background: #ff2f92;
  padding: 8px 16px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn_fill:hover {
  opacity: 0.9;
}

/* ===== Map ===== */

.branch_map iframe {
  width: 200px;
  height: 150px;
  border: 0;
  border-radius: 12px;
}

/* ===== Bottom Gallery ===== */

.branch_gallery {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.branch_gallery img {
  width: 50%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {

  .branch_top {
    flex-direction: column;
  }

  .branch_map iframe {
    width: 100%;
    height: 200px;
  }

  .branch_gallery img {
    height: 120px;
  }
}
/* ===== Branch Card ===== */

.branch_card {
  border: 2px solid #ff4fb3;
  border-radius: 18px;
  padding: 25px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  height: 100%;
}

/* ===== Top Section Layout ===== */

.branch_top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.branch_info {
  flex: 1;
}

/* Address label */

.address_label {
  color: #ff4fb3;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
}

/* Title */

.branch_info h3 {
  font-size: 28px;
  margin: 8px 0;
  color: #ff2f92;
  font-weight: 700;
}

.branch_info p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Phone button */

.branch_phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffe3f3;
  padding: 10px 16px;
  border-radius: 30px;
  color: #ff2f92;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Buttons */

.branch_buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.btn_outline {
  border: 2px solid #ff4fb3;
  padding: 8px 16px;
  border-radius: 10px;
  color: #ff2f92;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn_outline:hover {
  background: #ff4fb3;
  color: #fff;
}

.btn_fill {
  background: #ff2f92;
  padding: 8px 16px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn_fill:hover {
  opacity: 0.9;
}

/* ===== Map ===== */

.branch_map iframe {
  width: 200px;
  height: 150px;
  border: 0;
  border-radius: 12px;
}

/* ===== Bottom Gallery ===== */

.branch_gallery {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.branch_gallery img {
  width: 50%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}
/* ===== Hover Effect ===== */

.branch_card {
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.branch_card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: 0 0 0 rgba(255, 79, 179, 0);
  transition: 0.35s ease;
  pointer-events: none;
}
.pt-60{
    padding-top:60px;
}
.pb-60{
    padding-bottom:60px;
}
.branch_card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.branch_card:hover::after {
  box-shadow: 0 0 25px rgba(255, 79, 179, 0.5);
}

/* ===== Responsive ===== */

@media (max-width: 768px) {

  .branch_top {
    flex-direction: column;
  }

  .branch_map iframe {
    width: 100%;
    height: 200px;
  }

  .branch_gallery img {
    height: 120px;
  }
}

/* ================== branches ================== */












































/* ======================== footer code ==================== */

.footer {

    position: relative;

    /* background-color: rgb(12, 12, 12); */

    background:url(../img/footerbg.webp);

    background-size:cover;

    background-position:center center;

}
img.footer-logo {
    padding-bottom: 15px;
}
.heading-bottom-line {
  width: 30%;
  margin: 8px auto 0; /* heading ke niche center me lane ke liye */
  border-bottom: 2px solid;
  border-image: linear-gradient(
    to right,
    transparent,
    #ff4db8,
    #ff99dd,
    #ff4db8,
    transparent
  ) 1;
}

.design-line {
  border-top: 2px solid;
  border-image: linear-gradient(
    to right,
    transparent,
    #ff4db8,
    #ff99dd,
    #ff4db8,
    transparent
  ) 1;
}
.design-line-foot {
    border-bottom: 2px solid;
    border-image: linear-gradient(to right, transparent, #ff4db8, #ff99dd, #ff4db8, transparent) 1;
}
.design-line-bottom {
    border-bottom: 2px solid;
    border-image: linear-gradient(to right, transparent, #ff4db8, #ff99dd, #ff4db8, transparent) 1;
}
.footer .top {

    position: relative;

    display: block;

    padding: 60px 0px 60px;

    z-index: 1;

}



.footer .top h5 {

    font-size: 24px;

    margin-bottom: 15px;

    color:#fff;

}



.footer .top p {

    color: rgb(221, 221, 221);

}



.footer .top .social {

    display: flex;

    -webkit-box-align: center;

    align-items: center;

}



.footer .top .social a {

    width: 45px;

    height: 45px;

    text-align: center;

    font-size: 14px;

    border: 2px solid rgba(194, 74, 85, 0.2);

    color: rgb(255, 255, 255);

    margin-right: 5px;

    background: transparent;

    border-radius: 100%;

    display: inline-flex;

    overflow: hidden;

    transition: background-color 300ms, transform 300ms, color 300ms;

    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);

    transform-style: preserve-3d;

    justify-content: center;

    align-items: center;

}



.footer .top .social a:hover {

    border: 2px solid var(--theme_color2);

    background: var(--theme_color2);

    color: rgb(255, 255, 255);

    transform: translate3d(0px, -5px, 0.01px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);

    transform-style: preserve-3d;

}



.footer .top .social a + a {

    margin-left: 5px;

}



.footer .top .phone {

    font-size: 24px;

    color: rgb(196, 73, 83);

    font-weight: 400;

    display: block;

    transition: 500ms;

}



.footer .top .phone span {

    color: rgb(196, 73, 83);

}



.footer .top .phone:hover {

    color: rgb(255, 255, 255);

}



.footer .top .mail {

    font-size: 16px;

    line-height: 3em;

    color: rgb(221, 221, 221);

    position: relative;

    display: inline-block;

    transition: 500ms;

}



.footer .top .mail:hover {

    color: rgb(255, 255, 255);

}



.footer .top .mail::before {

    position: absolute;

    bottom: 9px;

    left: 0px;

    right: 0px;

    height: 2px;

    background-color: rgba(194, 74, 85, 0.2);

    content: "";

    transition: 500ms;

}



.footer .top .mail:hover::before {

    background-color: rgb(196, 73, 83);

}



.footer .bottom {

    position: relative;

    display: block;

    /* background-color: rgb(12, 12, 12); */

    padding: 30px 0px;

    border-top: 2px solid rgba(194, 74, 85, 0.2);

}



.footer .bottom p {

    font-size: 14px;

    color: rgb(221, 221, 221);

    margin-bottom: 0px;

}



.footer .bottom p a {

    font-size: 14px;

    line-height: 3em;

    position: relative;

    display: inline-block;

    transition: 500ms;

}



.footer .bottom p a:hover {

    color: rgb(255, 255, 255);

}



.footer .bottom p a::before {

    position: absolute;

    bottom: 9px;

    left: 0px;

    right: 0px;

    height: 2px;

    background-color: rgba(194, 74, 85, 0.2);

    content: "";

    transition: 500ms;

}



.footer .bottom p a:hover::before {

    background-color: rgb(196, 73, 83);

}



/* .footer .worktime ul {

    margin: 0px;

    padding: 0px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    grid-column-gap: 50px;

} */
.worktime ul {
    padding: 0;
}
.footer .worktime ul li a{

    color:#fff;

    transition:0.5s

}

.footer .worktime ul li a:hover{

    color:var(--theme_color2);

}



.footer .worktime ul li .tit, .footer .worktime ul li .dots, .footer .worktime ul li span {

    display: table-cell;

    white-space: nowrap;

}



.footer .worktime ul li {

    margin-bottom: 15px;

    font-size: 16px;

}



.footer .worktime ul li:last-of-type {

    margin-bottom: 0px;

}



.footer .worktime ul li span {

    white-space: nowrap;

    padding-left: 10px;

    font-family: "Montserrat", sans-serif;

    color: rgb(221, 221, 221);

}



.footer .worktime ul li .tit {

    padding-right: 10px;

    color: rgb(221, 221, 221);

}



.footer .worktime ul li .dots {

    height: 4px;

    width: 100%;

    border-bottom: 2px solid rgba(194, 74, 85, 0.2);

    position: relative;

    top: -7px;

}

.footer .bottom p a {

    color: var(--theme_color2);

}



.footerLists {

    padding-left: 0;

    margin: 0;

}

.footerLists li{

    list-style:none;

}

.footerLists li:not(:last-child){

    margin-bottom: 8px;

}

.footerLists li a,

.footerLists li span{

    display:inline-block;

    padding-left: 30px;

    position:relative;

    color:#fff;

    transition:0.5s;

    font-size: 15px;

}

.footerLists li a:hover{

    color:var(--theme_color2);

}

.footerLists li a i,

.footerLists li span i{

    position:absolute;

    left:0;

    top:0;

    font-size: 20px;

    color: var(--theme_color2);

}



.footer_social li:not(:last-child){

    margin-right:16px;

}

.footer_social li a img {

    width: 40px;

}



.footer .bottom ul{

    margin:0;

    padding:0;

}



.bottom_footer_list {

    display:flex;

}

.bottom_footer_list li:not(:last-child) {

    margin-right:20px;

}

.bottom_footer_list li a {

    color:#fff;

}

/* ======================== footer code ==================== */





/* ================== modal form ================ */

.modal_form_content{

    margin:0;

}

.modal_form_content .form_grop{

    width:100%;

}

.modal_form_content .form_grop input,

.modal_form_content .form_grop select,

.modal_form_content .form_grop textarea{

    border:1px solid #d8d8d8;

    border-radius: 4px;

    padding:10px;

    width:100%;

    color:#1a1a1a;

}

.modal_form_content .form_grop input::placeholder,

.modal_form_content .form_grop textarea::placeholder{

   color:#909090;

}

.modal_form_content .form_grop textarea{

    height: 90px;

}

.modal_form_content .form_grop:not(:last-child){

    margin-bottom:16px;

}

.modal_form_content .form_col_6{

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    grid-column-gap: 16px;

}

.modal_form_content .form_col_6 .form_grop{

    margin-bottom:0px;

}

/* ================== modal form ================ */



/* branches page banner  */


.branches_breadcrumb_area {
    position: relative;
    padding: 50px 0;
    color: #fff;
}

.branches_breadcrumb_area .overlay {
    position: absolute;
    inset: 0;
    background: #000000b3;
}

.branches_breadcrumb_area .container {
    position: relative;
    z-index: 2;
}

.branches_breadcrumb_area .badge-custom {
    border: 1px solid #ff008c;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 15px;
    display: inline-block;
}
.branches_breadcrumb_area .hero-title {
    font-size: 42px;
    font-weight: 700;
}
.branches_breadcrumb_area .hero-title span {
    color: #ff008c;
}
.branches_breadcrumb_area .hero-text {
    margin: 15px 0 25px;
    color: #ddd;
}
/* .branches_breadcrumb_area .feature-box {
    background: #e1d9d936;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    display: flex;
    gap: 10px;
}  */
.branches_breadcrumb_area i {
   background:#ff0a8f;
   height:25px;
   width:22px;
   line-height:25px;
   border-radius:2px;
}
/* .branches_breadcrumb_area .hero-form {
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    max-width: 420px;
    border-top: 4px solid;
    border-image: linear-gradient(to right, transparent, #ff4db8, #ff99dd, #ff4db8, transparent) 1;
} */
.branches_breadcrumb_area .callback-btn {
    padding: 14px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff008c, #ff4da6);
    color: #fff;
}
.branches_breadcrumb_area h3.text-center.mb-1 {
    color:#fff;
}
.branches_breadcrumb_area input {
    background: #fff !important;
}

.branches_breadcrumb_area label.banner-captch-label {
    color: #fff;
}
.branches_breadcrumb_area input.form-control {
    height:40px;
    margin:0
}





/* Section spacing */

.about-gradient {
    padding: 60px 0;
}

/* Gradient Card Row */

.row-gradient {
    background: linear-gradient(135deg, #111827, #1f2937, #020617);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Optional glow effect */

.row-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 0, 140, 0.15), transparent 40%);
    pointer-events: none;
}

/* Badge */

.about-gradient .about-badge {
    background: #ff008c;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Title */

.about-gradient  .about-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.about-gradient .about-title span {
    color: #ff008c;
}

/* Text */

/* .about-gradient .about-text {
    color: #d1d5db;
    margin-bottom: 12px;
    font-size: 15px;
} */

/* Image */

/* .about-gradient .about-img img {
    width: 100%;
    border-radius: 16px;
    transition: 0.4s ease;
    height: 480px;
    object-fit: cover;
    object-position: top;
} */

.about-gradient .about-img img:hover {
    transform: scale(1.03);
}

/* Stats Boxes */

.about-gradient .stat-box {
    background: #feebf7;
    padding: 18px 10px;
    border-radius: 12px;
    text-align: left;
    border-left: 3px solid #ff16b2;
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.about-gradient .stat-box:hover {
    background: #feebf7;
    transform: translateY(-4px);
}

.about-gradient .stat-box h4 {
    color: #ff008c;
    font-size: 35px;
    margin-bottom: 5px;
    font-weight: 800;
}

.about-gradient .stat-box p {
    font-size: 13px;
    color: #000000;
    margin: 0;
}

/* Responsive */

@media (max-width: 768px) {
    .row-gradient {
        padding: 25px;
    }

    .about-gradient  .about-title {
        font-size: 26px;
    }
}







/* Section spacing */


@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');



*{

    margin:0;

    padding:0;

    box-sizing: border-box;

}



:root{

    --theme_color1:#191919;

    --theme_color2:#f906a0;

    --theme_text_font:"Montserrat", sans-serif;

    --theme_heading_font:"Cormorant Infant", serif;

}



/* ======================= global css =================== */

html, body {

    -webkit-font-smoothing: antialiased;

}



body {

    font-family: var(--theme_text_font);

    font-size: 16px;

    line-height: 1.75em;

    font-weight: 400;

}



img {

    width: 100%;

    height: auto;

}



h1 {

    font-size: 48px;

}



h2 {

    font-size: 36px;

}



h3 {

    font-size: 27px;

}



h4 {

    font-size: 24px;

}



h5 {

    font-size: 20px;

}



h6 {

    font-size: 18px;

}



h1, h2, h3, h4, h5, h6 {

    font-family: var(--theme_heading_font);

    font-weight: 700;

    line-height: 1.3em;

    margin-bottom: 15px;

}



p {

    font-family: var(--theme_text_font);

    font-size: 16px;

    line-height: 1.75em;

    margin: 0px 0px 15px;

    font-weight: 400;

}



ul {

    list-style-type: none;

}



a {

    text-decoration: none;

}



a:hover {

    text-decoration: none;

}



a:link {

    text-decoration: none;

}



a:focus {

    outline: none;

}



img {

    width: 100%;

    height: auto;

    transition: 0.5s;

}



button, input, optgroup, select, textarea {

    font-family: "Montserrat", sans-serif;

}



input[type="password"]:focus, input[type="email"]:focus, input[type="text"]:focus, input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus, textarea:focus {

    outline: none;

}



input[type="password"], input[type="email"], input[type="text"], input[type="file"], textarea {

    max-width: 100%;

    margin-bottom: 15px;

    padding: 15px;

    height: auto;

    background-color: transparent;

    box-shadow: none;

    display: block;

    width: 100%;

    line-height: 1.5em;

    font-family: "Montserrat", sans-serif;

    font-size: 16px;

    font-weight: 400;

    background-image: none;

    border: 2px solid rgba(194, 74, 85, 0.2);

    border-radius: 5px;

}



input:focus, textarea:focus {

    border: 2px solid rgb(196, 73, 83);

}



input[type="submit"], input[type="reset"], input[type="button"], button {

    font-family: "Montserrat", sans-serif;

    font-size: 16px;

    font-weight: 400;

    text-shadow: none;

    box-shadow: none;

    transition: background-color 0.15s ease-out;

    border: none;

    position: relative;

    overflow: hidden;

    cursor: pointer;

}



input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, button:hover {

    border: none;

}



button.mfp-close:hover, button.mfp-arrow:hover {

    background: transparent;

}



.alert-success {

    background: transparent;

    border: 2px solid rgb(196, 73, 83);

    border-radius: 0px;

}



select {

    padding: 10px;

    border-radius: 5px;

}



th, tr, td {

    padding: 10px 0px;

}



input[type="radio"], input[type="checkbox"] {

    display: inline;

}



::-webkit-input-placeholder {

    font-size: 16px;

    font-weight: 400;

}

.section_paddingY{

    padding-top:60px;

    padding-bottom:60px;

}

.section_paddingTop{

    padding-top:60px !important;

}

.section_paddingBottom{

    padding-bottom:60px !important

}

.section_subTitle {

    display: inline-block;

    font-weight: 700;

    font-size: 12px;

    color: var(--theme_color2);

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom:0px;

    font-family: var(--theme_text_font);

}



.section_title {

    /* background: linear-gradient(-155deg, #ff5dbd 0%, #f906a0 100%); */

    color: #1a1a1a !important;

    /* background-clip: text; */

    font-size: 48px;

}

/* ======================= global css =================== */



/* ================= header =============== */

.uk_header {

    background: var(--theme_color1);

}

.uk_header.sticky nav.navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 99;

    background: #0c0c0c;

}

.navbarTop{

    background:url(../img/top-h.png);

    background-size:100% 100%;

}

.top_navbar_nav li a i {

    margin-right: 8px;

    font-size: 18px;

    color: var(--theme_color2);

}

.top_navbar_nav {

    display: flex;

    justify-content: end;

    list-style: none;

    margin: 0;

    padding: 10px 0;

    align-items: center;

}



.top_navbar_nav li {

    color: #fff;

    font-size: 15px;

    font-family: var(--theme_text_font);

}



.top_navbar_nav li:not(:last-child) {

    margin-right: 40px;

}



.top_navbar_nav li a {

    color: #fff;

    font-family: var(--theme_text_font);

}



.top_navbar_nav li.nav-item.button {

    background: var(--theme_color2);

    padding: 14px 30px;

    line-height: 1;

    text-transform: uppercase;

}

.top_navbar_nav li.nav-item.button a {

    font-weight: bold;

    letter-spacing: 2px;

}

.navbar-brand img {

    width: 250px;

}

.navbar-nav .nav-item .nav-link{

    color:#fff;

    font-family: var(--theme_text_font);

    font-weight: 500;

    letter-spacing: 0.2px;

    transition:0.5s;

}

.navbar-nav .nav-item .nav-link:hover{

    color:var(--theme_color2);

}

.navbar-nav .nav-item:not(:last-child){

    margin-right:15px;

}

.navbar-nav .nav-item:hover .dropdown-menu {

    display: block;

    margin-top:0px;

    visibility: visible;

    opacity: 1;

}



.navbar-nav .nav-item .dropdown-menu {

    margin-top: 20px;

    transition: 0.5s cubic-bezier(0.42, 0, 0.72, 0.76);

    background: #000000;

    border: none;

    display: block;

    visibility: hidden;

    opacity: 0;

    min-width: 220px;

    border-top: 3px solid var(--theme_color2);

}

.navbar-nav .nav-item .dropdown-menu li a{

    color:#fff;

}

.navbar-nav .nav-item .dropdown-menu li a:hover{

    color: var(--theme_text_color);

    background: none;

}



.dropdown-menu.megaWrapper {

    max-width: 800px;

    width: 800px;

    left: 50%;

    transform: translateX(-50%);

    padding: 0;

}



.megaWrapper .mega_menu_inner {

    display: flex;

}

.megaWrapper ul{

    padding:0px;

    margin:0px;

}



.megaWrapper .mega_menu_inner .megaMenu_items {

    width: 30%;

    padding: 20px 0px;

    border-right: 1px solid #f95bbf;

}

.megaMenu_items>ul>li {
    padding: 0 12px;
}


.megaWrapper .mega_menu_inner .megaSubmenu_itemWrapper {
    width: calc(100% - 30%);
    padding: 16px;
    display: none;
}

.megaSubmenu_item_innerWrapper h4 {

    font-size: 24px;

    color: #fff;

    border-bottom: 1px solid #f95bbf;

    padding-bottom: 10px;

}



.megaMenu_items li a {

    border-radius: 4px;

    position: relative;

}



.megaMenu_items>ul>li.active>a,

.megaMenu_items>ul>li>a:focus,

 .megaMenu_items>ul>li>a:hover {

    background: var(--theme_color2) !important;

    color: #fff !important;

}

.navbar-nav .nav-item .dropdown-menu li a:hover{

    color:var(--theme_color2);

}

.megaMenu_items>ul>li>a:after {

    content:  "\ea6e";

    font-family: remixicon !important;

    font-style: normal;

    -webkit-font-smoothing: antialiased;

    position:absolute;

    right:10px;

    top:50%;

    transform:translateY(-50%);

}

.megaSubmenu_item_innerWrapper ul li a {

    padding: 0;

}









.navbar-nav .nav-item:hover>.nav-link {

    color: #f906a0;

}

.megaSubmenu_item_innerWrapper ul li a:hover {

    color: #e1dada !important;

}

.megaWrapper .megaSubmenu_item_innerWrapper ul li a {

    padding: 10px 0;

    display: block;

    line-height: 1;

}

.fee_submission a {
    font-size: 18px;
}

.megaWrapper .megaSubmenu_item_innerWrapper ul li:not(:last-child) a {

    border-bottom: 1px solid var(--theme_color2);

}
.megaSubmenu_itemWrapper {
    position: absolute;
    left: 30%;
    top: 0;
    height: 285px;
    overflow: hidden;
    overflow-y: auto;
} 


.megaWrapper .megaSubmenu_item_innerWrapper ul li a:hover {

    color: var(--theme_color2) !important;

}

.navbar-nav .nav-item .dropdown-menu:not(.megaWrapper) li:not(:last-child) a.dropdown-item {

    border-bottom: 1px solid var(--theme_color2);

}

/* ================= header =============== */



/* =============== hero section ================ */

/* ================================================================== */



.hero-slider {



	width: 100%;



	height: 700px;



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



	position: relative;



	z-index: 0;



}





@media (max-width: 991px) {



	.hero-slider {



		height: 600px;



	}



}





@media (max-width: 767px) {



	.hero-slider {



		height: 500px;



	}



}





.hero-slider .swiper-slide {



	overflow: hidden;



	color: var(--white_color);



}





.hero-slider .swiper-container {



	width: 100%;



	height: 100%;



	position: absolute;



	left: 0;



	top: 0;



}





.hero-slider .slide-inner {



	width: 100%;



	height: 100%;



	position: absolute;



	left: 0;



	top: 0;



	z-index: 1;



	background-size: cover;



	background-position: center;



	display: flex;



	justify-content: center;



	align-items: center;



	text-align: left;



}





.hero-slider .swiper-button-prev,

.hero-slider .swiper-button-next {

    background: #fff;

    width: 55px;

    height: 55px;

    line-height: 53px;

    margin-top: -30px;

    text-align: center;

    color: var(--theme_color2);

    border-radius: 55px;

    opacity: 0;

    visibility: hidden;

    transition: all .3s ease;



}

.hero-slider .swiper-button-prev:hover,

.hero-slider .swiper-button-next:hover {

    background: var(--theme_color2);

    color: #fff;



}

.hero-slider .swiper-button-prev:hover:before,

.hero-slider .swiper-button-next:hover:before {

    color: #fff !important;



}





.hero-slider:hover .swiper-button-prev,



.hero-slider:hover .swiper-button-next {



	transform: translateX(0);



	opacity: 1;



	visibility: visible;



}

.hero-slider:hover .swiper-button-prev svg,



.hero-slider:hover .swiper-button-next svg{

    display: none;

}



@media (max-width: 767px) {





	.hero-slider .swiper-button-prev,



	.hero-slider .swiper-button-next {



		display: none;



	}



}





.hero-slider .swiper-button-prev {



	left: 25px;



	transform: translateX(50px);



}





.hero-slider .swiper-button-prev:before {



	font-family: remixicon !important;

    font-style: normal;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

	content: "\ea64";

	font-size: 15px;

	color: var(--theme_color2);

	font-style: normal;

	display: inline-block vertical-align middle;

	font-weight: 900;



}





.hero-slider .swiper-button-next {

	right: 25px;

	transform: translateX(-50px);



}





.hero-slider .swiper-button-next:before {



	font-family: remixicon !important;

    font-style: normal;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

	content: "\ea6e";

	font-size: 15px;

	color: var(--theme_color2);

	font-style: normal;

	display: inline-block vertical-align middle;

	font-weight: 900;



}





.hero-slider .swiper-pagination-bullet {



	width: 12px;



	height: 12px;



	text-align: left;



	line-height: 12px;



	font-size: 12px;



	color: #000;



	opacity: 0.3;



	background: var(--theme_color);



	transition: all .2s ease;



}





.hero-slider .swiper-pagination-bullet-active {



	opacity: 1;



	width: 40px;



	border-radius: 12px !important;



}





.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,



.hero-slider .swiper-pagination-custom,



.hero-slider .swiper-pagination-fraction {



	bottom: 30px !important;



}





.swiper-pagination {



	text-align: center;



}





.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {



	bottom: 50px;



	max-width: 1200px;



	padding: 0 15px;



	margin: 0 auto;



	left: 50%;



	transform: translateX(-50%);



}





@media (min-width: 767px) {



	.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {



		bottom: 30px;





	}



}





.hero-style .swiper-pagination {



	position: absolute;



	text-align: center;



	-webkit-transition: .3s opacity;



	-o-transition: .3s opacity;



	transition: .3s opacity;



	-webkit-transform: translate3d(0, 0, 0);



	transform: translate3d(0, 0, 0);



	z-index: 10;



	bottom: 30px;



	left: 50%;



	display: flex;



	align-items: center;



	gap: 10px;



}





/*--------------------------------------------------------------

#hero-style

--------------------------------------------------------------*/

.hero-style {

	height: 550px;

	transition: all .4s ease;

    overflow: hidden;

    background:url(../img/bg-1.png);

}



@media (max-width: 991px) {

	.hero-style {

		height: 600px;

	}

}



@media (max-width: 768px) {

	.hero-style {

		height: 400px;

	}

}



@media screen and (min-width: 992px) {

	.hero-style .container {

		padding-top: 0px;

	}

}





.hero-style .slide-title,

.hero-style .slide-text,

.hero-style .slide-btns {

	max-width: 500px;

}





.hero-style .slide-title h2 {

	font-size: 48px;

	font-weight: 600;

	line-height: 55px;

	color: #fff;

	margin: 0 0 40px;

	text-transform: capitalize;

	transition: all .4s ease;

}



.hero-style .slide-title h2 small {

	font-size: 48px;

	font-weight: 200;

}



.hero-style .slide-title h2 span {

	color: var(--theme_blue);

}



.hero-style .slide-title h2 span.green {

	color: var(--theme_green);

}



@media (max-width: 1199px) {

	.hero-style .slide-title h2 {

		font-size: 75px;

	}

}



@media (max-width: 991px) {

	.hero-style .slide-title h2 {

		font-size: 40px;

		margin: 0 0 25px;

	}

}



@media (max-width: 767px) {

	.hero-style .slide-title h2 {

		font-size: 35px;

		margin: 0 0 30px;

	}

}





.hero-style .slide-text p {



	opacity: 0.8;



	font-size: 20px;



	font-weight: 500;



	line-height: 1.25;



	color: #fff;



	margin: 0 0 40px;



	transition: all .4s ease;



}





@media (max-width: 768px) {



	.hero-style .slide-text p {

		font-size: 16px;

		font-size: 1rem;

		font-weight: normal;

		margin: 0 0 30px;

	}

}





.hero-style .slide-btns>a:first-child {



	margin-right: 10px;



}

/* =============== hero section ================ */



/* ================== page content ================== */

/* .home_main{

    background:#0c0c0c;

} */

.section_title.font_36 {

    font-size: 36px;

    line-height: 1.3em;

}

.about_video video {

    width: 100%;

    height: 450px;

    object-fit: cover;

    border-radius: 24px;

}

.text_white {

    color: rgb(221, 221, 221);

}

.about_video {

    padding-left: 60px;

}

.theme_button {

    font-size: 14px;

    text-transform: uppercase;

    padding: 14px 25px;

    line-height: 1;

    font-weight: 600;

    letter-spacing: 3px;

    background: var(--theme_color2);

    color: #fff;

    border-radius: 30px;

    display: inline-block;

}



.theme-btn-s2.theme_button {

    background: #fff;

    color: var(--theme_color2);

}

.btn-glow {

  position: relative;

  display: inline-block;

  padding: 14px 34px;

  border-radius: 40px;

  font-weight: 600;

  color: #fff;

  text-decoration: none;

  background: linear-gradient(135deg, #ff2fa0, #ff6ec7);

  /* box-shadow:

    0 0 10px rgba(255, 47, 160, 0.6),

    0 0 30px rgba(255, 47, 160, 0.5); */

  transition: all 0.35s ease;

}



/* glow hover */

.btn-glow:hover {

  transform: translateY(-2px);

  /* box-shadow:

    0 0 15px rgba(255, 47, 160, 0.8),

    0 0 45px rgba(255, 47, 160, 0.9); */

}





/* =============== course ================= */

/* .coursWrapper {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-gap: 30px;

} */

.row-gradient-page {
    background: linear-gradient(135deg, #111827, #1f2937, #020617);
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Optional glow effect */

.row-gradient-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 0, 140, 0.15), transparent 40%);
    pointer-events: none;
}

.courseItem {

    border-radius: 8px;

    overflow: hidden;

    padding: 0px;

    background: #fff;

    padding-bottom:8px;

}

.courseItem .course_content .course_title {

    font-size: 18px;

}



.courseItem .course_image {

    height: 240px;

    border-radius: 0px;

    overflow: hidden;

}



.courseItem .course_image img {

    height: 100%;

    width: 100%;

    object-fit: cover;

    transition: 0.5s;

}

.courseItem .course_image:hover img{

    transform:scale(1.1)

}



.courseItem  .course_content {

    color: #212121;

    padding: 16px;

}



.courseItem .course_content .course_list {

    list-style: none;

    margin-bottom: 30px;

    padding:0;

}



.courseItem .course_content .course_list li {

    margin-bottom: 4px;

    font-size: 14px;

    position: relative;

    padding-left: 32px;

}

.courseItem .course_content .course_list li:after {

    content: "\eb7b";

    font-family: remixicon!important;

    font-style: normal;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

    position: absolute;

    top: 1px;

    left: 0;

    color: #212121;

    border-radius: 50%;

    font-size: 16px;

}



.courseItem a.theme_button {

    text-align: center;

}



.slider_nav {

    display: flex;

    justify-content: end;

}



.slider_nav .theme_navBtn {

    width: 50px;

    height: 50px;

    border: 2px solid #1a1a1a;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 20px;

    border-radius: 50%;

    color: #1a1a1a;

    transition: 0.5s;

}





.slider_nav div:first-child {

    margin-right: 20px;

}



.slider_nav div:hover {

    background: #1a1a1a;

    color: #fff;

}



.our_courses {

    position:relative;

    z-index: 1;

    /* background:url(../img/banner-1/training-bg.webp); */

    background-size:cover;

    background-position:center center;

    position:relative;

    background:#1a1a1a;

}

.course_main {

    background: #242424;

    border-radius: 16px;

    position:relative;

    z-index: 1;

}

.our_courses:after {

    content: '';

    position: absolute;

    top: 0px;

    left: 0px;

    background: url(../img/shape.png);

    z-index: -1;

    opacity: 0.65;

    pointer-events: none;

    width: 200px;

    height: 200px;

    background-repeat: no-repeat;

}



.courses_wrap {

    padding: 30px;

    border-right: 1px solid #3e3939;

    margin-bottom: 0;

    height: 100%;

    max-height: 420px;

    overflow: hidden;

    overflow-y: auto;

}



/* Width */

.courses_wrap::-webkit-scrollbar {

  width: 8px;

}



/* Track */

.courses_wrap::-webkit-scrollbar-track {

  border-radius: 10px;

}



/* Thumb */

.courses_wrap::-webkit-scrollbar-thumb {

  background: #302e2f;

  border-radius: 4px;

}







.course_main div[class^="col-md"] {

   padding:0px;

}



.course_detailWrap {

    display: flex;

    padding: 30px;

}



.course_detailWrap .course_image {

    width: 40%;

}



.course_detailWrap .course_content {

    width: calc(100% - 40%);

    padding-left: 20px;

}



.course_content .course_title {

    font-size: 20px;

    margin-bottom: 10px;

    color:#fff;

}



.course_content .list-unstyled li {

    margin-bottom: 5px;

    position: relative;

    padding-left: 28px;

    color:#808080;

}



.course_content .list-unstyled li:after {

   content: "\eb7b";

    font-family: remixicon !important;

    font-style: normal;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

    position: absolute;

    top: 1px;

    left: 0;

    color: #808080;

    border-radius: 50%;

    font-size: 16px;

}



.course_detailWrap .course_image img {

    width: 100%;

    height: 100%;

    border-radius: 12px;

    object-fit: cover;

}



.courses_wrap .course_name {

    padding: 18px 20px;

    background: #302e2f;

    border-radius: 8px;

    position: relative;

    font-size: 16px;

    line-height: 1.2;

    cursor: pointer;

    transition: cubic-bezier(0.075, 0.82, 0.165, 1);

    font-family: var(--theme_heading_font);

    color: #808080;

}



.courses_wrap .course_name:after {

    content: "\ea6e";

    font-family: remixicon !important;

    font-style: normal;

    -webkit-font-smoothing: antialiased;

    position: absolute;

    right: 10px;

    top: 50%;

    transform: translateY(-50%);

}

.courses_wrap .course_name:not(:last-child) {

    margin-bottom: 16px;

}



.courses_wrap .course_name span.lavel {

    position: absolute;

    white-space: nowrap;

    font-size: 12px;

    background: linear-gradient(135deg, #ff2fa0, #ff6ec7);

    line-height: 1;

    padding: 4px 6px;

    border-radius: 4px;

    top: -6px;

    left: 16px;

    color: #fff;

}

.courses_wrap .course_name.active,

.courses_wrap .course_name:hover{

    background:var(--theme_color2);

    color:#fff;

}

.course_tab_panel {

    display: none;

}



.course_tab_panel.active {

    display: block;

}





/* ================= new course design ================= */

.ks-service-style-2 {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}



.ks-service-style-2 .ks-service-item {

    position: relative;

    padding: 0px; 

    min-height: 380px;

    color: #fff;

    z-index: 1;

    background:#242424;

    border:2px solid var(--theme_color2);

    border-radius: 20px;

    overflow: hidden;

}
.service_content_box_category {
    padding: 0px 30px 30px 30px;
} 
span.u_font_family {
    font-family: emoji !important;
}
.service_content_box_second {
    padding: 0px 20px 20px 20px;
}
.nav-item.dropdown > .nav-link::after {
   display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
/* .ks-service-style-2 .ks-service-item::before {

    content: "";

    position: absolute;

    inset: 0;

    display: block;

    background-color: #242424;

    z-index: -1;



    

    -webkit-mask-image: url("../img/mask-2.png");

    -webkit-mask-repeat: no-repeat;

    -webkit-mask-position: center;

    -webkit-mask-size: 100% 100%;



    mask-image: url("../img/mask-2.png");

    mask-repeat: no-repeat;

    mask-position: center;

    mask-size: 100% 100%;

} */

.ks-service-style-2 .ks-service-item .ks-service-link {

    position: absolute;

    bottom: 0;

    right: 0;

}

.ks-service-item .ks-service-link a {

    display: inline-block;

    border-radius: 200px;

    padding: 10px 15px;

    width: 48px;

    height: 62px;

    line-height: 41px;

    text-align: center;

    -webkit-transition: 0.3s;

    transition: 0.3s;

    color: var(--theme-color1-text-color);

    background: var(--theme_color2);

    position: relative;

    z-index: 1;

    overflow:hidden;

}

.ks-service-item .ks-service-link a::after {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    height: 100%;

    width: 100%;

    border-radius: 200px;

    -webkit-transform: scale(0);

    transform: scale(0);

    -webkit-transition: 0.3s;

    transition: 0.3s;

    background-color: #FFF;

    z-index: -1;

}

.ks-service-item:hover .ks-service-link a::after {

    -webkit-transform: scale(1.2);

    transform: scale(1.2);

}

.ks-service-item:hover .ks-service-link a svg path {

    fill:#1a1a1a !important;

}



.ks-service-item .ks-service-title {
    font-size: 25px;
}
.ks-service-thumb img {
    height:300px;
    object-fit:cover;
}


.ks-service-item .ks-service-title a {

    color: #fff;

}



.ks-service-item .ks-service-thumb {

    border-radius: 20px;

    overflow: hidden;

    margin-bottom: 20px;

    position: relative;

}




.ks-service-style-2 .ks-service-item:hover .ks-service-thumb img {

    -webkit-transform: scale(1.1);

    transform: scale(1.1);

}

.ks-service-style-2 .ks-service-item .ks-service-list-box {

    margin-bottom: 15px;

}

.ks-service-list-box ul li {

    line-height: 1.87;

    padding-left: 16px;

    position: relative;

    -webkit-transition: 0.3s;

    transition: 0.3s;

    margin-bottom: 2px;

    color: #fff;

    font-size: 14px;

}

.ks-service-list-box ul li::after {

    content: "";

    position: absolute;

    top: 50%;

    left: 0;

    height: 6px;

    width: 6px;

    border-radius: 50%;

    -webkit-transition: 0.3s;

    transition: 0.3s;

    -webkit-transform: translateY(-50%);

    transform: translateY(-50%);

    background-color: #808080;

}



.ks-service-style-2 .ks-service-item .ks-service-list-box ul {

    margin: 0;

    padding: 0;

}

.ks-service-style-2 .ks-service-item .ks-service-more {

    font-weight: 700;

    font-size: 12px;

    color: #909090;

    text-transform: uppercase;

    display: flex;

    justify-content:space-between;

    padding-top:16px;

    border-top:1px solid rgba(147, 147, 169, 0.3);

}

/* .ks-service-more::before {

    content: "";

    display: inline-block;

    height: 1px;

    width: 44%;

    -webkit-transform: translateY(-3px);

    transform: translateY(-3px);

    margin-right: 20px;

    background-color: rgba(147, 147, 169, 0.3);

} */



.ks-service-style-2 .ks-service-item .ks-service-more .ks-servicebtn {

    padding: 12px 20px;

    background: var(--theme_color2);

    color: #fff;

    line-height: 1;

    border-radius: 35px;

    transition: 0.5s;

    letter-spacing:1px;

     border:1px solid var(--theme_color2);

}

.ks-service-style-2 .ks-service-item .ks-service-more .ks-servicebtn:hover {

    transform:translateY(-3px);

    background:#fff;

    color:var(--theme_color2);

    border-color:#fff;

}

.ks-service-style-2 .ks-service-item .ks-service-more .ks-servicebtn:last-child{

   border-color:rgba(147, 147, 169, 0.3);

    background:none;

    color:#fff;

}

.ks-service-style-2 .ks-service-item .ks-service-more .ks-servicebtn:last-child:hover{

   border-color:var(--theme_color2);

    background:var(--theme_color2);

    color:#fff;

}







/* ================= new course design ================= */

/* .our_courses:after{

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    background: url(../img/shape.png);

    z-index: -1;

    opacity: 0.75;

    pointer-events: none;

    width:200px;

    height: 200px;

    background-repeat: no-repeat;

} */

.commercialCategory {

    padding: 0;

    margin: 0;

    margin-bottom: 30px;

    list-style: none;

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    grid-gap: 20px;

}



.commercialCategory li:not(:last-child) {

    margin-right: 8px;

}



.commercialCategory li {

    padding: 25px;

    border: 1px solid #242424;

    border-radius: 16px;

    font-size: 12px;

    font-weight: 600;

    line-height: 1;

    cursor: pointer;

    transition: 0.4s;

    text-transform: uppercase;

    letter-spacing: 0.2em;

    color: #ffffff;

    background: #242424;

}

.commercialCategory li .icon {

    display: block;

    margin-bottom: 20px;

}



.commercialCategory li .icon img {

    width: auto;

}
.courseCatList  img {
    height: 65px !important;
}
.dropdown-item {
    white-space: normal !important;
}

.commercialCategory li h4 {

    font-size: 20px;

    margin-bottom: 0;

    text-transform: capitalize;

    letter-spacing: 1px;

}



.section_title.text-white {

    color: #fff !important;

}

.our_courses .slider_nav .theme_navBtn {

    border: 2px solid #ffffff;

    color: #ffffff;

}



.commercialCategory li:hover, .commercialCategory li.active {

    background: var(--theme_color2);

    color: #fff;

    border-color: var(--theme_color2);

}

.white_image{

    display: none;

}

.commercialCategory li:hover span .white_image, .commercialCategory li.active span .white_image {

   display: block;

}

.commercialCategory li:hover span .dark_image, .commercialCategory li.active span .dark_image {

   display: none;

}

.cousrseTapPanel {

    display: none;

}

.cousrseTapPanel.active{

    display:block;

}

/* =============== course ================= */

/* ================== why_choose_section ====================== */

/* .why_choose_section{

    background:var(--theme_color1);

} */

.why_imageWrapper {

    position: relative;

    /* padding-right: 50px; */

    padding-bottom: 50px;

}



.why_imageWrapper .big_image {

    height: 580px;

    border-radius: 16px;

    overflow: hidden;

    /* border: 3px solid var(--theme_color2); */

}



.why_imageWrapper .small_image {

    width: 300px;

    height: 300px;

    position: absolute;

    bottom: 0;

    right: 0;

    /* border: 3px solid var(--theme_color2); */

    overflow: hidden;

    border-radius: 14px;

}



.why_imageWrapper .small_image img {

    height: 100%;

    width: 100%;

    object-fit: cover;

}



.why_imageWrapper .big_image img {

    height: 100%;

    object-fit: cover;

}
 .why-choose-slider {
    position: relative;
    overflow: hidden;
}

.why-choose-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.why-choose-slider .slide.active {
    opacity: 1;
    position: relative;
}

.why_choose_list {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    grid-column-gap: 30px;

}



.why_choose_list li {

    color: #fff;

    font-size: 18px;

    margin-bottom: 10px;

    padding-left: 34px;

    position: relative;

}

.why_choose_list li::after{

    content:'' ;

    width:24px;

    height:24px;

    background:url(../img/logo-fav.png);

    background-size:24px 24px;

    background-repeat: no-repeat;

    position:absolute;

    left:0;

    top:0;

    animation: 16s linear infinite circularAnimation;

}



@keyframes circularAnimation {

    0% {

        transform: rotate(0)

    }



    100% {

        transform: rotate(360deg)

    }

}



.placedStudent  .swiper-wrapper {

    transition-timing-function: linear;

}

.ctm_accrodion .accordion-item {

    border: 2px solid var(--theme_color2);

    border-radius: 16px;

    overflow: hidden;

}



.ctm_accrodion .accordion-item:not(:last-child) {

    margin-bottom: 10px;

}



.ctm_accrodion .accordion-item .accordion-header {

    line-height: 1em;

}



.ctm_accrodion .accordion-item .accordion-header .accordion-button {

    border: none;

    box-shadow: none;

    padding: 2px 20px;

    font-family: var(--theme_heading_font);

    font-weight: bold;

    font-size: 20px;

}



.ctm_accrodion .accordion-item .accordion-header .accordion-button:not(.collapsed) {

background:none;

}



.ctm_accrodion .accordion-item .accordion-body{

    border-top:2px solid var(--theme_color2);

}



/* ================== why_choose_section ====================== */



/* ================== Training transformation ================= */

.training_transformation_section{

    background:#1a1a1a;

    background-size:cover;

    background-position:center center;

    position:relative;

    z-index: 1;

    overflow: hidden;

}



/* .training_transformation_section::before{

    position: absolute;

    content: "";

    background-image: url(../img/banner-h1-6.png);

    background-repeat: no-repeat;

    background-size: cover;

    background-position: bottom left;

    bottom: 0;

    left: 0;

    width: 1484px;

    height: 100%;

    z-index: 1;

} */



.training_transformation_section .section_overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    z-index: -1;

}

.training_transformation_section .section_overlay:before {

    position: absolute;

    content: "";

    background-image: linear-gradient(300deg, var(--theme_color2) 0%, #1a1a1a 50%);

    width: 100%;

    height: 100%;

    top: 0;

    left: 0;

    opacity: 0.9;

}



.training_transform_wrapper {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 20px;

}



.training_transform_wrapper img {

    width: 100%;

    height: 320px; /* ðŸ‘ˆ image badi */

    object-fit: cover;

    border-radius: 12px;

    transition: 0.4s ease;

}



.training_transform_wrapper a:hover img {

    transform: scale(1.05);

}



.training_carousel .swiper-slide {

    transform: scale(0.8);

    transition: transform 0.35s ease, opacity 0.35s ease;

    opacity: 0.5;

}

.training_carousel .swiper-slide img{

    border-radius: 14px;

    height:390px;

    object-fit: cover;

}



/* Center slide */

.training_carousel .swiper-slide.active {

    transform: scale(1.2);

    opacity: 1;

    z-index: 3;

}

.training_carousel {

    padding: 44px;

    padding-bottom: 70px;

}

.training_carousel .swiper-pagination {

    bottom: 0px;

    display: inline-flex;

    margin: 0 auto;

    left: 50%;

    transform: translateX(-50%);

    justify-content: center;

}



.training_carousel span.swiper-pagination-bullet {

    background: #fff;

    width:10px;

    height:10px;

}

/* Center left & right */

/* .training_carousel .swiper-slide-prev,

.training_carousel .swiper-slide-next {

    transform: scale(1);

    opacity: 0.8;

    z-index: 2;

} */





.certificationSlider .swiper-slide img {

    border-radius:8px;

}

.awards .swiper-slide img{

    border-radius:12px

}



/* ================== Training transformation ================= */



/*  ================ our placement ============== */

.our_placementStudent{

    background:url(../img/banner-1/bg-5.png);

    background-size:cover;

    background-position:center center;

    position: relative;

    z-index: 1;

}

/*  ================ our placement ============== */

.our_placementStudent:after {

    content: '';

    width: 100%;

    height: 100%;

    position: absolute;

    left: 0;

    top: 0;

    background: #000;

    z-index: -1;

    opacity: 0.5;

}



.celebration_section {

    /* background: var(--theme_color2); */

    margin:0;

}

.celebration_section .wb_image {

    height: 400px;

    border-radius: 24px;

    overflow: hidden;

}



.celebration_section .wb_image img {

    height: 100%;

    width: 100%;

    object-fit: cover;

}

.about-tabs .about-tab {

    background: #fff;

    color: var(--theme_color2);

    padding: 10px 19px;

    line-height: 1;

    border-radius: 30px;

    cursor: pointer;

    font-weight: 500;

    font-size:13px;

}
.about-tabs .about-tab:not(:last-child) {

    margin-right: 10px;

}
.about-tabs button.about-tab {
    font-size: 17px !important;
}

nav.about-tabs {

    margin-bottom: 14px;

}



.about-tabs .about-tab.active {

    background: #c3067e;

    color: #fff;

}

/* ==================== certification ================== */

.awar_certification {

    background: #f7d2ea;

    position: relative;

    z-index: 1;

}

.awar_certification:after {

    content: '';

    width: 50%;

    right: 0;

    top: 0;

    position: absolute;

    height: 100%;

    pointer-events: none;

    background: #fbe9f4;

    z-index: -1;

}



.headings {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 30px;

}



/* .headings .slider_nav .theme_navBtn {

    border-color: #fff;

    color: #fff;

    width: 40px;

    height: 40px;

} */



.headings .section_title {

    margin-bottom: 0px;

}



/* ==================== certification ================== */

/* ==================== wardsVertical_slider ================= */

.h_450{

    height: 500px;

}

.awards {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-gap: 10px;

    padding: 30px 0;

}

.awards .swiper .swiper-wrapper{

    transition-timing-function: linear !important;

}

.awards .swiper-slide img {

    height: 100%;

}

/* ==================== wardsVertical_slider ================= */





/* ================== testimonials ============== */

.testimonial_careousel .swiper-slide img{

    height:380px;

    border:3px solid var(--theme_color2);

    border-radius:24px;

}

/* ================== testimonials ============== */

/* ================= faqs =============== */

.custom-accordion {

  background: #0c0c0c;

  border-radius: 12px;

}



.custom-accordion .accordion-item {

  background: transparent;

  border: none;

  border-bottom: 1px solid #222;

}



.custom-accordion .accordion-button {

  background: transparent;

  color: #fff;

  font-size: 24px;

  font-weight: 500;

  padding: 22px 0;

  box-shadow: none;

}



.custom-accordion .accordion-button::after {

  filter: invert(1);

}



.custom-accordion .accordion-button:not(.collapsed) {

  color: #ffffff;

  background: transparent;

}



.custom-accordion .accordion-button:focus {

  box-shadow: none;

}



.custom-accordion .accordion-body {

  color: #bdbdbd;

  font-size: 15px;

  padding: 0 0 20px 0;

  line-height: 1.6;

}



/* remove default bg */

.accordion-button:not(.collapsed)::after {

  transform: rotate(180deg);

}

.ctm_accrodion.faqs .accordion-item .accordion-header .accordion-button {

    padding: 14px 20px;

}



/* ================= faqs =============== */





/* ================ blog ================ */

.blog_section {

    background: var(--theme_color1);

    position: relative;

    overflow: hidden;

}

.blog_section:after {

    content: '';

    width: 500px;

    height: 500px;

    position: absolute;

    top: -91px;

    left: -130px;

    border-radius: 50%;

    border: 80px solid #f906a075;

    filter: blur(92px);

}

.blog_item .blog_image {
    height: 240px;
    overflow: hidden;
    border-radius: 16px;
}

.blog_item .blog_image img{

    height: 100%;

    width: 100%;

    object-fit: cover;

    transition: 0.5s;

}

.blog_item .blog_image:hover img{

    transform:scale(1.1)

}

.blog_item {
    margin: 0;
    background: #fff;
    padding: 0px;
    border-radius: 10px;
    border: 1px solid #f906a0;
}

.blog_item .blog_content {
    color: #1a1a1a;
    padding: 20px;
}


.blog_item .blog_content .blog_title {

    font-size: 19px;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

}

.blog_item .blog_content .blog_title a {

    color: #1a1a1a;

}
 


.blog_item .blog_content span.cat {
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-block;
    line-height: 1;
    color: #ec088e;
    border-radius: 30px;
}


.blog_item .blog_content .blog_footer {

    display: flex;

    justify-content: space-between;

}



.blog_item .blog_content .blog_footer .circle_btn {
    width: 120px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--theme_color2);
    border-radius: 30px;
    transition: 0.5s;
}

.blog_item:hover .blog_content .blog_footer .circle_btn {
    background: #f906a0;
}

.blog_item:hover .blog_content .blog_footer .circle_btn a{

    color:#fff;

}

.blog_item .blog_content .blog_footer .circle_btn a{

    color:#fff;
    
}
.blog_item:hover .blog_content .blog_footer .circle_btn{
    transform: translateY(-3px);
}
.blog_item .blog_content .blog_footer .date {

    font-size: 14px;

}

.blog_item .blog_content .blog_desc {

    display: -webkit-box;

    -webkit-line-clamp: 3;

    -webkit-box-orient: vertical;

    overflow: hidden;

}

/* ================ blog ================ */



/* ================ cta form =============== */

section.cta_section {

    background: url(../img/bgnew.webp);

    background-size:cover;

    background-position: center center;

}



/* .container.cta_container {

    padding: 40px;

    background: url(../img/bgnew.webp);

    border-radius: 36px;

} */

.container.cta_container .cta_logo{

    height:280px;

    width:auto;

}

.cta_container form {

    background: linear-gradient(0deg, #F805A0, #fb82db);

    padding: 30px;

    border-radius: 24px;

}



.cta_container form .form_title {

    text-align: center;

    color: #fff;

    margin-bottom: 30px;

}

.form_fields {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    grid-gap: 20px;

}



.form_fields .form_grooup.textarea {

    grid-column-start: 1;

    grid-column-end: 3;

}



.form_fields .form_grooup input:not([type="button"]), .form_fields .form_grooup select {

    width: 100%;

    background: #fff;

    border: none;

    padding: 10px;

    border-radius: 6px;

    height: 45px;

    margin-bottom: 0;

}



.form_fields .form_grooup textarea {

    background: #fff;

    border: none;

    border-radius: 6px;

    margin-bottom: 0;

}






/* Slider video style */
.testimonial_section_new .video-item {
  position: relative;
  cursor: pointer;
}

.testimonial_section_new .video-item img {
  width: 100%;
  border-radius: 12px;
}

.testimonial_section_new .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 10px 18px;
  border-radius: 50%;
}

/* Popup modal */
.testimonial_section_new .video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.testimonial_section_new .video-modal-content {
  position: relative;
  width: 80%;
  max-width: 800px;
}

.testimonial_section_new .video-modal iframe {
  width: 100%;
  height: 450px;
  border-radius: 10px;
}

.testimonial_section_new .close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}


/* ================ cta form =============== */

/* ================== inner banner ================== */


.breadcrumb_area {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    z-index: 0;
}

.breadcrumb_area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000000b3;
    z-index: 1;
}

.breadcrumb_area .container {
    position: relative;
    z-index: 2;
}

.breadcrumb_area h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}
.breadcrumb_area p {
    color: #fff;
    text-align: center;
    font-weight: 500;
}

/* ================== inner banner ================== */


/* ================== about us ================== */

section.about_page_section.section_paddingY {
    background: var(--theme_color1);
    position: relative;
    overflow: hidden;
    padding-top: 85px;
    padding-left: 50px;
}

.about_page_section:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    background: url(../img/shape.png);
    z-index: 9;
    opacity: 0.65;
    pointer-events: none;
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
}
.about_page_section h2 {
    color: #fff !important;
}
.about_page_section p {
    color: #fff !important;
}
.about_page_section .about_image_wrapper {
    position: relative;
    max-width: 500px;
    margin: auto;
    z-index: 1;
}
/* .about_page_section .about_image_wrapper::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 40px;
    width: 85%;
    height: 90%;
    background: #993f74;
    border-radius: 10%; 
    z-index: -1;
} */

.about_page_section .about_big_img {
    border-radius:10%;
    overflow: hidden;
    background: #f3f3f3;
}

.about_page_section .about_big_img img {
    width: 100%;
    height: 640px;;
    object-fit: cover;
    display: block;
}

/* Small circle box */

.about_page_section .about_small_circle {
    position: absolute;
    bottom: -20px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #ff5ebd;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about_page_section .about_small_circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Experience text overlay */

.about_page_section .experience_text {
    position: absolute;
    inset: 0;
    background: #1a1a1a8f;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
}
/* chairman section  */
.chairman_section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
.chairman::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #00000085;
    z-index: 1;
    opacity: 0.5;
}
.chairman h2.section_title.font_36 {
    color: #fff !important;
}
.chairman p {
    color: #fff !important;
}
.chairman_section .col-md-6{
    z-index: 999;
}
.ceo_connect .connect_text {
    color: #f821a8 !important;
    line-height: 1 !important;
}
.chairman_section .about_image_wrapper img {
    height: 600px;
    object-fit: cover;
    border-radius:50px;
    z-index: 0;
}
/* Connect wrapper */
.chairman_section .chairman_connect {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 15px;
    flex-wrap: wrap;
}

/* Text style */
.chairman_section .connect_text {
    color: #fff;
    line-height: 1;
}

.chairman_section .connect_text .big {
    display: block;
    font-size: 38px;
    line-height: 50px;
    font-weight: 500;
    font-family: cursive;
}

.chairman_section .connect_text .small {
    font-size: 17px;
    opacity: 0.85;
    padding-top: 5px;
}

/* Arrow image */
.chairman_section .connect_arrow img {
    width: 100%;
    height: auto;
    transform: rotate(
312deg);
}
/* Social icons list */
.chairman_section .connect_icons .footer_social {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0;
    margin: 0;
}
/* Social icons */
.chairman_section .connect_icons .footer_social li a img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    transition: 0.3s ease;
}
/* Hover effect */
.chairman_section .connect_icons .footer_social li a:hover img {
    transform: translateY(-4px) scale(1.1);
    filter: brightness(1.3);
}
.connect_arrow img {
    border-radius:none !important;
}
/* chairman section  */


/* vision mision  */

.vision_section .vision_card {
    background: #f7d2ea;
    padding: 21px 20px;
    text-align: center;
    position: relative;
    transition: 0.3s ease;
}
.vision_section .vision_card i {
    font-size: 40px;
    color: #ff5ebd;
    margin-bottom: 15px;
    display: inline-block;
}
.vision_section .vision_card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}
.vision_section .vision_card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}
.vision_section .left_card {
    border-radius: 0 120px 120px 0;
    transform: translateY(0px); /* upar shift */
}
.vision_section .right_card {
    border-radius: 120px 0 0 120px;
    transform: translateY(165px); /* niche shift */
}
.vision_section .vision_image {
    border-radius: 200px;
    overflow: hidden;
    padding: 10px;
    background: #ff5ebd;
}
.vision_section .vision_image img {
    width: 100%;
    height: 420px;
    object-position: top;
    object-fit: cover;
    border-radius: 200px;
}

/* vision mision  */
/* Big image */
.Highlights-slider {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.Highlights-slider::before {
    position: absolute;
    content: "";
    background-image: linear-gradient(300deg, var(--theme_color2) 0%, #1a1a1a 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.9;
}

/* Content overlay ke upar rahe */
.Highlights-slider .container {
    position: relative;
    z-index: 2;
}

.highlight_big {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 15px;
}

.highlight_big img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease;
}

.highlight_big img.active {
  opacity: 1;
}

/* Thumbnails */

.small-image {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.small-image img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
  border-radius: 6px;
}

/* .small-image img.active {
  opacity: 1;
  border: 2px solid #ff5ebd;
} */

/* ================== about us ================== */


/* ================== contact us ================== */

.contact_enquiry {
    background: #f9f9f9;
}

.contact_enquiry .contact_box {
    background: #ffffff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s ease;
}

.contact_enquiry .contact_box:hover {
    transform: translateY(-6px);
}

/* Icon style */

.contact_enquiry .contact_box i {
    font-size: 36px;
    color: #ff5ebd;
    margin-bottom: 12px;
    display: inline-block;
}

.contact_enquiry .contact_box h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact_enquiry .contact_box p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.contact_enquiry .contact_box span {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: #666;
}
.contact_page_section{
    position:relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.contact_page_section .col-lg-4.col-md-6 {
    z-index: 99;
}
.contact_page_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #00000085;
    z-index: 1;
    opacity: 0.5;
}
.location_card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.location_card:hover {
    transform: translateY(-8px);
}

/* Map */

.location_card .map_box iframe {
    width: 100%;
    height: 270px;
    border: 0;
}

/* Content */

.location_content {
    padding: 20px;
}

.location_title {
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin-bottom: 10px; */
}
.location_content p {
    font-size: 15px;
    margin-bottom: 15px;
}

/* Buttons */

.location_buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}
 
.call_btn {
    background: #f3f3f3;
    padding: 8px 10px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    color: #333;
    width: 48.5%;
    text-align: center;
}

.direction_btn {
    background: linear-gradient(90deg, #ff2f92, #ff6ab0);
    color: #fff;
    padding: 8px 10px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    width: 48.5%;
    text-align: center;
}


/* ================== contact us ================== */




/* ================== gallery ================== */

/* Masonry gallery */

.custom_gallery .gallery_grid {
    column-count: 3;
    column-gap: 15px;
}

.custom_gallery .gallery_item {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.custom_gallery .gallery_item:hover {
    transform: scale(1.03);
}

/* Popup */

.gallery_popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gallery_popup img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
}

.popup_close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* Responsive */

@media (max-width: 768px) {
    .custom_gallery .gallery_grid {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .custom_gallery .gallery_grid {
        column-count: 1;
    }
}
.custom_gallery {
    background: var(--theme_color1);
    position: relative;
    overflow: hidden;
     z-index: 1;
}
.custom_gallery:after {
    content: '';
    width: 500px;
    height: 500px;
    position: absolute;
    top: -91px;
    left: -130px;
    border-radius: 50%;
    border: 80px solid var(--theme_color2);
    filter: blur(92px);
    z-index: -1;
}

/* ================== gallery ================== */


/* ================== branches ================== */

.branches_page {
    background: var(--theme_color1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.branches_page {
    background: var(--theme_color1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.branches_item .branch-col {
    margin-bottom: 20px;
}
.branches_page:after {
    content: '';
    width: 500px;
    height: 500px;
    position: absolute;
    top: -91px;
    left: -130px;
    border-radius: 50%;
    border: 80px solid var(--theme_color2);
    filter: blur(92px);
    z-index: -1;
}
.branches_page h2,h3 {
    color: #fff;
}
.row.search-row {
    text-align: center;
}
.row.search-row h2 {
    font-size:42px;
}

.row.search-row input {
    width:60%;
    height:60px;
    border:3px solid #ff38a6;
    border-radius:5px;
    padding:10px;
}
.row.search-row input::placeholder {
   color:#a6a6a6;
   font-size:18px;
}
.branch-text p {
    color:#fff;
    font-size: 20px;
}
.branches_page h3 {
    font-size: 35px;
}
/* ===== Branch Card ===== */

.branch_card {
  border: 2px solid #ff4fb3;
  border-radius: 18px;
  padding: 25px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  height: 100%;
}

/* ===== Top Section Layout ===== */

.branch_top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.branch_info {
  flex: 1;
}

/* Address label */

.address_label {
  color: #ff4fb3;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
}

/* Title */

.branch_info h3 {
  font-size: 28px;
  margin: 8px 0;
  color: #ff2f92;
  font-weight: 700;
}

.branch_info p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Phone button */

.branch_phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffe3f3;
  padding: 10px 16px;
  border-radius: 30px;
  color: #ff2f92;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Buttons */

.branch_buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.btn_outline {
  border: 2px solid #ff4fb3;
  padding: 8px 16px;
  border-radius: 10px;
  color: #ff2f92;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn_outline:hover {
  background: #ff4fb3;
  color: #fff;
}

.btn_fill {
  background: #ff2f92;
  padding: 8px 16px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn_fill:hover {
  opacity: 0.9;
}

/* ===== Map ===== */

.branch_map iframe {
  width: 200px;
  height: 150px;
  border: 0;
  border-radius: 12px;
}

/* ===== Bottom Gallery ===== */

.branch_gallery {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.branch_gallery img {
  width: 50%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {

  .branch_top {
    flex-direction: column;
  }

  .branch_map iframe {
    width: 100%;
    height: 200px;
  }

  .branch_gallery img {
    height: 120px;
  }
}
/* ===== Branch Card ===== */

.branch_card {
  border: 2px solid #ff4fb3;
  border-radius: 18px;
  padding: 25px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  height: 100%;
}

/* ===== Top Section Layout ===== */

.branch_top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.branch_info {
  flex: 1;
}

/* Address label */

.address_label {
  color: #ff4fb3;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
}

/* Title */

.branch_info h3 {
  font-size: 28px;
  margin: 8px 0;
  color: #ff2f92;
  font-weight: 700;
}

.branch_info p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Phone button */

.branch_phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffe3f3;
  padding: 10px 16px;
  border-radius: 30px;
  color: #ff2f92;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Buttons */

.branch_buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.btn_outline {
  border: 2px solid #ff4fb3;
  padding: 8px 16px;
  border-radius: 10px;
  color: #ff2f92;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn_outline:hover {
  background: #ff4fb3;
  color: #fff;
}

.btn_fill {
  background: #ff2f92;
  padding: 8px 16px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn_fill:hover {
  opacity: 0.9;
}

/* ===== Map ===== */

.branch_map iframe {
  width: 200px;
  height: 150px;
  border: 0;
  border-radius: 12px;
}

/* ===== Bottom Gallery ===== */

.branch_gallery {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.branch_gallery img {
  width: 50%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}
/* ===== Hover Effect ===== */

.branch_card {
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.branch_card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: 0 0 0 rgba(255, 79, 179, 0);
  transition: 0.35s ease;
  pointer-events: none;
}

.branch_card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.branch_card:hover::after {
  box-shadow: 0 0 25px rgba(255, 79, 179, 0.5);
}

/* ===== Responsive ===== */

@media (max-width: 768px) {

  .branch_top {
    flex-direction: column;
  }

  .branch_map iframe {
    width: 100%;
    height: 200px;
  }

  .branch_gallery img {
    height: 120px;
  }
}

/* ================== branches ================== */












































/* ======================== footer code ==================== */

.footer {

    position: relative;

    /* background-color: rgb(12, 12, 12); */

    background:url(../img/footerbg.webp);

    background-size:cover;

    background-position:center center;

}
img.footer-logo {
    padding-bottom: 15px;
}
.heading-bottom-line {
  width: 30%;
  margin: 8px auto 0; /* heading ke niche center me lane ke liye */
  border-bottom: 2px solid;
  border-image: linear-gradient(
    to right,
    transparent,
    #ff4db8,
    #ff99dd,
    #ff4db8,
    transparent
  ) 1;
}

.design-line {
  border-top: 2px solid;
  border-image: linear-gradient(
    to right,
    transparent,
    #ff4db8,
    #ff99dd,
    #ff4db8,
    transparent
  ) 1;
}
.footer .top {

    position: relative;

    display: block;

    padding: 60px 0px 60px;

    z-index: 1;

}



.footer .top h5 {

    font-size: 24px;

    margin-bottom: 15px;

    color:#fff;

}



.footer .top p {

    color: rgb(221, 221, 221);

}



.footer .top .social {

    display: flex;

    -webkit-box-align: center;

    align-items: center;

}



.footer .top .social a {

    width: 45px;

    height: 45px;

    text-align: center;

    font-size: 14px;

    border: 2px solid rgba(194, 74, 85, 0.2);

    color: rgb(255, 255, 255);

    margin-right: 5px;

    background: transparent;

    border-radius: 100%;

    display: inline-flex;

    overflow: hidden;

    transition: background-color 300ms, transform 300ms, color 300ms;

    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);

    transform-style: preserve-3d;

    justify-content: center;

    align-items: center;

}



.footer .top .social a:hover {

    border: 2px solid var(--theme_color2);

    background: var(--theme_color2);

    color: rgb(255, 255, 255);

    transform: translate3d(0px, -5px, 0.01px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);

    transform-style: preserve-3d;

}



.footer .top .social a + a {

    margin-left: 5px;

}



.footer .top .phone {

    font-size: 24px;

    color: rgb(196, 73, 83);

    font-weight: 400;

    display: block;

    transition: 500ms;

}



.footer .top .phone span {

    color: rgb(196, 73, 83);

}



.footer .top .phone:hover {

    color: rgb(255, 255, 255);

}



.footer .top .mail {

    font-size: 16px;

    line-height: 3em;

    color: rgb(221, 221, 221);

    position: relative;

    display: inline-block;

    transition: 500ms;

}



.footer .top .mail:hover {

    color: rgb(255, 255, 255);

}



.footer .top .mail::before {

    position: absolute;

    bottom: 9px;

    left: 0px;

    right: 0px;

    height: 2px;

    background-color: rgba(194, 74, 85, 0.2);

    content: "";

    transition: 500ms;

}



.footer .top .mail:hover::before {

    background-color: rgb(196, 73, 83);

}



.footer .bottom {

    position: relative;

    display: block;

    /* background-color: rgb(12, 12, 12); */

    padding: 30px 0px;

    border-top: 2px solid rgba(194, 74, 85, 0.2);

}



.footer .bottom p {

    font-size: 14px;

    color: rgb(221, 221, 221);

    margin-bottom: 0px;

}



.footer .bottom p a {

    font-size: 14px;

    line-height: 3em;

    position: relative;

    display: inline-block;

    transition: 500ms;

}



.footer .bottom p a:hover {

    color: rgb(255, 255, 255);

}



.footer .bottom p a::before {

    position: absolute;

    bottom: 9px;

    left: 0px;

    right: 0px;

    height: 2px;

    background-color: rgba(194, 74, 85, 0.2);

    content: "";

    transition: 500ms;

}



.footer .bottom p a:hover::before {

    background-color: rgb(196, 73, 83);

}



/* .footer .worktime ul {

    margin: 0px;

    padding: 0px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    grid-column-gap: 50px;

} */
.worktime ul {
    padding: 0;
}
.footer .worktime ul li a{

    color:#fff;

    transition:0.5s

}

.footer .worktime ul li a:hover{

    color:var(--theme_color2);

}



.footer .worktime ul li .tit, .footer .worktime ul li .dots, .footer .worktime ul li span {

    display: table-cell;

    white-space: nowrap;

}



.footer .worktime ul li {

    margin-bottom: 15px;

    font-size: 16px;

}



.footer .worktime ul li:last-of-type {

    margin-bottom: 0px;

}



.footer .worktime ul li span {

    white-space: nowrap;

    padding-left: 10px;

    font-family: "Montserrat", sans-serif;

    color: rgb(221, 221, 221);

}



.footer .worktime ul li .tit {

    padding-right: 10px;

    color: rgb(221, 221, 221);

}



.footer .worktime ul li .dots {

    height: 4px;

    width: 100%;

    border-bottom: 2px solid rgba(194, 74, 85, 0.2);

    position: relative;

    top: -7px;

}

.footer .bottom p a {

    color: var(--theme_color2);

}



.footerLists {

    padding-left: 0;

    margin: 0;

}

.footerLists li{

    list-style:none;

}

.footerLists li:not(:last-child){

    margin-bottom: 8px;

}

.footerLists li a,

.footerLists li span{

    display:inline-block;

    padding-left: 30px;

    position:relative;

    color:#fff;

    transition:0.5s;

    font-size: 15px;

}

.footerLists li a:hover{

    color:var(--theme_color2);

}

.footerLists li a i,

.footerLists li span i{

    position:absolute;

    left:0;

    top:0;

    font-size: 20px;

    color: var(--theme_color2);

}

.footer_social {
    display: flex;
    justify-content: center;
    padding: 0;
}

.footer_social li:not(:last-child){

    margin-right:16px;

}

.footer_social li a img {

    width: 40px;

}



.footer .bottom ul{

    margin:0;

    padding:0;

}



.bottom_footer_list {

    display:flex;

}

.bottom_footer_list li:not(:last-child) {

    margin-right:20px;

}

.bottom_footer_list li a {

    color:#fff;

}

/* ======================== footer code ==================== */





/* ================== modal form ================ */

.modal_form_content{

    margin:0;

}

.modal_form_content .form_grop{

    width:100%;

}

.modal_form_content .form_grop input,

.modal_form_content .form_grop select,

.modal_form_content .form_grop textarea{

    border:1px solid #d8d8d8;

    border-radius: 4px;

    padding:10px;

    width:100%;

    color:#1a1a1a;

}

.modal_form_content .form_grop input::placeholder,

.modal_form_content .form_grop textarea::placeholder{

   color:#909090;

}

.modal_form_content .form_grop textarea{

    height: 90px;

}

.modal_form_content .form_grop:not(:last-child){

    margin-bottom:16px;

}

.modal_form_content .form_col_6{

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    grid-column-gap: 16px;

}

.modal_form_content .form_col_6 .form_grop{

    margin-bottom:0px;

}

/* ================== modal form ================ */



/* branches page banner  */


.branches_breadcrumb_area {
    position: relative;
    padding: 50px 0;
    color: #fff;
}

.branches_breadcrumb_area .overlay {
    position: absolute;
    inset: 0;
    background: #000000b3;
}

.branches_breadcrumb_area .container {
    position: relative;
    z-index: 2;
}

.branches_breadcrumb_area .badge-custom {
    border: 1px solid #ff008c;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 15px;
    display: inline-block;
}
.branches_breadcrumb_area .hero-title {
    font-size: 42px;
    font-weight: 700;
}
.branches_breadcrumb_area .hero-title span {
    color: #ff008c;
}
.branches_breadcrumb_area .hero-text {
    margin: 15px 0 25px;
    color: #ddd;
}
.branches_breadcrumb_area .feature-box {
    background: #e1d9d936;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 12px;
    display: flex;
    gap: 10px;
} 
.branches_breadcrumb_area i {
   background:#ff0a8f;
   height:25px;
   width:22px;
   line-height:25px;
   border-radius:2px;
}
.branches_breadcrumb_area .hero-form {
    background: #ffffff2e;
    color: #333;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    max-width: 420px;
    border: 1px solid #ff3596 !important;
    border-top: 4px solid;
    border-image: linear-gradient(to right, transparent, #ff4db8, #ff99dd, #ff4db8, transparent) 1;
}
.branches_breadcrumb_area .callback-btn {
    padding: 14px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff008c, #ff4da6);
    color: #fff;
}
/* .branches_breadcrumb_area h3.text-center.mb-1 {
    color:#000;
} */
.branches_breadcrumb_area input.form-control {
    height:40px;
    margin:0
}





/* Section spacing */

.about-gradient {
    padding: 60px 0;
}

/* Gradient Card Row */

.row-gradient {
    background: linear-gradient(135deg, #111827, #1f2937, #020617);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Optional glow effect */

.row-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 0, 140, 0.15), transparent 40%);
    pointer-events: none;
}

/* Badge */

.about-gradient .about-badge {
    background: #ff008c;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Title */

.about-gradient  .about-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.about-gradient .about-title span {
    color: #ff008c;
}

/* Text */

.about-gradient .about-text {
    color: #d1d5db;
    margin-bottom: 12px;
    font-size: 15px;
    text-align: justify;
}

/* Image */

.about-gradient .about-img img {
    width: 100%;
    border-radius: 16px;
    transition: 0.4s ease;
    height: 650px;
    object-fit: cover;
    object-position: top;
}

.about-gradient .about-img img:hover {
    transform: scale(1.03);
}

/* Stats Boxes */

.about-gradient .stat-box {
    background: #feebf7;
    padding: 18px 10px;
    border-radius: 12px;
    text-align: left;
    border-left: 3px solid #ff16b2;
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.about-gradient .stat-box:hover {
    background: #feebf7;
    transform: translateY(-4px);
}

.about-gradient .stat-box h4 {
    color: #ff008c;
    font-size: 35px;
    margin-bottom: 5px;
    font-weight: 800;
}

.about-gradient .stat-box p {
    font-size: 13px;
    color: #000000;
    margin: 0;
}

/* Responsive */

@media (max-width: 768px) {
    .row-gradient {
        padding: 25px;
    }

    .about-gradient  .about-title {
        font-size: 26px;
    }
}







/* Section spacing */


.branches_cta .cta-bg {
    background:url(../img/banner-1/bg-5.png);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* Overlay */

.branches_cta  .cta-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

.branches_cta  .cta-bg > * {
    position: relative;
    z-index: 2;
}

/* Contact items */

.branches_cta  .cta-icon {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-size: 15px;
}

.branches_cta .cta-icon i {
    font-size: 22px;
    color: #ff008c;
    min-width: 28px;
}

/* Map */

.branches_cta .map-box {
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
}

.branches_cta .map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile */

@media (max-width: 768px) {
    .branches_cta .cta-bg {
        padding: 25px;
    }

    .branches_cta .map-box {
        height: 250px;
    }
}


/* branches page banner  */






/* new contact section  */


.contact-section {
  position: relative;
  padding: 60px 20px;
  background: url('https://digivendtechnologies.in/html/ukinternational-1/assets/img/contact-section.png') no-repeat right center/cover;
  display: flex;
  align-items: center;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.1));
}

.contact-container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

.contact-form {
  width: 500px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  padding: 40px !important;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  color: #fff;
}
.contact-form input.form-control {
    height: 40px;
    background: #fff;
    border: none;
}

.contact-form textarea {
    background: #fff;
    margin-top: 15px;
}
.form_title {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.form_fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form_grooup input,
.form_grooup select,
.form_grooup textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

.form_grooup textarea {
  height: 90px;
  resize: none;
}

.theme_button {
  background: linear-gradient(45deg, #ff2f92, #ff7ac3);
  color: white;
  border: none;
  padding: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.theme_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 0, 128, 0.5);
}
.form_desc {
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
  opacity: 0.9;
  line-height: 1.5;
}
section.branches_cta {
    padding-top: 90px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form {
    width: 100%;
  }

  .contact-section {
    background-position: center;
    padding: 60px 20px;
  }
}
/* new contact section  */


/* branches page banner  */


/* course page  */

.course_list_page {
    padding: 60px 0;
    background: #1a1a1a;
}
.course_list_page .filter-box {
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #fff;
    color: #212529;
    border: 2px solid #f906a0;
}
.course_serach_box{
    position:relative;
}
.course_serach_box button {
    position: absolute;
    right: 6px;
    top: 3.5px;
    background: #ff2f92;
    color: #fff;
    height: 38px;
    width: 38px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
/* .course_list_page .ks-service-style-2 .ks-service-item {
    padding: 15px;
} */
.course_list_page .ks-service-style-2 .ks-service-item .ks-service-more .ks-servicebtn {
    padding: 10px 10px;
    font-size: 11px;
}
.course_list_page .ks-service-style-2 {
    gap: 20px;
}
.course_list_page .filter-box label {
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
}
.course_list_page .filter-box label:hover {
  color:#ff439f;
}
.course_list_page .content_box h2 {
  font-size:42px;
}
.course_list_page .content_box p {
  font-size:16px;
  font-weight:400;
}
.heading-bottom-linee {
    width: 100%;
    margin: 0px auto 12px;
    border-bottom: 2px solid;
    border-image: linear-gradient(
    to right,
    transparent,
    #ff4db8,
    #ff99dd,
    #ff4db8,
    transparent
  ) 1;
}
.course_list_page .col-12.form-section input{
    width: 60%;
    height: 60px;
    border: 3px solid #ff38a6;
    border-radius: 5px;
    padding: 10px;
}
.relatedCourseSwiper {
    position: relative;
    padding-bottom: 50px;
}
.relatedCourseSwiper .swiper-pagination {
    bottom: 0px !important;
    text-align: center;
}
.relatedCourseSwiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    margin: 0 5px !important;
}
.relatedCourseSwiper .swiper-pagination-bullet-active {
    background: #ff1493;
}
.related_course_slider{
    position:relative;
}
.related-swiper-button-next {
    position:absolute;
    background:#f906a0;
    border-radius:50%;
    height:40px;
    width:40px;
    color:#fff;
    top:50%;
    right:70px;
}
.related-swiper-button-next:hover {
    background:#fff;
    color:#f906a0;
}
.related-swiper-button-next i{
    position:absolute;
    font-size:25px;
    top:7px;
    right:7px;
}
.related-swiper-button-prev {
     position:absolute;
    background:#f906a0;
    border-radius:50%;
    height:40px;
    width:40px;
    color:#fff;
    top:50%;
    left:70px;
}
.related-swiper-button-prev:hover {
    background:#fff;
    color:#f906a0;
}
.related-swiper-button-prev i{
    position:absolute;
    font-size:25px;
    top:7px;
    right:9px;
}
.course_list_page .col-12.form-section {
    display: flex;
    justify-content: space-around;
}

.course-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.course-bg {
  position: relative;
  height: 370px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

/* Dark gradient overlay */

.course-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.2)
  );
  transition: 0.4s;
}

/* Hover pink overlay */

.course-card:hover .course-bg::before {
  background: linear-gradient(
    to top,
    rgba(255,0,140,0.85),
    rgba(0,0,0,0.2)
  );
}

/* Zoom image */

.course-card:hover .course-bg {
  transform: scale(1.08);
}

/* Badge */

.category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(45deg, #ff008c, #ff4da6);
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  z-index: 2;
}

/* Content overlay */

.course-overlay {
  position: absolute;
  bottom: 0;
  padding: 24px;
  color: #fff;
  z-index: 2;
}

.course-overlay h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* Button */

.course-btn {
  display: inline-block;
  padding: 7px 19px;
  border: 1px solid #fff;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.course-btn:hover {
  background: #fff;
  color: #ff008c;
}
p.course_product_text {
    opacity: 0;
    transform: translateY(10px);
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.course-card:hover p.course_product_text {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
    padding-top: 10px;
}
.course-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.pagination li.page-item.active button.page-link {
     background: #ff379f !important;
    border:1px solid #ff379f;
    color:#fff;
}
.pagination  li.page-item button.page-link{
    color:#333;
}
nav#paginationWrapper {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

ul#pagination {
    width: 100%;
}
.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
/* Mobile */

@media (max-width: 768px) {
  .course-bg {
    height: 360px;
  }

  .course-overlay h5 {
    font-size: 18px;
  }
}
/* course page  */



/* new contact section  */


.contact-section {
  position: relative;
  padding: 60px 20px;
  background: url('https://digivendtechnologies.in/html/ukinternational-1/assets/img/contact-section.png') no-repeat top center/cover;
  display: flex;
  align-items: center;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.1));
}

.contact-container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

.contact-form {
    width: 450px;
    background: rgb(0 0 0 / 52%);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: #fff;
}

.form_title {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.form_fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form_grooup input,
.form_grooup select,
.form_grooup textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

.form_grooup textarea {
  height: 90px;
  resize: none;
}

.theme_button {
  background: linear-gradient(45deg, #ff2f92, #ff7ac3);
  color: white;
  border: none;
  padding: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.theme_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 0, 128, 0.5);
}
.form_desc {
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
  opacity: 0.9;
  line-height: 1.5;
}
/* Responsive */

@media (max-width: 768px) {
  .contact-form {
    width: 100%;
  }

  .contact-section {
    background-position: center;
    padding: 60px 20px;
  }
}

/* new contact section  */





/*------------------------- blog page----------------------------------  */


.blog-item-big {
    border-radius: 12px;
}
.blog-item-big .blog-big-img {
    height: 500px;
    object-fit: cover;
}
.blog-item-big .blog-big-overlay {
    background: linear-gradient(to top, rgba(10,25,50,0.95) 20%, rgba(10,25,50,0.2) 60%);
}
.blog-item-big .blog-big-content {
    bottom: 10px;
    left: 40px;
    right: 40px;
    max-width: 100%;
}
.blog_details_page .blog-big-overlay{
    position:absolute;
}
.blog_details_page  .blog-big-content.text-white {
   position:absolute;
}
.blog-item-big .blog-badge {
    background: #ff1493;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}
.blog-item-big .blog-meta {
    font-size: 14px;
    opacity: 0.9;
}
.blog-items .ks-service-style-2 {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
    column-gap: 30px;
}
.blog-items .ks-service-item.blog-item {
    background: #fff;
    color: #1a1a1a;
}

.blog-items h4.ks-service-title a{
    color: #1a1a1a !important;
}
.side_bar .box {
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #fff;
    border: 2px solid #f906a0;
} 
.mobile_search_box{
   display: none;
}
.blog_list_sidebar h4.sidebar-title {
    color:#1a1a1a;
}
.custom-post-tabs {
    border-bottom: none;
    gap: 10px;
}

.custom-post-tabs .nav-link {
    border: none;
    color: #999;
    font-weight: 600;
    padding: 8px 18px;
    background: transparent;
    border:2px solid #ff1493;
}

.custom-post-tabs .nav-link.active {
    color: #fff;
    border-bottom: 2px solid #ff1493;
    background: #ff1493;
}
.box.serach_box input.form-control {
    border-radius:30px;
    border:2px solid #ddd;
    height:47px;
}
.box.serach_box .search-form input:focus {
    border-color: #f8069d !important;
    outline: none;
}
.box.serach_box form.search-form {
    position: relative;
}
.box.serach_box button {
    position: absolute;
    right: 6px;
    top: 3.5px;
    background: #ff2f92;
    color: #fff;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.box.serach_box form.search-form:hover button {
    transform: scale(1.08);
}
.category_box .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.category_box .category-list li {
    border-bottom: 1px solid #f0f0f0;
}
.category_box .category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
     color:#212529;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.category_box .category-list li a:hover {
    color: #f8069d;
    padding-left: 10px;
}
.recent_post .recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}
.recent_post .recent-post-item img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover !important;
    border-radius: 8px;
    flex-shrink: 0;
}
.recent_post .recent-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.recent_post .recent-post-content h6 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}
.recent_post .recent-post-content h6 a {
    color: #212529;
    text-decoration: none;
    transition: color 0.3s ease;
}
.recent_post .recent-post-content h6:hover a {
     color: #f8069d;
}

.recent_post .recent-date {
    font-size: 13px;
    color: #888;
}
.recent_post .recent-date i {
    font-size: 13px !important;
    color: #f8069d !important;
    margin-right: 5px !important;
    display: inline-block !important;
}
.popular_tages .tags-cloud {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.popular_tages .tag-cloud-item {
    display: inline-block;
    background: #f0f0f0;
    color: #555;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.blog_details_page .newsletter {
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background:#f8069d;
}

.blog_details_page .newsletter h4.sidebar-title {
    color: #fff;
}
.blog_details_page .newsletter .heading-bottom-linee-white{
    width: 100%;
    margin: 0px auto 12px;
    border-bottom: 2px solid;
    border-image: linear-gradient(
    to right,
    transparent,
    #ff4db8,
    #ff99dd,
    #ff4db8,
    transparent
  ) 1;
}
.blog_details_page .newsletter p {
    color: #fff !important;
}

.blog_details_page .newsletter-form input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgb(255 255 255 / 30%);
    border-radius: 25px;
    font-size: 15px;
    margin-bottom: 12px;
    background: rgb(242 242 242 / 63%);
}
.blog_details_page .newsletter-form input::placeholder {
     color: #fff !important;
}
.blog_details_page .btn-newsletter {
    width: 100%;
    background: #fff;
    color: #f8069d;
    height:47px;
    line-height: 15px;
    border:2px solid #fff !important;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}
.blog_details_page .btn-newsletter:hover {
    background: #ffffff33;
    color: #fff;
}
.blog_details_page .blog-detail-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(248, 6, 157, 0.08);
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.blog_details_page .blog-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f8069d 0%, #b23a86 50%, #f8069d 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}
.blog_details_page .blog-featured-img {
    position: relative;
    overflow: hidden;
    height: auto;
    line-height: 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}
/* .blog_details_page .blog-featured-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
} */
.blog_details_page .blog-featured-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog_details_page .blog-meta-overlay {
    /* position: absolute; */
    /* bottom: 0; */
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 22px 30px 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.blog_details_page .blog-meta-overlay span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
.blog_details_page .blog-meta-overlay i {
    font-size: 14px !important;
    margin-right: 6px !important;
    display: inline-block !important;
    color: #f8069d !important;
}
.blog_details_page .blog-content {
    padding: 40px;
}
.blog_details_page .blog-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-left: -20px;
}
.blog_details_page .category-badge {
    display: inline-block;
    background: #ff439f;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(248, 6, 157, 0.3);
    position: relative;
    overflow: hidden;
}
.blog_details_page .category-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(248, 6, 157, 0.5);
}
.blog_details_page .category-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}
.blog_details_page .blog-title {
    font-size: 36px;
    font-weight: 900;
    margin: 50px 0 20px 0;
    line-height: 40px;
}
.blog_details_page .blog-content p{
    font-family: var(--theme_text_font);
    font-size: 16px;
    line-height: 1.75em;
    font-weight: 400;
    margin: 0px 0px 15px;
}

.blog_details_page .blog-content h3 {
    color:#212529;
}
.blog-list li::before {
    content: "âœ“";
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #f8069d, #b23a86);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}
.blog_details_page .blog-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    line-height: 1.7;
}

.blog_details_page ul.blog-list {
    margin: 0;
    padding: 0;
}
.blog_details_page .blog-quote {
    background: linear-gradient(135deg, rgba(248, 6, 157, 0.08), rgba(178, 58, 134, 0.08));
    border-left: 5px solid transparent;
    border-image: linear-gradient(180deg, #f8069d, #b23a86) 1;
    padding: 30px 35px;
    margin: 35px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #333;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 8px 25px rgba(248, 6, 157, 0.1);
    position: relative;
    animation: quoteSlideIn 0.8s ease-out;
}
.blog_details_page .blog-list-numbered {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
}
.blog_details_page .blog-list-numbered li {
    counter-increment: item;
    padding: 12px 0 12px 40px;
    position: relative;
    line-height: 1.7;
}
.blog_details_page .blog-list-numbered li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 12px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #f8069d, #b23a86);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}
.blog_details_page .specialization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.blog_details_page .spec-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}
.blog_details_page .spec-item:hover {
    border-color: #f8069d;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(248, 6, 157, 0.2);
}
.blog_details_page .spec-item h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #f8069d;
    margin-bottom: 10px;
}
.blog_details_page .blog-tags {
    border-top: 2px solid #f0f0f0;
    padding-top: 25px;
}
.blog_details_page .tags-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.blog_details_page .tag-item {
    display: inline-block;
    background: #f0f0f0;
    color: #555;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.blog_details_page .share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff !important;
    position: relative;
    overflow: visible;
}
.blog_details_page .share-btn.facebook {
    background: #3b5998 !important;
}

.blog_details_page .share-btn.twitter {
    background: #1da1f2 !important;
}

.blog_details_page .share-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

.blog_details_page .share-btn.pinterest {
    background: #bd081c !important;
}

.blog_details_page .share-btn.whatsapp {
    background: #25d366 !important;
}

.blog_details_page .share-btn:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
}
.comments-section {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.comments-section  .comments-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 30px;
}
.comments-section  .comment-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}
.comments-section  .comment-avatar {
    flex-shrink: 0;
}
.comments-section  .comment-avatar img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}
.comments-section  .comment-content {
    flex: 1;
}
.comments-section  .comment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.comments-section  .comment-author {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}
.comments-section  .comment-date {
    color: #888;
    font-size: 14px;
}
.comments-section  .comment-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}
.comments-section  .reply-btn {
    background: transparent;
    border: 2px solid #f8069d;
    color: #f8069d;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.comments-section  .reply-btn:hover {
    background: #f8069d;
    border: 2px solid #f8069d;
    color: #fff;
}
.comments-section  .reply-form {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}
.comments-section  .comment-replies {
    margin-top: 25px;
    padding-left: 40px;
}
.comments-section  .comment-item.reply {
    border-left: 3px solid #f8069d;
    padding-left: 20px;
}
.comments-section  .comment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.comments-section  .reply-btn i {
    font-size: 14px !important;
    margin-right: 6px !important;
    display: inline-block !important;
}
.add-comment-form {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
}

.comments-section  input.form-control {
    border: 1px solid #ddd;
}
/*------------------------- blog page----------------------------------  */

/*-------------------------------- corse details page-------------------  */

.course-details-page .course-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.course-details-page .course-slider img {
    width: 100%;
    height:500px;
    object-fit:cover;
    border-radius:20px;
    display: none;
}

.course-details-page .course-slider img.active {
    display: block;
}
section.course-detail {
    padding: 30px 0 60px 0;
}
section.course-detail img{
    height:500px;
    border-radius:20px;
    object-fit:cover;
    width:100%;
    object-position:top;
}

/*-------------------------------- corse details page-------------------  */


/*--------------------------------- refund policy---------------------------  */
.refund-policy ul li {
    list-style: circle;
}

.refund-policy ul {
    margin-left: -15px;
}
.contact-area a {
    color: #c3097e;
}
.contact-area a:hover {
    color: #fff;
}
/*--------------------------------- refund policy---------------------------  */




/*--------------------------------- franchise---------------------------  */
.form-section input {
    background: #ffffffd9 !important;
    height: 45px !important;
    color: #000 !important;
}
.form-section select {
     background: #ffffffd9 !important;
    color:#333 !important; 
    height:45px !important;
}
.form-section textarea {
     background: #ffffffd9 !important;
      color: #000 !important;
}
.about_page_section .franchise img {
    height: 450px;
}
.country {
    background: #c3097e;
    padding: 15px 15px 2px 15px;
    border-radius: 5px;
    text-align: center;
}
.franchise_sec .ks-service-style-2 .ks-service-item .ks-service-more {
    justify-content: center;
}
.franchise_sec .ks-service-style-2 .ks-service-item {
    min-height: 280px;
}
.franchise_sec {
    z-index: 1;
}
.about_big_img.franchise {
    border: 2px solid #f906a0;
    border-radius: 10px;
}
.about_big_img.franchise img {
    border-radius: 10px;
}
.franchise_sec:after {
    z-index: -1;
}
.ks-service-area.ks-service-style-2.franchise_boxes {
    row-gap: 85px;
    column-gap: 25px;
}
.support_item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}
.support_item .ks-service-more {
    margin-top: -50px;
}
.franchise_icon {
    padding-top: 20px;
    background: #ff409d;
    width: 80px;
    border-radius: 50%;
    height: 80px;
    position: relative;
    top: -55px;
    display: inline-block;
}
.franchise_icon i {
    font-size: 45px;
    color: #fff;
    padding: 10px;
    position: absolute;
    left: -4px;
    right: 0px;
    top: 17px;
}
.country h3{
    font-size:35px;
    margin: 0;
}
.city {
    background: #c3097e;
    padding: 15px 15px 2px 15px;
    border-radius: 5px;
    text-align: center;
}
.city h3{
    font-size:35px;
    margin: 0;
}

.page-img img {
    height: 560px;
    object-fit:cover;
}
.certificate_sec .ks-service-style-2 .ks-service-item {
    min-height: 121px !important;
}
.certificate_sec .ks-service-style-2 .ks-service-item {
    overflow: visible !important;
}
.certificate_sec .ks-service-item .ks-service-title {
    margin-top: -50px;
}
.certificate_benfit {
    background-image: url('https://digivendtechnologies.in/html/ukinternational-1/assets/img/certificate33.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.certificate_benfit ul {
    margin-left:-15px;
}
.certificate_benfit li {
    list-style: circle;
    padding-bottom: 10px;
}
.certificate_statement_sec {
    z-index: 1;
}

.certificate_statement_sec:after {
    z-index: -1;
}
/*--------------------------------- franchise---------------------------  */


/*--------------------------------- awards---------------------------  */

.awards-page h2 {
    color: #fff;
}
.awards-page p {
    color: #fff;
}
/*--------------------------------- awards---------------------------  */




/*--------------------------------- b voc degree---------------------------  */


.bvoc_main_banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    position: relative;
    color: #fff;
}
.bvoc_main_banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(17 16 16 / 71%);
}
.bvoc_main_banner .container {
    position: relative;
    z-index: 2;
}
.bvoc_main_banner .info-box {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.bvoc_main_banner .info-item {
    background: #ff72be;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 120px;
    backdrop-filter: blur(5px);
    color: #fff;
}
.bvoc_main_banner .info-item h2 {
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 800;
}
.bvoc_main_banner .info-item p {
    font-size: 14px;
    margin: 0;
}
.bvoc_main_banner .right-bottom-images {
    position: absolute;
    bottom: 30px;
    right: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
    padding-right: 20px;
}

 .bvoc_main_banner .right-bottom-images img {
    width: 160px;
    height:100px;
    object-fit:cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    animation: floatAnim 4s ease-in-out infinite;
}

/* Different delay for natural effect */
.bvoc_main_banner .right-bottom-images img:nth-child(2) {
    animation-delay: 0.5s;
}
.bvoc_main_banner .right-bottom-images img:nth-child(3) {
    animation-delay: 1s;
   top: 100%;
}
.bvoc_main_banner h1 {
    font-size: 45px;
}
/* Floating Animation */
@keyframes floatAnim {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.about-bvoc-img img {
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}
.bvoc-choice-sec.chairman {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.bvoc-choice-sec .col-md-4.image-box {
    padding: 0;
}
.bvoc-choice-sec .image-box img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.bvoc-choice-sec  .text-box{
    background:#fff;
    padding:20px;
     transition: background-color 0.4s ease;
}
.bvoc-choice-sec h5 {
    color:#ff72be;
}
.bvoc-choice-sec  .text-box:hover{
    background:#ff72be;
     transform: translateY(00px);
}
.bvoc-choice-sec  .text-box p{
    color:#212529 !important;
}
.bvoc-choice-sec  .text-box:hover p{
    color:#fff !important;
}
.bvoc-choice-sec  .text-box:hover h5{
    color:#fff !important;
}
.bvoc-choice-sec  .text-box:hover h4{
    color:#fff !important;
}
.curriculum_item {
    border: 2px solid #ff72be;
    border-radius: 30px;
    padding: 30px 30px;
    background: #fff;
    position: relative;
    width: 32%;
    margin-right: 15px;
}

.curriculum_item h3 {
    color:#212529;
}

.curriculum_item span {
    background:#ff72be;
    color:#fff;
    padding: 10px 30px;
    border-radius:30px;
    position: absolute;
    top: -30px;
}

.curriculum_item ul.skill-list {
    padding: 0;
}
.curriculum_item li.skill-item {
    list-style: none;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.curriculum_item li.skill-item::before {
        content: "\ea6c";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff72be; /* apna theme color */
    font-weight: bold;
        font-family: 'remixicon' !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.curriculum_item:hover {
    background:#ff72be;
    color:#fff;
}
.curriculum_item:hover span{
     background:#fff;
    color:#ff72be;
}
.curriculum_item:hover h3{
    color:#fff;
}
.curriculum_item:hover li.skill-item::before{
    color: #fff; /* apna theme color */
}
.admission-process_sec .stage {
    background: #d50987;
    color: #fff;
    padding: 15px 15px 3px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.admission-process_sec .enroll_box {
    background: linear-gradient(135deg, #111827, #1f2937, #952369);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.admission-process_sec .enroll_box ul {
    padding: 0;
}
.admission-process_sec .enroll_box ul li{
    margin-bottom:15px;
}
.admission-process_sec .process-card {
    position: relative;
    padding: 35px 25px 18px 25px;
    border-radius: 8px;
    color: #fff;
    transition: 0.4s ease;
    height: 100%;
    background: linear-gradient(135deg, #111827, #1f2937, #952369);
    overflow: hidden;
}

/* Arrow Shape */
.admission-process_sec .process-card::after {
    content: "";
    position: absolute;
    right: -30px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 85px solid transparent;
    border-bottom: 85px solid transparent;
    border-left: 30px solid #952369;
}

.admission-process_sec .col-lg-3:last-child .process-card::after {
    display: none;
}

/* Step Number */
.admission-process_sec .step-number {
    font-size: 50px;
    font-weight: 700;
    color: #6a6a6a;
    display: block;
    margin-bottom: 10px;
}

/* Text */
.admission-process_sec .process-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.admission-process_sec .process-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* Hover Effect */
.admission-process_sec .process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.enroll_cta a.theme_button.btn-glow {
    width: 300px;
    margin: 0 auto;
}
.enroll_cta ul.custom-list {
    display: inline-flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
}
.enroll_cta{
    margin-bottom:60px; 
}
.enroll_cta li {
    background: #ffffff;
    padding: 5px 20px;
    border-radius: 5px;
    color: #333;
    font-size: 14px;
}
section.enroll_cta {
    padding-top: 30px;
    margin-top: -40px;
}
/*--------------------------------- b voc degree---------------------------  */




/*-------------------------- new contact section --------------------- */
section.new_contact_sec {
    margin: 90px  0;
}
.new_contact_sec .row {
    background: #000;
    border-radius: 30px;
}
.new_contact_sec .left {
    padding: 40px;
    display: flex;
    align-items: center;
}
.new_contact_sec img {
    border-radius: 22px;
}
.new_contact_sec .col-md-6.right {
    padding: 0;
}
.new_contact_sec input:focus{
    background:#ffffff00;
    color:#fff;
    border:1px solid #c40481;

}
.new_contact_sec input{
    background:#ffffff00;
    padding:17px 15px;
    color:#fff;
    border:1px solid #c40481;
}
.new_contact_sec input::placeholder{
    color:#fff;
}

.new_contact_sec select.form-select {
    padding:17px 15px;
    background:#ffffff00;
    border:1px solid #c40481;
}
.new_contact_sec select.form-select::placeholder{
    color:#fff;
}
.new_contact_sec textarea{
    margin-top:15px;
    background:#ffffff00;
    padding:17px 15px;
    color:#fff;
    border:1px solid #c40481;
}
.new_contact_sec textarea::placeholder{
    color:#fff;
}
.new_contact_sec select.form-select{
color:#fff;
}

.new_contact_sec select.form-select option{
color:#000;
}

/*-------------------------- new contact section --------------------- */


/*--------------------------- new b voc degree page--------------------  */

.b-voc-wellness .row-gradient {
    background: linear-gradient(135deg, #111827, #1f2937, #020617);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: #fff;
} 
.b-voc-wellness .right {
    padding-left: 55px;
}
 
.b-voc-wellness .feature-box {
    display: flex;
    gap: 20px;
    border: 2px solid #e10384;
    padding: 10px;
    background:#fff;
    border-radius:5px;
    color:#212529;
}
.b-voc-wellness .feature-box i{
    font-size: 52px;
    color: #e10384;
    display: flex;
    align-items: center;
}
.b-voc-wellness .feature-box p{
    margin:0;
}
.b-voc-wellness .left {
    padding: 0;
    display: flex;
    align-items: center;
    /* position: relative; */
    background: linear-gradient(to top, #151d2c 0%, #2c3547bd 50%, #3f4a6300 100%);
    border-radius: 20px 0px 0px 20px;
}
.b-voc-wellness .left img {
    height: 370px;
    width: 100%;
    /* position: absolute; */
    /* right: -60px; */
    object-fit: cover;
    z-index: 9;
    border-radius: 5px;
    box-shadow: 0 5px 19px rgba(255, 65, 158, 0.6);
}
 
.b-voc-wellness .left:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    /* background: #000000; */
    z-index: -1;
    /* opacity: 0.5; */
    border-radius:20px 0px 0px 20px;
}
/* .b-voc-wellness .left:before {
    position: absolute;
    content: "";
    background-image: linear-gradient(346deg, #1b2432 43%, #fff 83%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.9;
    border-radius:20px 0px 0px 20px;
    display: none;
} */


section.b-voc-wellness-list {
    margin-bottom: 90px;
    margin-top: 30px;
}
.b-voc-wellness-list .row.bg {
    padding: 30px;
    position: relative;
    border-radius: 20px 20px 20px 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.b-voc-wellness-list .row::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(223deg, #ff3b9a -6%, #ffffff 20%);
    opacity: 0.9;
    z-index: -1;
    border-radius: 20px 0px 0px 20px;
}
.b-voc-wellness-list .row::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:300px;
    height:300px;
    background: linear-gradient(399deg, #ff3b9a -6%, #ffffff 44%);
    opacity:0.9;
    z-index:-1;
    border-radius:0 0 0 20px;
}
.b-voc-wellness-list .col-md-3 {
  border:2px solid #ff3b9a;
  width: 100%;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
  border-radius: 5px;
  padding: 30px 15px 15px 15px;
  text-align: center;
  background:#fff;
}
.b-voc-wellness-list i {
  color:#ff3b9a;
  font-size:50px;
}



.career_opportunities_after_b-voc .list {
    padding: 0px 30px 30px 30px;
    position: relative;
    border-radius: 20px 20px 20px 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.career_opportunities_after_b-voc .item {
  border:2px solid #ff3b9a;
  width: 100%;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
  border-radius: 5px;
  padding: 30px 10px 15px 10px;
  text-align: center;
  background:#fff;
}
.career_opportunities_after_b-voc .item img{
    width:60px;
    padding-bottom:15px;
}
.career_opportunities_after_b-voc .list::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 450px;
    height: 450px;
    background: linear-gradient(399deg, #ff3b9a -6%, #ffffff 47%);
    opacity: 0.9;
    z-index: -1;
    border-radius: 0 0 0 20px;
}
.placement_assistance p {
    color: #fff;
}
/* .placement_assistance .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
} */
 section.branches_cta.enroll_cta.b-voc-degree_cta {
    margin-top: 60px;
}
/*--------------------------- new b voc degree page--------------------  */

.alert-success {
    background: #ffff;
    border: 2px solid rgb(196, 73, 83);
    border-radius: 0px;
    margin-top: 5px;
}
.captcha-width {
    width: 78% !important;
}
.blog-item-big a {
    color: #fff;
}

.breadcrumb_area span {
    color: #fff;
}

.breadcrumb_area .col-lg-12 {
    text-align: center;
}
.course_list_page button.btn.btn-primary {
    background: #f906a0;
    border:1px solid #f906a0;
}

.course_list_page li.page-item.active span{
    background: #f906a0;
    border:1px solid #f906a0;
}
.course_list_page li.page-item a{
    color:#000;
}

.adminssion_process_second{
background:#1a1a1a;
color:#fff;
}
.adminssion_process_second .process-border {
    border-left: 1px solid #5b5b5b;
    padding-left: 20px;
    border-radius: 5px;
}
.adminssion_process_second .admission_title{
font-size:40px;
font-weight:700;
margin-bottom:30px;
}

.adminssion_process_second .admission_title span{
color:#ff008c;
}

.adminssion_process_second .stage_box{
margin-bottom:25px;
}

.adminssion_process_second .stage_box h5{
color:#ff008c;
font-weight:600;
}

.adminssion_process_second .stage_box p{
color:#cfcfcf;
margin:0;
}

.adminssion_process_second .enroll_box{
background:#111;
border-radius:15px;
padding:40px;
border:1px solid #ff008c30;
}

.adminssion_process_second .enroll_box h3{
font-size:30px;
font-weight:700;
margin-bottom:25px;
}

.adminssion_process_second .enroll_box h3 span{
color:#ff008c;
}

.adminssion_process_second .enroll_box ul{
list-style:none;
padding:0;
margin-bottom:30px;
}

.adminssion_process_second .enroll_box ul li{
margin-bottom:15px;
color:#ddd;
position:relative;
padding-left:20px;
}

.adminssion_process_second .enroll_box ul li::before{
content:">";
color:#ff008c;
position:absolute;
left:0;
}

.adminssion_process_second .apply_btn{
display:inline-block;
background:#ff008c;
color:#fff;
padding:14px 35px;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}
.adminssion_process_second .apply_btn:hover{
background:#e1007c;
color:#fff;
}

.modal-dialog button.btn.btn-primary {
    background: #f906a0;
    border: 1px solid #f906a0;
}
.mobile_banner {
    display:none;
}
.blog-content ul {
    margin: 0;
    padding: 0;
}
.blog-item .ks-service-thumb img {
    min-height: 250px !important;
    height: 250px;
}


/*-------------------------------------- for tablet ---------------------------------- */

@media only screen and (min-width: 768px) and (max-width: 992px){
    .mobile_banner {
    display:none;
}

    .navbar-toggler {
        color: rgb(253 253 253);
        background-color: #ffffff;
        border: var(--bs-border-width) solid rgb(255 247 247);
    }
    .hero-slider .swiper-slide .slide-inner{
    background-position: center right !important;
   }
    .commercialCategory {
     grid-gap: 10px;
   }
   .commercialCategory li {
    padding: 10px;
   }
   .commercialCategory li:not(:last-child) {
    margin-right: 5px;
   }
   .ks-service-style-2 {
    gap: 15px;
   }
   .ks-service-item .ks-service-thumb img {
    min-height: 165px;
   }
   .ks-service-style-2 .ks-service-item {
    padding: 15px;
  }
   .ks-service-style-2 .ks-service-item .ks-service-more .ks-servicebtn {
    font-size: 8px !important;
    padding: 10px 10px;
  }
  .section_title {
    font-size: 36px;
   }
   .pe-5 {
    padding-right: 1rem!important;
  }
  .ps-5 {
    padding-left: 10px !important;
  }
  .footer .top p {
    font-size: 14px;
  }
  .footer .worktime ul li a {
    font-size: 14px;
  }
  .footerLists li a, .footerLists li span {
    font-size: 14px;
  }
  .page-img img {
    height: 365px;
   }
   h2 {
    font-size: 30px;
  }
  section.about_page_section.section_paddingY {
    padding-top: 60px;
    padding-left: 10px;
  }
  .about_page_section:after {
    display: none;
 }
 .certificate_benfit {
    background-position: left 100% center;
    }
    .certificate_benfit .col-md-6:nth-child(1) {
        width: 00%;
    }
    .certificate_benfit .col-md-6:nth-child(2) {
        width: 100%;
    }
    .blog_details_page.row-gradient-page {
    padding: 60px 10px 60px 10px;
   }
   .blog-item-big .blog-big-img {
    height: 350px;
  }
  .blog_details_page  .col-md-8 {
    padding: 0;
}
.course_list_page .filter-box {
    padding: 10px;
}
.course_list_page .filter-box h4 {
    font-size: 20px;
}
.course_list_page .filter-box label {
    font-size: 12px;
}
 .course_list_page .filter-box input[type="checkbox"] {
    height: 10px;
    width: 10px;
}   
.course_list_page .ks-service-style-2 {
    grid-template-columns: repeat(2, 1fr);
}
.course-details-page .course-slider img {
    height: 250px;
}
section.course-detail img {
    height: 250px;
}
.about_page_section .about_image_wrapper {
    max-width: 350px;
}
.vision-mission-img img {
    height: 250px;
}
.chairman_section .about_image_wrapper img {
    height: 300px;
}
.why_imageWrapper .big_image {
    height: 350px;
}
.small-image img {
    width: 70px;
    height: 40px;
}
.b-voc-wellness .left img {
    height: 190px;
}
.b-voc-wellness .right {
    padding-left: 20px;
}
.b-voc-wellness .right .col-md-6 {
    width: 100%;
}
.curriculum_item {
    padding: 20px 20px;
    width: 30%;
}
.curriculum_item h3 {
    font-size: 22px;
}
.curriculum_item h4 {
    font-size: 19px;
}
.adminssion_process_second .right {
    padding: 0;
    margin-top: 30px;
}

}
/*-------------------------------------- for tablet ---------------------------------- */




/*-------------------------------------- for mobile ---------------------------------- */

@media only screen and (min-width: 320px) and (max-width: 767px){
    .mobile_search_box {
    display: block;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    border: 2px solid #f906a0;
    margin-bottom: 30px;
    }
    .mobile_search_box h4 {
    color: #333;
}
.service_content_box {
    padding: 0px 0px 0px 0px;
}
    .desktop_search_box{
        display: none;
    }
   .navbar-toggler {
        color: rgb(253 253 253);
        background-color: #ffffff;
        border: var(--bs-border-width) solid rgb(255 247 247);
    }
    .top_navbar_nav li:nth-child(2),
    .top_navbar_nav li:nth-child(3) {
        display: none;
    }
    .top_navbar_nav li:not(:last-child) {
        margin-right: 20px;
    } 
    .theme_button {
        padding: 10px;
        font-size: 12px;
    }
    .about_section .row {
        display: flex;
        flex-direction: column-reverse;
    }
    .about_video video {
        height: 400px;
    }
    .about_video {
        padding-left: 0;
    }
    .commercialCategory {
    display: flex;              /* 👈 grid hatao */
    gap: 10px;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-bottom: 12px;       /* 👈 scrollbar niche */
    margin-bottom: 10px;
    scrollbar-gutter: stable;
}
.courseCatList {
    flex: 0 0 calc(38% - 10px);  /* 👈 2 full + 3rd half */
}
.commercialCategory::-webkit-scrollbar {
    height: 8px;
}
.commercialCategory::-webkit-scrollbar-thumb {
    background: #f906a0;
    border-radius: 10px;
}
.commercialCategory {
    scrollbar-color: #f906a0 transparent;
    scrollbar-width: thin;
}
    .commercialCategory li:not(:last-child) {
        margin-right: 5px;
    }
    .commercialCategory li {
        padding: 10px;
    }
    .ks-service-style-2 {
        grid-template-columns: repeat(1, 1fr);
    }
    .ks-service-style-2 .ks-service-item {
        padding: 15px;
    }
    .why_choose_section .row {
        display: flex;
        flex-direction: column-reverse;
    }
    .section_title {
        font-size: 26px;
    }
    .section_title.font_36 {
        font-size: 26px;
    }
    .about-tabs .about-tab:not(:last-child) {
        margin-right: 5px;
    }
    .about-tabs .about-tab {
        padding: 5px 5px;
        font-size: 10px;
    }
    .celebration_section .row{
        display: flex;
        flex-direction: column-reverse;
    }
    .why_imageWrapper .big_image {
        height: 350px;
    }
    .training_carousel .swiper-slide img {
    height: 350px;
   }
   .celebration_section .wb_image {
    height: 350px;
   }
   section.testimonial_section_new {
    padding: 60px  10px 0px 10px;
  }
  section.new_contact_sec {
    padding: 0px  10px 0px 10px;
 }
 .new_contact_sec .left {
    padding: 30px;
 }
 .blog_section {
    padding: 60px 10px 60px 10px;
 }
 section.testimonial_section_new {
    padding: 60px  10px 0px 10px;
}
.footer .col-md-2.mb-45.ps-5 {
    padding: 10px !important;
    width: 50%;
}

    .footer .col-md-3.mb-45.ps-5 {
    padding: 10px !important;
    width: 50%;
}
    .footer .bottom p {
        margin-top: 15px;
    }
    .footer .text-end {
        text-align: left !important;
    }
    .footer .bottom ul {
        margin-top: 15px;
    }
    .breadcrumb_area {
    padding: 50px 0;
  }
  .breadcrumb_area h1 {
    font-size: 30px;
   }
   section.franchise {
    padding: 60px 10px;
  }
  .page-img img {
    height: 350px;
  }
   .row-gradient {
    padding: 15px;
  }
  section.franchise {
    padding: 60px 10px 0px 10px;
  }
  .captcha-width {
    width: 60% !important;
  }
  h2 {
    font-size: 26px;
  }
  .refund-policy {
    padding: 60px 10px 0 10px;
  }
  .about_page_section:after {
    display: none;
  }
  .about_page_section .col-md-6.pe-5 {
    padding-right: 10px !important;
    }
    section.about_page_section.section_paddingY {
        padding-top: 60px;
        padding-left: 10px;
    }
    .about_page_section .row {
        display: flex;
        flex-direction: column-reverse;
    }
    .about_page_section img{
        height:250px !important;
    }

    .about_page_section .about_big_img.franchise {
        margin-bottom:15px;
    }
    .certificate_sec .ks-service-area.ks-service-style-2 {
    margin-top: 30px;
    }

    .certificate_sec .ks-service-area.ks-service-style-2 .ks-service-item.text-center {
        margin-top:20px
    }
    .certificate_sec {
    padding: 60px 10px;
  }
  .certificate_statement_sec {
    margin-top: 60px;
  }
  .certificate_statement_sec .row {
    display: flex;
    flex-direction: column-reverse;
    }
    .certificate_statement_sec img{
        height:250px;
        object-fit:contain;
    }
    section.new_contact_sec img {
    border-radius: 10px 10px 30px 30px;
    }
    /* .our_placementStudent .row {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    } */
    .franchise_page .row {
    display: flex;
    flex-direction: column-reverse;
    }
    .franchise_page_bottom {
    padding: 60px 10px 60px 10px !important;
   }
   .franchise_page_bottom .left-box {
    padding:0;
    margin-bottom:15px;
    }

    .franchise_page_bottom .right-box {
        padding:0;
        margin-bottom:15px;
    }
    .fee_page{
    margin-bottom:60px;
    }
    .row.search-row h2 {
    font-size: 30px;
  }
  .row.search-row input {
    width: 90%;
 }
 .branch_info h3 {
    font-size: 26px;
}
.branches_page h3 {
    font-size: 26px;
}
     .blog_details_page.row-gradient-page {
    padding: 60px 10px 60px 10px;
   }
   .blog-item-big .blog-big-img {
    height: 260px;
 }
 .blog-big-content h3 {
    font-size: 16px;
}
.blog-items .ks-service-style-2 {
    grid-template-columns: repeat(1, 1fr);
}
.blog-item-big {
    position: static; /* 👈 unset ki jagah safe use */
}

.blog-item-big .blog-big-content {
    bottom: auto;
    left: auto;
    right: auto;
    position: static;
}

.blog_details_page .blog-items {
    margin-top: 20px !important;
}
.blog_details_page  .blog-big-content {
    position: static !important;
    margin-top: 20px;
}
.blog-item-big .blog-big-overlay {
    background: none;
}
.blog_details_page .blog-content {
    padding: 10px;
}
.blog_details_page .blog-title {
    font-size: 26px;
    margin: 20px 0 20px 0;
    line-height: 30px;
}
.blog-content ul {
    margin: 0;
    padding: 0;
}
div#blog-container {
    padding: 0px 0px 0px 10px;
}
.contact_enquiry .col-md-4 {
    margin-bottom: 15px;
}
.course_list_page {
    padding: 60px 10px;
}
.course_list_page:after {
display: none ;
}
.our_courses:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    background: url(../img/shape.png);
    z-index: -1;
    opacity: 0.65;
    pointer-events: none;
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
}
.course_list_page .content_box h2 {
    font-size: 26px;
}
.branches_breadcrumb_area .hero-title {
    font-size: 26px;
}
.branches_breadcrumb_area .feature-box {
    padding: 5px;
    font-size: 11px;
    gap: 5px;
}
.course-details-page {
    padding: 60px 10px;
}

.course-details-page .course-slider img {
    height:250px;
}
.course-detail .row{
    display: flex;
    flex-direction: column-reverse;
}
section.course-detail img{
    height:250px;
    margin-bottom:15px;
}
section.course-detail .col-md-7.pe-5 {
    padding-right:10px !Important;
}
.ctm_accrodion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
}
.about_page_section .why_imageWrapper .big_image {
    height: 250px;
}
.chairman_section .about_image_wrapper img {
    height: 350px;
}
.ceo .row {
    display: flex;
    flex-direction: column-reverse;
}
.small-image {
    display: none;
}
.highlight_big {
    height: 225px;
}
.b-voc-wellness{
    padding:60px 10px;
}
.b-voc-wellness .row-gradient {
    padding: 20px;
}
.b-voc-wellness .left img {
    height: 250px;
}
.b-voc-wellness .right {
    padding-left: 0;
    padding-top: 20px;
}

.curriculum_item {
    width: 100%;
    margin-bottom: 50px;
}

section.our_courses.section_paddingY.design-line {
    padding: 60px 10px;
}

section.branches_cta.enroll_cta.b-voc-degree_cta {
    padding: 30px 10px;
}

section.branches_cta.enroll_cta a.theme_button.btn-glow {
    margin-bottom: 15px !important;
}
.placement_assistance .row {
    display: flex;
    flex-direction: column-reverse;
}
.b-voc-wellness-list .row.bg {
    grid-template-columns: repeat(1, 1fr);
}
.desktop_banner{
         display:none;
    }
    .mobile_banner {
    display:block !important;
}
.hero-slider .slide-inner {
    background-position: top center;
    align-items: end;
    text-align: left;
    padding-bottom: 30px;
}
.hero-style {
    height: 480px;
}
.hero-style .slide-title h2 {
    margin: 0 0 20px;
    line-height:45px
}
section.branches_cta {
    margin-top: 50px;
    padding: 30px 10px;
}
.footer_social {
    justify-content: left;
}
.about-gradient .about-img img {
    height: 350px;
}
.blog-item .ks-service-thumb img {
    min-height: 220px !important;
    height: 220px;
}
}
/*-------------------------------------- for mobile ---------------------------------- */

section.contact_page_section {
    z-index: 0;
}
.dropDown_list {
    display: none;
    padding-left: 15px;
}

.dropDown_list.active {
    display: block;
}

.nav_itemDropdown > .nav_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Arrow */
.nav_itemDropdown > .nav_link::after {
    content: "\f4b1";
    font-size: 18px;
    transition: 0.3s;
    font-family: 'remixicon' !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--theme_color2);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.nav_itemDropdown > .nav_link {
    width: 100%;
    display: block;
    position: relative;
}

.nav_itemDropdown.active > .nav_link::after {
    content: "\f1af";
}
#mobileMenu {
    max-width: 90%;
    background: #1a1a1a;
}

#mobileMenu .offcanvas-body {
    padding: 0;
}

#mobileMenu .offcanvas-body ul {
    padding: 0;
    margin: 0;
}

#mobileMenu .offcanvas-body>ul>li {
    padding: 10px 20px;
}
.nav_item .nav_link{
    color:#fff;
}
#mobileMenu .offcanvas-body>ul>li:not(:last-child) {
    border-bottom: 1px solid #ff68b7;
}
#mobileMenu .offcanvas-header .btn-close {
    color: #fff;
    filter: invert(1);
    border: 1px solid #000;
    opacity: 1;
}

#mobileMenu .offcanvas-body>ul>li .dropDown_list {
    margin-top: 14px;
    background: #1a1a1a;
    border-top: 3px solid #f906a0;
    border-radius: 8px;
}

#mobileMenu .offcanvas-body>ul>li.nav_itemDropdown {
    padding: 14px 0px;
}

#mobileMenu .offcanvas-body>ul>li a {
    width: 100%;
    display: block;
    position: relative;
    color: #fff;
}

.dropDown_list li {
    padding: 14px 0;
}

li.nav_item.nav_itemDropdown a {
    padding: 0 20px;
}

.dropDown_list li:not(:last-child) {
    border-bottom: 1px solid #95647d;
}

#mobileMenu .offcanvas-body>ul>li .dropDown_list .dropDown_list {
    background: #1a1a1a;
}

.dropDown_list>.nav_item>.nav_link {
    color: #fff;
}
#mobileMenu .offcanvas-header {
    background: #000000;
    border-bottom: 1px solid #894066;
    margin-bottom: 20px;
}

.pagination .page-item.active span.page-link {
    background: #f351b8 !important;
    border: 1px solid #f351b8;
}

label.banner-captch-label {
    margin-top: 10px;
}
label.contact-captch-label {
    margin-top: 15px;
    color: #fff;
}