/*
Theme Name:     Neve
Theme URI:      https://themeisle.com/themes/neve/
Author:         ThemeIsle
Author URI:     https://themeisle.com
Tested up to:   6.2
Requires PHP:   7.0
*/
.color-1{
    color: #d5a34d;
  }
  
.container{
	  max-width:1120px !important;
}

/* Author Section Styles */
.author-section-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.author-section-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-2px);
}

.author-section {
    margin: 20px 0;
    text-align: left;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}

.author-section-link:hover .author-section {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #f0f0f0;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.author-role {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.2;
}

/* Author Archive Page */
.author-posts-list {
    margin: 30px 0;
}

.author-posts-list .posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.author-post-item {
    background: #ffffff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.author-post-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.author-post-item .post-title {
    margin: 0 0 8px 0;
    font-size: 22px;
    line-height: 1.3;
}

.author-post-item .post-link {
    text-decoration: none;
    color: inherit;
}

.author-post-item .post-link:hover {
    text-decoration: underline;
}

.author-post-item .post-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.author-post-item .post-excerpt {
    color: #333;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

  .top-bar .container {
    background-color: #00a5b8; 
    color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0px 4px 12px #00000020;
  }
  
  .admission-info {
    font-size: 14px;
    font-weight: bold;
    width: 50%;
	padding-top:10px;
  }
  
  .contact-info {
    font-size: 14px;
    font-weight: bold;
  }
  
  .btn-download-brochure {
    background-color: #00a5b8;
    color: white;
    font-size: 14px;
    font-weight: bold;
  }
  
  .btn-download-brochure:hover {
    color: white;
    background-color: #007b8a; /* Darker shade on hover */
  }
  
  .btn-download-brochure i {
    margin-right: 5px;
   
  }

  @media (max-width: 468px) {
    .admission-info{
        display: none;
    }
	  .navbar-logo{
		  width:100px;
	  }
	  .navbar-logo img{
		width:100%;
		object-fit:contain;
	  }
}
  
  /* Header */
  .header-section {
    background-color: #ffffff;
    padding: 10px 0;
    font-family: "Mulish", sans-serif;
  }
  
  .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 20px;
      background-color: #fff;
      border-bottom: 1px solid #ddd;
    }

    .navbar-logo img {
      height: 90px;
    }

    .nav-links  {
      display: flex !important;
      align-items: center;
      list-style-type: none;
    }


    .nav-links li {
      position: relative;
      margin-left: 20px;
    }

    .nav-links a {
      text-decoration: none;
      color: #1a1a1a;
      font-weight: bold;
    }

    .apply-button {
      background-color: #c89541;
      color: black;
      padding: 15px 20px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: bold;
      display: flex;
      align-items: center;
		font-size:18px;
		transition: 0.5s ease;
    }

    .apply-button svg {
      margin-right: 8px;
    }

.apply-button:hover{
	background:white;
	border:1px solid #c89541;
}
.apply-button:hover svg{
	transform:rotate(90deg);
}
svg{
	transition:0.5s ease;
}
    /* Dropdown Menu */
    .sub-menu {
      display: none;
      position: absolute;
      top: 100%;
      left:0 ;
      background-color: #1F2E3C;
      list-style-type: none;
      width: 200px;
	  margin:0 !important;
		padding:10px 0;
		border-radius:5px;
    }
	
 .nav-links li .sub-menu li .sub-menu{
	position:absolute;
	left:200px;
	top:0;
	width:300px;
	display:none;
	 border:2px solid black;
}
    .sub-menu li {
      
	    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 0;
    padding-right: 0;
    transition: all ease 0.3s;
    position: relative;
    z-index: 2;
	padding:10px 15px;
	left:-20px;
	width:100% !important;
		
    }

.sub-menu li:hover{
	background-color:#d5a34d;
}

    .sub-menu li a {
      color: white;
	  text-decoration:none;
		font-weight:700;
		font-size:14px;
	 	margin:0;
		padding:0;
    }

    .nav-links li:hover .sub-menu {
      display: block;
    }
	
.nav-links li .sub-menu li:hover .sub-menu{
	display:block;
}

    /* Responsive Styling */
    .hamburger {
      display: none;
      cursor: pointer;
      flex-direction: column;
      gap: 4px;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background-color: #1a1a1a;
    }

    @media (max-width: 1050px) {
      .nav-links {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #fff;
        width: 100%;
        border-top: 1px solid #ddd;
      }

      .nav-links li {
        margin: 10px 0;
        text-align: center;
      }

      .nav-links.active {
        display: flex !important;
		  margin-top:60px;
      }

      .hamburger {
        display: flex;
      }
		
		.apply-button{
			display:none;
		}
		.navbar {
			flex-direction:row !important;
		}
    }

