@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');
  @font-face {
    font-family: "Eina03-Regular";
    src: url("../fonts-2/2d57f676e3d6955778fb8acac0176b9a.eot?#iefix") format("embedded-opentype"),
         url("../fonts-2/Eina-Font/Eina03-Regular.ttf") format("truetype"),
         url("../fonts-2/Eina-Font/Eina03-Bold.ttf") format("truetype"),
         url("../fonts-2/Eina-Font/Eina03-SemiBold.ttf") format("truetype"),
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Eina03-Regular' !important;
    font-weight:400!important;
    overflow-x: hidden;
    padding-top: 70px;
    background-image: url('../images/air-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}




  h1,h2,h3,h4,h5,h6 {
    
    line-height: inherit;
  }
h1{
 font-family: 'Eina03-Regular' !important;
    font-weight: bold; 
}
  h1 {
    color: #252525;
    font-size: 3em;
    line-height: normal;
    font-weight:600;
  }

  h2 {
    color: #7e1749;
    font-size: 2em;
    padding-bottom: 10px;
    font-weight:600!important;
  }

  h3 {
    font-size: 1.5em;
    margin-bottom: 0;
    font-weight:600!important;
  }

  h3,
  h3 a {
    color: #454545;
  }
h4{
    font-weight:600!important;  
}



  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  html{
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: #252525;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none !important;
  }

  a,
  input, button,
  .form-control {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  a:hover, a:active, a:focus {
    color: #7e1749;
    outline: none;
  }

  ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #000000;
  }

  .section-title {
    padding-bottom: 40px;
    text-align:center;
   
  }

  .section-title h2 {
    margin: 0;
    text-align:center;
    font-size:45px;
    color:#7e1749;
    font-weight:600!important;
  }

  .section-title small {
    display: block;
  }

  .overlay {
    background: rgba(20,20,20,0.5);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
input::placeholder,
textarea::placeholder{
    color: white;
}

/* Fade-in effect */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide-in effect for the form */
.slide-in {
    opacity: 0;
    transform: translateX(100%);
    animation: slideIn 0.6s forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
select.form-control {
    background-color: #7e1749!important; /* Background color */
    color: white!important; /* Text color */
}

/* Optional: Changing the color of the placeholder (first option) */
select.form-control option:first-child {
    color: #ccc!important; /* Placeholder color */
}

.form-control {
    background-color: #fff; /* Dark background color */
    color: #000; /* Text color for input fields */
}

/* Optional: Change the border color for better visibility */
.form-control {
    border: 1px solid #7e1749; /* Set your desired border color */
}
/* Placeholder color for input fields */
.form-control::placeholder {
    color: white!important; /* Set placeholder text color to white */
    opacity: 1; /* Ensure full opacity for the placeholder */
}
/* Change option hover background color */
select.form-control option:hover {
    background-color:#7e1749!important; /* Theme color on hover or focus */
    color: white!important; /* Text color on hover */
}

/* Styling the input fields */
.form-control {
    background-color: #7e1749; /* Set input background color */
    color: white!important; /* Set input text color */
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
}



/* Change the border color on focus */
.form-control:focus {
    border-color: #A3125D; /* Border color when focused */
    outline: none; /* Remove default outline */
}
select.form-control option:focus{
    background-color: white!important; /* Option background color */
    color: #7e1749!important; /* Option text color */
}
.form-control {
    background-color: #fff; /* Optional: Change the background color for better contrast */
    color: #fff; /* Ensure input text is white for readability */
}
.entry-form {
    background: #7e1749;
   border-radius: 5px; 
    text-align: center;
    padding: 2em;
    width: 100%;
    height: auto;
    margin-top: 29px;
 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); 
}

  .entry-form h2 {
    color: #ffffff;
    margin: 0;
  }

  .entry-form .form-control {
       background: transparent;
    border: 0;
    border: 1px solid;
    border-radius: 0;
    box-shadow: none;
    height: 45px;
    margin: 10px 0;

  }

  .entry-form .submit-btn {
    background: transparent;
    border-radius: 5px;
    border: 0;
    color: #fff;
    width: 100%;
    height: 50px;
    margin: 30px auto;
    margin-bottom: 10px;
    border:solid 1px #fff;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
  }

  .entry-form .submit-btn:hover {
    background: #fff;
    color: #000!important;
  }
  
  

  section {
    position: relative;
    padding: 50px 0;
  }

  #team,
  #testimonial {
    background: #f9f9f9;
  }

  #team, 
  #testimonial {
    text-align: center;
  }
  
  #google-map iframe {
    border: 0;
    width: 100%;
    height: 390px;
  }
