:root{
    --black-100 : #000;
    --orange : #FF7A01;
    --offwhite : #e5e5e5;
    --lightgray : #e8e8e8;
    --offblack : #8A8A8A;
    --gray : #292929;
}

p b, li b{
    font-weight: 500;
}
/* ---- Custom Loader ---- */
#loader{
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    position: fixed;
    z-index: 999;
    top: 0;
    transition: all ease 0.8s;
    display: flex;
    justify-content: center;
    align-items: center;
}
#loader h2{
    font-size: 7vw;
    color: var(--orange);
    position: absolute;
    opacity: 0;
    animation-name: loaderHeading;
    animation-duration: .5s;
    animation-delay: .2s;
    animation-timing-function: linear;
}
#loader h2:nth-child(1){
    animation-delay: .7s;
}
#loader h2:nth-child(2){
    animation-delay: 1.3s;
}
#loader h2:nth-child(3){
    animation-delay: 1.7s;
}
#loader h2:nth-child(4){
    animation-delay: 2.2s;
}
#loader h2:nth-child(5){
    animation-delay: 2.7s;
}
@keyframes loaderHeading {
    0%{
        opacity: 0;
    }
    10%{
        opacity: 1;
    }
    90%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
/* --- custom cursor ---- */

.cursor {
    width: 40px;
    height: 40px;
    border: 2px solid orange; /* Customize the color */
    border-radius: 50%;
    position: absolute;
    pointer-events: none; /* Make sure the cursor doesn't block clicks */
    z-index: 9999; /* Keep the cursor on top */
    animation: cursorAnim .5s infinite alternate;
    transition-duration: 100ms;
    transition-timing-function : ease-out;
}
.cursor::after{
  content: "";
  width: 40px;
  height: 40px;
  border: 1px solid orangered;
  border-radius: 50%;
  position: absolute;
  top: -8px;
  left: -8px;
  animation: cursorAnim2 .5s infinite alternate;
}

.expand{
  animation: cursorAnim3 .5s forwards;
  border: 1px solid #fff;
}

@keyframes cursorAnim {
  from{
    transform : scale(1);
  }
  to{
    transform : scale(.7)
  }
}

@keyframes cursorAnim2 {
  from{
    transform : scale(1);
  }
  to{
    transform : scale(.4)
  }
}

@keyframes cursorAnim3 {
  0%{
    transform : scale(1);
  }
  50%{
    transform : scale(3)
  }
  100%{
    transform: scale(1);
    opacity: 0;
  }
}

/* --- custom scroll bar ---- */
::-webkit-scrollbar{
    width: 8px;
  }
  ::-webkit-scrollbar-track{
    background-color: #d1e5ff;
  }
  ::-webkit-scrollbar-thumb{
    background: linear-gradient(orangered, orange);
    border-radius: 10px;
  }



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}

body{
    font-family: 'poppins';
    background-color: #000;
    overflow-x: hidden;
    cursor: url('assets/custom-cursor.svg');
}
.bar-holder button{
    border: none;
    font-size: 30px;
    color: #000;
}
.short-title{
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-left: 20px;
}
.short-title i{
    color: var(--orange)
}
.btn-more{
    width: 100%;
    height: auto;
    background-color: var(--orange);
    color: #fff;
    padding: 8px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: .5s ease;
}
.btn-more:hover{
    transition: .5s ease;
    background-color: #fff;
    color: #000;
}

h2{
    font-size: 35px;
    font-weight: 700;
}
p{
    font-size: 14px;
    font-weight: 300;
}

/*Navigation CSS*/
.navbar{
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1111;
    margin: auto;
    background-color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
}


.navbar li{
    padding: 0 20px 0 20px;
    margin: auto;
    text-align: center;
}

.navbar-toggler {
    margin-left: auto;
}
.navbar-toggler-icon {
    margin-left: auto;
}

.navbar-nav .nav-item a{
    position: relative;
    color: white;
}

.navbar-nav .nav-item a::after{
    content: '';
    width: 0%;
    height: 5px;
    position: absolute;
    background-color: var(--yellow);
    left: 0;
    bottom: 0;
}
.navbar-nav .nav-item a:hover::after{
    animation-name: nav-animation;
    animation-duration: 0.8s;
}

.navbar-nav .nav-item .nav-active{
    color: var(--orange);
    font-size: 16px;
}

/* Additional styling for dropdown hover effect */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  
  /* Optional styling for smooth dropdown appearance */
  .dropdown-menu {
    background-color: var(--gray);
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }

  .dropdown-item:hover {
    background-color: transparent;
    color: var(--orange);
  }

