@import url("https://fonts.googleapis.com/css?family=Permanent+Marker&display=swap");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Prompt', sans-serif;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(198, 197, 197, 0.7),rgba(31, 31, 31, 0.7)),url("https://www.fanaticaviation.com/images/1-Cover.jpg");
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

/*-------------- Cover -----------------*/
nav{
    display: flex;
    padding: 2% 4%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 200px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #ebedf0;
    display: block;
    margin: auto;
    transition: .5s;    
}
.nav-links ul li:hover::after{
    width: 100%;
}
nav .fa{
    display: none;
}

.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-size: 58px;
}
.text-box p{
    margin: 20px 0 40px;
    font-size: 16px;
    color: #fff;
    letter-spacing: 2px;
}
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 16px;
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: 1s;
    border-radius: 10px;
}

.hero-btn:hover{
    border: 1px solid #135ba8;
    background: #135ba8;
}


@media(max-width: 700px)
{
   .nav-links ul li
    {
        display: block;
    }
    .nav-links
    {
        position: fixed;
        background: #135ba8;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
    }
    .nav-links ul{
        padding: 30px;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer; 
    }
    .text-box h1{
        font-size: 20px;
    }
}
/*-------------- End of Cover ---------------*/

/*----------- End of About us --------------*/
.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; /* Center vertically and horizontally */
    background: #154375;
  }
  
  .background-image {
    /* Use a background image instead of a video */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.fanaticaviation.com/images/2-Aboutus.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    opacity: 0.7; /* Adjust opacity as needed */
  }
  
  .home .content {
    z-index: 888;
    color: #fff;
    width: 70%;
    text-align: center; /* Center-align text and button */
  }
  
  .home .content.active {
    display: block;
  }
  
  .home .content h1 {
    font-size: 2.5em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 75px;
    margin-bottom: 40px;
  }

  .home .content h1 span {
    font-size: 1.4em;
    font-weight: 800;
  }
  
  .home .content h3 {
    font-size: 1.3rem;
    letter-spacing: 0.7px;
  }

  .home .content p {
    margin-bottom: 65px;
    color: white;
    font-size: 1.12rem;
    letter-spacing: 1px;
    line-height: 25px;
  }
  
  .home .content a {
    background: #fff;
    padding: 15px 35px;
    color: #135ba8;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 10px;
  }
  
  .home .content a:hover {
    border: 1px solid #135ba8;
    background: #135ba8;
    color: white;
    transform: scale(2.5);
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
    transform: translate(0, -10px);
  }
  
  .home .media-icons {
    z-index: 888;
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;
  }
  
  .home .media-icons a {
    color: #fff;
    font-size: 1.6em;
    transition: 0.3s ease;
  }
  
  .home .media-icons a:not(:last-child) {
    margin-bottom: 20px;
  }
  
  .home .media-icons a:hover {
    transform: scale(1.3);
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
    transform: translate(0, -10px);
  }
  
  .slider-navigation{
    z-index: 888;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    margin-bottom: 12px;
  }
  
  .slider-navigation .nav-btn{
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
  }
  
  
  @media (max-width: 1040px){
    header{
      padding: 12px 20px;
    }
  
    section{
      padding: 100px 20px;
    }
  
    .home .media-icons{
      right: 15px;
    }
  
    header .navigation{
      display: none;
    }
  
    header .navigation.active{
      position: fixed;
      width: 100%;
      height: 100vh;
      top: 0;
      left: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      background: rgba(1, 1, 1, 0.5);
    }
  
    header .navigation .navigation-items a{
      color: #222;
      font-size: 1.2em;
      margin: 20px;
    }
  
    header .navigation .navigation-items a:before{
      background: #222;
      height: 5px;
    }
  
    header .navigation.active .navigation-items{
      background: #fff;
      width: 600px;
      max-width: 600px;
      margin: 20px;
      padding: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-radius: 5px;
      box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
    }

    .home .content h1{
        font-size: 2rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 50px;
        margin-bottom: 40px;
      }

    .home .content h3 {
        font-size: 1rem;
        letter-spacing: 0.7px;
      }
    
    .home .content p {
        margin-bottom: 40px;
        color: white;
        font-size: 1rem;
        letter-spacing: 1px;
        line-height: 25px;
      }
  
    .menu-btn{
      background: url(menu.png)no-repeat;
      background-size: 30px;
      background-position: center;
      width: 40px;
      height: 40px;
      cursor: pointer;
      transition: 0.3s ease;
    }
  
    .menu-btn.active{
      z-index: 999;
      background: url(close.png)no-repeat;
      background-size: 25px;
      background-position: center;
      transition: 0.3s ease;
    }
  }
  
  @media (max-width: 560px){
    .home .content h1{
      font-size: 1.5em;
      line-height: 30px;
    }
  }
/*---------End of About us ----------*/

/*---------- Custom Interiors --------*/
.course{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 60px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.7),rgba(60, 60, 60, 0.913)), url(images/3-Custom_detail.jpg); /* Add your background image path here */
    background-position: center;
    position: relative;
    background-size: cover;
}
h1{
    font-size: 38px;
    font-weight: 600;
}
p{
    color: grey;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    padding: 10px;
}
#h3custom {
    color: white;
}
#customp {
    color: white;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    padding: 10px;
    text-align: center;
}
#customparagraph {
    color: black;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;  
}
  
.course-col{
    flex-basis: 31%;
    background: #2d2d2d98;
    margin-left: 3%;
    margin-right: 3%;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 10px;
    box-sizing: border-box;
    transition: .5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 8px 0;
}
.course-col:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
    transform: translate(0, -10px);
}

