@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root{
    --btn-bg-color:#1A2B49;
    --p-color:#353637;
    --a-color:#101922;
}



body {
  font-family: "Roboto", sans-serif;
  background-color: #f7f7f7; 
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #222;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a:hover {
  opacity: 0.8;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: "Roboto", sans-serif;
  border: none;
  cursor: pointer;
  padding: 0.6rem 1rem;
  border-radius: 6px;
}

input, textarea, select {
  font-family: "Roboto", sans-serif;
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.box {
    width: 100%;
    height: 250px;
    background-color: #00639C;
}


.header{
      background-color: #e4a249;
      height: 40px;
}

.header-contact{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  height: 40px;
}

.header-contact ul{
  display: flex;
  margin: 0;
  padding: 0;
}

.header-contact ul li{
  margin: 0 10px 0 0;
  color: white;
  font-size: 14px;
}
.header-soccial{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  height: 40px;
}

.header-soccial ul{
  display: flex;
   margin: 0;
  padding: 0;
}

.header-soccial ul li{
  margin: 0 10px 0 0;
  color: white;
  font-size: 14px;
}

.nav-logo{
  padding: 10px 0;
}

.nav-logo img{
  width: 160px;
}


.menu-list{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    height: 5rem;
}


.menu-logo img{
    width: 9.375rem;
}


.menu-list ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list ul li {
  position: relative;
}

.menu-list > ul > li > a {
    display: block;
    padding: 10px 10px;
    color: #222;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    transition: color 0.3s ease;
}
.menu-list > ul > li > a:hover{
     color: #2e2d2d !important;
}

.menu-list .dropdown-content {
  position: absolute;
  top: 40px; 
  left: 0;
  background: #fff;
  min-width: 180px;
  border-radius: 6px;
  padding: 8px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
  z-index: 20;
  display: block;
}

.menu-list .dropdown-content li a {
  display: block;
  padding: 10px 15px;
  color: #444;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.menu-list .dropdown-content li a:hover {
  background: #f2f2f2;
}

.menu-list .dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}