.header_logo img{
    width:150px;
}


  /*---------------------------------------
     BUTTONS               
  -----------------------------------------*/

  .section-btn {
    background: transparent;
    border-radius: 5px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: inherit;
    font-weight: normal;
    padding: 15px 30px;
    transition: 0.5s;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
  }

  .section-btn:hover {
    background: #ffffff;
    border-color: transparent;
  }
  .main-btn {
    background: #7e1749;
    border-radius: 5px;
    /*border: 1px solid #7e1749;*/
    color: #fff!important;
    font-size: inherit;
    font-weight: normal;
       line-height: 10px!important;
    padding: 15px 30px!important;
    transition: 0.5s;
        transition: transform 0.3s ease; /* Adjust the duration and timing function as needed */
         box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 

  }
.main-btn:hover {
    transform: scale(1.1); /* Scales the button to 110% of its size */

}
.apply-btn{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    margin-top: 15px;
    
}
.button-read{
   display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;  
}

.enroll-btn {
    background: #7e1749; /* Button background color */
    color: #fff; /* Text color */
    border-radius: 5px; /* Rounded corners */
    padding: 10px 20px; /* Button padding */
    text-decoration: none; /* Remove underline from links */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Make text bold */
    display: inline-block; /* Keep the button inline */
    transition: background 0.3s ease, transform 0.3s ease; /* Smooth transition */
    text-align: center; /* Center the text */
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
}

.enroll-btn:hover {
    background: transparent; /* Change background on hover */
    color: #7e1749; /* Change text color on hover */
    transform: scale(1.05); /* Slight scaling effect */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
    border:1px solid #7e1749;
}
     .read-btn {
            position: relative;
            overflow: hidden;
            padding: 15px 35px;
            margin-top: 50px;
                line-height: 10px !important;
            border: 2px solid #7e1749;
            color: #7e1749;
            background-color: transparent;
            font-size: 18px;
            cursor: pointer;
            transition: color 0.3s ease;
            border-radius:5px;
             box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
        }

        .read-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: #7e1749;
            color:#fff;
            transition: left 0.5s ease;
            z-index: 0;
        }

        .read-btn:hover::before {
            left: 0;
        }

        .read-btn:hover {
            color:#fff;
               /*background-color: #7e1749;*/
        }

        .read-btn span {
            position: relative;
            z-index: 1;
        }
  /*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
  }

  .spinner {
    border: 1px solid transparent;
    border-radius: 3px;
    position: relative;
  }

  .spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 1px solid #575757;
    border-top-color: #ffffff;
    animation: spinner .9s linear infinite;
  }

  @-webkit-@keyframes spinner {
    to {transform: rotate(360deg);}
  }

  @keyframes spinner {
    to {transform: rotate(360deg);}
  }



  /*---------------------------------------
      MENU              
  -----------------------------------------*/
.navbar-top-info {
    background-color: #7e1749; /* Same color as your top border */
    color: #ffffff;
    text-align: center;
    padding: 6px 0;
    font-size: 15px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000; 
}

.phone-number {
    display: inline-block;
    margin: 0 15px;
}

.phone-number i {
    margin-right: 5px;
}

.custom-navbar {
    margin-top: 30px; /* Adjust to ensure navbar sits below the top info bar */
    border-top: none; /* Remove top border if not needed anymore */
}




.custom-navbar {
    background: #ffffff;
    /*border-top: 25px solid #7e1749;*/
    border-bottom: 0;
    -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    margin-bottom: 0;
    padding: 0;
  }

  .custom-navbar .navbar-brand {
    color: #454545;
    font-size: 18px;
    font-weight: bold;
    line-height: 40px;
  }

  .custom-navbar .navbar-nav.navbar-nav-first {
    margin-left: 8em;
  }

  .custom-navbar .navbar-nav.navbar-right li a {
    padding-right: 12px;
    padding-left: 12px;
  }

  .custom-navbar .navbar-nav.navbar-right li a .fa {
    background: #29ca8e;
    border-radius: 100%;
    color: #ffffff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: inline-block;
    margin-right: 5px;
  }

  .custom-navbar .nav li a {
    line-height: 40px;
    color: #000;
    padding-right: 22px;
    padding-left: 22px;
    font-weight:bold;
  }

  .custom-navbar .navbar-nav > li > a:hover,
  .custom-navbar .navbar-nav > li > a:focus {
    background-color: transparent;
  }

  .custom-navbar .nav li a:hover {
    background-color: #7e1749;
    color: #ffffff;
  }

  .custom-navbar .nav li.active > a {
    background-color: #7e1749;
    color: #ffffff;
  }

  .custom-navbar .navbar-toggle {
    border: none;
    padding-top: 10px;
  }

  .custom-navbar .navbar-toggle {
    background-color: transparent;
  }

  .custom-navbar .navbar-toggle .icon-bar {
    background: #252525;
    border-color: transparent;
  }

