/* styles.css */

body {
    margin: 0;
    padding: 0;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 20px;
    background-color: #2e2e2e; 
}

header {
    background-color: #1e1e1e;
    color: #ffffff;
    padding: 0.3% 0;
    position: sticky;
    top: 0;
    z-index: 1000; /* Set a high z-index to ensure the header stays on top of other elements */
}


nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    padding-left: 10px; /* Adjust the value as needed */
}


.logo img {
    max-width: 8%;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 20px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
}

@media (max-width: 1024px) {
    nav ul li {
        font-size: 0.8rem; /* Reduce font size */
    }
}

.hero {
/*    background-image: url('hero-background.jpg'); Replace with your image */
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 60px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}


@media (max-width: 1024px) {
    .hero-content {
        font-size: 2rem; /* Reduce font size */
    }
}

@media (max-width: 768px) {
    .hero-content {
        font-size: 1.5rem; /* Reduce font size */
    }
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6A869D;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px; /* Add rounded corners to the frame */
}

.portfolio {
    color: #ffffff;
    padding: 2vh 0; /* Adjust padding as needed */
    text-align: center;
    overflow: hidden;
}

.two-column-section {
    display: flex;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0;
}

.column {
    flex: 1;
    padding: 2vh 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 90%;
}

.column-small {
    flex: 0 0 40%;
}

.column-large {
    flex: 0 0 50%;
    text-align: justify;
}

.column img {
    max-width: 70%;
    height: auto;
    margin-left: auto;
}

@media (max-width: 1024px) {
    .column {
        max-width: 100%;
        font-size: 1rem; /* Reduce font size */
        padding: 2vh 0; /* Adjust padding as needed */
    }
}

@media (max-width: 768px) {
    .two-column-section {
        flex-direction: column;
    }
    .column {
        max-width: 100%;
        font-size: 1rem; /* Reduce font size */
        padding: 2vh 0; /* Adjust padding as needed */
    }
    .column-small {
        flex: 0 0 40%;
        display: flex;
        justify-content: center; /* Center horizontally */
        align-items: center;
    }
    .column img{
      margin-left: 0;
    }
}

/* Limit the width of the text */
.column-large h2,
.column-large p {
    max-width: 75%; /* Adjust this value based on your design preference */
    margin: 0 auto; /* Center the text if it doesn't take the full width */
}








.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: auto;
}

.carousel {
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.7s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for responsive design */
    position: relative;
    display: flex; /* Hide all items by default */
}

.carousel-item.active {
    display: flex; /* Show only the active item */
}

.carousel-column {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

.carousel img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.carousel-text {
    text-align: justify;
    display: flex;
    flex-direction: column; /* Arrange children in a column */
    justify-content: center; /* Center content vertically */
}

.carousel h2 {
    margin-top: 0;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 40px;
    transform: translateY(-50%);
    border: none;
    background-color: #6A869D;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    opacity: 0.5;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #6A869D;
    opacity: 1;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

/* Media queries for responsiveness */
@media (max-width: 1024px) {
    .carousel-text {
        padding: 10px 20px;
        font-size: 1rem; /* Reduce font size */
    }
  }
@media (max-width: 768px) {
    .carousel-item {
        flex-direction: column; /* Stack columns vertically */
    }

    .carousel-column {
        padding: 1vh 0; /* Adjust padding for smaller screens */
    }

    .carousel img {
        max-width: 95%; /* Ensure images fit within the column */
        max-height: 40vh; /* Ensure images fit within the column */
    }

    .carousel-text {
        padding: 10px 20px;
        font-size: 1rem; /* Reduce font size */
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 25px;
        height: 35px;
        font-size: 18px;
    }
}






.st {
    position: relative;
    background-image: url('hero-background.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 3% 3%;
    max-height: 100vh; /* Ensures it stretches to the full viewport */
    height: auto; /* Adapts to content height */
    overflow-y: auto; /* Allows scrolling if content grows */
}

.st-content {
    text-align: justify;
    width: 85%;
    max-width: 2048px; /* Prevents excessive width */
    background-color: rgba(0, 0, 0, 0.7); /* Background with opacity */
    padding: 2% 2%;
    border-radius: 10px;
    position: relative; /* Changed from absolute to relative */
    margin: 0 auto; /* Center the content horizontally */
    box-sizing: border-box;
    height: auto; /* Adapts to content height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 1024px) {
    .st-content {
        width: 95%;
        padding: 5%;
        font-size: 1rem; /* Reduce font size */
    }

    .st {
        padding: 10% 0; /* Adjust vertical padding */
    }
}

.st-content p {
    margin: 0;
}

h1{
    text-align: center;
    margin: 0;
    font-size: 42px;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2rem; /* Reduce font size */
    }
  }
@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem; /* Reduce font size */
    }
  }
footer {
    background-color: #1e1e1e;
    color: #ffffff;
    text-align: center;
    padding: 2px 0;
    border-top: none;
    border-bottom: none;
  }

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table th,
.custom-table td {
    border: none;
    padding: 8px;
    box-sizing: border-box; /* Include padding and border in the width calculation */
    vertical-align: middle;
}

.custom-table td:last-child {
    width: 20%; /* Set the width of the rightmost column */
    text-align: right;
}

.custom-table th {
    background-color: #f2f2f2;
    text-align: left;
}

/* Ensure the table layout is flexible and adapts to different screen sizes */
.custom-table {
    table-layout: fixed; /* Ensures the table respects the width settings */
}

.custom-table th,
.custom-table td {
    word-wrap: break-word; /* Prevents content from overflowing */
}

@media (max-width: 1024px) {
    .custom-table td:last-child {
    width: 15%; /* Set the width of the rightmost column */
    font-size: 1rem; /* Reduce font size */
    }
  }

.anchor-target {
    position: relative;
    top: -75px; /* Adjust the value based on your header height */
    visibility: hidden;
    }

#video-container {
    max-width:1024px; /* Set your desired maximum width */
    width: 100%;
    }

a {
    color: #ffffff; /* Use your desired color code or name */
    text-decoration: none; /* Remove the default underline */
}