@media (max-width:700px){
    .course{
        margin: 0 auto;
    }
    .row{
        flex-direction: column;
    }
    h1{
        font-size: 34px;
        font-weight: 600;
    }
    .course-col{
        margin-bottom: 3%;
    }
} 
/*-------End of Custom Interiors ------*/

/*----------- testimonials -----------*/

.testimonials{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 60px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.7),rgba(60, 60, 60, 0.913)), url('images/4-Product detail.jpg'); /* Add your background image path here */
    background-position: center;
    position: relative;
    background-size: cover;
}

.testimonial-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    margin-left: 3%;
    margin-right: 3%;
    text-align: left;
    background: #2d2d2d98;
    padding: 25px;
    cursor: pointer;
    display: flex;
}
.testimonial-col:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
    transform: translate(0, -10px);
}

.testimonial-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}
.testimonial-col h3{
    padding: 0;
    color: white;
}
.testimonial-col p{
    padding: 0;
    color: white;
}
.testimonial-col h3{
    margin-top: 15px;
    text-align: left;
}
.testimonial-col .fa{
    color: #135ba8;
}

@media(max-width:700px){
    
    .testimonial-col img{
        margin-left: 0px;
        margin-right: 15px;
    }
    .testimonial-col{
        flex-basis: 44%;
        border-radius: 10px;
        margin-bottom: 5%;
        text-align: left;
        background: #3b96ff98;
        padding: 25px;
        cursor: pointer;
        display: flex;
    }
}
/*--------- End of testimonials ---------*/


/*---------------- campus ----------------*/

.campus{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.campus-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.campus-col img{
    width: 100%;
}

.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    transition: .5s;
}
.layer:hover{
    background: rgba(226, 0, 0, 0.7);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: .5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}

/*-------------- Facilities ----------------*/

.facility{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.facility-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}
.facility-col img{
    width: 100%;
    border-radius: 10px;
}
.facility-col p{
    padding: 0;
}
.facility-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}

/*-------- Call To Action ----------*/


.cta{
    margin: 50px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/5-Contact\ us\ -\ Windows.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1{
    color: #fff;
    margin-bottom: 20px; 
    padding: 0; 
    font-size: 30px;
}

@media(max-width:700px){
    .cta h1{
        font-size: 20px;
    }
}

/*--------------Footer---------------*/

.footer{
    width: 100%;
    text-align: center;
    padding: 10px 0;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 5px;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.icons .fa{
    color: #135ba8;
    margin: 0 13px;
    cursor: pointer;
    padding: 13px 5px;
    border-radius: 10px;
}
.fa-heart-o{
    color: #135ba8;
}
.icons .fa:hover {
    transform: scale(1.3);
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
    transform: translate(0, -10px);
  }

@media(max-width:700px){
    .footer p{
        font-size: 14px;
    }
}


/*--------------- Img 2 box --------------*/
.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/background.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1{
    margin-top: 100px;
}

.about-us{
    width: 100%;
    margin:auto;
    padding-top: 0px;
    padding-bottom: 60px;
    padding-left: 10%;
    padding-right: 10%;
    display: flex;
    background-image: linear-gradient(rgba(239, 239, 239, 0.7),rgba(26, 26, 26, 0.7)), url(images/3-Custom_detail.jpg); /* Add your background image path here */
    background-position: center;
    background-size: 100% auto; /
}

.about-col{
    flex-basis: 48%;
    padding: 2px 2px;
}
.about-col img {
    position: relative;
    transition: all 0.3s;
    border-radius: 15px;
    cursor: pointer;
}

.about-col img:hover {
    transform: translate(0, -10px);
    box-shadow: 3px 10px 20px rgba(0, 0, 0, 0.3);
}

.about-col h1{
    padding-top: 0;
}
.about-col p{
    padding: 15px 0 25px;
}

.hero-btn.red-btn{
    border: 1px solid #f44336;
    background: transparent;
    color: #f44336;
}
.hero-btn.red-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    color: #fff;
}
.hero-btn.red-btn::after{
    background: #f44336;
}
.hero-btn.red-btn::before{
    background: #f44336;
}
.content-image{
    flex-basis: 50%;
}
.about-col img{
    width: 100%;
}

@media (max-width:700px){
    .about-us{
        padding-top: 20px;
    }
    .about-col img {
        margin-bottom: 10px;
        margin-top: 10px;
    }
} 
/*------------End of Img 2 box --------------*/

/*---------- Blog Page -------------*/

.blog-content{
    width: 80%;
    margin: auto;
    padding: 60px 0;
}
.blog-left{
    flex-basis: 65%;
}
.blog-right{
    flex-basis: 32%;
}
.blog-left img{
    width: 100%;
}
.blog-left h2{
    color: #222;
    font-weight: 600;
    margin: 30px 0;
}
.blog-left p{
    color: #999;
    padding: 0;
}

.blog-right h3{
    background: #f44336;
    color: #fff;
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
}
.blog-right div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    padding: 8px;
    box-sizing: border-box;
}

.comment-box{
    border: 1px solid #ccc;
    margin: 50px 0;
    padding: 10px 20px;
}

.comment-box h3{
    text-align: left;
}
.comment-form input, .comment-form textarea{
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0;
}
.comment-form button{
    margin: 10px 0;
}


@media (max-width:700px){
    .sub-header h1{
        font-size: 24px;
    }
} 


/*------- Contact Us Page ------------*/

.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;
}

.contact-us{
    width: 80%;
    margin: auto;
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa{
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}
    
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
    
}
.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
}

.footer-link{
    text-decoration: none;
    color: #777;
}