.contact-numbers .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 10px;
}

.contact-numbers .contact-item {
    flex: 1;
    text-align: center;
    padding: 5px;
    font-size: 16px;
}

.contact-numbers .contact-item p {
    margin: 0;
    font-weight: 600;
    color: #7e1749;

}
.contact-numbers {
    display: flex;
    justify-content: space-around; /* Adjust spacing as needed */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    padding: 20px;
}

.contact-item {
    display: flex;
    align-items: center; /* Center the icon and text vertically */
}

.contact-item p {
    margin-left: 8px; /* Space between icon and text */
}


/* Responsive Design */
@media (max-width: 768px) {
    .contact-numbers .container {
        flex-direction: column;
    }

    .contact-numbers .contact-item {
        margin-bottom: 10px;
    }
}



  /*---------------------------------------
      HOME  & SLIDER            
  -----------------------------------------*/
  
  
   .banner-section {
    background:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.3)),url(../images/slider-bg.png); /* Dark background color */
    background-repeat: no-repeat;
    background-attachment: local;
    background-size: cover;
    height: 100vh;
    
  }
  
  .text-section{
      display: flex;
    flex-direction: column;
    justify-content: center;

  }
  .banner-heading {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
  }
  
  .banner-paragraph {
    color: #d1d1d1;
    font-size: 1.2rem;
    margin-top: 15px;
  }

  .banner-image {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: Add some rounded corners */
  }

  @media (max-width: 992px) {
    .banner-heading {
      font-size: 2rem;
    }

    .banner-paragraph {
      font-size: 1rem;
    }
  }
.swiper-slide.one{
    background-image:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.3)),url(../images/slider-1.png);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.swiper-slide.two{
    background-image:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.3)),url(../images/slider-1.png
);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.swiper-slide.two{
    background-image:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.3)),url(../images/slider-1.png
);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.main_wrapper{
    position: relative;
}

.main_wrapper .call-btn{
    position: absolute;
    bottom:50px;
    left: 50px;
    z-index: 99;
    display: flex;
    flex-direction: column;
}
.main_wrapper .call-btn span{
    color: #fff;
}
.main_wrapper .call-btn a{
    color: #fff;
}


.main_wrapper .social_links{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.main_wrapper .social_links a{
    color: #fff;
    font-size: 20px;
}

.main_wrapper .slider_content {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}


.main_wrapper .slider_content h1 {
    font-size: 50px;
    line-height:1.2;
    text-transform: capitalize;
    color: #fff;
    font-weight: 400;
    margin: 10px 0 20px;
    font-family: var(--secondary-font);
    letter-spacing: 1px;
}

.slider_content .btns{
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}
/* .slider_content .main-btn{
    padding: 8px 20px !important;
    width: fit-content;
} */
.slider_content .play_btn{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 100;
}
.slider_content .play_btn img{
    width: 50px;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: var(--second-color);
    width: 1px;
    height: 1px;
    border: 1px solid #fff;
    padding: 3px;
}



  #home {
    padding: 0;
  }

  #home h1 {
    color: #ffffff;
    text-transform:uppercase;
    font-size: 55px;
  }

  #home h3 {
    color: #f9f9f9;
    font-size: 16px;
    font-weight: 300;
    margin: 0;
    padding: 5px 0 40px 0;
  }

  @media (min-width: 768px) {
    .home-slider .col-md-6 {
      padding-left: 0;
    }
  }

  .home-slider .caption {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    /*background-color: rgba(20,20,20,0.2);*/
    height: 100%;
    color: #fff;
    cursor: e-resize;
    height: 100vh;
  }

  .home-slider .item {
    background-repeat: no-repeat;
    background-attachment: local;
    background-size: cover;
    height: 100vh;
  }
  
  .caption h3 a { color: #FFF; }
  .caption h3 a:hover { color: #FF3; }

  .home-slider .item-first {
    background-image:url(../images/slider_2.jpg);
	background-position: center;
  }

  .home-slider .item-second {
    background-image:url(../images/new_banner-o.jpg
);
  }

.home-slider .item-third{
     background-image:url(../images/new_banner-10.jpg);
	background-position: center;
}
.home-slider .item-fourth{
     background-image:url(../images/new_banner-11.jpg);
	background-position: center;
}

#home .social_links{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#home .social_links a{
    color: #fff;
    font-size: 20px;
}
#home .certificate{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 80%;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#home .certificate img{
   width:240px;
}
ul{
    list-style:none!important;
}



