/*Custom Property*/
:root {
    /*colors*/
    --international-orange-engineering: hsl(1, 91%, 37%);
    --cadet-blue-creyola: hsl(222, 14%, 69%);
    --oxford-blue-1: hsl(222, 47%, 15%);
    --oxford-blue-2: hsl(222, 44%, 14%);
    --oxford-blue-3: hsl(222, 50%, 11%);
    --sonic-silver: hsl(0, 0%, 44%);
    --space-cadet: hsl(222, 44%, 18%);
    --pastel-pink: hsl(1, 53%, 75%);
    --eerie-black: hsl(0, 0%, 15%);
    --light-grey: hsl(0, 0%, 80%);
    --white: hsl(0, 0%, 100%);
    --section-height: 100vh; /* Define a custom property for section height */



    /*typography*/
    --ff-chakra-petch: 'Chakra Petch', sans-serif;
    --ff-mulish: 'Mulish', sans-serif;

    --fs-1: 3.5rem;
    --fs-2: 3rem;
    --fs-3: 2.4rem;
    --fs-4: 1.8rem;
    --fs-5: 1.4rem;
    --fs-6: 1.2rem;

    --fw-400: 400;
    --fw-600: 600;
    --fw-700: 700;

    /*spacing*/

    --section-padding: 60px;

    /*box shadow*/
    --shadow: 0px 0px 100px 0px hsl(216, 9%, 90%);

    /*border radius*/
    --radius-pill: 100px;
    --radius-circle: 50%;

    /*transition*/
    --transition: 0.25s ease;
    --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}

/*reset*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a,
img,
button {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    height: auto;
}

button {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
}

address {
    font-style: normal;
}

html {
    font-family: var(--ff-mulish);
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--sonic-silver);
    font-size: 1.6rem;
    line-height: 1.5;
    /* height: 300vh; */
    /* background-color: var(--eerie-black); */
}

:focus-visible {
    outline-offset: 4px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: hsl(0, 0%, 98%);
}

::-webkit-scrollbar-thumb {
    background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
    background-color: hsl(0, 0%, 70%);
}


/**about/**/

.about-section {
    padding: 50px 0; /* Adjust padding as needed */
}

.about-text {
    padding-right: 20px; /* Add spacing between text and image */
}

.card {
    border: none;
    width: fit-content;
}

.card-body {
    padding: 50px;
}

.card-title {
    color: var(--oxford-blue-3);
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

.card-text {
    color: var(--oxford-blue-3);
    font-size: 16px;
    line-height: 1.6;
}

.about-image {
    max-width: 100%;
    height: auto;
    /* display: block; */
}

@media (max-width: 767px) {
    .about-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/**VISION MISSION SECTION**/

.vision-mission-section {
    background-color: #f8f9fa; /* Light background color */
    /* padding: 100px 0; */
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); /* Box shadow for depth */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.card:hover {
    transform: translateY(-10px); /* Lift on hover */
}

.icon {
    font-size: 3rem;
    margin-top: 20px;
}

.icon i {
    color: #007bff; /* Icon color */
}

.vision-card {
    background-color: #ffffff; /* White background color */
}

.mission-card {
    background-color: #f8f9fa; /* Light background color */
}

.card-content {
    border: 2px solid #284ea7; /* Add border style */
    padding: 20px; /* Add padding for better appearance */
    border-radius: 5px; /* Add border radius for rounded corners */
}

.card-content1 {
    border: 2px solid #28a745; /* Add border style */
    padding: 20px; /* Add padding for better appearance */
    border-radius: 5px; /* Add border radius for rounded corners */
}

/**MILESTONE**/

.milestone {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light background color */
}

.milestone-content {
    padding: 20px;
}

.milestone-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333; /* Dark text color */
}

.milestone-content ul {
    list-style-type: none;
    padding-left: 0;
}

.milestone-content ul li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    font-size: 20px;
    color: #444; /* Slightly darker text color */
    line-height: 1.5;
}

.milestone-content ul li .badge {
    position: absolute;
    left: 2px;
    top: 5px;
    font-size: 22px;
    color: black; /* White text color */
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Soft shadow effect */
    transform: translateX(-50%);
    z-index: 1;
}

.milestone-content p {
    font-size: 18px;
    color: #666; /* Medium text color */
    margin-top: 20px;
}


/**ANIMATION**/

.animate-door {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.animate-door.show {
    opacity: 1;
}


/**Founder section**/

.founder h1 {
    text-align: center;
    color: var(--oxford-blue-3);
    font-weight: 800;
    font-size: xx-large;
}

.founder p {
    text-align: center;
    color: var(--oxford-blue-3);
    font-size: x-large;
}

.founder-heading {
    text-align: center;
    color: #ffffff; /* white text color */
    font-weight: 800;
    font-size: 2.5rem; /* adjust as needed */
}

.founder-subtitle {
    text-align: center;
    color: #ffffff; /* white text color */
    font-size: 1.5rem; /* adjust as needed */
}

.card {
    border: none; /* remove border */
    transition: transform 0.3s ease; /* add transition effect */
}

.card:hover {
    transform: translateY(-5px); /* add slight elevation on hover */
}

hr.style-seven {
    overflow: visible; /* For IE */
    height: 30px;
    border-style: solid;
    border-color: black;
    border-width: 3px 0 0 3px;
    border-radius: 20px;
}
hr.style-seven:before { /* Not really supposed to work, but does */
    display: block;
    content: "";
    height: 30px;
    margin-top: -31px;
    border-style: solid;
    border-color: black;
    border-width: 0 3px 3px 0;
    border-radius: 20px;
}

.founder-message h4{
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 3%;
    padding-top: 3%;
    display: flex;
    align-items: center; /* Center vertically */
}

.image-container {
    margin-right: 10px; /* Adjust margin as needed */
}

.founder-message {
    position: relative;
}


.quote-image {
    margin-right: 15px; /* Adjust as needed */
    height: 4%;
    width: 4%;
    margin-bottom: 5%;
}


/* Custom CSS to show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