. @media (max-width: 1050px) {
	
		
}

  .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
}

.blog {
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; /* Ensures both image and content stretch to the same height */
}

.blog img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the entire area without distorting */
}

.blog-content {
    background-color: #00a5b8; 
    padding: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1; /* Ensures content takes full available height */
    min-height: 100%; /* Matches content height to the image */
}
.blog-content h2 {
    font-size: 24px;
}

.blog-content p {
    font-size: 16px;
}

.blog-content a {
    text-decoration: none;
    color: #fff;
    background-color: #c28d3c;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    width: 120px;
}

/* Alternating layout for blog posts */
.blog:nth-child(even) .blog-content {
    order: 2;
}
  
.blog:nth-child(even) img {
    order: 1;
}

/* Remove padding and margin to eliminate gaps */
.blog .col-md-6 {
    padding: 0;
    margin: 0;
    display: flex;
}

/* Equal height for both image and content */
.blog img,
.blog-content {
    flex: 1 1 auto;
}

.pagination{
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination a{
    padding: 5px 10px;
    background-color: #c28d3c;
    color: white;
	text-decoration:none;
}

.pagination span{
    padding: 5px 10px;
    background-color:#c28d3c;
    color: white;
	text-decoration:none;
}
 
  


.cta-section {
    position: relative;
    background-image: url('https://topcrewaviation.com/assets/images/bg-2.png'); /* Replace with actual background image URL */
    background-size: cover;
    background-position:20% 70%;
    padding: 40px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    margin-top: 30px;
	margin-bottom:30px;
  
  }
  
  .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
  }
  
  .cta-content {
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-weight: bold;
  }
  
  .cta-content span {
    color: #f08b0c; /* Highlight color for "Top Crew Aviation" */
  }
  
  .cta-button {
    position: relative;
    z-index: 2;
    animation: pulse 2s infinite;
  }
  
  .cta-button a {
    background-color: #c28d3c;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .cta-button a:hover {
    background-color: #d0750a;
  }
  
  @media (max-width: 768px) {
    .cta-section {
        flex-direction: column;
        text-align: center;
    }
  
    .cta-button {
        margin-top: 20px;
    }
  }
  
  @keyframes pulse {
  0% {
    transform: scale(1); /* Original size */
  }
  50% {
    transform: scale(1.4); /* Slightly bigger */
  }
  100% {
    transform: scale(1); /* Back to original size */
  }
  }
  
  @media (max-width: 768px) {
  .cta-section {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-button {
    margin-top: 20px;
  }
  }

  .aviator-image {
    width: 100%;
    border-radius: 10px;
    margin-top: 40px;
  }
  
  .left-section {
    background:white;
    padding: 5px;
  }
  
  .video-container {
    margin-bottom: 0;
    padding: 0;

  }
  
 .left-section .form-container {
    width: 100% !important;
    margin-bottom: 0;
    padding: 0;
  }
  
  .npf_wgts {
    width: 100% !important;
    height: auto;
    border: none;
  }

  
  .stats-section {
    background-image: url('https://media.istockphoto.com/id/538235433/photo/passenger-airplane-landing-at-dusk.jpg?s=612x612&w=0&k=20&c=eIWOTr69oUygRVWRQpadAYbbUKVRMbnmiCM4hRHe0pc=');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-in;
  }

  .stats-section .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
  }

  .stats-section .container {
    max-width: 1000px;
    position: relative;
    z-index: 1;
  }

  .stats-section h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #e0b668;
  }

  .stats-section p {
    font-size: 1rem;
    color: #f8f8f8;
  }

  /* Responsive styling */
  @media (max-width: 768px) {
    .stats-section h2 {
      font-size: 2rem;
    }
    .stats-section .row > div {
      margin-bottom: 20px;
    }
  }


  @media (max-width: 768px) {
    .stats-section{
        display: none;
    }
}
.ask-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e3f2fd;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
  }
  
  .ask-section img {
    max-width: 50%;
    height: auto;
    border-radius: 20px;
  }
  
  .ask-content {
    flex-grow: 1;
    padding: 0 20px;
  }
  
  .ask-content h2 {
    font-size: 2.5rem;
    color: #0d47a1;
    margin-bottom: 20px;
  }
  
  .ask-content button {
    background-color: white;
    color: #0d47a1;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .ask-content button:hover {
    transform: scale(1.1); /* Button grows */
    background-color: #dfe6ed; /* Button background change on hover */
  }
  
  .ask-content button:active {
    transform: scale(0.9); /* Button shrinks slightly on click */
  }
  
  @media (max-width: 468px) {
    .ask-section{
     	flex-direction:column;   
    }
	
	  .ask-section h2{
		  font-size:1.3rem;
		  margin:10px 0;
	  }
}
 /* Footer styling */
  .footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    color: #000;
    font-family: Arial, sans-serif;
}