.logos-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg,rgba(0,0,0,0) 0,#000 15%,#000 85%,rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(90deg,rgba(0,0,0,0) 0,#000 15%,#000 85%,rgba(0,0,0,0) 100%);
}

.logos-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    animation: slide 30s linear infinite;
}

.logos-slider-container img {
  width:150px;
 max-width: 150px;
}

@keyframes slide {
  0% {
    transform: translate3d(0,0,0)
  }
  100% {
    transform: translate3d(-100%,0,0)
  }
}
  /*---------------------------------------
      FEATURE              
  -----------------------------------------*/
.feature-thumb {
    /*border: 1px solid #7e1749;*/
    padding: 2em 2em;
    background-color: #fff;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.feature-thumb:hover {
  background-color: #7e1749; /* Changes background to match the border color */
  border-color: #ffffff; /* Border remains visible with a contrasting color */
}

.feature-thumb span {
  background: #7e1749;
  border-radius: 50px;
  color: #ffffff;
  font-size: 35px;
  font-weight: bold;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-bottom: 5px;
  transition: background 0.3s ease;
}

.feature-thumb:hover span {
  background: #ffffff; /* Changes span color to contrast with the new background */
  color: #7e1749; /* Text color matches border color on hover */
}

.feature-thumb h3 {
    margin: 10px 0;
    color: #7e1749;
    transition: color 0.3s ease;
    font-size: 18px;
    font-weight: 600;
}

.feature-thumb:hover h3 {
  color: #ffffff; /* Text color changes to white on hover */
}
.feature-thumb:hover p {
  color: #ffffff; /* Text color changes to white on hover */
}
.open-button i {
    font-size: 30px;
}

.floating-buttons {
    position: fixed;
    bottom: 50px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    z-index: 999;
}

.open-button {
    background-color: #7e1749;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    opacity: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .4s;
}


/*.open-button {*/
/*    background-color: #7e1749;*/
/*    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);*/
/*    color: white;*/
/*    padding: 10px 20px;*/
/*    border: none;*/
/*    cursor: pointer;*/
/*    opacity: 1;*/
/*    position: fixed;*/
/*    bottom: 50px;*/
/*    right: 28px;*/
/*    width: 50px;*/
/*    height: 50px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    gap: 10px;*/
/*    z-index: 999;*/
/*    border-radius: 50px;*/
/*    transition: all .4s;*/
/*}*/

  /*---------------------------------------
      ABOUT              
  -----------------------------------------*/
 .image-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .image-container img {
            width: 100%;
            height: 350px;
            object-fit:cover;
            border-radius:10px;
        }
  #about figure {
    display: inline-block;
    vertical-align: top;
    margin-left: 15px;
    
  }

  #about figure span {
    float: left;
    margin-left: -15px;
    padding: 15px 20px;
    position: relative;
    top: 20px;
  }

  #about figure span i {
    background: #7e1749;
    border-radius: 50px;
    color: #ffffff;
    font-size: 25px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
  }



  /*---------------------------------------
      TEAM              
  -----------------------------------------*/

  .team-thumb {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    text-align: left;
  }

  .team-info {
    padding: 20px 30px;
  }

  .team-image img {
    width: 100%;
    height:;
  }

  .team-thumb .social-icon {
    border-top: 1px solid #f0f0f0;
    padding: 4px 20px 0 20px;
  }

  .team-thumb .social-icon li a {
    background: #ffffff;
    color: #252020;
  }

  .team-info h3 {
    margin: 0;
  }


  /*---------------------------------------
      COURSES             
  -----------------------------------------*/

/*#courses .section-title h2 {*/
/*  font-family: 'Poppins', sans-serif;*/
/*  font-size: 2em;*/
/*  color: #fff;*/
/*  text-align: center;*/
/*  margin-bottom: 20px;*/
/*}*/

/*#courses .section-title p {*/
/*  font-family: 'Poppins', sans-serif;*/
/*  font-size: 1.2em;*/
/*  text-align: center;*/
/*  color: #555;*/
/*  margin-bottom: 30px;*/
/*}*/

