
/* =========================CSS for Index including Header and footer(only) ========================== */

:root {
    --white-color:                  #ffffff;
    --primary-color:                #E76F51;
    --secondary-color:              #E9C46A;
    --section-bg-color:             #f0f8ff;
    --custom-btn-bg-color:          #F4A261;
    --custom-btn-bg-hover-color:    #E76F51;
    --dark-color:                   #000000;
    --p-color:                      #58585a;
    --link-hover-color:             #E76F51;
    /* --p-color:                      #717275; */

  
    --body-font-family:             'Unbounded', sans-serif;
  
    --h1-font-size:                 42px;
    --h2-font-size:                 36px;
    --h3-font-size:                 28px;
    --h4-font-size:                 24px;
    --h5-font-size:                 22px;
    --h6-font-size:                 20px;
    --p-font-size:                  16px;
    --menu-font-size:               12px;
    --btn-font-size:                14px;
    --copyright-font-size:          14px;
  
    --border-radius-large:          100px;
    --border-radius-medium:         20px;
    --border-radius-small:          10px;
  
    --font-weight-light:            300;
    --font-weight-normal:           400;
    --font-weight-semibold:         600;
    --font-weight-bold:             700;
  }
  *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: var(--white-color);
    /* font-family: var(--body-font-family);  */
    font-family: 'Fira Sans Condensed', sans-serif;
    overflow: hidden;
  }
  
  
  /*---------------------------------------
    TYPOGRAPHY               
  -----------------------------------------*/
  
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--dark-color);
   
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: var(--font-weight-semibold);
   
  }
  
  h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-bold);
  }
  
  h2 {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
  }
  
  h3 {
    font-size: var(--h3-font-size);
  }
  
  h4 {
    font-size: var(--h4-font-size);
  }
  
  h5 {
    font-size: var(--h5-font-size);
  }
  
  h6 {
    color: var(--secondary-color);
    font-size: var(--h6-font-size);
  }
  
  p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
  }
  
  ul li {
    list-style-type: none;
    color: #fff;
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
  }
  
  a, 
  button {
    touch-action: manipulation;
    transition: all 0.3s;
  }
  
  a {
    display: inline-block;
    
    text-decoration: none;
  
  }
  
  a:hover {
    /* color: var(--link-hover-color); */
    /* font-weight: bold; */
    color: #eb1d8a;
  }
  
  b,
  strong {
    font-weight: var(--font-weight-bold);
  }
  
  
  /*---------------------------------------
    SECTION               
  -----------------------------------------*/
  .section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  ::selection {
    background-color: var(--secondary-color);
    color: var(--white-color);
  }


  .costom-btn{
    /* border: 1px solid maroon;
    padding: 8px; */
  
  
    background: var(--custom-btn-bg-color);
    border: 2px solid ;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-semibold);
    line-height: normal;
    transition: all 0.3s;
    padding: 10px 20px;
  
   }
   .costom-btn:hover{
    /* background: var(--custom-btn-bg-hover-color); */
    background-color: #5F093D;
    color: var(--white-color);
   }
    
    .main_content_body{
      width: 85%;
      margin:auto;
     
    }
    @media  screen and (max-width:1050px) {
      .main_content_body{
        width: 95%;
        margin: auto;
      }
      
    }
    
    @media  screen and (max-width:768px) {
      .main_content_body{
        width: 100%;
        padding: 0 10px 0 10px;
      }
      
    }
  
.clearfix{
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* -----------------------------------------
        NAVIGATION OR MENU
--------------------------------------------- */




.top-links a{
  
  padding-left: 5px;
  margin-left: 5px;
}





.hero{
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(12,3,51,0.3),rgba(12,3,51,0.3)),;
  position: relative;
  /* display: flex; */
  
  overflow: hidden;
  

}
.hero1{
  width: 100%;
  height: 70vh;
  background-image: linear-gradient(rgba(7, 3, 26, 0.356),rgba(12,3,51,0.3)) ;
  position: relative;
  /* display: flex; */
  background-repeat: no-repeat;
  overflow:hidden;
  object-fit: cover;


}


.back-video1{
  position: absolute;
  right: 0;
  /* bottom: 0; */
  z-index: -1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;

}
@media (min-aspect-ratio: 16/9){
  .back-video{
      width: 100%;
      height: auto;
  }
}
@media (max-aspect-ratio: 16/9){
  .back-video{
      width: auto;
      height: 100%;
  }
}