.footer .logo img {
    width: 150px;
}

.footer h5 {
    color: #00acc1; /* Light teal blue */
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer p,
.footer a {
    color: #000;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.footer .social-icons img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.footer .social-icons img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Contact and Quick Links Section */
.footer .contact-info p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.footer .branch-info {
    margin-bottom: 10px;
}

.footer .btn-contact {
    background-color: #00acc1;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer .btn-contact:hover {
    background-color: #0097a7;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #343a40;
    padding: 10px 0;
    text-align: center;
    color: #ffffff;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
}
 .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        
        /* Popup form styling */
        .popup-form {
            background: #fff;
            padding: 20px;
            border-radius: 5px;
            width: 500px;
            max-width: 90%;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            position: relative;
        }
        
        /* Close button styling */
        .close-popup {
            position: absolute;
            top: 5px;
            right: 5px;
            font-size: 12px;
            cursor: pointer;
            color: #333;
        }
.down-btn{
  position: fixed;
  right: -70px;
  top:50%;
  transform: translateY(-50%) rotate(270deg);
  padding: 10px 20px;
  border: none;
  background-color: #c28d3c;
  color: white;
  font-family: "Mulish", sans-serif;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  z-index: 9999;
}
/* Custom styles for the menu toggle */
.navbar-toggler {
    cursor: pointer;
}

.custom-navbar-collapse {
    display: none; /* Hide by default */
}

/* Show the menu when active */
.custom-navbar-collapse.show {
    display: block;
}

.breadcrumb-container {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}
.breadcrumb-container a {
    color: #007bff;
    text-decoration: none;
}
.breadcrumb-container a:hover {
    text-decoration: underline;
}
.post-title {
    font-size: 35px;
    font-weight: 900;
    color: #333;
    margin-bottom: 10px;
}
.post-meta {
    color: #6c757d;
    font-size: 14px;
}
.post-meta span {
    margin-right: 15px;
}
.post-meta i {
    margin-right: 5px;
    color: #007bff;
}
.aviator-section {
    display: flex;
    margin: 20px 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}
.banner {
    width: 65%;
}
.banner img {
    width: 100%;
    object-fit: cover;
}
.form-container {
    width: 35%;
    padding: 5px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.form-container h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.form-container .npf_wgts {
    width: 100%;
    height: 100%;
}
.toc {
    width: 23%;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
    margin-right:40px;
    height: fit-content;
   
}
.toc h2 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}
.toc ul {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
}
.toc ul li {
    margin: 8px 0;
    color: #333;
}
.toc ul li.active {
    color: #0d6efd;
    font-weight: bold;
}
.toc ul li ul {
    margin-top: 5px;
    padding-left: 20px;
}
.content {
    width: 75%;
    background-color: #ffffff;
    border-radius: 8px;
}

.content .toc{
  display: none;
}
.content h2 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
}
.content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
	text-align:justify;
}
.workshop-details {
    width: 65%;
    
}
.side-form {
    width: 35%;
    padding: 5px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
     height: fit-content;
    margin-left: 20px;
}



.side-form iframe {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}



.registration-form h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}
.workshop-details h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.workshop-details p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
	text-align:justify;
}
.benefits-list {
    list-style: none;
    padding: 0;
    font-size: 16px;
}
.benefits-list li {
    margin: 8px 0;
    position: relative;
    padding-left: 25px;
}
.benefits-list li::before {
    content: '✈️';
    position: absolute;
    left: 0;
    color: #0d6efd;
}
.banner-box {
    background-image: url('https://media.istockphoto.com/id/1324413691/photo/beautiful-sky-with-white-clouds.jpg?s=612x612&w=0&k=20&c=40a8JIoRJ1BAI4XeyEouZl0QbVAJToDBRQn31S3FGzk='); /* Replace with actual image URL */
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
    color: white;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: right;
}
.air-image{
	width:450px;
	position:absolute;
	left:-30px;
	top:0;
}
.banner-box .banner-text h2 {
    font-size: 3.5rem;
    font-weight: bold;
}
.banner-box .banner-text p {
    font-size: 1.25rem;
}
.btn-signup {
    background-color:transparent;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
	border:2px solid white;
}
.btn-signup:hover{
	background-color:white;	
	color:black;
}

@media (max-width: 468px) {
	.banner-box .banner-text{
		width:100%;
		margin:0 auto;
		text-align:center;
		left:200px;
		
	}
	.side-form{
		margin:0;
		padding:0;
	}
  }
