body {
    margin: 0;
    padding: 0;
    font-family: 'Inter';
    background-color: #cfcabd;
    color: #333333;
}

hr {

    position: relative;
    z-index: 2;
    border-color: #333333;
    border-top: 5px double;
}

/* Container to center all main content */
.wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
}

/* Header & Banner */


.header img.banner {

    width: 100%;
    height: auto;
    display: block;
    filter: opacity(50%);
    position: relative; /* keep it in the normal flow */
    z-index: 1;
}

/* Page Title Bar */
.menu-bar {
    position: absolute;
    z-index: 3;
    width: 100%;
    background-color: #d9603b;
    padding: 1rem 0;
    margin-top: -33.5em;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 135px;

    /* One shape: tall left sidebar + angled top bar across */
    clip-path: polygon(
        0 60px,          /* left edge, below the slope start */
        80px 60px,        /* halfway across slope start */
        200px 0,         /* top of the slope */
        300px 60px,          /* top right */
        100% 60px,      /* bottom of top bar */
        100% 120px,    /* right edge of sidebar bottom */
        0 120px           /* bottom left */
    );
}

.page-topper {
    text-shadow: 2px 2px 5px red;
    font-size: 1.8em;
    font-family: 'Poppins';
    color: #fffdd4;
    text-align: center;
}

/* Sidebar Menu Area */
.menu {
    position: absolute;
    z-index: 3;
    background-color: #dc6f4e;
    margin-top: -33rem;
    margin-left: 2%;
    width: 170px;;
    color: #fffdd4;

    clip-path: polygon(

        0 60px, 
        50px 60px, 
        100% 0, 
        100% 100%,
        0 100% 
    );
}

.sidebar-logo {
    background-color: #c35635;
    text-shadow: 2px 2px 5px #cc0000;
    font-family: 'Poppins';
    text-align: center;
    height: 10rem;
    font-size: 1.5em;
    padding: 1rem;
}

.sidebar-logo h2{
    padding-top: 2rem;
}

.sidebar-nav-int a {
    display: block;
    padding: 0.5rem;
    color: #fffdd4;
    font-size: 1.1em;
    text-decoration: none;
}

.sidebar-nav-int a:hover {
    background-color: #fffdd4;
    color: #b85c3d;
    border-radius: 4px;
}

.sidebar-contact p {
    padding-left: 0.5rem;
    font-size: 1.1em;
    color: #fffdd4;
}

/* Main Content Sections */
.tomb {
    position: relative;
    overflow: visible;
    z-index: 2;
    background-color: #fffdd9;
    color: #333333;
    padding: 2rem 1rem;
    margin-top: -26.5rem;
}

.v-shape {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50rem;
    background-color: #e5e3bb;
    padding: 3rem 0rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    clip-path: polygon(
        0 0, 
        50% 20%,      
        100% 0,
        100% 100%,
        0 100%

    );
    z-index: 0;
    filter: opacity(60%);
}

/* Rows & Columns */
.rowA {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-left: 15rem;
}

.rowA h2{

    margin-left: 30%;
}

.rowA li {
    padding: 10px;
}

.rowB li {

    padding: 10px;
}

.rowB {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.row-h2 {
    text-align: center; 
    padding-top: 20px; 
    z-index: 2; 
    position: relative;
}

.columnA, .columnB {
    flex: 1 1 400px;
    max-width: 600px;
    font-size: 1.1em;
}

.columnB {

    padding-left: 8rem;
}

.columnA img, .columnB img {
    max-width: 100%;
    height: auto;
    border: 3px solid #d9603b;
}

/* Service Columns */
.columnC {
    flex: 1 1 300px;
    background: none;
    text-align: center;
    padding: 2rem;
}

.columnD {
    flex: 1 1 200px;
    background: none;
    text-align: center;
    margin-right: 40%;
}

.columnD ul {
    text-align: left;
    display: inline-block;
    zoom: 1;
}

/* Center Text Sections */
.center-text {
    max-width: 800px;
    margin: auto;
    padding: 0 1rem;
    font-size: 1.1em;
    text-align: left;
}

/* Slideshow */

.slideshow-container {
    text-align: center;
    margin: 30px auto;
}

.slide-img {
    border: 5px solid #d9603b;
    border-radius: 10px;
    margin-bottom: 10px;
}

.slide-buttons button {
    background-color: #d9603b;
    color: #e6e1d3;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.slide-buttons button:hover {
    background-color: #e6e1d3;
    color: #d9603b;
    border: 1px solid #d9603b;
}
 

/* Icons */
.icons {
    color: #d9603b;
    position: relative;
    z-index: 2;
    font-size: 50px;
    padding-bottom: 20px;
}

/* Footer */
.footer {
    position: relative;
    z-index: 2;
    padding: 1rem;
    background-color: #d9603b;
    color: white;
    text-align: center;
    bottom: 0;
}

/* Media Queries */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
        align-items: center;
    }
    .page-topper {
        font-size: 1.5em;
        padding: 0;
    }
}

@media (max-width: 500px) {
    .center-text {
        font-size: 1em;
    }
    .learn {
        font-size: 16px;
        padding: 8px 12px;
    }
}
