      <style type="text/css">
a{



   text-decoration: none !important;
}

h3{



   text-transform: capitalize;
}
     

     .text-dark-blue{


 color: var(--dark-blue-color);

     }
.heading{
font-size: 3rem;
line-height: 1.4;
font-weight: bold;
 color: var(--dark-blue-color);
}
.sub-heading{
   color: var(--light-blue-color);
font-size: 16px;
line-height: 1.2;
font-weight: bold;
}
@media (max-width: 768px){
.heading{
font-size: 2rem;
margin-bottom: 0;
}
.sub-heading{
font-size: 18px;
line-height: 1.2;
}
}
@media (max-width: 480px){
.main-heading{
font-size: 22px;
}
.sub-heading{
font-size: 15px;
line-height: 1.2;
}
}
.box { background: #007bff; color: white; text-align: center; padding: 50px; margin: 20px; font-size: 24px; border-radius: 10px; }
/*.animate { opacity: 0; transition: all 1s ease-in-out; }*/
/*.fade-in { transform: translateY(50px); } .fade-in.visible { opacity: 1; transform: translateY(0); }*/
/*.slide-in-left { transform: translateX(-100px); } .slide-in-left.visible { transform: translateX(0); opacity: 1; }*/
/*.slide-in-right { transform: translateX(100px); } .slide-in-right.visible { transform: translateX(0); opacity: 1; }*/
/*.slide-in-top { transform: translateY(-100px); } .slide-in-top.visible { transform: translateY(0); opacity: 1; }*/
/*.slide-in-bottom { transform: translateY(100px); } .slide-in-bottom.visible { transform: translateY(0); opacity: 1; }*/
/*.zoom-in { transform: scale(0.5); } .zoom-in.visible { transform: scale(1); opacity: 1; }*/
/*.rotate-in { transform: rotate(-180deg); } .rotate-in.visible { transform: rotate(0); opacity: 1; }*/
/*.flip-in-x { transform: rotateX(90deg); } .flip-in-x.visible { transform: rotateX(0); opacity: 1; }*/
/*.flip-in-y { transform: rotateY(90deg); } .flip-in-y.visible { transform: rotateY(0); opacity: 1; }*/
:root {
--dark-blue-color: #001742;
--light-blue-color:  #0f52ba;
--dark-color: #2c3e50;
--light-color: #ecf0f1;
--yellow-color: #ffd523;
}
*{
font-family: Arial, Helvetica, sans-serif;
}
hr {
width: 50px; /* Set desired width for the line */
height: 3px; /* Adjust thickness */
background-color: #f99b3f; /* Set line color */
border: none;
margin: 0 auto 10px auto; /* Center it above heading */
}
.sh{
color:#000C66;
}
*{
font-family: Arial, Helvetica, sans-serif;
}
.first-para{
padding-left:50px;
padding-right:50px;
pointer-events: none;
font-size: large;
color: black;
}
.sec-para{
font-size: large;
}
.sec-para:hover{
color: blue;
}
.top-bar{
background:transparent; 
height: 40px; 
/*border-bottom:0.5px solid white ;*/
}
@media (max-width: 576px) {
}
.top-bar{
display: none;
}
.gap{
background:linear-gradient(rgba(58, 58, 58, 0.9), rgba(58, 58, 58, 0.9)); 
width: 100px;
}
@media (max-width: 576px) {
.gap{
display: none;
}
}
.main-nav{
/*padding-bottom: 11px;*/
}
/*   for headings   */
h3 {
line-height: 1.4; /* Adjust line height for better readability */
}
@media (max-width: 576px) {
h3 {
font-size: 1rem; /* Fine-tune font size for extra small screens */
}
}
.inner-heading{
color: #00a5e8;
}
.animated-link {
color: #000; /* Default link color */
text-decoration: none;
position: relative;
display: inline-block;
padding-bottom: 5px; /* Space for the underline animation */
text-decoration:none;
}
.animated-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px; /* Thickness of the underline */
background-color: #007bff; /* Color of the underline */
transition: width 0.3s ease-in-out; /* Smooth animation */
}
.animated-link:hover::after {
width: 100%; /* Fully underline on hover */
text-decoration:none;
}
.footer-blogs a{
font-size: large;
font-weight: bold;
text-decoration: none;
text-transform: uppercase;
}
/*#080c11 dark
#0f52ba light blue
#001742 dark blue 
#ffd523 yelow*/
/* Hero Section */

 


 /* Hero Section */
        .hero-section {
            position: relative;
            height: 700px;
            width: 100%;
            overflow: hidden;
            color: white;
            clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%);
        }

        /* Black Overlay */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6); /* Black overlay with 60% opacity */
            z-index: 2;
        }

        /* Swiper Slider */
        .swiper {
            width: 100%;
            height: 100%;
        }

        .swiper-slide {
            background-size: cover;
            background-position: center;
        }

        /* Hero Content */
        .hero-text {
            position: absolute;
            z-index: 3;
            text-align: center;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
        }

        .hero-text h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        /* Overlapping Image */
        .overlap-image-3 {
            position: absolute;
            bottom: -50px; /* Adjust position */
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: auto;
            z-index: 4; /* Above the overlay */
        }

        /* Buttons */
        .btn-light-blue {
            background-color: #3498db;
            color: white;
            
            padding: 10px 30px;
            font-weight: 600;
            border: none;
        }

        .btn-light-blue:hover {
            background-color: #e67e22;
        }

        .btn-outline-light {
            border: 2px solid white;
           
            padding: 10px 30px;
            font-weight: 600;
            color: white;
        }

        .btn-outline-light:hover {
            background-color: white;
            color: black;
        }

 
  

      

      
 

 .hover-yellow-text :hover {

    color:  ;



 }
 
     