.banner-box .banner-text{
	margin-right:100px;
}

.eligibility-section {
    padding: 40px 20px;
}
.left-banner {
 	width:100%;
}
.left-banner div {
  width:100%;
}

.left-banner div img{
	width:100%;
	
}
p{
    width: 100% !important  ;

}


.course-container {
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;

}
.course-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #0d0d61; /* Adjusted based on your preferred color */
}
.course-card {
  border: 1px solid #e0a800;
  border-radius: 8px;
  padding: 1.5rem;
  position: relative;
  background-color: #fff;
}
.course-badge {
  position: absolute;
  top: -0.75rem;
  left: 1rem;
  background-color: #e0a800;
  color: #fff;
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}
.course-duration {
  font-size: 1rem;
  font-weight: bold;
  color: #000;
}
.batch-start, .course-description {
  font-size: 0.875rem;
  color: #333;
}
.highlight-box {
  font-weight: bold;
  border: 1px solid #e0a800;
  padding: 0.5rem;
  border-radius: 4px;
  display: inline-block;
  color: #0d0d61;
  font-size:0.8rem;
}

@media (max-width: 768px) {
  .aviator-section,.container {
      flex-direction: column; /* Stack elements vertically */
  }
  .banner {
      width: 100%; /* Full width for banner */
  }
  .form-container  {
      width: 100% !important; 
      padding: 10px;
      height: 100%;
  }
	.toc{
		display:none;
	}
	.content{
		width:100%;
	}
	.workshop-details{
		width:100%;
	}
	.side-form{
		width:100%;
	}
	.btns{
		flex-direction:column;
		display:flex;
		gap:10px;
	}
	.air-image{
		display:none;
	}
}

.blog-link {
    text-decoration: none;
    color: inherit; /* Inherit text color */
}
.enroll-btn{
	 animation: pulse 2s infinite;
	background-color:#c28d3c;
	outline:none;
}
.j-text{
	text-align:justify;
}

.h-size h2{
	font-size:30px !important;
	font-weight:normal;
}
.h-size h3{
	font-size:22px !important;
}
.h-size h4{
	font-size:18px !important;
}
h-size h5{
	font-size:14px !important;
}
h-size h5{
	font-size:14px !important;
}
.faq-section {
  max-width: 100%;
  margin: 20px auto;
  padding: 20px;
  border-radius: 8px;
}

.faq-section h1 {
  text-align: left;
  color: #1a1a1a;
  font-size: 1.8rem;
  margin-bottom: 20px;

}

.faq-section .line{
  width: 200px;
  height: 2px;
  background-color: #d5a34d;
  margin-bottom: 20px;
}

.faq-section .faq-item {
  margin-bottom: 20px;

}

.faq-section .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 5px;

  box-shadow: 0px 4px 12px rgba(0, 0, 0, .2);
}
.faq-section .faq-item.active .faq-question{
  background-color: #d5a34d;
}

.faq-section .faq-question h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}

.faq-section .faq-question .arrow {
  font-size: 1.2rem;
  transition: transform 0.5s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  padding: 0 15px;
  background-color:white;
}

.faq-section .faq-answer p {
  font-size: 0.95rem;
  color: #555;
  margin: 10px 0;
}

.faq-section .faq-item.active .faq-answer {
  max-height: 150px;
}

.faq-section .faq-item.active .arrow {
  transform: rotate(90deg);
}
/*
Theme Name:     Neve
Theme URI:      https://themeisle.com/themes/neve/
Author:         ThemeIsle
Author URI:     https://themeisle.com
Tested up to:   6.2
Requires PHP:   7.0
*/
.color-1{
    color: #d5a34d;
  }
  
.container{
	  max-width:1120px !important;
}

/* Author Section Styles */
.author-section-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.author-section-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-2px);
}

.author-section {
    margin: 20px 0;
    text-align: left;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}

.author-section-link:hover .author-section {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #f0f0f0;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.author-role {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.2;
}

/* Author Archive Page */
.author-posts-list {
    margin: 30px 0;
}

.author-posts-list .posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.author-post-item {
    background: #ffffff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.author-post-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.author-post-item .post-title {
    margin: 0 0 8px 0;
    font-size: 22px;
    line-height: 1.3;
}

.author-post-item .post-link {
    text-decoration: none;
    color: inherit;
}

.author-post-item .post-link:hover {
    text-decoration: underline;
}

.author-post-item .post-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.author-post-item .post-excerpt {
    color: #333;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

/* Author list with thumbnails */
.author-post-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 16px;
}

