@import url("https://fonts.googleapis.com/css2?family=Arimo:wght@400;700&family=Patua+One&family=Rubik+Mono+One&display=swap");

.text-c-orange {
    color: #ff4000; /* Bright orange color */
}

.text-c-blue {
    color: #0d17fd;
}

.bg-blue {
    background-color: #0d17fd;
}

* {
    scrollbar-color: #0a1a32 #fff;
    scrollbar-width: thin;
    margin: 0;
    padding: 0;
}

*::-webkit-scrollbar {
    width: 6px;
}

*::-webkit-scrollbar-track {
    background: #fff;
}

*::-webkit-scrollbar-thumb {
    background-color: #0a1a32;
    border-radius: 3px;
    border: 1px solid #fff;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.notop {
    position: relative !important;
    top: 0px !important;
}

.bitap {
    opacity: .5;
}

body {
    font-family: "Arimo", sans-serif !important;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: "Patua One", serif;
}

.navbar-toggler {
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 15px;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 0;
}

.toggler-icon {
    position: absolute;
    margin: 0;
    padding: 0;
    height: 3px;
    width: 100%;
    background: #ff3700;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transition: .5s;
}

.navbar-toggler .top-bar {
    margin-top: 0px;
    transform: translateY(0px) rotate(225deg);
}

.navbar-toggler .middle-bar {
    margin-top: 0px;
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translateX(20px);
}

.navbar-toggler .bottom-bar {
    margin-top: 0px;
    transform: translateY(0px) rotate(-225deg);
}

.navbar-toggler.collapsed .top-bar {
    margin-top: -20px;
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar {
    margin-top: 0px;
    opacity: 1;
    filter: alpha(opacity=1);
    transform: translateX(0px);
}

.navbar-toggler.collapsed .bottom-bar {
    margin-top: 20px;
    transform: rotate(0deg);
}

.navbar-nav .show>.nav-link,
.navbar-nav .nav-link.active {
    background-color: #000000;
    font-weight: bold;
    border-bottom: 4px solid #ff3700;
}

.navbar-nav .show>.nav-link,
.navbar-nav .nav-link {
    transition: all .1s linear;
}

.navbar-nav .show>.nav-link:hover,
.navbar-nav .nav-link:hover {
    border-bottom: 4px solid #ff3700;
}

.form-control {
    background-color: #fff !important;
    color: #0a1a32;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
    border: 1px solid #d9dee3;
}

.form-floating label {
    color: #000;
}

.form-control:focus {
    color: #0a1a32;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    color: #0a1a32;
}

.form-select {
    color: #0a1a32 !important;
    background-color: #fff !important;
    font-weight: 600 !important;
}

.form-select:focus {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}

#bit-logo {
    width: 150px;
    margin-top: .5rem;
}

.cin {
    font-size: 12px;
}

.bit-font {
    font-family: "Bitter", serif;
    font-size: 4rem;
    font-weight: 900;
}

.bit-sub-font {
    font-size: 1rem;
    font-family: "Bitter", serif;
    font-weight: 600;
  }

.bit-info {
    position: relative;
    top: -10px;
}

.blinker {
    animation: blink .5s linear infinite;
}

.ctc-container {
    padding: 0px;
    margin: 0px;
    position: fixed;
    right: -100px;
    top: 270px;
    width: 160px;
    z-index: 1100;
}

.ctc-container div {
    background-color: #fff;
    color: #000;
    padding: 0px;
    margin: 0px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    transition: all .25s ease-in-out;
    cursor: pointer;
}

.ctc-container div:hover {
    margin-left: -55px;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }

    100% {
        opacity: 1;
    }
}

.cin {
    font-size: 10px;
}

@media(max-width: 768px) {
    #bit-logo {
        width: 60px;
    }

    .bit-font {
        font-size: 2rem !important;
        font-weight: 700;
    }

    .dropdown-menu {
        background-color: rgb(255, 255, 255) !important;
        border: 0px solid #000 !important;
        text-align: center !important;
    }

    .dropdown-menu li a {
        color: #000000 !important;
        font-weight: 500;
    }
}