.nav-link {
color: var(--light-color) !important;
font-weight: bold !important;
padding: 0.5rem 1rem !important;
text-transform: capitalize !important;
font-size: 16px !important;
}
.nav-link-2 {
color: var(--yellow-color) !important;
font-weight: bold !important;
padding: 0.5rem 1rem !important;
text-transform: capitalize !important;
font-size: 16px !important;
}
.nav-link  .active-link{
color: var(--yellow-color) !important;
}
html.sticky-header-active #header .header-body{
box-shadow:  0 0 0px rgba(0,0,0,.5) !important;
}
.yellow-text{
color: var(--yellow-color);
}
/*.section-title {
color: #FF8C00;
text-align: center;
font-weight: bold;
margin-bottom: 10px;
font-size: 1.8rem;
}
.section-subtitle {
color: #20B2FF;
text-align: center;
margin-bottom: 30px;
font-size: 1.2rem;
}*/
.service-box {
background-color: #20B2FF;
color: white;
padding: 20px;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}

.yellow-bg{


background: var(--yellow-color) !important;
color: var(--dark-blue-color) !important;

}

.yellow-bg p h5{


 
color: var(--dark-blue-color) !important;
font-weight: bold;

}


.factory-icon {
width: 80px;
height: 80px;
margin-bottom: 15px;
filter: brightness(0) invert(1);
}
.service-text {
font-size: 1rem;
line-height: 1.5;
}
.middle-box {
background-color: rgba(0, 0, 0, 0.6);
background-blend-mode: overlay;
background-image: url('img/card-image.jpg');
background-size: cover;
background-position: center;
}
.service-box-alt{
background:var(--dark-blue-color);
height: 80%;
margin-top: 10%;
/* Scale text down for smaller screens */

}

@media (max-width: 768px) {
.service-box ,.service-box-alt {
height:80%;
margin-top:5%;


}

.factory-icon {
width: 80px;
height: 80px;
margin-top: 15px;
filter: brightness(0) invert(1);
}
.hero-section h1 {
font-size: 2.5rem;
line-height: 1;
font-weight: 700;
margin-bottom: 1rem;
color: var(--light-color);
}
.top-bar{
display: none;
}
.hero-section {
background: linear-gradient(rgba(58, 58, 58, 0.9), rgba(58, 58, 58, 0.9)) , url('img/img-2.jpg');
background-size: cover;
background-position: center;
padding: 20px 0;
color: white;
text-align: center;
/*clip-path: polygon(0 0, 100% 0, 100% 66%, 50% 72%, 0 66%);*/
}
.hero-text {
margin-bottom: 4rem;
}



}
 