.author-post-item .post-thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

@media (max-width: 680px) {
    .author-post-row {
        grid-template-columns: 1fr;
    }
    .author-post-item .post-thumb img {
        height: 200px;
    }
}

/* New Author Page Layout */
.author-page .container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 24px;
}

@media (max-width: 900px) {
    .author-page .container {
        grid-template-columns: 1fr;
    }
}

.author-page .sidebar {
    background: var(--nv-site-bg, #fff);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    padding: 20px;
}

.author-page .profile-header {
    text-align: center;
    margin-bottom: 20px;
}

.author-page .profile-image {
    position: relative;
    width: 96px;
    height: 96px;
    margin: 0 auto 10px auto;
}

.author-page .profile-image img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
}

.author-page .verified-badge {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 22px;
    height: 22px;
    background: #0ea5e9;
    border: 2px solid #fff;
    border-radius: 50%;
}

.author-page .profile-name {
    font-size: 20px;
    font-weight: 700;
}

.author-page .profile-title {
    color: var(--nv-secondary-text, #666);
    margin-bottom: 10px;
}

.author-page .email-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--nv-text-color, #000);
    color: var(--nv-site-bg, #fff);
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
}

.author-page .section {
    margin-top: 20px;
}

.author-page .section h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
}

.author-page .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.author-page .tag {
    display: inline-block;
    background: var(--nv-soft-bg, #f2f2f2);
    color: var(--nv-text-color, #333);
    padding: 6px 10px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 13px;
}

.author-page .social-links {
    display: flex;
    gap: 10px;
}

.author-page .social-link {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--nv-text-color, #000);
    color: var(--nv-site-bg, #fff);
    text-decoration: none;
}

.author-page .main-content {
    background: var(--nv-site-bg, #fff);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    padding: 20px;
}

.author-page .about-section {
    margin-bottom: 24px;
}

.author-page .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .author-page .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .author-page .articles-grid {
        grid-template-columns: 1fr;
    }
}

.author-page .article-card {
    background: var(--nv-site-bg, #fff);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    overflow: hidden;
}

.author-page .article-image {
    height: 180px;
    background: var(--nv-soft-bg, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-page .article-content {
    padding: 14px;
}

.author-page .article-title a {
    text-decoration: none;
    color: inherit;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

  .top-bar .container {
    background-color: #00a5b8; 
    color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0px 4px 12px #00000020;
  }
  
  .admission-info {
    font-size: 14px;
    font-weight: bold;
    width: 50%;
	padding-top:10px;
  }
  
  .contact-info {
    font-size: 14px;
    font-weight: bold;
  }
  
  .btn-download-brochure {
    background-color: #00a5b8;
    color: white;
    font-size: 14px;
    font-weight: bold;
  }
  
  .btn-download-brochure:hover {
    color: white;
    background-color: #007b8a; /* Darker shade on hover */
  }
  
  .btn-download-brochure i {
    margin-right: 5px;
   
  }

  @media (max-width: 468px) {
    .admission-info{
        display: none;
    }
	  .navbar-logo{
		  width:100px;
	  }
	  .navbar-logo img{
		width:100%;
		object-fit:contain;
	  }
}
  
  /* Header */
  .header-section {
    background-color: #ffffff;
    padding: 10px 0;
    font-family: "Mulish", sans-serif;
  }
  
  .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 20px;
      background-color: #fff;
      border-bottom: 1px solid #ddd;
    }

    .navbar-logo img {
      height: 90px;
    }

    .nav-links  {
      display: flex !important;
      align-items: center;
      list-style-type: none;
    }


    .nav-links li {
      position: relative;
      margin-left: 20px;
    }

    .nav-links a {
      text-decoration: none;
      color: #1a1a1a;
      font-weight: bold;
    }

    .apply-button {
      background-color: #c89541;
      color: black;
      padding: 15px 20px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: bold;
      display: flex;
      align-items: center;
		font-size:18px;
		transition: 0.5s ease;
    }

    .apply-button svg {
      margin-right: 8px;
    }

.apply-button:hover{
	background:white;
	border:1px solid #c89541;
}
.apply-button:hover svg{
	transform:rotate(90deg);
}
svg{
	transition:0.5s ease;
}
    /* Dropdown Menu */
    .sub-menu {
      display: none;
      position: absolute;
      top: 100%;
      left:0 ;
      background-color: #1F2E3C;
      list-style-type: none;
      width: 200px;
	  margin:0 !important;
		padding:10px 0;
		border-radius:5px;
    }
	
 .nav-links li .sub-menu li .sub-menu{
	position:absolute;
	left:200px;
	top:0;
	width:300px;
	display:none;
	 border:2px solid black;
}
    .sub-menu li {
      
	    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 0;
    padding-right: 0;
    transition: all ease 0.3s;
    position: relative;
    z-index: 2;
	padding:10px 15px;
	left:-20px;
	width:100% !important;
		
    }

.sub-menu li:hover{
	background-color:#d5a34d;
}

    .sub-menu li a {
      color: white;
	  text-decoration:none;
		font-weight:700;
		font-size:14px;
	 	margin:0;
		padding:0;
    }

    .nav-links li:hover .sub-menu {
      display: block;
    }
	
.nav-links li .sub-menu li:hover .sub-menu{
	display:block;
}

    /* Responsive Styling */
    .hamburger {
      display: none;
      cursor: pointer;
      flex-direction: column;
      gap: 4px;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background-color: #1a1a1a;
    }

    @media (max-width: 1050px) {
      .nav-links {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #fff;
        width: 100%;
        border-top: 1px solid #ddd;
      }

      .nav-links li {
        margin: 10px 0;
        text-align: center;
      }

      .nav-links.active {
        display: flex !important;
		  margin-top:60px;
      }

      .hamburger {
        display: flex;
      }
		
		.apply-button{
			display:none;
		}
		.navbar {
			flex-direction:row !important;
		}
    }

. @media (max-width: 1050px) {
	
		
}

  .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
}

.blog {
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; /* Ensures both image and content stretch to the same height */
}

.blog img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the entire area without distorting */
}

.blog-content {
    background-color: #00a5b8; 
    padding: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1; /* Ensures content takes full available height */
    min-height: 100%; /* Matches content height to the image */
}
.blog-content h2 {
    font-size: 24px;
}

.blog-content p {
    font-size: 16px;
}

.blog-content a {
    text-decoration: none;
    color: #fff;
    background-color: #c28d3c;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    width: 120px;
}

/* Alternating layout for blog posts */
.blog:nth-child(even) .blog-content {
    order: 2;
}
  
.blog:nth-child(even) img {
    order: 1;
}

/* Remove padding and margin to eliminate gaps */
.blog .col-md-6 {
    padding: 0;
    margin: 0;
    display: flex;
}

/* Equal height for both image and content */
.blog img,
.blog-content {
    flex: 1 1 auto;
}

.pagination{
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination a{
    padding: 5px 10px;
    background-color: #c28d3c;
    color: white;
	text-decoration:none;
}

.pagination span{
    padding: 5px 10px;
    background-color:#c28d3c;
    color: white;
	text-decoration:none;
}
 
  


.cta-section {
    position: relative;
    background-image: url('https://topcrewaviation.com/assets/images/bg-2.png'); /* Replace with actual background image URL */
    background-size: cover;
    background-position:20% 70%;
    padding: 40px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    margin-top: 30px;
	margin-bottom:30px;
  
  }
  
  .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
  }
  
  .cta-content {
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-weight: bold;
  }
  
  .cta-content span {
    color: #f08b0c; /* Highlight color for "Top Crew Aviation" */
  }
  
  .cta-button {
    position: relative;
    z-index: 2;
    animation: pulse 2s infinite;
  }
  
  .cta-button a {
    background-color: #c28d3c;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .cta-button a:hover {
    background-color: #d0750a;
  }
  
  @media (max-width: 768px) {
    .cta-section {
        flex-direction: column;
        text-align: center;
    }
  
    .cta-button {
        margin-top: 20px;
    }
  }
  
  @keyframes pulse {
  0% {
    transform: scale(1); /* Original size */
  }
  50% {
    transform: scale(1.4); /* Slightly bigger */
  }
  100% {
    transform: scale(1); /* Back to original size */
  }
  }
  
  @media (max-width: 768px) {
  .cta-section {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-button {
    margin-top: 20px;
  }
  }

  .aviator-image {
    width: 100%;
    border-radius: 10px;
    margin-top: 40px;
  }
  
  .left-section {
    background:white;
    padding: 5px;
  }
  
  .video-container {
    margin-bottom: 0;
    padding: 0;

  }
  
 .left-section .form-container {
    width: 100% !important;
    margin-bottom: 0;
    padding: 0;
  }
  
  .npf_wgts {
    width: 100% !important;
    height: auto;
    border: none;
  }

  
  .stats-section {
    background-image: url('https://media.istockphoto.com/id/538235433/photo/passenger-airplane-landing-at-dusk.jpg?s=612x612&w=0&k=20&c=eIWOTr69oUygRVWRQpadAYbbUKVRMbnmiCM4hRHe0pc=');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-in;
  }

  .stats-section .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
  }

  .stats-section .container {
    max-width: 1000px;
    position: relative;
    z-index: 1;
  }

  .stats-section h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #e0b668;
  }

  .stats-section p {
    font-size: 1rem;
    color: #f8f8f8;
  }

  /* Responsive styling */
  @media (max-width: 768px) {
    .stats-section h2 {
      font-size: 2rem;
    }
    .stats-section .row > div {
      margin-bottom: 20px;
    }
  }


  @media (max-width: 768px) {
    .stats-section{
        display: none;
    }
}
.ask-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e3f2fd;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
  }
  
  .ask-section img {
    max-width: 50%;
    height: auto;
    border-radius: 20px;
  }
  
  .ask-content {
    flex-grow: 1;
    padding: 0 20px;
  }
  
  .ask-content h2 {
    font-size: 2.5rem;
    color: #0d47a1;
    margin-bottom: 20px;
  }
  
  .ask-content button {
    background-color: white;
    color: #0d47a1;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .ask-content button:hover {
    transform: scale(1.1); /* Button grows */
    background-color: #dfe6ed; /* Button background change on hover */
  }
  
  .ask-content button:active {
    transform: scale(0.9); /* Button shrinks slightly on click */
  }
  
  @media (max-width: 468px) {
    .ask-section{
     	flex-direction:column;   
    }
	
	  .ask-section h2{
		  font-size:1.3rem;
		  margin:10px 0;
	  }
}
 /* Footer styling */
  .footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    color: #000;
    font-family: Arial, sans-serif;
}

.footer .logo img {
    width: 150px;
}

.footer h5 {
    color: #00acc1; /* Light teal blue */
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer p,
.footer a {
    color: #000;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.footer .social-icons img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.footer .social-icons img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Contact and Quick Links Section */
.footer .contact-info p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.footer .branch-info {
    margin-bottom: 10px;
}

.footer .btn-contact {
    background-color: #00acc1;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer .btn-contact:hover {
    background-color: #0097a7;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #343a40;
    padding: 10px 0;
    text-align: center;
    color: #ffffff;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
}
 .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        
        /* Popup form styling */
        .popup-form {
            background: #fff;
            padding: 20px;
            border-radius: 5px;
            width: 500px;
            max-width: 90%;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            position: relative;
        }
        
        /* Close button styling */
        .close-popup {
            position: absolute;
            top: 5px;
            right: 5px;
            font-size: 12px;
            cursor: pointer;
            color: #333;
        }
.down-btn{
  position: fixed;
  right: -70px;
  top:50%;
  transform: translateY(-50%) rotate(270deg);
  padding: 10px 20px;
  border: none;
  background-color: #c28d3c;
  color: white;
  font-family: "Mulish", sans-serif;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  z-index: 9999;
}
/* Custom styles for the menu toggle */
.navbar-toggler {
    cursor: pointer;
}

.custom-navbar-collapse {
    display: none; /* Hide by default */
}

/* Show the menu when active */
.custom-navbar-collapse.show {
    display: block;
}

.breadcrumb-container {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}
.breadcrumb-container a {
    color: #007bff;
    text-decoration: none;
}
.breadcrumb-container a:hover {
    text-decoration: underline;
}
.post-title {
    font-size: 35px;
    font-weight: 900;
    color: #333;
    margin-bottom: 10px;
}
.post-meta {
    color: #6c757d;
    font-size: 14px;
}
.post-meta span {
    margin-right: 15px;
}
.post-meta i {
    margin-right: 5px;
    color: #007bff;
}
.aviator-section {
    display: flex;
    margin: 20px 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}
.banner {
    width: 65%;
}
.banner img {
    width: 100%;
    object-fit: cover;
}
.form-container {
    width: 35%;
    padding: 5px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.form-container h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.form-container .npf_wgts {
    width: 100%;
    height: 100%;
}
.toc {
    width: 23%;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
    margin-right:40px;
    height: fit-content;
   
}
.toc h2 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}
.toc ul {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
}
.toc ul li {
    margin: 8px 0;
    color: #333;
}
.toc ul li.active {
    color: #0d6efd;
    font-weight: bold;
}
.toc ul li ul {
    margin-top: 5px;
    padding-left: 20px;
}
.content {
    width: 75%;
    background-color: #ffffff;
    border-radius: 8px;
}

.content .toc{
  display: none;
}
.content h2 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
}
.content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
	text-align:justify;
}
.workshop-details {
    width: 65%;
    
}
.side-form {
    width: 35%;
    padding: 5px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
     height: fit-content;
    margin-left: 20px;
}



.side-form iframe {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}



.registration-form h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}
.workshop-details h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.workshop-details p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
	text-align:justify;
}
.benefits-list {
    list-style: none;
    padding: 0;
    font-size: 16px;
}
.benefits-list li {
    margin: 8px 0;
    position: relative;
    padding-left: 25px;
}
.benefits-list li::before {
    content: '✈️';
    position: absolute;
    left: 0;
    color: #0d6efd;
}
.banner-box {
    background-image: url('https://media.istockphoto.com/id/1324413691/photo/beautiful-sky-with-white-clouds.jpg?s=612x612&w=0&k=20&c=40a8JIoRJ1BAI4XeyEouZl0QbVAJToDBRQn31S3FGzk='); /* Replace with actual image URL */
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
    color: white;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: right;
}
.air-image{
	width:450px;
	position:absolute;
	left:-30px;
	top:0;
}
.banner-box .banner-text h2 {
    font-size: 3.5rem;
    font-weight: bold;
}
.banner-box .banner-text p {
    font-size: 1.25rem;
}
.btn-signup {
    background-color:transparent;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
	border:2px solid white;
}
.btn-signup:hover{
	background-color:white;	
	color:black;
}

