

/* ============================== */
/* About Us & Our Story Section   */
/* ============================== */
.ourStory {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 1rem;
    width: 100%;
    height: auto;
    background: repeating-linear-gradient(120deg, white 0px, white 20%, #51afdc 15%, #8df39b);
}

.ourStory-desc {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}

.ourStory p {
    color: white;
}

.img_div {
    width: 100%;
    height: 30vh;
    margin-top: 5rem;
    border-radius: 50%;
    border: 2em solid white;
    background: white;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.2) 20px 60px 50px;
}

.img_div .image {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    margin: auto;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


/* ========================== */
/* Company Achievement Section */
/* ========================== */
.box-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.box-container .box {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 2rem;
}

.box-container .box .fa-solid {
    font-size: 2rem;
    color: #51afdc;
}


/* ====================================== */
/* Company Purpose, Vision, Mission Section */
/* ====================================== */
.categories {
    padding: 2rem;
}

.categories .categories_container {
    display: grid;
    grid-template-columns: 20% 80%;
}

.categories .categories_container .categories_left {
    align-items: center;
}

.categories .categories_container .categories_left p {
    margin: 1rem 0 1rem;
}

.categories .categories_container .categories_right {
    display: flex;
    gap: 1rem;
}

.categories .categories_container .categories_right .category {
    padding: 1rem;
    border-radius: 2rem;
    transition: width 0.4s linear;
    position: relative;
    color: var(--white);
}

.categories .categories_container .categories_right .category:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.categories .categories_container .categories_right .category .category_icon {
    color: var(--white);
    font-size: 4rem;
}

.categories .categories_container .categories_right .category h4,
.categories .categories_container .categories_right .category p {
    color: var(--white);
}

/* Category Backgrounds */
.categories .categories_container .categories_right .category:first-child {
    background: rgba(138, 118, 166, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.categories .categories_container .categories_right .category:nth-child(2) {
    background: rgba(84, 181, 191, 0.76);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.categories .categories_container .categories_right .category:nth-child(3) {
    background: rgba(142, 166, 91, 0.66);
    backdrop-filter: blur(15.3px);
    -webkit-backdrop-filter: blur(15.3px);
}


/* ================= */
/* Core Values Cards */
/* ================= */
.core_value_container {
    padding: 1rem;
    width: 100%;
    user-select: none;
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.core_value_container .text-container p {
    margin: 1rem 0 1rem;
}

.core_value_container .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
    border-radius: 100%;
}

.core_value_container .container .card {
    width: 45%;
    position: relative;
    border-radius: 1rem;
    height: 15rem;
    overflow: hidden;
    transition: 0.2s;
}

.core_value_container .container .card .img_container {
    text-align: center;
    padding: 3rem;
}

.core_value_container .container .card .img_container img {
    width: 6rem;
}

.core_value_container .container .card .info {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0);
}

.core_value_container .container .card .info .info_title {
    position: absolute;
    padding: 1rem;
}

.core_value_container .container .card .info .info_title h4 {
    color: #fff;
}

.core_value_container .container .card:hover .info {
    background-color: rgba(255, 255, 255, 0.7);
}

/* Card title positions */
.core_value_container .container .card:first-child .info_title {
    bottom: 0rem;
    right: 1rem;
}

.core_value_container .container .card:first-child:hover .info_title {
    top: 0rem;
}

.core_value_container .container .card:nth-child(2) .info_title {
    bottom: 0;
}

.core_value_container .container .card:nth-child(2):hover .info_title {
    top: 0;
}

.core_value_container .container .card:nth-child(3) .info_title {
    top: 0;
    right: 1rem;
}

.core_value_container .container .card:nth-child(4) .info_title {
    top: 0;
}

/* Rounded corners */
.core_value_container .container .card:first-child {
    border-top-left-radius: 100%;
    background: #8A76A6;
}

.core_value_container .container .card:first-child:hover {
    border-top-left-radius: 1rem;
}

.core_value_container .container .card:nth-child(2) {
    border-top-right-radius: 100%;
    background: #54B5BF;
}

.core_value_container .container .card:nth-child(2):hover {
    border-top-right-radius: 1rem;
}

.core_value_container .container .card:nth-child(3) {
    border-bottom-left-radius: 100%;
    background: #8EA65B;
}

.core_value_container .container .card:nth-child(3):hover {
    border-bottom-left-radius: 1rem;
}

.core_value_container .container .card:nth-child(4) {
    border-bottom-right-radius: 100%;
    background: #F27B35;
}

.core_value_container .container .card:nth-child(4):hover {
    border-bottom-right-radius: 1rem;
}

/* Hover Effects */
.core_value_container .container .card:hover .info_title h4 {
    color: #000;
}

.core_value_container .container .card .info_body {
    transform: translateY(700%);
    padding: 1rem;
}

.core_value_container .container .card:hover .info_body {
    transform: translateY(30%);
}

/* Quadrant Hover radius */
.core_value_container .container.topLeft {
    border-top-left-radius: 1rem;
}

.core_value_container .container.topRight {
    border-top-right-radius: 1rem;
}

.core_value_container .container.bottomLeft {
    border-bottom-left-radius: 1rem;
}

.core_value_container .container.bottomRight {
    border-bottom-right-radius: 1rem;
}


/* ================= */
/* Founders Section  */
/* ================= */
.founder-container {
    position: relative;
    width: 100%;
}

.founder-form {
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1;
}

/* Decorative shapes */
.circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, #149279);
    position: absolute;
}

.circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}

.circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
}




/* ================= */
/* Team Cards Section */
/* ================= */

.team-card {
    width: 100%;
    padding: 1rem;
    margin: auto;
    position: relative;
    overflow: visible;
}

/* Diagonal background for card */
.team-card.blue::before {
    content: "";
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    transform: skewY(8deg);
    transform-origin: top left;
    z-index: 0;
}

/* Team members grid */
/*
.team-grid {
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
    z-index: 2;
    position: relative;
    align-items: flex-start;
}
*/

.team-grid {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
   
    position: relative;
    z-index: 1;
   
}

.member {
    display: flex;
    align-items: center;
    text-align: left;
    justify-content:center;
    align-content: center;
}

.member-first {
     align-content: center;
}

.member-second {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    transform: translateY(-2rem);
    /* margin-top: -8rem; */
}

.member img {
    width: 50%;
    object-fit: contain;
   
}

.role {
    display: flex;
    align-items: center;
    gap: 0.5rem;
   
}

.role a {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 20%;
    background: var(--background);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.role a:hover {
    transform: scale(1.1);
}

.member-info {
    display: flex;
    flex-direction: column;
    color: var(--white);
    max-width: 50%;
    
}

.member-info p {
    color: var(--white);
}

/* ================= */
/* Responsive Styles */
/* ================= */

