@font-face {
    font-family: "myfont1";
    src: url("../font/DM-Sans-regular.woff2") format('woff');
}
@font-face {
    font-family: "myfont2";
    src: url("../font/IndeedSansVF_W_Wght.woff2") format('woff');
}

body {
    font-family: "myfont1";
    /* font-family: "myfont2"; */
}



/* -------------Navbar----------------- */
.navbar {
    background-color: #ffffff;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    
}
#filter-section .col{
    min-width:200px;
}
.navbar-brand {
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: bold;
}

.navbar-nav .nav-link {
    font-weight: 700;
    color: #1a1a1a;
}
nav .navbar-collapse ul{
    gap: .5rem;
}
nav .navbar-collapse ul li :hover{
    color: #0066cc !important; 
}

.nav-right .dropdown>a:hover{
    opacity: 0.7;; 
}

.btn-register {
    color: white;
}

.nav-right {
    gap: 2rem;
}
.nav-right ul li{
    text-decoration: none;
}
.nav-link.dropdown-toggle::after {
    display: none;
    /* Hide default dropdown icon */
}
/* Navbar dropdown alignment fix */
.navbar .dropdown-menu {
    right: 0;
    left: auto;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255,255,255,.2);
}
/* Additional tweaks for responsiveness */
.navbar-collapse {
    justify-content: flex-end;
}

/* -------------Hero Section----------------- */
.hero {
    position: relative; /* To position the overlay */
    background: url('https://trainingindustry.com/content/uploads/2023/03/3.15.23-executive-leaders--1920x1080.jpg') no-repeat center center/cover;
    color: #fff;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 0;
}

.hero-overlay {
    position: absolute; /* Overlay covers the entire hero section */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 1; /* Places it behind the text */
}

.hero .container {
    position: relative;
    z-index: 2; /* Ensures the text is above the overlay */
}

.btn-dark, .btn-success {
    z-index: 2; /* Ensures buttons remain above the overlay */
}


.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-hero {
    background-color: #0066cc;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
}


.btn-hero:hover {
    background-color: #004da1;
    color: #fff;
}

/* Card content */
#card-content .card {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#card-content .card-body {
    font-size: 1rem;
}


/* -------------Job Details Section----------------- */
.job-details {
    background-color: #eeeef8;
}


.job-details .form-select {
    font-size: 1rem;
    padding: 0.75rem;
}

.job-details .card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.2s ease-in-out;
}

.job-details .card:hover {
    transform: translateY(-5px);
}

.job-details .card-body h5 {
    font-weight: 600;
    color: #0066cc;
}

.job-details .card-body h6 {
    font-weight: 500;
}

.job-details .card-text {
    font-size: 0.9rem;
}

.job-details .card-footer {
    background-color: transparent;
}

.job-details .btn-primary {
    background-color: #15c2ff;
    border: none;
    border-radius: 30px;
}

.job-details .btn-outline-primary {
    border-radius: 30px;
    color: #15c2ff;
}

.job-details .btn-outline-primary:hover {
    background-color: #15c2ff;
    color: white;
}
.job-details .row {
    justify-content: center; /* Centers all filter items horizontally */
}

.job-details .form-select {
    font-size: 1rem;
    padding: 0.75rem;
}

.date-filter {
    font-size: 1rem;
    padding: 0.75rem;
    border-radius: 5px; /* Adjust the border radius if needed */
}

.date-filter:focus,.job-details .form-select:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(21, 194, 255, 0.5); /* Customize the focus shadow */
    border-color: #15c2ff; /* Custom border color when focused */
}


.submit-btn {
    background: #0052a4;
    border-radius: 4px;
    border: 1px solid #0052a4;
    color: #fff;
    padding: 11px 31px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;

}

.submit-btn:hover {
    background: #fff;
    border-radius: 4px;
    border: 1px solid #0052a4;
    color:  #0052a4;
    padding: 11px 31px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;

}



@media (max-width: 991.98px) {
    /* Nav Section */
    .navbar-nav {
        
        
    }

    nav ul li {
        text-align: center;
    }

    .nav-right {
        justify-content: center;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    .navbar-nav {
        padding-left: 0;
    }

    .nav ul li {
        margin-left: 0;
    }

    .navbar-nav .nav-link {
        margin-left: 2rem;
    }
    .navbar-collapse {
        justify-content: center;
    }
    
    .nav-item {
        margin-bottom: 10px;
    }

    .dropdown-menu {
        right: 0;
        left: auto;
        position: absolute;
    }

    /* Hero Section */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-hero {
        font-size: 1rem;
    }
    /* JOB DETAILS  */
    .job-details .card-body h5 {
        font-size: 1.25rem;
    }

    .job-details .card-body h6 {
        font-size: 1.1rem;
    }
    
    .job-details .form-select {
        margin-bottom: 1rem;
    }
    .job-details .form-select {
        margin-bottom: 1rem;
    }
    .job-details .form-select {
        margin-bottom: 1rem;
        text-align: center;
    }
    .job-details .row {
        justify-content: center;
    }

}


/* Footer */


.footer-logo h5 {
    font-weight: bold;
    color: #0052a4;
    background: white;
    border-radius: 5px;
    text-align: center;
    padding: 10px;
    display:inline-block;
    font-size: 1rem;
  }
  .footer a {
    transition: color 0.2s;
  }
  .footer a:hover {
    color: #ffc107;
  }
  
  a.nav-btn{
    background-color:#fff;
    color:#0b5ed7;
    border-radius: 10em;
    font-size: 17px;
    font-weight: 600;
    padding: .3em 1.5em;
    cursor: pointer;
    border: 2px solid #004da1;
} 
.nav-btn:hover {
    border:2px solid #004da1;
    background-color:#0b5ed7 ;
    color:#fff;
}

a.job-button {
    background-color:#fff;
    color:#0b5ed7;
    border-radius: 10em;
    font-size: 15px;
    font-weight: 500;
    cursor:pointer;
    border: 2px solid #004da1;
}
a.job-button:hover {
    border:2px solid #004da1;
    background-color:#0b5ed7 ;
    color:#fff;
}

button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
   }
   
   button.learn-more {
    width: 12rem;
    height: auto;
   }
   
   button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #0066cc;
    border-radius: 1.625rem;
   }
   
   button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
   }
   
   button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
   }
   
   button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
   }
   
   button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #0066cc;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
   }
   
   button:hover .circle {
    width: 100%;
   }
   
   button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
   }
   
   button:hover .button-text {
    color: #fff;
   }
  