@media (max-width: 468px) {
	.banner-box .banner-text{
		width:100%;
		margin:0 auto;
		text-align:center;
		left:200px;
		
	}
	.side-form{
		margin:0;
		padding:0;
	}
  }
.banner-box .banner-text{
	margin-right:100px;
}

.eligibility-section {
    padding: 40px 20px;
}
.left-banner {
 	width:100%;
}
.left-banner div {
  width:100%;
}

.left-banner div img{
	width:100%;
	
}
p{
    width: 100% !important  ;

}


.course-container {
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;

}
.course-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #0d0d61; /* Adjusted based on your preferred color */
}
.course-card {
  border: 1px solid #e0a800;
  border-radius: 8px;
  padding: 1.5rem;
  position: relative;
  background-color: #fff;
}
.course-badge {
  position: absolute;
  top: -0.75rem;
  left: 1rem;
  background-color: #e0a800;
  color: #fff;
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}
.course-duration {
  font-size: 1rem;
  font-weight: bold;
  color: #000;
}
.batch-start, .course-description {
  font-size: 0.875rem;
  color: #333;
}
.highlight-box {
  font-weight: bold;
  border: 1px solid #e0a800;
  padding: 0.5rem;
  border-radius: 4px;
  display: inline-block;
  color: #0d0d61;
  font-size:0.8rem;
}