@media(min-width: 992px) {
    #bit-logo {
        width: 150px;
    }

    .cin {
        font-size: 12px;
    }

    .bit-font {
        font-size: 30px;
    }

    .bit-sub-font {
        font-size: 20px;
    }

    .dropdown .dropdown-menu.show {
        display: none !important;
    }

    .dropdown:hover .dropdown-menu {
        display: block !important;
    }

    .dropdown-menu .dropdown-item:hover {
        background-color: #fbf53e !important;
        color: #000 !important;
    }

    .dropdown:focus .dropdown-menu {
        display: block !important;
    }
}

@media(min-width: 1200px) {
    #bit-logo {
        width: 150px;
    }

    .cin {
        font-size: 14px;
    }

    .bit-font {
        font-size: 40px;
    }

    .bit-sub-font {
        font-size: 26px;
    }
}

.fence {
    background: radial-gradient(27% 29% at right, #0000 83%, rgba(255, 255, 255, 0.15) 85% 99%, #0000 101%) calc(10px / 2) 10px, radial-gradient(27% 29% at left, #0000 83%, rgba(255, 255, 255, 0.15) 85% 99%, #0000 101%) calc(10px / -2) 10px, radial-gradient(29% 27% at top, #0000 83%, rgba(255, 255, 255, 0.15) 85% 99%, #0000 101%) 0 calc(10px / 2), radial-gradient(29% 27% at bottom, #0000 83%, rgba(255, 255, 255, 0.15) 85% 99%, #0000 101%) 0 calc(10px / -2) rgba(255, 255, 255, 0);
    background-size: 20px 20px;
}



.course-image {
    border: 5px solid #f1f1f1; /* Light border for image */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow around the image */
    border-radius: 8px; /* Rounded corners for images */
    height: 350px;
    transition: all 0.3s ease; /* Smooth transition on hover */
}

.course-image:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.card-body {
    padding: 15px;
    text-align: center;
}

.card-body .card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.card-body .card-text {
    font-size: 0.95rem;
    color: #6c757d;
}

.card-body .btn {
    margin-top: 10px;
}

/* Hover effect for the card itself */
/* .card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); 
} */

/* Adjust padding and margins */
.container {
    border-radius: 10px;
}

.col-md-3 {
    padding: 15px;
}

/* Small screen adjustments */
@media (max-width: 768px) {
    .col-md-3 {
        margin-bottom: 20px; /* More space on small screens */
    }
}



    /* Custom styles to change the navbar text color */
    .navbar-nav .nav-link {
        color: #ffffff;
        /* Black color */
      }
  
      /* Active link styling */
      .navbar-nav .nav-link.active {
        color: #ffffff;
        /* White color */
      }
  
      /* Hover state for active nav item */
      .nav-link.active:hover {
        color: #ffffff !important;
        /* White color */
      }
  
      /* Hover effect for nav links */
      .navbar-nav .nav-link:hover {
        color: #00ff11;
        /* Black color on hover */
      }
  
      .bit-info {
        font-size: 1.2rem;
        margin-top: 10px;
      }
  
    
  
      @keyframes spin {
        0% {
          transform: rotate(0deg);
        }
  
        100% {
          transform: rotate(360deg);
        }
      }
  
      /* Phone number styling */
      .blinker {
        animation: blink 1s infinite;
      }
  
      @keyframes blink {
        50% {
          color: red;
        }
      }
  
      .slider-image {
        width: 100%;
        /* Ensures the image covers 100% of the container */
        height: 400px;
        /* Default height for larger screens */
      }
  
      /* For medium devices (tablet) */
      @media (max-width: 768px) {
        .slider-image {
          height: 280px;
          /* Adjust height for tablet screens */
        }
      }
  
      /* For small devices (mobile) */
      @media (max-width: 576px) {
        .slider-image {
          height: 200px;
          /* Adjust height for mobile screens */
        }
      }
  
      .img-fluid {
        max-width: 100%;
        height: 150px;
      }

      .img-fluid2 {
        max-width: 100%;
        height: 150px;
      }

      .img-fluid-course {
        max-width: 100%;
        height: 350px;
      }
  
      .t-slider {
        background: url('https://bitsdr.in/new/assets/images/testimonial-bg.jpg');
        background-repeat: no-repeat;
        background-size: 100% 100%;
      }
  
      .glass-bg {
        background: rgba(255, 255, 255, 0.25);
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        backdrop-filter: blur(7px);
        -webkit-backdrop-filter: blur(7px);
        border: 1px solid rgba(255, 255, 255, 0.18);
      }