/* .caprasimo-regular {
    font-family: "Caprasimo", serif;
    font-weight: 400;
    font-style: normal;
  }
   */
   
   .intro{
       font-size: clamp(14px, 2vw, 24px);
   }

    .gradient-text {
        /* font-size: 40px;
        font-weight: bold; */
        background: -webkit-linear-gradient(left,rgb(227, 111, 184), rgb(166, 93, 230));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
  
        /* Extra for non-webkit browsers */
        background-clip: text;
        color: transparent;
      }
   @font-face {
    font-family: 'Caprasimo';
    src: url('Caprasimo-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  
  video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Optional for better visual fit */
}

/* For phones and tablets */
@media (max-width: 1024px) {
  video {
    height: 50%;
  }
}


body{
    /* background-color: #2c2c2c; */
    /* background-color: rgb(50 50 50); */
    background-color: black;
    /* height: 100vh;
    width: auto;
    box-sizing: border-box; */
    overflow-x: hidden;
    font-size: larger;
    font-family: "Caprasimo", serif;
    font-weight: 400;
    font-style: normal;
}

/* .navbar{
    background-color: #000000;
    color: white ;
} */


/* .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: white;
}

.navbar-nav {
    color: white !important;
} */


.navbar{
    backdrop-filter: blur(15px) brightness(0.5);
    } 



    /* === navbar styling start ===== */
.navbar-brand{ 
    font-size: 40px;
    transition: background-position 275ms ease;
}
.navbar-brand:hover
{ 
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;   
    background-position: 0 100%;
}

ul 
{
    padding: 0; 
}  

ul li 
{
        padding-inline: 10px;
}
.nav-link 
{
    display: inline-block;
    position: relative;
    padding: 10px;
    cursor: pointer;
    font-size: 17px;
}

.nav-link::after 
{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 4px;
    left: 3px;
    background-color: transparent;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.nav-link:hover::after
{
    width: 100%;
    transform: scaleX(1); 
}
.navbar-nav .nav-link.active::after
{
    width: 100%;
    transform: scaleX(1); 
}

.blog-page-cards .nav-pills .nav-link.active
{
    background-color: black !important;
    color: #cfa144 !important;
}
.blog-page-cards .nav-pills .nav-link
{
     background-color: gray !important;
    color: white !important; 
    font-family: var(--onistic-font-regular); 
    font-size: 17px;
}
 .nav-pills .nav-link::after 
{ 
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 4px;
    left: 3px;
    background-color: transparent;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.navbar-nav .nav-link.active::after, .footer h1
{
   background-image: linear-gradient(rgb(227, 111, 184), rgb(166, 93, 230)) !important;
   animation: gradient 15s ease infinite !important;
   background-size: 400% 400% !important;
   color: #cfa144 !important;
}

.nav-link:hover::after, 
.navbar-brand:hover , .nav-pills .nav-link.active{
   background-image: linear-gradient(rgb(227, 111, 184), rgb(166, 93, 230)) !important;
   animation: gradient 15s ease infinite !important;
   background-size: 400% 400% !important;
   color: #cfa144 !important;
}

@keyframes gradient {
    0% {
        background-position: 0 50%;
    }
    20% {
        background-position: 20% 50%;
    }
    40% {
        background-position: 40% 50%;
    }
    60% {
        background-position: 60% 50%;
    }
    80% {
        background-position: 80% 50%;
    }
    100% {
        background-position: 0 50%; }

  }




  video{
    /*min-height: 100dvh; */
    width: 100%;  
    /* -webkit-mask-image: linear-gradient(0deg, transparent, black); */
    position: relative;
    }





    .about-section {
        position: relative;
        text-align: center;
        /* font-family: Arial, sans-serif; */
      }
  
      .about-background {
        font-size: 70px;
        color: rgba(255, 255, 255, 0.09); /* faded background text */
        font-weight: 900;
      }
  
      .about-foreground {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        /*font-size: 70px;*/
         font-size: clamp(24px, 5vw, 70px);
        font-weight: 900;
      }


      .card{
        background-color: #323232;
        color: white;
        text-align: center;
      }


      .w-25 {
        width: 20% !important;
    }

    p{
        color: #A6A6A6;
    }

a{
    text-decoration: none;
    color: white;
}

h3{
    color: white;
}
    .About-section , .Blogs-section{
        padding-top: 10% ;
    }


              .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .logo-container {
            text-align: center;
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .logo-img {
            max-width: 80%;
            height: auto;
            max-height: 200px;
            object-fit: contain;
        }

        .progress-container {
            width: 80%;
            max-width: 300px;
            height: 4px;
            background: white;
            border-radius: 2px;
            margin-top: 30px;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, black, #333333);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        @media (max-width: 768px) {
            .logo-img {
                max-height: 150px;
            }
            
            .progress-container {
                width: 70%;
                margin-top: 20px;
            }
        }

        @media (max-width: 480px) {
            .logo-img {
                max-height: 120px;
            }
            
            .progress-container {
                width: 60%;
                height: 3px;
                margin-top: 15px;
            }
        }