@keyframes nav-animation {
    0%{
        left: 0;
        width: 0;
    }
    50%{
        width: 100%;
        left: 0;
    }
    100%{
        width: 0%;
        left: 100%;
    }
}

.navbar-nav .nav-item .nav-link:hover {color: var(--orange);}

.dropdown-menu ul{
    position: relative;
    left: 50px;
}

.navbar-brand img{
    width: 75px;
    height: auto;
    margin-left: 50px;
}
/* ---- Navbar End ---- */


/* HEADER VIDEO SECTION START */
.header-section{
    position: relative;
    width: 100%;
    height: auto;/* Adjust based on your needs */
    overflow: hidden;
}
.header-section video{ /*can change iframe to video*/
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block;
}
.header-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2); /* Adjust the alpha value for desired darkness */
    pointer-events: none; /* Allows interaction with the video below */
}
.header-content{
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    align-items: center; /* Center vertically within the flex container */
    justify-content: space-between; /* Space items on left and right */
    transform: translateY(-50%); /* Adjust for vertical centering */
   /* padding: 10px 20px;  Add some padding for spacing */
}

.header-title {
    width: 90%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.7); /*Semi-transparent black for readability */
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    margin: auto;
}
.header-title h1{
    color:#fff;
    text-align: center;
    font-size: 45px;
    font-weight: 600;
    line-height: 1em;
}
.header-title h5{
    color: var(--orange);
}
.header-title p{
    margin-top: 20px;
    color:#fff;
    text-align: center;
    font-weight: 200;
    line-height: 1.5em;
}
.header-img {
/*    visibility: hidden;  Further Change*/
    width: 50%;
    /* Adjust based on your image size */
    max-height: 100vh; /* Responsive */
}

.header-marquee{
    width: 100%;
    padding: 20px;
    background-color: #fff;
}

/* HEADER VIDEO SECTION END */

  /* MOVING TEXT SECTION START */
  .moving-quotes-section{
    width: 100%;
    min-height: 100%;
    background-color: #fff;
    position: relative;
    margin-top: 20px;
}