.home-slider{
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.home-slider .carousel{
   width: 100%;
  height: 600px;
  overflow: hidden;
}

.home-slider .carousel .carousel-inner{
   width: 100%;
  height: 600px;
  overflow: hidden;
}

.home-slider .carousel .carousel-inner .carousel-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.section{
  padding: 100px 0;
}

.art-science-title{
  text-align: center;
}

.art-science-title h2{
  font-family: "Philosopher", sans-serif;
}

.art-science-content{
  text-align: center;
  padding: 0 75px;
}

.art-science-content p{
  color: var(--p-color);
}


.art-item {
  flex: 0 0 auto;
  width: 100%; 
  margin: 15px 5px;
  border: 1px solid #e4a249;
  padding: 15px;
  text-align: center;
  height: 200px;
  display: grid;
  justify-content: center;
  align-items: center;
  align-content: space-evenly;
  background-color: white;
}

.art-item h2{
  font-size: 20px;
}


.art-item img {
  display: block;
  margin: 0 auto;
  width: 60px;
}

.information-gathering{
  text-align: center;
  margin: 20px 0 0 0;
}

.information-gathering a{
  background-color: #e4a249;
  color: white;
  padding: 5px 20px;
  border-radius: 15px;
}

.about-photo{
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 15px;
  margin: 15px 0 0 0;
}


.about-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-info .about-info-title{
  font-family: "Philosopher", sans-serif;
  font-size: 50px;
}

.about-info .about-info-title span{
  color: #e4a249;
  font-weight: 600;
  border-bottom: 2px solid #e4a249;
}

.sub-photo{
  height: 90px;
  overflow: hidden;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.sub-photo img{
height: 70px;
object-fit: cover;
}


.about-sub-info{
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  background-color: white;
  padding: 10px;
  margin: 20px 0 0 0;
}

.about-sub-title h6 span{
  color: #e4a249;
}

.about-sub-title{
  height: 90px;
  overflow: hidden;
  width: 100%;
  text-align: start;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.about-paragraf{
  margin: 50px 0 0 0;
}

.about-paragraf p{
  color: var(--p-color);
}

.about-link{
  background-color: #e4a249;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
}

.showreel-link{
   background-color: #fff;
  color: var(--p-color);
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.about-item{
  text-align: center;
}

.about-item label{
  font-family: "Philosopher", sans-serif;
  margin: 20px 0 0 0;
  font-size: 35px;
  color: black;
  font-weight: 600;
}

.about-item p{
  color: var(--p-color);
}

.registration-form{
  background-color: #fff;
  border-radius: 20px;
  overflow:hidden;
}


.registration-item {
  width: 100%;
  height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  text-align: center;
    background: linear-gradient(260deg, rgb(3 3 3 / 15%) 0%, rgba(255, 255, 255, 1) 50%);
  }

.registration-item i{
  font-size: 70px;
}

.registration-item h2{
  font-family: "Philosopher", sans-serif;
  font-size: 50px;
}

.registration-item p{
  color: var(--p-color);
}


.form-content{
   width: 100%;
  height: 640px;
  padding: 60px;
    background: linear-gradient(260deg, rgb(3 3 3 / 15%) 0%, rgba(255, 255, 255, 1) 90%);
  }


.input-form label{
      color: #383535;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.input-main{
  display: flex;
  background-color: white;
  padding: 5px 10px;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.input-main input{
  border: none;
}

.input-main input:focus{
  box-shadow: none;
}


.input-main select{
  border: none;
}

.input-main select:focus{
  box-shadow: none;
}

.input-main textarea{
  border: none;
}

.input-main textarea:focus{
  box-shadow: none;
}

.text-check a{
  font-weight: 600;
  border-bottom: 1px solid #e4a249;
  color: #e4a249;
}

.form-post{
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-color: #e4a249;
  border-radius: 5px;
}

.form-post .post-icon{
  width: 10%;
  text-align: center;
}

.form-post .post-icon i{
  font-size: 25px;
  color: #fff;  
}

.form-post .post-btn{
  width: 90%;
  text-align: center;
}

.form-post .post-btn button{
  background-color: transparent;
  border: transparent;
  color: white;
  display: block;
  width: 100%;
}

.form-post .post-btn button:active{
    color: white;
    background-color: transparent !important;
    border-color: transparent !important;
}

.announcements-title{
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 30px;
}

.announcements-title h2{
  font-family: "Philosopher", sans-serif;
}

.announcements-icon{
    text-align: center;
    padding: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.announcements-icon i{
  position: absolute;
  background-color: #f6f6f6;
  padding: 2px 5px;
  font-size: 25px;
  color: #e4a249;
}

.announcements-line{
  width: 10%;
  height: 2px;
  background-color: #e4a249;
}

.announcements-paragraf{
  text-align: center;
}


.blog-item{
  position: relative;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  border-radius: 10px;
}

.blog-item-footer{
  border-top: 1px solid #cccccc54;
}

.blog-item-top-title label{
  background-color: #00639c69;
  color: #1A2B49;
  padding: 3px;
  border-radius: 3px;
  font-size: 12px;
}

.blog-item-top-title,
.blog-item-content,
.blog-item-footer{
  padding: 15px;
}

.blog-item-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-item-footer a{
  color: #e4a249;
  font-weight: 600;
}


.announcements-slider .owl-nav{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}

.announcements-slider .owl-nav button span{
    font-size: 35px;
    color: #e4a249;
    margin: 0 7px;
}

.blog-item-footer label{
  color: #cccccc;
}



.education-title{
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 30px;
}

.education-title h2{
  font-family: "Philosopher", sans-serif;
}

.education-icon{
    text-align: center;
    padding: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.education-icon i{
  position: absolute;
  background-color: #f6f6f6;
  padding: 2px 5px;
  font-size: 25px;
  color: #e4a249;
}

.education-line{
  width: 10%;
  height: 2px;
  background-color: #e4a249;
}

.education-paragraf{
  text-align: center;
  padding: 0 100px;
}

.education-item-photo{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  
}

.education-item {
    display: flex;
    flex-direction: column; 
    align-items: center;   
    justify-content: center;
    text-align: center;   
    border-radius: 15px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    margin: 30px 0 0 0;
    padding: 0 0 20px 0;
}


.education-item-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.education-item-photo img {
    max-width: 120px; 
    border-radius: 50%;
}

.education-item-title label{
  color: #e4a249;
  font-size: 13px;
  font-weight: 600;
}

.education-item-content p{
    font-size: 15px;
    color: #232121;
}

.education-item-footer a{
  color: #555252;
  font-weight: 600;
  font-size: 14px;
}






.article-title{
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 30px;
}

.article-title h2{
  font-family: "Philosopher", sans-serif;
}

.article-icon{
    text-align: center;
    padding: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.article-icon i{
  position: absolute;
  background-color: #f6f6f6;
  padding: 2px 5px;
  font-size: 25px;
  color: #e4a249;
}

.article-line{
  width: 10%;
  height: 2px;
  background-color: #e4a249;
}

.article-paragraf{
  text-align: center;
}

.article-item{
  border-radius: 15px;
  overflow: hidden;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  margin: 30px 0 0 0;
}

.article-item-photo{
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.article-item-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content{
  padding: 15px;
}

.article-content label{
  color: #555252;
}

.article-content p{
   color: #555252;
  font-weight: 600;
  font-size: 14px;
}

.article-footer{
  padding: 15px;
  border-top: 1px solid #cccccc66;
}

.article-footer a{
  font-weight: 600;
  color: #e4a249;
}

.article-view-link{
  text-align: center;
  margin: 30px 0 0 0;
}

.article-view-link a{
  border: 1px solid #e4a249;
    border-radius: 20px;
    color: #e4a249;
    padding: 10px 40px;
}

.footer{
  background-color:#e4a249;
  width: 100%;
  padding: 50px 0 0 0;
}

.footer-item h4{
  color: white;
}

.footer-item p{
  color: white;
}


.form-footer{
  display: flex;
}
.form-footer input{
  margin:  0 10px 0 0;
  background-color: #e4a14989;
  color: white;
}

.form-footer input:focus{
  background-color: #e4a14989;
  box-shadow: none;
  border: 1px solid #fff;
}

.form-cls label{
  color: white;
  font-size: 17px;
  font-weight: 600;
}

.form-footer input::placeholder {
  color: white;
  opacity: 1; 
}


.form-footer button{
  background-color: #9d661e;
  color: white;
  font-size: 20px;
  border: none;
}

.form-footer button:hover{
  background-color: #9d661e;
  color: white;
  font-size: 20px;
  border: none;
}

.footer-menu-list ul{
  margin: 0;
  padding: 0;
}

.footer-menu-list ul li{
  margin: 0 0 10px 0;
  color: white;
}
.footer-menu-list ul li i{
  font-size: 10px;
}

.footer-menu-list h4{
  color: white;
}

.footer-bottom{
  padding: 5px 0;
}

.footer-bottom p{
  margin: 0;
  color: white;
}

.bottom-footer{
  border-top: 1px solid #ccc;
  margin: 40px 0 0 0;
  padding: 30px 0 30px 0;
}

.footer-soccial ul{
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin: 0;
  padding: 0;
}

.footer-soccial ul li{
    margin: 0 15px 0 0;
    font-size: 20px;
    color: #e4a249;
    background-color: #9d661e;
    padding: 1px 6px;
    border-radius: 5px;
}

.footer-seccurity ul{
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin: 0;
  padding: 0;
}

.footer-seccurity ul li{
  margin: 0 10px;
  color: white;
}


.banner-content{
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #a4a2a2;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.banner-title{
  text-align: center;
}

.banner-title h2{
  color: white;
}

.education-detail{
  padding: 30px;
  border-radius: 30px;
}

.education-detail label{
    color: #e4a249;
    font-weight: 600;
}


.education-detail h2 {
  position: relative;
  padding-bottom: 8px; 
  font-size: 45px;
}

.education-detail h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10%;
  height: 3px;
  background-color: #f3d9a6;
}

.education-detail {
  position: relative;
  padding-left: 40px;
  padding-top: 40px;
}

.education-detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 80px;    
  height: 80px;   

  border-top: 4px solid #f3d9a6;   
  border-left: 4px solid #f3d9a6;

  border-top-left-radius: 40px;  
}

.view-education {
    padding: 30px;
}

.view-education a{
  font-size: 20px;
  font-weight: 600;
  color: #e4a249;
}


.corporate-item{
  padding: 30px;
}

.contact-item{
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  padding: 20px 40px;
  display: grid;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  height: 300px;
  width: 100%;
}

.contact-item-icon i{
  font-size: 35px;
  color: #e4a249;
}

.contact-map{
  margin: 50px auto;
  max-width: 700px;
  border-radius: 6px;
  overflow: hidden;
}