.course-card {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.course-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.course-content h3 {
  font-size: 1.5em;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  color:#fff;
}

.course-content p {
  font-size: 1em;
  margin: 10px 0;
  color:#fff;
}

.enroll-btn {
  display: inline-block;
  background-color: #7e1749; /* Set the background color to #7e1749 */
  color: #fff; /* White text color for contrast */
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease; /* Smooth transition effect */
}

.enroll-btn:hover {
  background-color: #a03a6a; /* A lighter shade for hover effect */
}
  
.owl-carousel .item {
  margin: 10px; /* Adjust this value for more or less gap between items */
}
  /*---------------------------------------
     NEWS              
  -----------------------------------------*/

  .news-thumb {
    clear: both;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
  }

  .news-thumb .news-image {
    float: left;
    width: 40%;
    margin-right: 30px;
  }

  .news-info h3 {
    margin-top: 5px;
    margin-bottom: 10px;
  }

  .news-date span {
    color: #909090;
    font-weight: bold;
  }



  /*---------------------------------------
      TESTIMONIAL             
  -----------------------------------------*/

  #testimonial .item {
    background: #ffffff;
    margin: 20px 0;
    padding: 4em 3em;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius:5px;
    
    
  }

  #courses .col-md-4,
  #testimonial .col-md-4 {
    display: block;
    width: 100%;
  }

  #testimonial .item > p {
    font-size: 16px;
    line-height: 26px;
  }

  .tst-rating {
    margin-bottom: 15px;
  }

  .tst-rating .fa {
    color: #7e1749;
  }

  .tst-image,
  .tst-author {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 20px;
    text-align: left;
  }

  .tst-image img {
    border-radius: 50px;
    width: 70px !important;
    height: 70px;
    margin-right: 15px;
    border:2px solid #7e1749;
  }

  .tst-author h4 {
    margin: 0;
  }

  .tst-author span {
    color: #808080;
    font-size: 14px;
  }



  /*---------------------------------------
      CONTACT             
  -----------------------------------------*/

  #contact {
    background:url(../images/banner-1.png)no-repeat center center;
    background-size: cover; /* Adjusts image to cover the entire section */
    /*background-attachment: fixed;*/
    /*padding: 60px 0; */
    height:75vh;
    border-radius:10px;
    
  }

  #contact h2 {
    color: #7e1749;
  }

  #contact .section-title {
    padding-bottom: 20px;
  }

  #contact h2 > small,
  #contact p,
  #contact a {
    color: #000;
  }
/*.contact-form-section{*/
/*    padding:0 40px;*/
/*}*/
  #contact-form {
    padding: 2em;
  }

  #contact-form .col-md-12,
  #contact-form .col-md-4 {
    padding-left: 0;
  }

  #contact-form .form-control {
    border: 0;
    border-radius: 5px;
    box-shadow: none;
    margin: 10px 0;
  }

  #contact-form input {
    height: 50px;
  }

  #contact-form input[type='submit'] {
    border-radius: 50px;
    border: 1px solid transparent;
        color: #000;
  }

  #contact-form input[type='submit']:hover {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
    font-weight:bold;
  }
  
.locations .section-title h2{
    color:#7e1749;
    text-align:start;
    font-size:24px;
    
    padding-bottom:10px;
}
.locations .section-title p{
   
}

  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  footer {
    background: #7e1749;
    /*padding: 120px 0;*/
  }

  footer .section-title {
    padding-bottom: 10px;
  }

  footer h2 {
    font-size: 20px;
  }

  footer a {
    color: #fff;
  }

  footer strong {
    color: #fff;
  }

  footer address p {
    margin-bottom: 0;
    color:#fff!important;
    font-weight:600;
    
  }

  footer .social-icon {
    margin-top: 25px;
  }

  .footer-info {
    margin-right: 2em;
  }

  .footer-info h2 {
    color: #ffffff;
    padding: 0;
  }

  .footer_menu h2 {
    margin-top: 2em;
  }

  .footer_menu ul {
    margin: 0;
    padding: 0;
  }
address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 30px!important;
    font-size: 16px !important;
    font-weight: 600!important;
}
  .footer_menu li {
    display: inline-block;
    list-style: none;
    margin: 5px 10px 5px 0;
  }
.contact-info p{
   line-height: 30px!important;
    font-size: 16px !important;
    font-weight: 600!important; 
}
  .newsletter-form .form-control {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid #303030;
    height: 50px;
    margin: 5px 0;
  }

  .newsletter-form input[type="submit"] {
    background: transparent;
    border: 1px solid #f9f9f9;
    border-radius: 50px;
    color: #ffffff;
    display: block;
    margin-top: 20px;
    outline: none;
    width: 50%;
  }

  .newsletter-form input[type="submit"]:hover {
    background: #7e1749;
    border-color: transparent;
  }

  .newsletter-form .form-group span {
    color: #909090;
    display: block;
    font-size: 12px;
    margin-top: 20px;
  }


