/*Navbar Section*/
body{
font-family:'Open sans', sans-serif;
}
.aviation-navbar{
background:#365261;
padding:0px 0;
}

.aviation-navbar .nav-link{
color:#fff;
font-weight:500;
margin:0 12px;
font-size:15px;
}

.aviation-navbar .nav-link:hover{
color:#D4AF37;
}

.aviation-btn{
background:#D4AF37;
color:#000;
padding:8px 20px;
border-radius:5px;
font-weight:600;
}

.aviation-btn:hover{
background:#c39911;
color:#000;
}

/* MOBILE VIEW */

@media (max-width:991px){

.aviation-navbar{
padding:10px 0;
}

/* Navbar links */
.aviation-navbar .nav-link{
margin:10px 0;
font-size:16px;
text-align:center;
}

/* Navbar menu spacing */
.navbar-nav{
padding-top:15px;
}

/* Apply button full width */
.aviation-btn{
display:block;
width:90%;
margin:10px auto;
text-align:center;
padding:10px;
}

}
.navbar-brand img{
    width:90px;
    height:auto;
}

/*topbar*/
.topbar{
background:#111;
color:white;
font-size:14px;
padding:8px 0;
}

.topbar a{
color:white;
text-decoration:none;
margin-right:20px;
}

.topbar a:hover{
color:#D4AF37;
}

.topbar-right a{
margin-left:8px;
font-size:14px;
}

@media (max-width:768px){

.topbar-left{
text-align:center;
}

.topbar-right{
text-align:center !important;
}

.topbar a{
display:inline-block;
margin-right: 15px;
}
.topbar{
font-size:13px;
}
}

/*Hero section*/
.hero-slider{
position:relative;
}

.slide-bg{
height:70vh;
background-size:cover;
background-position:center;
position:relative;
}
.carousel-fade .carousel-item {
opacity:0;
transition:opacity 2s ease-in-out;
}

.carousel-fade .carousel-item.active{
opacity:1;
transition:opacity 2s ease-in-out;
}

.slide-bg::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}

.aviation-programs{
padding:60px 0;
background:#f7f9fc;
}
.aviation-programs .container{
    max-width:1300px;
}

.section-title h2{
font-size:1.8rem;
font-weight:600;
margin-bottom:20px;
}

.section-title p{
color:#666;
margin-bottom:50px;
}

.program-card{
background:white;
padding:15px;
border-radius:8px;
text-align:center;
margin-bottom:30px;
transition:0.3s;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.program-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.program-card .icon{
font-size:40px;
color:#D4AF37;
margin-bottom:15px;
}

.program-card h4{
font-size:16px;
margin-bottom:0px;
}

.program-card p{
font-size:14px;
color:#666;
}

/*About Section*/
.about-section{
padding:10px 0;
}

.about-title{
font-size:1.8rem;
font-weight:600;
margin-bottom:20px;
}

.about-section p{
color:#666;
line-height:1.5;
margin-bottom:15px;
}

.about-btn,.aviation-btn {
  background: #D4AF37;
  color: #000;
  padding: 10px 20px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
}

.about-btn:hover{
    background:#c39911;
color:#000;
}

/* IMAGE WRAPPER */

.about-image-wrapper{
position:relative;
}

/* BIG IMAGE */

.about-main-img{
width:100%;
border-radius:2px;
}

/* SMALL LOGO IMAGE */

.about-logo-img{
position:absolute;
top:-30px;
left:-30px;
width:140px;
background:white;
padding:10px;
border-radius:3px;
}

@media (max-width:768px){

.about-section{
padding:60px 0;
text-align:center;
}

.about-title{
font-size:28px;
}

.about-image-wrapper{
margin-top:40px;
}

.about-logo-img{
top:-20px;
left:20px;
width:100px;
}
}

/*Footer Section*/
.aviation-footer{
background:#214152;
color:#fff;
padding:60px 0 0;
}

.footer-col h4{
color:#D4AF37;
margin-bottom:20px;
font-size:18px;
font-weight:600;
}

.footer-col p{
font-size:14px;
line-height:24px;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
color:#ddd;
text-decoration:none;
font-size:14px;
}

.footer-col ul li a:hover{
color:#000;
}

.footer-col i{
color:#D4AF37;
}
.footer-col i:hover{
color:#000;
}


.footer-social{
margin-top:20px;
}

.footer-social a{
display:inline-flex;
align-items:center;
justify-content:center;
width:38px;
height:38px;
background:#1d3557;
text-decoration:none;
border-radius:50%;
color:#fff;
margin-right:8px;
transition:0.3s;
}

.footer-social a:hover {
background:#D4AF37;
color:#000;
}
.footer-social a:hover i{
color:#000;
}

.footer-bottom{
text-align:center;
padding:18px;
margin-top:40px;
background:#172e3b;
font-size:14px;
}

/*Login/Register Form*/

.login-section{
background:#f4f7fb;
padding:80px 0;
min-height:80vh;
display:flex;
align-items:center;
}

.login-box{
background:#fff;
padding:40px;
border-radius:10px;
box-shadow:0 10px 40px rgba(0,0,0,0.1);
}

.login-title{
text-align:center;
margin-bottom:30px;
font-weight:600;
color:#0B1F3A;
}

.form-group{
margin-bottom:20px;
}

.form-group label{
font-weight: 600;
}

.form-control{
height:45px;
border-radius:6px;
border:1px solid #ddd;
}

.form-control:focus{
box-shadow:none;
border-color:#D4AF37;
}

.login-options{
display:flex;
justify-content:space-between;
align-items:center;
font-size:14px;
margin-bottom:20px;
}

.login-options a{
text-decoration:none;
color:#0B1F3A;
}

.login-btn{
width:100%;
background:#D4AF37;
border:none;
padding:12px;
border-radius:3px;
font-weight:600;
transition:0.3s;
}

.login-btn:hover{
background:#0B1F3A;
color:#fff;
}

.login-register{
text-align:center;
margin-top:20px;
font-size:14px;
}

.login-register a{
color:#D4AF37;
font-weight:600;
text-decoration:none;
}





/*breadcrumb*/
.breadcrumb-section {
    position: relative;
    background: url('../img/br.jpg') center/cover no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.breadcrumb-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0, 0, 0, 0.64);
}

.breadcrumb-content{
position:relative;
z-index:2;
}

.breadcrumb-content h1{
font-size:40px;
font-weight:600;
margin-bottom:10px;
}

.breadcrumb-list{
list-style:none;
padding:0;
margin:0;
display:flex;
justify-content:center;
gap:10px;
}

.breadcrumb-list li{
font-size:16px;
}

.breadcrumb-list li a{
color:#D4AF37;
text-decoration:none;
}

.breadcrumb-list li::after{
content: ">";
margin-left:10px;
}

.breadcrumb-list li:last-child::after{
display:none;
}

/*text-box form*/
.select-box{
position:relative;
}

.select-box select{
appearance:none;
-webkit-appearance:none;
-moz-appearance:none;
height:45px;
}

.select-box i{
position:absolute;
right:15px;
top:50%;
transform:translateY(-50%);
pointer-events:none;
color:#555;
}