@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

.navbar {
    background-color: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar ul>li>a:hover {
    color: #007bff;
}

.dropdown-menu {
    border-radius: 8px;
    border: none;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
    display: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.master-header {
    height: 100vh;
    min-height: 500px;
    background-image: url('../images/carousel/banner1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.master-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/carousel/banner1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    filter: blur(120px);
    z-index: 1;
}

.master-header .content {
    position: relative;
    z-index: 2;
}

/* contact page */

.contact-us .hero {
    width: 100%;
    height: 50vh;
    /* background: #f1f9ff; */
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 100px;
}

.contact-us h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.contact-us .social-links {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.contact-us .social-links a {
    width: 80px;
    height: 80px;
    text-align: center;
    text-decoration: none;
    color: #0275d8;
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.05);
    margin: 10px 30px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s;
}

.contact-us .social-links a .fab {
    font-size: 30px;
    line-height: 80px;
    position: relative;
    z-index: 10;
    transition: color 0.5s;
}

.contact-us .social-links a::after {
    content: '';
    width: 100%;
    height: 100%;
    top: -90px;
    left: 0;
    background: #000;
    background: linear-gradient(-45deg, #0275d8, #e0e5e9);
    position: absolute;
    transition: 0.5s;
}

.contact-us .social-links a:hover::after {
    top: 0;
}

.contact-us .social-links a:hover .fab {
    color: #fff;
}

.contact-us .social-links a:hover {
    transform: translateY(-10px);
}



/* client carousel */

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}


/* gallery */

.gallery img {
    height: 60vh;
    object-fit: cover;
}


/* Styling */
.slider {
    background: white;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider::before,
.slider::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.slider::before {
    left: 0;
    top: 0;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.slide {
    height: 100px;
    width: 300px;
}

.slide p {
    text-align: center;
    font-size: 12px;
}


/* animation */

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.animated {
    animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: both;
}

.animatedFadeInUp {
    opacity: 0;
}

.scroll-active {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}


/* footer social media  */

.footer-contacts .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-contacts .social-links a {
    width: 40px;
    height: 40px;
    text-align: center;
    text-decoration: none;
    color: #0275d8;
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.05);
    margin: 10px 30px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s;
}

.footer-contacts .social-links a .fab {
    font-size: 15px;
    line-height: 40px;
    position: relative;
    z-index: 10;
    transition: color 0.5s;
}

.footer-contacts .social-links a::after {
    content: '';
    width: 100%;
    height: 100%;
    top: -90px;
    left: 0;
    background: #000;
    background: linear-gradient(-45deg, #0275d8, #e0e5e9);
    position: absolute;
    transition: 0.5s;
}

.footer-contacts .social-links a:hover::after {
    top: 0;
}

.footer-contacts .social-links a:hover .fab {
    color: #fff;
}

.footer-contacts .social-links a:hover {
    transform: translateY(-10px);
}

footer {
    background-image: linear-gradient(45deg, #0274d845, #fff);
}

.justified {
    text-align: justify;
}

/* career page */

.career-hero {
    background: linear-gradient(120deg, #0d6efd, #084298);
    color: #fff;
    padding: 120px 20px 60px;
    text-align: center;
}

.career-accordion .accordion-button {
    /* border-radius: 12px; */
    background: #ffffff;
    padding: 20px;
    font-size: 1.05rem;
    color: #444 !important;
}

.career-accordion .accordion-button:not(.collapsed) {
    background: #f1f5ff;
    color: #0d6efd;
}

.career-accordion .accordion-item {
    border-radius: 12px;
    border: 1px solid #fafafa !important;
}

.career-accordion .accordion-body {
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    color: #666;
}

.apply-section {
    /* background: #fff; */
    padding: 50px 20px;
    border-radius: 10px;
}

.apply-section h2,
.openings h2 {
    font-size: 23px;
    margin-bottom: 2.2rem;
    color: #0d6efd;
}

@media (max-width: 768px) {
    .career-hero {
        padding: 80px 20px 40px;
    }
}

@media (max-width: 576px) {
    .career-hero h1 {
        font-size: 28px;
    }

    .career-accordion .accordion-button {
        padding: 20px;
        font-size: 0.8rem;
    }

    .career-accordion .accordion-body {
        font-size: 0.8rem;
    }

    .apply-section label, .apply-section input {
        font-size: 14px;
    }

    .apply-section input {
        padding: 10px;
    }
}


/* certificate section */

.certificate-section {
    padding: 40px 0;
}

.certificate-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.10);
}

.certificate-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1.414;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.certificate-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.certificate-card:hover .certificate-image {
    transform: scale(1.05);
}

.certificate-info {
    padding: 25px;
    text-align: center;
}

.certificate-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--main-color-hover);
    margin-bottom: 8px;
}

.certificate-date {
    color: #718096;
    font-size: 14px;
    font-weight: 500;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}