.certificate-logo {
       position: fixed;
    right: 20px;
    /* bottom: 20px; */
    width: 131px;
    height: auto;
    top: 50%;
    z-index: 999;
    background: #fff;
    border-radius: 50%;
}

.certificate-logo img {
    width: 100%;
    border-radius: 50px;
    height: auto;
}

/* Optional hover effect */
.certificate-logo:hover {
    transform: scale(1.1);
}

  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
    margin-bottom: 5px;
  }

  .social-icon li a {
  border-radius: 100px;
    color: #7e1749;
    font-size: 25px;
    width: 31px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease-in-out;
    position: relative;
    margin: 5px 5px 5px 0;
  }

  .social-icon li a:hover {
    background: #7e1749;
    color: #ffffff;
  }



  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/
 @media screen and (max-width: 1170px) {
    .custom-navbar .navbar-nav.navbar-nav-first {
      margin-left: inherit;
    }
  }

  @media only screen and (max-width: 992px) {
    section,
    footer {
      padding: 60px 0;
    }

    .home-slider .item {
      background-position: center center;
    }

    .feature-thumb,
    .about-info,
    .team-thumb,
    .footer-info {
      margin-bottom: 50px;
    }

    .contact-image {
      margin-top: 50px;
    }
  }


  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .custom-navbar .nav li a {
      padding-right: 10px;
      padding-left: 10px;
    }
  }

  @media only screen and (max-width: 767px) {
    h1 {
      font-size: 2.5em;
    }

    h1,h2,h3 {
      line-height: normal;
    }

    .custom-navbar {
      background: #ffffff;
      -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
      text-align: center;
    }

    .custom-navbar .navbar-brand,
    .custom-navbar .nav li a {
      line-height: normal;
    }

    .custom-navbar .nav li a {
      padding: 10px;
    }

    .custom-navbar .navbar-brand,
    .top-nav-collapse .navbar-brand {
      color: #252525;
      font-weight: 600;
    }

    .custom-navbar .nav li a,
    .top-nav-collapse .nav li a {
      color: #575757;
    }

    .custom-navbar .navbar-nav.navbar-right li {
      display: inline-block;
    }

    .footer-info {
      margin-right: 0;
    }

    .footer-info.newsletter-form {
      margin-bottom: 0;
    }

    .entry-form {
      display: block;
      margin: 0 auto;
    }
  }


  @media only screen and (max-width: 580px) {
    h2 {
     font-size: 1.1em;
        text-align: center;
    }

    #testimonial .item {
      padding: 2em;
    }

    .contact-image {
      margin-top: 0;
    }
  }

  @media only screen and (max-width: 480px) {
    h1 {
      font-size: 2em;
    }

    #home h3 {
      font-size: 14px;
    }

    .entry-form {
      border-radius: 0;
      padding: 2em;
      max-width: 100%;
      max-height: 100%;
      width: inherit;
      height: inherit;
    }
  }
  
  
  a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none
}

a {
    font-style: normal;
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease
}

a,
a:active,
a:focus {
    color: #333;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s
}

ul {
    margin: 0;
    padding: 0;
    list-style: none
}

img {
    max-width: 100%;
    height: auto
}

.sec-title {
    position: relative;
    margin-bottom: 70px
}

.sec-title .title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 1em;
    color: #7e1749;
font-weight: 500;
background: rgb(132, 14, 72); /* Update the RGB value for the new color */
background: -moz-linear-gradient(to left, rgba(132, 14, 72, 1) 0%, rgba(68, 16, 102, 1) 25%, rgba(132, 14, 72, 1) 75%, rgba(68, 16, 102, 1) 100%);
background: -webkit-linear-gradient(to left, rgba(132, 14, 72, 1) 0%, rgba(68, 16, 102, 1) 25%, rgba(132, 14, 72, 1) 75%, rgba(68, 16, 102, 1) 100%);
background: linear-gradient(to left, rgba(132, 14, 72) 0%, rgba(68, 16, 102, 1) 25%, rgba(132, 14, 72, 1) 75%, rgba(68, 16, 102, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7e1749', endColorstr='#441066', GradientType=1);
color: transparent;
-webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px
}

.sec-title h2 {
    position: relative;
    display: inline-block;
    font-size: 48px;
    line-height: 1.2em;
    color: #1e1f36;
    font-weight: 700
}

.sec-title .text {
    position: relative;
    font-size: 16px;
    line-height: 28px;
    color: #888;
    margin-top: 30px
}

.sec-title.light h2,
.sec-title.light .title {
    color: #fff;
    -webkit-text-fill-color: inherit
}

.speakers-section-three {
    position: relative;
    padding: 120px 0 90px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden
}

.speaker-block-three {
    position: relative;
    margin-bottom: 50px
}

.speaker-block-three .inner-box {
    position: relative;
    background-color: #fff;
    overflow: hidden;
    /*padding-bottom: 30px;*/
    max-width: 300px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, .1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease
}

.speaker-block-three .inner-box:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, .1)
}