@media (max-width: 768px) {
  .aviator-section,.container {
      flex-direction: column; /* Stack elements vertically */
  }
  .banner {
      width: 100%; /* Full width for banner */
  }
  .form-container  {
      width: 100% !important; 
      padding: 10px;
      height: 100%;
  }
	.toc{
		display:none;
	}
	.content{
		width:100%;
	}
	.workshop-details{
		width:100%;
	}
	.side-form{
		width:100%;
	}
	.btns{
		flex-direction:column;
		display:flex;
		gap:10px;
	}
	.air-image{
		display:none;
	}
}

.blog-link {
    text-decoration: none;
    color: inherit; /* Inherit text color */
}
.enroll-btn{
	 animation: pulse 2s infinite;
	background-color:#c28d3c;
	outline:none;
}
.j-text{
	text-align:justify;
}

.h-size h2{
	font-size:30px !important;
	font-weight:normal;
}
.h-size h3{
	font-size:22px !important;
}
.h-size h4{
	font-size:18px !important;
}
h-size h5{
	font-size:14px !important;
}
h-size h5{
	font-size:14px !important;
}
.faq-section {
  max-width: 100%;
  margin: 20px auto;
  padding: 20px;
  border-radius: 8px;
}

.faq-section h1 {
  text-align: left;
  color: #1a1a1a;
  font-size: 1.8rem;
  margin-bottom: 20px;

}

.faq-section .line{
  width: 200px;
  height: 2px;
  background-color: #d5a34d;
  margin-bottom: 20px;
}

.faq-section .faq-item {
  margin-bottom: 20px;

}

.faq-section .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 5px;

  box-shadow: 0px 4px 12px rgba(0, 0, 0, .2);
}
.faq-section .faq-item.active .faq-question{
  background-color: #d5a34d;
}

.faq-section .faq-question h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}

.faq-section .faq-question .arrow {
  font-size: 1.2rem;
  transition: transform 0.5s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  padding: 0 15px;
  background-color:white;
}

.faq-section .faq-answer p {
  font-size: 0.95rem;
  color: #555;
  margin: 10px 0;
}

.faq-section .faq-item.active .faq-answer {
  max-height: 150px;
}

.faq-section .faq-item.active .arrow {
  transform: rotate(90deg);
}