@media (max-width: 380px) {
.hero-section h1 {
font-size: 2rem;
line-height: 1;
font-weight: 700;
margin-bottom: 1rem;
color: var(--light-color);
}
.top-bar{
display: none;
}
 
.hero-text {
margin-bottom: 6rem;
}
}
 


 .aviation-section {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 50px 10%;
        }



        .image-container {
            position: relative;
            max-width: 350px;
        }

        .background-box {
            width: 90%;
            height: 100%;
            background-color: #001742;
            position: absolute;
            left: -10%;
            top: 10%;
            z-index: 0;
            border-radius: 8px;
        }

        .main-image {
            width: 100%;
            position: relative;
            z-index: 1;
            border-radius: 8px;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: blue;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            cursor: pointer;
               box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .play-button::before {
            content: "";
            border-left: 12px solid white;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
        }

        /*.text-content {
            max-width: 500px;
            margin-left: 40px;
        }*/

         
  

        .features {
            list-style: none;
            padding: 0;
        }

        .features li {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #002a6a;
            font-weight: bold;
        }

        .features li::before {
            content: "✔";
            color: #00358f;
            font-size: 1.2rem;
            margin-right: 10px;
        }

        .about-btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #00358f;
            color: white;
            font-weight: bold;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 15px;
        }



         .stats-container {
              position: relative;
            height: 400px;
            width: 100%;
            background: url('img/earth.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }     
        
           .overlap-image {
            position: absolute;
            top: -7px; /* Adjusts overlap */
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height:200px;
            z-index: 9999; /* Ensures image is on top */
        }

            .overlap-image-2 {
            position: absolute;
            top: 50%; /* Adjusts overlap */
         
            transform: translateX(-50%);
            width: 100%;
            height:200px;
            z-index: 9999; /* Ensures image is on top */
          transform: rotate(360deg);
        }
        .earth-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
         
            background-image: url('img/earth.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.7;
            z-index: 1;
        }
        
        .stats-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }
        
        .stats-row {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            padding: 0 5%;
        }
        
        .stat-item {
            flex: 0 0 auto;
            margin: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .stat-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 15px;
            filter: invert(80%) sepia(65%) saturate(1000%) hue-rotate(16deg) brightness(104%) contrast(102%);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }
        
        .stat-plus {
            color: #FFD700;
            font-size: 1.5rem;
            margin-left: 5px;
        }
        
        .stat-label {
            font-size: 1rem;
        }

        
        
        @media (max-width: 768px) {
            .stats-container {
                padding: 60px 0;
                clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
            }
            
            .stat-item {
                flex: 0 0 40%;
                margin: 15px 0;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .stat-item {
                flex: 0 0 80%;
                margin: 10px 0;
            }
            
            .stats-container {
                padding: 40px 0;
                clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
            }


           .aviation-section .right-side{


            margin-top: 15%;




           }
        }




.about-container{

height:100%;



}
























.training-section {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 80px 0;
            background-color: #001a40;
            clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
        }
        
        .section-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 15px;
            /* background-color: #002a6a; */
        }
        
        .row-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .text-column {
            flex: 0 0 50%;
            padding-right: 30px;
        }
        
        .image-column {
            flex: 0 0 50%;
            position: relative;
        }
        
        .section-subtitle {
            color: #FFD700;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .section-title {
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .section-text {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .learn-more-btn {
            background-color: #1E6BC2;
            color: white;
            padding: 10px 30px;
            font-weight: bold;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .learn-more-btn:hover {
            background-color: #1857a4;
        }
        
        .main-image {
            width: 100%;
            border-radius: 5px;
            position: relative;
            z-index: 2;
        }
        
        .secondary-image {
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 60%;
            border-radius: 5px;
            z-index: 3;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .activate-windows {
            position: absolute;
            bottom: 30px;
            right: 30px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.8rem;
            text-align: right;
        }
        
        @media (max-width: 992px) {
            .training-section {
                padding: 60px 0;
            }
            
            .text-column, .image-column {
                flex: 0 0 100%;
                padding-right: 0;
            }
            
            .text-column {
                margin-bottom: 40px;
            }
            
            .secondary-image {
                bottom: -30px;
                left: 0;
            }
        }
        
        @media (max-width: 576px) {
            .training-section {
                padding: 40px 0;
                clip-path: polygon(0 0, 100% 2%, 100% 98%, 0 100%);
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .secondary-image {
                width: 70%;
                bottom: -20px;
                left: 0;
            }
        }


        
        .pricing-section {
            text-align: center;
            padding: 60px 0;
        }

        .pricing-section h2 {
            color: #081A4F;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .pricing-section p {
            color: #666;
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .pricing-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            text-align: left;
            transition: transform 0.3s ease-in-out;
        }

        .pricing-card:hover {
            transform: scale(1.05);
        }

        .pricing-card.featured {
            background: #081A4F;
            color: white;
        }

        .pricing-card.featured h3 {
            color: white;
        }

        .pricing-card h3 {
            font-size: 20px;
            font-weight: bold;
            color: #081A4F;
        }

        .pricing-card .price {
            font-size: 2rem;
            font-weight: bold;
            color: #003399;
        }

        .pricing-card.featured .price {
            color: #FFB800;
        }

        .pricing-card .price small {
            font-size: 1rem;
            color: #666;
        }

        .pricing-card.featured .price small {
            color: #ddd;
        }

        .pricing-card ul {
            padding: 0;
            list-style: none;
            margin: 20px 0;
        }

        .pricing-card ul li {
            margin-bottom: 10px;
            font-size: 1rem;
            color: #333;
        }

        .pricing-card.featured ul li {
            color: white;
        }

        .pricing-card ul li i {
            color: #003399;
            margin-right: 8px;
        }

        .pricing-card.featured ul li i {
            color: #FFB800;
        }

        .btn-primary {
            background: #003399;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: bold;
        }

        .pricing-card.featured .btn-primary {
            background: white;
            color: #081A4F;
        }

        .btn-primary:hover {
            background: #002266;
        }









 
        .blog-title {
            color: #0056b3;
            font-size: 1rem;
            text-align: center;
            margin-bottom: 10px;
        }
        .main-title {
            color: #002147;
            font-size: 2rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 20px;
        }
        .blog-desc {
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            font-size: 0.9rem;
        }
        .blog-card {
            margin-bottom: 30px;
            height: 100%;
            border: none;
            position: relative;
        }
        .blog-img {
            height: 300px;
            width:300px;
            object-fit: cover;
        }
        .blog-category {
            color: #0056b3;
            font-size: 0.8rem;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .blog-title-card {
            font-weight: bold;
            color: #002147;
            margin-bottom: 5px;
            font-size: 1.1rem;
            line-height: 1.3;
        }
        .blog-date {
            color: #666;
            font-size: 0.8rem;
            margin-bottom: 10px;
        }
        .blog-excerpt {
            color: #666;
            font-size: 0.85rem;
            margin-bottom: 15px;
        }
        .read-more {
            color: #0056b3;
            font-size: 0.9rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        .read-more i {
            margin-left: 5px;
        }









.footer-main{

    position:relative;

    padding-top:10px;
 clip-path: polygon(50% 10%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);

 

}

   


.footer-main .c-2 {

margin-top: 10% !important;

 


}

 

         /* Footer Top Section */
      

         .footer-main .info-box {
            text-align: center;
        }

        .footer-main .info-box i {
            font-size: 24px;
            color: #FFCC00;
            margin-bottom: 10px;
        }

        .footer-text{
            margin: 0;
            color: white !important;
        }

        .footer-main h3 {
         font-weight: bold;
font-size: 1.2rem;
color: white;


        }

        /* Footer Main */
        .footer-main {
            background: #081A4F;
            color: white;
/*            padding: 60px 0;*/
            

        }

        .footer-logo {
            display: flex;
            align-items: center;
        }

        .footer-logo img {
            width:60%;
            margin-right: 10px;
            height:auto;
        }

        .footer-logo h5 {
            font-size: 22px;
            font-weight: bold;
            margin: 0;
        }

        .social-icons-2 a {
            color: white;
            font-size: 18px;
            margin-right: 10px;
            transition: 0.3s;
        }

        .social-icons-2 a:hover {
            color: #FFCC00;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links ul li {
            margin-bottom: 8px;
        }

        .footer-links ul li a {
            color: white;
            text-decoration: none;
            transition: 0.3s;
        }

        .footer-links ul li a:hover {
            color: #FFCC00;
        }

        /* Newsletter */
        .newsletter input {
            padding: 10px;
            border: none;
            width: 70%;
            border-radius: 5px;
        }

        .newsletter button {
            padding: 10px 15px;
            border: none;
            background: #003399;
            color: white;
            border-radius: 5px;
            cursor: pointer;
        }

        /* Copyright */
        .footer-bottom {
            background: #07173D;
            color: white;
            text-align: center;
            padding: 15px;
        }

        .page-header {
            background-color: #fff;
            padding: 20px 0;
            text-align: center;
        }
        .page-header h1 {
            color: #0a2240;
            font-weight: bold;
            margin-bottom: 20px;
        }
        .header-desc {
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        .staff-card {
            position: relative;
            margin-bottom: 30px;
            overflow: hidden;
        }
        .staff-img {
            width: 100%;
            height: 70%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .staff-card:hover .staff-img {
            transform: scale(1.05);
        }
        .staff-name {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .social-icons {
            position: absolute;
            bottom: 20px;
            right: 20px;
            display: flex;
            flex-direction: column;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .social-icon {
            background-color: #f8c301;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
        }
        .master-pilot {
            position: absolute;
            top: 0;
            left: 0;
            background-color: #0a2240;
            color: white;
            padding: 5px 10px;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            transform: rotate(180deg);
            height: 120px;
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .staff-card:hover .staff-name,
        .staff-card:hover .social-icons,
        .staff-card:hover .master-pilot {
            opacity:5;
        color: white;
        }
        .staff-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .staff-card:hover::after {
            opacity: 5;
        }

        .service-card {
            width: 100%;
             max-width: 420px;
            margin: 20px auto;
            text-align: center;
/*            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
            border-radius: 10px;
            overflow: hidden;
            border-radius: 12px;
            padding: 10px;
        }

        .service-image {
             box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            width: 100%;
            height:100%;
            object-fit: cover;
        }

        .content-overlay {
            width: 95%;
            background-color: #fff;
            color: white;
            padding: 15px;
            margin: auto;
            margin-top: -30px; /* Moves overlay slightly up */
            border-radius: 10px;
            position: relative;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            height:400px;
        }

        .course-icon {
            width: 70px;
            height: 70px;
            margin-bottom: 10px;
        }

        .title {
            font-size: 1.4rem;
            font-weight: bold;
            text-transform: uppercase;
        }

        .description {
            font-size: 0.9rem;
            line-height: 1.4;
            padding: 0 10px;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            color: #002a6a;
            font-weight: bold;
            text-decoration: none;
            font-size: 0.9rem;
            margin-top: 10px;
        }

        .circle-icon {
            width: 18px;
            height: 18px;
            background-color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-left: 5px;
        }

        .arrow {
            border: solid #FF8000;
            border-width: 0 2px 2px 0;
            display: inline-block;
            padding: 3px;
            transform: rotate(-45deg);
        }


           /* Polygon Section */
        .polygon-section {
            position: relative;
            width: 100%;
            height: 550px;
         
            display: flex;
            background-attachment: fixed;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 50px;
            clip-path: polygon(50% 10%, 100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
        }

        .overlay {
            background: rgba(0, 0, 0, 0.5);
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }

        .content {
            position: relative;
            z-index: 2;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .polygon-section {
                height: 400px;
                clip-path: polygon(50% 8%, 100% 0, 100% 92%, 50% 100%, 0 92%, 0 0);
            }
        }

        @media (max-width: 768px) {
            .polygon-section {
                height: 400px;
                clip-path: polygon(50% 6%, 100% 0, 100% 94%, 50% 100%, 0 94%, 0 0);
            }
            .footer-main {
                padding-top: 100px;
                height: 100%;
                clip-path: polygon(50% 7%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
            }
        }

        @media (max-width: 480px) {
            .polygon-section {
                height: 350px;
                clip-path: polygon(50% 5%, 100% 0, 100% 95%, 50% 100%, 0 95%, 0 0);
            }
            
            .content-overlay {
            width: 95%;
             
            height:320px;
        }
        }

 /* V-Shape Section */
        .v-section {
            position: relative;
            background: #001F4D; /* Dark Blue */
            color: white;
            padding: 120px 0;
            clip-path: polygon(50% 10%, 100% 0%, 100% 90%, 50% 100%, 0% 90%, 0% 0%);
        }

        .text-content h2 {
            font-size: 32px;
            font-weight: bold;
        }

        .btn-primary {
            background: #1565C0;
            border: none;
            padding: 10px 20px;
        }

        .small-img {
            width: 50%;
            position: absolute;
            bottom: -80px;
            left: -20px;
            border: 4px solid white;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .small-img {
                width: 50%;
                left: 10px;
            }
        }

 



 /* Counter Section with V Shape */
        .counter-section {
            position: relative;
            background: url('img/earth.jpg') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 100px 0;
             clip-path: polygon(50% 10%, 100% 0%, 100% 90%, 50% 100%, 0% 90%, 0% 0%);
        }

       .counter-overlay-b {
            background: rgba(0, 0, 0, 0.6);
           height: 100%;
        } 

        .counter-box {
            font-size: 40px;
            font-weight: bold;
        }

        .counter-label {
            font-size: 18px;
            text-transform: uppercase;
            margin-top: 10px;
        }
    
    /* Knowledge Section */
    .knowledge-section {
        padding: 100px 0;
        background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('img/img-1.jpg');
        background-size: cover;
        background-position: center;
        color: white;
        text-align: center;

        clip-path: polygon(51% 35%, 100% 21%, 100% 45%, 100% 57%, 100% 67%, 51% 87%, 0 67%, 0 55%, 0 36%, 0 20%);
    }
    
    .knowledge-section h2 {
        font-weight: 700;
        margin-bottom: 30px;
        color: white;
    }
    
    .knowledge-section p {
         
        color: white;
    }
    .play-btn {
        display: inline-block;
        width: 70px;
        height: 70px;
        background-color: var(--primary-color);
        border-radius: 50%;
        line-height: 70px;
        margin-bottom: 30px;
        transition: transform 0.3s;
    }
    
    .play-btn:hover {
        transform: scale(1.1);
    }
    
    .play-btn i {
        font-size: 1.5rem;
        color: white;
    }


.line{
height: 1px;
width: 100%;
background: white;
opacity: 0.5;




}

.owl-next,.owl-prev{


display: none  !important


}


.owl-dot .active{
 display: none !important;


}
@media (max-width 768px){




.footer-main .c-2 {

margin-top: 25% !important;

 


}

}

.t-nav{


margin-left: 10% !important;
}


.carousel-inner{

    clip-path: polygon(0 0, 100% 0, 100% 61%, 100% 87%, 52% 100%, 0 84%);

}


/*Other pages Hero Section*/
  .hero-section-2 {
         position: relative;
         height: 500px;
         width: 100%;
         overflow: hidden;
         color: white;
         clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%);
         }
         /* Black Overlay */
         .hero-overlay-2 {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: rgba(0, 0, 0, 0.6); /* Black overlay with 60% opacity */
         z-index: 2;
         }
         /* Swiper Slider */
         .swiper-2 {
         width: 100%;
         height: 100%;
         }
         .swiper-slide-2 {
         background-size: cover;
         background-position: center;
         }
         /* Hero Content */
         .hero-text-2 {
         position: absolute;
         z-index: 3;
         text-align: center;
         top: 50%;
         left: 50%;
         transform: translate(-50%, -50%);
         width: 80%;
         }
         .hero-text-2 h1 {
         font-size: 3rem;
         font-weight: 700;
         margin-bottom: 1rem;
         }
         .hero-text-2 p {
         font-size: 1.2rem;
         margin-bottom: 2rem;
         }
         /* Overlapping Image */
         .overlap-image-4 {
         position: absolute;
         bottom: -50px; /* Adjust position */
         left: 50%;
         transform: translateX(-50%);
         width: 120px;
         height: auto;
         z-index: 4; /* Above the overlay */
         } 