.speaker-block-three .image-box {
    position: relative;
    display: block;
    text-align: center;
    padding: 40px 0;
    height: 340px;
}

.speaker-block-three .image-box:before {
    position: absolute;
 left: -162px;
    right: -77px;
    top: -161px;
    height: 100%;
    background-image: url(../images/shape.png);
    -webkit-transform: scale(-1);
    -moz-transform: scale(-1);
    -ms-transform: scale(-1);
    -o-transform: scale(-1);
    transform: scale(-1);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    content: "";
}

.speaker-block-three .image-box .image {
    position: relative;
    display: inline-block;
    height: 150px;
    width: 150px;
    overflow: hidden;
    /*border: 4px solid #983a5f;*/
    box-shadow: 0 0 20px rgba(0, 0, 0, .3);
    border-radius: 10px;
    z-index: 9;
    margin-bottom: 0;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease
}

.speaker-block-three .inner-box:hover .image-box .image {
    border-radius: 0
}

.speaker-block-three .image-box .image img {
    display: block;
    width: 100%;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    background:#fff;
}

.speaker-block-three .inner-box:hover .image img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1)
}

.speaker-block-three .info-box {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    padding-right: 10px;
    background-color: #983a5f;
}

.speaker-block-three .info-box:before {
    position: absolute;
    left: 0;
    right: -30px;
    background-color: #983a5f;
    content: "";
    top: 0;
    height: 100%;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    transform: skew(-30deg);
    border-radius: 0 14px 14px 0
}

.speaker-block-three .info-box .name {
    position: relative;
    font-size: 18px;
    line-height: 1.2em;
    color: #fff;
    font-weight: 500
}

.speaker-block-three .info-box .name a {
    color: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

.speaker-block-three .info-box .name a:hover {
    color: #fff
}

.speaker-block-three .info-box .designation {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-weight: 400
}

.speaker-block-three .social-box {
    position: absolute;
    top: 90px;
    transform: translateX(-50px);
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease
}

.speaker-block-three .social-box .social-links li {
    margin-bottom: 4px
}

.speaker-block-three .inner-box:hover .social-box {
    transform: translateX(10px)
}

.speaker-block-two .social-links li {
    position: relative;
    display: inline-block;
    margin-bottom: 10px
}

.speaker-block-three .social-links li a i {
    position: relative;
    display: block;
    width: 32px;
    height: 32px;
    border: 1px solid #eee;
    font-size: 16px;
    line-height: 30px;
    background-color: #fff;
    text-align: center;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

.speaker-block-three .social-links li a:hover i {
    color: #fff;
    background: #983a5f;
}


.section-title p{
    font-size:16px;
}
.count{
 
  font-size: 50px;
  font-weight: bold;
  color:#fff;
}
.counter-wrapper{

   background-color:#7e1749;
  background-position: center center;
  position: relative;

}

.counter-inner{
  position:relative;
  z-index:2;
}
.count-icon{
  font-size: 48px;
}
.owl-carousel .item {
  margin: 10px; /* Adjust this value for more or less gap between items */
}

.buttuon-container .btn-wraper{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.buttuon-container{
    width: 100%;
    height: 100%;
    display: table;
    position: relative;
}
.absolute-image-container {
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    transform: translateY(-50%);
}
.text{
    margin-top:50px;
}

.vision-future-section {

  padding: 70px 0px;

}
blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 21px!important;
    border-left: 5px solid #7e1749!important;
}
.vision-future-section  h2 {
text-align:start!important;
padding-bottom:0px!important;
    padding-bottom: 25px!important;
}

.academy-info .info-text {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 5px;
  text-align:start;
  padding-bottom: 10px!important;
  color:#000;
}

.call-to-action {
  font-size: 1.3rem;
  font-weight: bold;
  color: #005b99;
}

.inspiration-quote {
  font-size: 24px;
  color: #7e1749;
  margin-top: 30px;
    font-weight:600;
}

.inspiration-quote .quote-author {
  display: block;
  font-size: 1.5rem;
  margin-top: 10px;
  color: #7e1749;
  
}
.quote-author span {
  font-weight: 800;
  font-size: 18px;
}

.quote-author {
  font-size: 16px; /* Normal font size for other text */
}

.photo-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vision-photo {
  max-width: 100%;
  /*border-radius: 10px;*/
  /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
}


.page_banner{
    height: 50vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/rooms/IMG-20240530-WA0014.jpg);
}
.page_banner.about_page{
    background-image:url(../images/banner-about.jpg);
}

.page_banner.course_page{
    background-image:url(../images/banner-course.png);
}

.page_banner.placement_page{
    background-image:url(../images/banner-placed.jpg);
}
.page_banner.reviews_page{
    background-image:url(../images/banner-review.jpg);
}
.page_banner.gallery_page{
    background-image:url(../images/banner-gallery1.jpg);
}
.page_banner.contact_page{
    background-image:url(../images/banner-contact.jpg);
}

.page_banner{
    display: flex;
    align-items: center;
    /* justify-content: center; */
    /* text-align: center; */
}

.page_banner h2 {
  color: #fff!important;
  font-size: 50px!important;
  font-weight: 500!important;
  line-height: 1.2; /* Adjust this value as needed */
}
.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 10px;
}