.navigation{
    display: flex;
    align-items: center;
    
  }

  .navigation .logo{
    width: 120px;
  }

  .navigation ul li{
    display: inline-block;
    margin-left: 15px;
    
  }
  .navigation ul li a{
    font-size: 17px;
 
  }
 

  .content{
    text-align: center;

  }
  .content h1{
    font-size: 150px;
   
    -webkit-text-stroke: 1px #fff;
    color: transparent;
    font-weight: 600;
    transition: 0.5s;
  }
  .content h1:hover{
   
    color: #ffffff;
  }
  .content a{
    display: inline-block;
    color: #ffffff;
    font-size: 24px;
    border: 2px solid;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 20px;

  }

 





  .mega-menu-container h4 {
    margin: 8px 0;
  }
  
  .mega-menu {
    
    z-index: 1000;
    position: relative; /* Initially, navbar is relative */
    transition: background-color 0.3s ease;


  
    margin: 0 auto;
  
  }


  .sticky {
    position: fixed;
    
    background-color: #5F093D;
  
    width: 100%;
    top: 0;
    padding: 5px 0px;
}
  
  .mega-menu > ul {
    display: flex;
 
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    gap: 35px;
 
  }
  
  .mega-menu-container .menu-title {
    padding: 10px 16px;
    font-weight: bold;
    
   
  }
  
  .mega-menu .menu-title {
    position: relative;
    color: #fff;
    font-size: large;

    border: 1px solid gray;
  background-color: #cccbcb49;
    border-radius: 10px;
  }
  
  .mega-menu .menu-title::after {
    content: "";
    height: 0;
    width: 0;
    background: #90ee90;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 200ms ease;
  }
  
  .mega-menu ul li:hover > .menu-title::after {
    height: 4px;
    width: 100%;
  }
  
  /* .has-submenu::after {
    content: "+";
    margin-left: -8px;
  } */
  
  .mega-menu .submenu-container {
    opacity: 0;
    position: absolute;
    pointer-events: none;
   
    /* width: 100%; */
    left: 50%;
    top: 100%;
    /* transform: translate(-50%, 20px); */

    transform: translateY(20px);
    transition: all 200ms ease;
    overflow-y: auto;
  }
  
  /* .mega-menu .has-submenu:hover .submenu-container {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
   
  } */
  .mega-menu .has-submenu:hover #submenu1 {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    width: 100%;
   
   
  }
  .mega-menu .has-submenu:hover #submenu2 {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-70%, 0);
   
  }
  .mega-menu .has-submenu:hover #submenu3 {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
   
  }
  .mega-menu .has-submenu:hover #submenu4 {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-40%, 0);
   
  }
  .mega-menu .has-submenu:hover #submenu5 {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-0%, 0);
   
  }
  .mega-menu .has-submenu:hover #submenu6 {
    opacity: 1;
    pointer-events: auto;
    transform: translate(30%, 0);
   
  }

  
  .submenu .col-3 img {
    width: 220px;
  }
  
  .submenu .col-3 {
    display: flex;
    gap: 32px;
    border-top: 1px solid rgba(2, 48, 71, 0.2);
    min-width: max-content;
  }
  
  .submenu {
    background: #fff;
    padding: 16px 24px;
    margin-top: 10px;
    box-shadow: 0 4px 50px -7px rgba(0, 0, 0, 0.2);
    
  }
  
  .submenu .col-3 ul li {
    font-size: 13px;
    padding: 0;
    padding-left: 12px;
    margin: 12px 0;
    position: relative;
  }
  
  .submenu .col-3 ul li::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    left: 0;
    background: #90ee90;
    transition: all 400ms ease;
  }
  
  .submenu .col-3 ul li:hover::before {
    width: 4px;
    background: #5ae15a;
  }
  
  .submenu h3 {
    margin: 7px 0;
  }
  
  
  .mega-menu-container a.btn {
    background: #023047;
    border: none;
    color: #fff;
    padding: 8px 32px;
    margin: 8px 0;
    cursor: pointer;
    font-weight: bold;
  }
  
  .mega-menu-mobile {
    display: none;
  }
  
  @media (max-width: 940px) {
    .mega-menu {
      display: none;
    }
  
    .mega-menu-mobile {
      display: block;
      z-index: 2000;
    }
  
    .menu-header .icons .menu-icon,
    .menu-header .icons .close-icon {
      width: 35px;
      font-weight: bold;
      position: absolute;
      top: 0;
      right: 0;
      padding: 2px;
      cursor: pointer;
      pointer-events: none;
      opacity: 0;
      transition: all 200ms ease;
     
    }
  
    .menu-header .icons .menu-icon.active,
    .menu-header .icons .close-icon.active {
      opacity: 1;
      pointer-events: auto;
    }
  
    .menu-header .icons {
      position: relative;
    }
  
    .menu-header {
      display: flex;
      justify-content: space-between;
      box-shadow: 0 4px 40px -7px rgba(0, 0, 0, 0.3);
      position: fixed;
      left: 0;
      right: 0;
      background: #ffffff;
      top: 0;
      font-size: 20px;
      font-weight: bold;
      padding: 8px 16px;
    }
  
    .mega-menu-mobile .submenu-container {
      height: 0;
      overflow: hidden;
      transition: all 500ms ease;
    }
  
    .has-submenu {
      position: relative;
    }
  
    .has-submenu::after {
      content: "+";
      position: absolute;
      top: 12px;
      right: 8px;
      font-weight: bold;
    }
  
    .mega-menu-mobile > ul > li {
      border-bottom: 1px solid #eee;
    }
  
    .mega-menu-mobile > ul {
      position: fixed;
      top: 60px;
      left: 0;
      background: #fff;
      transform: translateX(-130%);
      max-height: calc(100vh - 60px);
      overflow-y: auto;
      transition: all 300ms ease;
    }
  
    .mega-menu-mobile > ul.active {
      transform: translateX(0);
    }
  
    .submenu {
      box-shadow: unset;
      padding: 0;
      margin-top: 0;
    }
  
    .submenu .col-3 {
      flex-direction: column;
    }
  
   
    .mega-menu-mobile h4 {
      margin: 8px 8px;
      font-size: 16px;
      font-weight: bold;
      
    }
  
   
  
    .submenu .col-2 {
      padding: 0 16px;
    }
  }
  