.moving-quotes-area{
    width: 100%;
    height: auto;
    white-space: nowrap;
    overflow-x: hidden;
    display: flex;
    align-items: center;
}
.moving-quotes-area::-webkit-scrollbar{
    display: none;
}
.moving-quotes{
    display: inline-block;
    white-space: nowrap;
    padding: 2vw 0;
    animation-name: movingQuotes;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.moving-quotes h5{
    font-size: 35px;
    font-weight: 700;
    color: var(--gray);
    display: inline-block;
}
.moving-quotes .dot{
    width: 2vw;
    height: 2vw;
    border-radius: 50%;
    background-color: var(--orange);
    display: inline-block;
    margin: 0vw 2vw 0vw 2vw;
}

@keyframes movingQuotes {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

@media screen and (max-width: 768px){
  /* Moving Qutes Section For Mobile */
      .moving-quotes{
        padding: 12px;
        animation-name: movingQuotes;
        animation-duration: 50s;
        }
        .moving-quotes h5{
            font-size: 16px;
        }
       /* Moving Qutes Section For Mobile */
}

/* ACHIEVEMENT SECTION START */
.achievement-section{
    width: 100%;
    height: auto;
    padding: 20px 0;
}
.achievement-area{
    width: 90%;
    height: auto;
    padding: 10px;
    background-color: var(--black-100);
    display: grid;
    grid-template-columns: repeat(4, auto);
    border-radius: 20px;
    margin: 0 auto;
}
.achievement{
    text-align: center;
    padding: 15px 0;
}
.achievement img{
    max-width: 70%;
    margin: auto;
}
/* ACHIEVEMENT SECTION END */

/* MOVING TEXT SECTION START */
.moving-text-section{
    width: 100%;
    min-height: 100%;
    background-color: #212121;
    position: relative;
}
.experience-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: #fff;
    text-align: center;
   
    h4{
        font-size: 320px;
        font-weight: 400;
        margin-bottom: -60px;
    }
    h5{
        font-size: 160px;
        font-weight: 400;
        
    }
    h6{
        font-size: 60px;
        margin-top: -40px;
        font-weight: 500;
    }
}
.moving-text-area{
    width: 100%;
    height: 100vh;
    white-space: nowrap;
    overflow-x: hidden;
    display: flex;
    align-items: center;
}
.moving-text-area::-webkit-scrollbar{
    display: none;
}
.moving-text{
    display: inline-block;
    white-space: nowrap;
    padding: 2vw 0;
    animation-name: movingText;
    animation-duration: 120s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.moving-text h5{
    font-size: 20vw;
    font-weight: 500;
    letter-spacing: -1rem;
    color: var(--gray);
    display: inline-block;
}
.moving-text .dot{
    width: 7vw;
    height: 7vw;
    border-radius: 50%;
    background-color: var(--gray);
    display: inline-block;
    margin: 0vw 2vw 4vw 2vw;
}

@keyframes movingText {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

/* MOVING TEXT SECTION END */

/* QUOTE SECTION START */
.quote-section{
    width: 100%;
    height: auto;
    padding: 50px;
    background-color: var(--orange);
}
    /* QUOTE SECTION 2 */
    .quote-section-2{
        width: 100%;
        height: auto;
    }
    .quote-area-2{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        row-gap: 30px;
    }
    .quote-area-2 .quote-img{
        width: 100%;
        height: 100%;
        text-align: center;
    }
    .quote-area-2 .quote-img img{
        max-width: 90%;
        height: auto;
        object-fit: cover;
        border-radius: 20px;
    }
    .quote-section-2 .quote-content{
        width: 90%;
        text-align: left;
        color: #fff;
        p{
            text-align: force-justify;
        }
    }
    /* QUOTE SECTION 2 */
.quote-area{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 0;
}
.quote-text h2{
    font-size: 60px;
    color: #fff;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: -2px;
}
/* QUOTE SECTION END */

/* MISSION VISSION SECTION START */
.mission-vission-section{
    width: 100%;
    height: auto;
    padding: 50px;
}
.mission-vission-area{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}
.mission-vision-text{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    
}
.mission, .vission{
    text-align: justify;
    color: #fff;
    font-weight: 200;
}
.mission h2, .vission h2{
    font-weight: 700;
    position: relative;
}
.mission h2::after{
    content: '';
    position: absolute;
    bottom: 40%;
    right: 0;
    width: 50px;
    height: 8px;
    background-color: var(--orange);
}
.vission h2::after{
    content: '';
    position: absolute;
    bottom: 40%;
    left : 0;
    width: 50px;
    height: 8px;
    background-color: var(--orange);
}
.vission h2{text-align: right;}
.mission-vission-vid{
    width: 100%;
    height: auto;   
}
.mission-vission-vid video{
    max-width: 580px;
    object-fit: cover;
    border-radius: 10px;
}
/* MISSSION VISSION SECTION END */

/* FEATURES SECTION START */
.feature-section{
    width: 100%;
    height: auto;
    padding: 50px 10px;
    background-color: #fff;
}
.feature-text{
    width: 90%;
    margin: auto;
    p{
    color: var(--offblack);
    }
}
.feature-area{
    width: 90%;
    text-align: left;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.feature-content{
    width: 100%;
    height: auto;
}
.feature-logo{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, auto);  
}
.feature-logo img{
    max-width: 80%;
}
.feature-vid{
    width: 100%;
    height: auto;
}
.feature-vid img{
    max-width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
/* FEATURES SECTION END */


/* BLOG SECTION START */
.blog-section{
    width: 100%;
    height: auto;
    padding: 50px 10px;
    background-color: #000;
    color: #fff;
}
.blog-text{
    width: 90%;
    margin: auto;
    color: var(--offwhite);
    text-align: center;
    padding-bottom: 20px;
}
.blog-area{
    width: 90%;
    text-align: left;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.blog-content, .blog-list{
    width: 100%;
    height: auto;
    color: var(--offwhite);
}
.blog-content h3{
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 20px;
}
.blog-list ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background-color: var(--offwhite);
    padding : 30px;
    border-radius: 20px;
}
.blog-list ul li{
    height: 100px;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #000;
    gap: 0 10px;
}
.blog-list ul li img{
    max-height: 80px;
    border-radius: 10px;
}
.blog-list ul li a{
    color:#FF7A01;
    text-decoration: none;
}

/* BLOG SECTION END */


/* YOUTUBE SECTION START */
.youtube-section{
    width: 100%;
    height: auto;
    padding: 50px 10px;
    background-color: #000;
    color: #fff;
}
.youtube-text{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-bottom: 20px;
}
.youtube-area{
    width: 90%;
    text-align: left;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 20px;
}
.youtube-content, .youtube-list{
    width: 100%;
    height: auto;
}
.youtube-content h3{
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 20px;
}
.youtube-list ul{
    border-radius: 20px;
    width: 100%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background-color: #e5e5e5;
    padding : 30px;
    overflow-y: scroll;
}

.youtube-list ul li {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #000;
    margin-bottom: 10px; /* Space between list items */
}
#MainFrame{
    width: 100%;
    height: 50vh;
    margin: auto;
    border-radius: 20px;
}
.youtube-list ul li iframe {
    max-width: 150px; /* Set a smaller width */
    height: 80px; /* Set a smaller height */
    border-radius: 10px;
    cursor: pointer; /* Change cursor to pointer to indicate clickable */
}

.youtube-list ul li button {
    color: #fff;
    background-color: var(--orange);
    border: none;
    padding: 5px 15px;
    border-radius: 20px;
}

/* YOUTUBE SECTION END */

/* SOCIAL MEDIA SECTION START ---- This is Old Social Media Section*/
  /* .socialmedia-container {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-gap: 10px;
    padding: 10px;
    margin: auto;
  }

  .socialmedia {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
  } */

    /* Desktop view: display 3 elements per row */
    /* @media(min-width: 768px) {
    .socialmedia-container {
        width: 100%;
        height: auto;
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
    }

    .socialmedia {
        width: 100%;
    }
    } */

/* SOCIAL MEDIA SECTION END */

/* FOOTER SECTION START */
.footer-section{
    width: 100%;
    height: auto;
    background-color: #111111;
    color: #fff;
}

.footer-title h2{
    text-align: center;
    font-size: 120px;
    color: var(--gray);
}

.footer-area{
    width: 90%;
    max-width: 1200px;
    text-align: left;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}
.footer-content, .footer-form{
    width: 100%;
    height: auto;
}
.footer-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px 0;
}
.footer-content ul li{
    list-style: none;
    padding: 10px 0;
}

.footer-content ul li a {
    color: #aaaaaa;
    text-decoration: none;
    margin-left: -30px;
    
}
.footer-content ul li a:hover{
    color: var(--orange);
}

.footer-social-media{
    width: 100%;
    height: 280px;
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 20px;
    
}
.footer-social-media .social-media{
    width: 100%;
    min-height: 100%;
    background-color: transparent;
    color: var(--offblack);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 10px;
    transition: .4s ease;
    cursor: pointer;
    font-size: 20px;
}
.footer-social-media .social-media a{
    margin : 2px;
    padding: 0 10px;
    text-decoration: none;
    color: #fff;
    font-size: 35px;
    border-radius: 10px;
    line-height: 35px;
}

.footer-social-media .social-media:nth-child(1){
    background: #833ab4;
    background: linear-gradient(to right,#833ab4,#fd1d1d,#fcb045);
}
.footer-social-media .social-media:nth-child(2){
    background-color: #2b4170;
    background: -moz-linear-gradient(top, #3b5998, #2b4170);
    background: -ms-linear-gradient(top, #3b5998, #2b4170);
    background: -webkit-linear-gradient(top, #3b5998, #2b4170);
}
.footer-social-media .social-media:nth-child(3){
    background-color: #1DB954;
}
.footer-social-media .social-media:nth-child(4){
    background-color: #000;
}


.footer-text{
    width: 100%;
    margin: auto;
    text-align: center;
    background-color: var(--gray);
    color: var(--offblack);
    padding: 10px 0;
    a{
        color: var(--offwhite);
        text-decoration: none;
    }
}

/* QUERY FORM CSS START HERE */
.footer-form{
    width: 100%;
    max-width: 480px;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .4s ease-in;
    display: none;
    z-index: 9999;
}
#btn-close{
    color: #fff;
    position: absolute;
    top: 5px; right: 10px;
    font-size: 35px;
    cursor: pointer;
    color: var(--offblack);
}
.footer-form form{
    background-color:#212121;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px 0;
    padding: 50px;
}
.footer-form form input, .footer-form form textarea, .footer-form form button, .footer-form form select{
    padding: 15px 20px;
    outline: none;
    border: none;
    border-radius: 20px;
    color: #aaaaaa;
    background-color:#212121;
    box-shadow: 5px 5px 10px rgb(25, 25, 25),
              -5px -5px 10px rgb(44, 44, 44);
}
.footer-form form button{
    background-color: var(--orange);
    color: #fff;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* FOOTER FORM CSS END HERE */


/* FOOTER SECTION END */


/* fixed footer query form button - default styles */
.fixed-query-btn {
    width: 50px;
    height: 50px;
    background-color: var(--orange);
    position: fixed;
    bottom: 40px;
    right: 30px;
    border-radius: 100px;
    transition: .5s ease;
    color: #fff;
    z-index: 9999;

    display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   gap: 0 10px;
      
}
#btnSpan{
    display: none;
    cursor: pointer;
   }
   #btnIcon{
    padding: 5px 10px;
    font-size: 25px;
    cursor: pointer;
   }

.fixed-query-btn:hover{
    width: 200px;
    #btnSpan{
        display: block;
    }
   }