.gallery-item {
  overflow: hidden;
  animation: fadeDown 0.8s ease forwards;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
    .section-two{
        width:100%!important;
    }
    .container-box {
     display: block!important; 
   
}
    .section-one {
        display:none;
    }
    .courses-grid {
    display: grid;
    grid-template-columns: 1fr!important;
    gap: 20px;
}
    .page_banner h2 {
    color: #fff !important;
    font-size: 30px !important;
    font-weight: 500 !important;
    line-height: 1.2;
}
      .certificate-logo {
        position: fixed;
        left: under left;
        /* bottom: 20px; */
        right: 132px;
        width: 97px;
        height: auto;
        top: 10%;
        z-index: 999;
        background: #fff;
        border-radius: 50%;
    }
#home h1 {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 21px;
}
#home .social_links {
   display:none;
}

 .home-slider .item-first {
    background-image:url(../images/mabile-banner.jpg);
	background-position: center;
  }

  .home-slider .item-second {
    background-image:url(../images/mabile-banner-1.jpg);
}
 .home-slider .item-third {
    background-image:url(../images/mabile-banner-10.jpg);
}
 .home-slider .item-fourth {
    background-image:url(../images/mabile-banner-11.jpg);
}
.home-slider .caption {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    /* background-color: rgba(20, 20, 20, 0.2); */
    height: 100%;
    color: #fff;
    cursor: e-resize;
    height: 60vh;
}
.vision-future-section h2 {
    text-align: center!important;
    padding-bottom: 0px !important;
    padding-bottom: 25px !important;
}
.vision-future-section {
    text-align:center;
    padding:20px 0;
}

.academy-info .info-text {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 10px !important;
    color: #000;
}
.section-title h2 {
    margin: 0;
    text-align: center;
    font-size: 32px;
    color: #7e1749;
    font-weight: 600 !important;
}
.section-title {
     padding-bottom: 0px; 
    text-align: center;

}
.read-btn {
    margin-top:0px;
}
#contact {
    background:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.3)), url(../images/banner-1.png) no-repeat center center;
    background-size: cover;
    /* background-attachment: fixed; */
    padding: 50px 0;
    height: 70vh;
    border-radius: 10px;
}
#about h3 {
    font-size: 1.0em!important;
    
}
#contact h2 {
    color: #fff;
}
#contact h2>small {
    color: #fff;
}
.section-title p {
    font-size: 12px;
    margin-bottom:30px;
}
.quick-links{
    display: flex;
    flex-direction: column!important;
    gap: 13px;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;

}
.locations{
    text-align:center;
    padding:30px 0;
}
.locations .section-title h2 {
    color: #7e1749;
    text-align: center;
    font-size: 30px;
    text-transform: uppercase;
    padding-bottom: 10px;
}
footer{
    margin-top:0px!important;
}
#about p {
    margin: 0 0 10px;
    font-size: 12px;
    margin-top: 6px;
}
.image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.header_logo img {
    width: 90px;
}


}
