@charset "utf-8";
/* CSS Document */
/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: #424241;
  background-color: #f4f3ee;
  font-family: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}





a {
  color: #d9232d;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, #d9232d, transparent 25%);
  text-decoration: none;
}


h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
    position: relative;
	font-family: "Raleway",  sans-serif;
}

h1 {
    font-size: 48px;
	font-weight: 700;
     line-height: 60px;
}


h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
}



img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: #444444;
  background-color: #ffffff;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #ffffff;
  background: #d9232d;
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #ffffff;
  background: color-mix(in srgb, #d9232d, transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
.logo img{
		width: 200px;
	}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
	
	

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #556270;
    padding: 18px 10px;
    font-size: 14px;
    font-family: "Raleway",  sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #d9232d;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #ffffff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #556270;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #d9232d;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #556270;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #ffffff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #556270;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, #d9232d, transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #d9232d;
    color: #ffffff;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #d9232d;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #d9232d;
    color: #ffffff;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #ffffff;
    border: 1px solid color-mix(in srgb, #444444, transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #012177;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #FFFFFF;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #012177, transparent 20%);
  color: #FFFFFF;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}


.hero p {
    animation: fadeInDown 1s both 0.2s;
	color: #FFFFFF;
}

.hero .carousel {
  width: 100%;
  min-height: calc(100vh - 90px);
  padding: 0;
  margin: 0;
  background-color: #ffffff;
  position: relative;
}

@media (max-width: 1200px) {
  .hero .carousel {
    min-height: calc(100vh - 66px);
  }
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}


.hero .carousel-item:before {
    content: "";
    background: color-mix(in srgb, #3b4654, transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started {
  color: #ffffff;
  background: #d9232d;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, #d9232d, transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


.about-section-seven {
    overflow: hidden;
    padding-bottom: 172px;
}
.pt-120 {
    padding-top: 120px !important;
}

.about-section-seven .rectangle-shape {
    position: absolute;
    top: 0;
    right: 0;
}

@-webkit-keyframes arryUpDown {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@keyframes arryUpDown {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
.animation__arryUpDown {
  -webkit-animation: arryUpDown 2s ease infinite alternate;
          animation: arryUpDown 2s ease infinite alternate;
}

.about-section-seven .image-column .inner-column .image2 img {
    width: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}




.about-section-seven .image-column .inner-column {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin-right: -40px;
}

.overlay-anim:hover:before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}
.overlay-anim:before {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.about-section-seven .image-column .inner-column .image1:hover img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.about-section-seven .image-column .inner-column .image1 img {
    width: 100%;
    border-radius: 15px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}


.sec-title .sub-title {
    min-width: 156px;
    max-width: 100%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 25px;
    background-color: #012177;
    border-radius: 30px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    text-align: center;
}
.title {
	color: #051b05;
}

.about-section-seven .content-column .inner-column .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    max-width: 450px;
}

.btn-two:hover {
    color: #FFFFFF;
}

.btn-two {
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    display: inline-block;
    font-family: "DM Sans", sans-serif;
    background-color: #012177;
    color: #FFFFFF;
    text-align: center;
    min-width: 200px;
    max-width: 100%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-transform: capitalize;
}

.btn-two:hover::after {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.btn-two::after {
    position: absolute;
    left: -25%;
    top: 100%;
    width: 150%;
    padding-top: 150%;
    content: "";
    z-index: -1;
    background-color: #FFFFFF;
    opacity: 0.1;
    border-radius: 50%;
    -webkit-transition: ease-in 500ms;
    transition: ease-in 500ms;
}

.about-section-seven .content-column .inner-column {
    padding-left: 70px;
    margin-left: -70px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.case-section.white-bg {
    margin: 0px 30px;
    border-radius: 30px;
    background-color: #FFFFFF;
}

.case-section {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.case-section.white-bg .outer-box {
    padding: 0 20px;
}

.sec-title.center .sub-title {
    margin: 0 auto;
    margin-bottom: 10px;
}

.sec-title.center {
    text-align: center;
}

.single-services-content {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.single-services-content img {
    max-height: 80px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: .3s;
}

.profile:hover {
    transform: translateY(-8px);
    box-shadow: color-mix(in srgb, rgb(57, 46, 141) 12%, transparent) 0px 25px 60px;
    border-color: color-mix(in srgb, rgb(57, 46, 141) 20%, transparent);
}
.profile {
    background: rgb(255, 255, 255);
    border-radius: 24px;
    padding: 1rem;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-width: 1px;
    border-style: solid;
    border-color: color-mix(in srgb, rgb(57, 46, 141) 5%, transparent);
    border-image: initial;
}

.pb-120 {
    padding-bottom: 120px !important;
}


.students-life-block .campus-activities .activity-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px color-mix(in srgb, #394757, transparent 92%);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.students-life-block .campus-activities .activity-card .card-media {
    height: 190px;
    overflow: hidden;
}

.students-life-block .campus-activities .activity-card .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.students-life-block .campus-activities .activity-card .card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.students-life-block .campus-activities .activity-card .card-body h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #012177;
}

.students-life-block .campus-activities .activity-card .card-body p {
    font-size: 0.88rem;
    color: color-mix(in srgb, #394757, transparent 30%);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.students-life-block .campus-activities .activity-card .card-body .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #012177;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}
.students-life-block .campus-activities .activity-card .card-body .card-link i {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

@media (max-width: 992px) {
  .students-life-block .campus-activities .activity-card .card-media {
    height: 170px;
  }
}

@media (max-width: 576px) {
  .students-life-block .campus-activities .activity-card .card-media {
    height: 200px;
  }
}

.students-life-block .campus-activities .activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.students-life-block .campus-activities .activity-card:hover .card-media img {
  transform: scale(1.08);
}

.students-life-block .campus-activities .activity-card:hover .card-body .card-link {
  color: color-mix(in srgb, var(--accent-color), #000 15%);
  gap: 0.6rem;
}


.footer {
    color: #FFFFFF;
    background-color: #3b4654;
    font-size: 14px;
    position: relative;
	margin-top: 80px;
}

.footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid  color-mix(in srgb, #FFFFFF, transparent 90%);
}

.footer .social-links a:hover {
    color: #012177;
    border-color: #012177;
}
.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid
 color-mix(in srgb, #ffffff, transparent 50%);
    font-size: 16px;
    color: 
 color-mix(in srgb, #ffffff, transparent 30%);
    margin-right: 10px;
    transition: 0.3s;
}
.footer .footer-links {
    margin-bottom: 30px;
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}
.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, #ffffff, transparent 30%);
    display: inline-block;
    line-height: 1;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid  color-mix(in srgb, #ffffff, transparent 90%);
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    cursor: pointer;
}



.breadcrumbs {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-color: rgba(17, 24, 30, 0.01);
    background-position: left center;
    background-attachment: scroll;
	position: relative;
	z-index: 1;
}




.breadcrumbs::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #26215f;
    opacity: 0.85;
    z-index: -1;
}



.breadcrumbs .breadcrumbs-inner {
    padding: 80px 0;
}

.breadcrumbs .breadcrumbs-inner .page-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 5px;
    color: #FFFFFF;
}



.breadcrumbs .breadcrumbs-inner ul {
    padding: 0;
}

.breadcrumbs .breadcrumbs-inner ul li {
    color: #FFFFFF;
    display: inline-block;
}

.breadcrumbs .breadcrumbs-inner ul li a {
    position: relative;
    padding-right: 22px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #FFFFFF;
}

.breadcrumbs .breadcrumbs-inner ul li a:before {
    background-color: #FFFFFF;
    content: "";
    height: 15px;
    width: 1px;
    position: absolute;
    right: 9px;
    top: 2px;
    transform: rotate(26deg);
}


.service-catagery-list h3 {
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    background-color: #012177;
    color: #fff;
    padding: 25px 40px;
}

.courses-2 .course-filters {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
	    position: sticky;
    top: 120px;
}



.courses-2 .course-filters .filter-title {
    color: #012177;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid color-mix(in srgb, #136ad5, transparent 80%);
}

.courses-2 .course-filters ul {
    list-style: none;
    margin: 0;
}

.courses-2 .course-filters ul li a:hover {
    color: #136ad5;
}

.courses-2 .course-filters ul li a{
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #394450 !important;
    transition: color 0.3s ease;
}

.courses-2 .course-filters ul li {
    position: relative;
    background-color: #ffffff;
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    text-transform: capitalize;
    
}


.courses-2 .courses-grid .course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.courses-2 .courses-grid .course-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.courses-2 .courses-grid .course-image {
    position: relative;
    overflow: hidden;
}

.courses-2 .courses-grid .course-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.courses-2 .courses-grid .course-image:hover img {
    transform: scale(1.05);
}

.courses-2 .courses-grid .course-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #012177;
    line-height: 1.4;

}


.courses-2 .courses-grid .course-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.courses-2 .courses-grid .course-content .btn-course:hover {
    background-color: color-mix(in srgb, #012177, black 15%);
    color: #FFFFFF;
    transform: translateY(-2px);
}
.courses-2 .courses-grid .course-content .btn-course {
    display: inline-block;
    background-color: #012177;
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
	
}


.courses-2 .specialty-features {
    display: flex;
    flex-direction: column;
    /* gap: 12px; */
}


.specialty-features .h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.4;
	  gap: 10px;
	display: flex;
    align-items: center;
}



.specialty-features .h3::before {
    content: "";
    width: 4px;
    height: 24px;
    background-color: #012177;
    border-radius: 2px;
    display: inline-block;
    flex-shrink: 0;
}


.specialty-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #595960;
}

.specialty-features span i {
    font-size: 18px;
    color: #012177;
}


.specialty-features .highlight-box:hover {
    border-color: #012177;
    box-shadow: 0 4px 20px color-mix(in srgb, #012177, transparent 85%);
    transform: translateY(-2px);
}
.specialty-features .highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, #394757, transparent 88%);
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    height: 100%;
}

.specialty-features .highlight-box i {
    font-size: 1.4rem;
    color: #012177;
    background-color: color-mix(in srgb, #012177, transparent 90%);
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.courses-2 .cta-section .cta-content {
    position: relative;
    z-index: 2;
}

.courses-2 .cta-section .cta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: color-mix(in srgb, #ffffff, 15%, transparent);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.cta-section .cta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: color-mix(in srgb, #FFFFFF 15%, transparent);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 24px;
}


.cta-section {
    margin-top: 80px;
    padding: 64px;
    background: linear-gradient(135deg, #0ea5e9, color-mix(in srgb, #0ea5e9 70%, #6366f1));
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section .cta-label i {
    font-size: 16px;
}

.cta-section h3 {
    font-size: 46px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-section .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #FFFFFF;
    color: #0ea5e9;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.cta-section .cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-section .cta-decoration .floating-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}



.cta-section .cta-decoration .floating-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -60px;
}

.cta-section .cta-decoration .floating-shape.shape-3 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}
.cta-section .cta-decoration .floating-shape {
    position: absolute;
    border-radius: 50%;
    background: color-mix(in srgb, #fff 10%, transparent);
}

@media (max-width: 768px) {
    .cta-section h3 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
.cta-section .btn-cta-primary {
        width: 100%;
        justify-content: center;
    }
}

.contact-page-info {
    position: relative;
    display: block;
    padding: 120px 0px 90px;
    z-index: 1;
}

.contact-page-info__single
 {
    position: relative;
    display: block;
    overflow: hidden;
    background: #ffffff;
    border: 3px solid rgba(0, 74, 148, 0.15);
    padding: 0px 30px 37px;
    margin-bottom: 30px;
}

.contact-page-info__single-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 80px;
    background: rgb(8 30 136 / 10%);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin: 0 auto 23px;
    z-index: 1;
}

.contact-page-info__single-icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: #26215f;
    transition-delay: 0.5s;
    transition: .5s;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(-70deg) scale(0.0);
    -ms-transform: perspective(400px) rotateX(-70deg) scale(0.0);
    transform: perspective(400px) rotateX(-70deg) scale(0.0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    z-index: -1;
}

.contact-page-info__single-icon span {
    position: relative;
    display: block;
    line-height: 0px;
}

.contact-page-info__single-icon span::before {
    position: relative;
    display: inline-block;
    color: #26215f;
    font-size: 40px;
    line-height: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-page-info__single-text {
    position: relative;
    display:block;
    
}

.contact-page-info__single-text h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.contact-page-info__single-text p {
    margin: 0;
}


.contact-page-info__single:hover .contact-page-info__single-icon:before {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
    transform: perspective(400px) rotateX(0deg) scale(1.0);
}


.contact-page-info__single:hover .contact-page-info__single-icon span::before {
    color: #fff;
}
.contact-page {
    position: relative;
    display: block;
    z-index: 1;
	background: #FFFFFF;
}
.contact-page h2{
	color:#012177;
}

.contact-page__google-map {
    position: relative;
    display: block;
    margin-right: 40px;
}

.contact-page__google-map-one {
    position: relative;
    display: block;
    border: none;
    height: 534px;
    width: 100%;
    border-radius: 10px;

}


.form-group {
  margin-bottom: 20px;
}



.form-group .form-control, .form-group .form-select {
    padding: 14px 20px 14px 20px;
    border-radius: 0px !important;
    background-color: #ffffff;
    color: #606060;
    border-color: rgba(0, 0, 0, 0.08);
}

.form-group .form-control::placeholder{
  color: #606060;
}

.form-group .form-control:focus,
.form-group .form-select:focus{
  border-color: #26215f;
  box-shadow: 0 0 0 .25rem rgba(249, 92, 20, .25)
}

.form-group .form-icon{
  position: relative;
}

.form-group .form-icon i {
    position: absolute;
    top: 19px;
    left: 20px;
    color: #26215f;
    z-index: 1;
}

.form-group .form-icon i{
  position: absolute;
  top: 19px;
  left: 20px;
  color: #26215f;
  z-index: 1;
}

.form-group .form-icon .form-control,
.form-group .form-icon .form-select{
  padding-left: 50px;
}

.form-check{
  margin-bottom: 20px;
}

.form-check .form-check-input{
  border-radius: 6px;
  margin-top: 6.5px;
  border-color: rgba(0, 0, 0, 0.08);
}





.form-check .form-check-input:focus{
  border-color: #26215f;
  box-shadow: 0 0 0 .25rem rgba(0, 132, 139, .25)
}

.form-group .form-control:focus,
.form-group .form-select:focus{
  border-color: #26215f;
  box-shadow: 0 0 0 .25rem rgba(0, 132, 139, .25)
}

.contact-page-info__single-text h2{
	color: #012177;
}

.contact-page-info__single-text a{
	color: #000000;
}