@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}


:root {
  --primary-color: #C8102E;    /* Crimson Red */
  --complementary-blue: #2E5D9F; /* Complementary Blue */
  --secondary-color: #FFFFFF;  /* White */
  --dark-accent: #1A1A1A;      /* Charcoal Black */
  --neutral-accent: #F5F5F5;   /* Light Gray */
  --gold-color: #FFD700;       /* Golden Yellow */
  --teal-color: #008080;       /* Teal */
  --pantone-blue: #003893;    /* Pantone Blue */
}

.about-us {
    margin-top:20px;
    margin-bottom:20px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    background: var(--neutral-accent);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.about-us::before, .about-us::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: var(--complementary-blue);
    opacity: 0.1;
}

.about-us::before {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
}

.about-us::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
}

.about-us h4, h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: color 0.3s ease-in-out;
}

.about-us p {
    color: var(--dark-accent);
    line-height: 1.6;
    margin-bottom: 15px;
    transition: color 0.3s ease-in-out;
    text-align: justify;
}

.about-us-left, .about-us-right {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.about-us-left:hover, .about-us-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-us-left-main {
    margin-bottom: 20px;
}

.about-us-left-sub {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.about-us-left-items {
    flex: 1;
    min-width: calc(50% - 20px);
    padding: 15px;
    background: var(--neutral-accent);
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease-in-out;
}

.about-us-left-items h4 {
    margin: 0 0 10px;
    transition: color 0.3s ease-in-out;
}

.about-us-left-items p {
    color: var(--dark-accent);
    transition: color 0.3s ease-in-out;
    font-size:14px;
    text-align: justify;
}

.about-us-left-items:hover {
    background: var(--pantone-blue);
}

.about-us-left-items:hover h4 {
    color: var(--gold-color);
}

.about-us-left-items:hover p {
    color: var(--secondary-color);
}



.about-us-left-items-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    object-fit: fill;
}


.about-us-right {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about-us-right-items {
    margin-top:20px;
    flex: 1 1 calc(50% - 20px); /* This ensures items can grow and shrink */
    padding: 15px;
    background: var(--neutral-accent);
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease-in-out;
}
.about-us-right-title {
    position: absolute;
    top: 4px;
    right: 4px;
    margin: 10px;

}

@media (max-width: 768px) {
    .about-us-right-title {
    top: 45%;
    position:relative;
    }
}

.about-us-right-items h4, 
.about-us-right-items h5 {
    margin: 0 0 10px;
    transition: color 0.3s ease-in-out;
}

.about-us-right-items p {
    color: var(--dark-accent);
    transition: color 0.3s ease-in-out;
    font-size: 13px;
    text-align: justify;
}

.about-us-right-items:hover {
    background: var(--pantone-blue);
}

.about-us-right-items:hover h4, 
.about-us-right-items:hover h5 {
    color: var(--gold-color);
}

.about-us-right-items:hover p {
    color: var(--secondary-color);
}


.about-us-middle {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--neutral-accent);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.about-us-middle::before, .about-us-middle::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: var(--gold-color);
    opacity: 0.1;
}

.about-us-middle::before {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
}

.about-us-middle::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
}

.about-us-middle-items {
    flex: 1;
    min-width: 150px;
    padding: 15px;
    text-align: center;
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease-in-out;
}

.about-us-middle-items strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
    transition: color 0.3s ease-in-out;
}

.about-us-middle-items:hover {
    background: var(--pantone-blue);
    color: var(--secondary-color);
}

.about-us-lower {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--neutral-accent);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.about-us-lower::before, .about-us-lower::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: var(--teal-color);
    opacity: 0.1;
}

.about-us-lower::before {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
}

.about-us-lower::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
}

.about-us-lower-left, .about-us-lower-right {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.about-us-lower-left:hover, .about-us-lower-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-us-lower-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.about-us-lower-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .about-us {
        flex-direction: column;
    }

    .about-us-left-sub {
        flex-direction: column;
    }

    .about-us-right {
        flex-direction: column;
    }

    .about-us-middle-items, .about-us-lower-left, .about-us-lower-right {
        min-width: 100%;
    }
}