/* --------------------Header------------------  */

.card-title{
    margin: 5px;
    color:#e2b900;
    border-bottom: 3px solid #c22b06;
}
#card-marquee ul li{
    color: white;
}

/* ------------------------------------After Background Container------------------------------------- */
.after-bg-container{
    width: 100%;
    height: auto;
    /* background-color: azure; */
    position: relative;
   
}
.now1{
    position: relative;
    /* top: -5rem; */
}

.form-feed{
   
    background-color: rgba(2, 2, 49, 0.721);    
    
}
.form-feed form{
    input, select{
        padding: 10px;
        margin: 8px 0;
        box-sizing: border-box;
      }

      input[type=email],input[type=tel],input[type=date], select{
        width: 49%;
      }
      input[type=text], textarea{
        width: 100%;
      }
      textarea{
        height: 50%;
      }
      input[type=submit],input[type=button]{
        font-size: 1rem;
        background-image: linear-gradient(147deg, #FFE53B 0%, #FF2525 74%);
      }

}
@media (max-width: 750px){
    .after-bg-container{
        position: static;    
    }
    .now1{
        position: static;
    }
   
}


.list-group-notice li{
    border-bottom: 1px solid lightgray;
    font-size: small;
    padding: 5px 0 5px 0;
    text-align: justify;
}



/* -------------------------------------University & Courses Discription--------------------------------- */




.program-name{
    
    margin: 8px;
    padding: 8px; 
    background-color: #F4A261;
    color: white;

    
    

}
.program-list{
    font-size: small;
    list-style-type: none;
    margin: 1rem;
    line-height: 2rem;
    

}
.fa-check-circle{
    font-size: 1.2rem;
    color: #5F093D;
    font-weight: bold;
    
}



/* ---------------------------------------Footer Section CSS Start From Here------------------------------------ */


#social-links .fab{
    padding: 8px;
    margin: 15px  5px;
    border: 1px solid gray;
    border-radius: 50%;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
}


footer ul li a, p{
  font-size: 14px;
}



.links{
  
    margin: 3px;
    padding:3px;

}
.links h5{
    padding-bottom: 10px;
    border-bottom: 3px solid #888686;
}
.links ul li{
    padding: 3px;
    margin: auto;

}


.copyright{
    
    text-align: center;
}



