@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

/* Global Basic Styles */

section {
    padding: 80px 50px;
    position: relative;
}


h1 {
    font-size: 3rem; 
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2C1C14; 
}

h2 {
    font-size: 2.5rem; 
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2C1C14; 
}

h3 {
    font-size: 1.5rem; 
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2C1C14; 
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #e6e2ce;
    color: #2C1C14;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    position: relative;
    letter-spacing: 0.5px;
    background-size: contain; 
    background-position: center center; 
    background-repeat: no-repeat; 
    position: relative;
    text-align: center; 
    z-index: 2;
}

.highlighted {
    color: #F5AC3B;
    text-decoration: none;
    text-shadow: 0 1px rgba(0,0,0,.2);
}

.spacer {
    flex: 1; 
}

.footer-content {
    background-color: #242221;
    text-align: center;
    color: #07584B;
}

.footer-content p {
    color: #07584B;
}

.footer-link {
    text-decoration: none;
    color: inherit; /* This makes the color the same as the parent element */
}
  
.footer-link:hover {
    color: inherit; /* Keeps the color the same even on hover */
    cursor: pointer; /* Changes the cursor to indicate it's clickable */
}

.title-dk h2 {
    color: #000
}

/* Global Section Styles */

.intro-section {
    color: #E6E2CE; 
    font-size: 1.8rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
    padding: 80px 0;
    text-align: center;
    margin: 40px 0; 
    max-width: 100%;
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08); 
    transition: all 0.3s ease;
}

.enhanced-section {
    text-align: left;
    font-size: 1.5rem;
    max-width: 1200px;
    margin: 80px auto 80px; 
    padding: 60px 120px 80px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    border-radius: 5px; 
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .enhanced-section {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.enhanced-section h2, .enhanced-section p {
    position: relative;
    transition: color 1s ease;
    display: inline-block;
    text-align: left;
    color: #2C1C14;
}

.enhanced-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
}

.enhanced-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 4px;
}

.contact-link {
    display: inline-block;
    background-color: transparent;
    color: #2C1C14;
    border-radius: 25px;
    text-decoration: none;
    transition: color 1s ease;
}

.contact-link:hover {
    color: #F5AC3B;
    transition: color 1s ease;
}

.contact-link-dk {
    display: inline-block;
    background-color: transparent;
    color: #F0EEE3;
    border-radius: 25px;
    text-decoration: none;
    transition: color 1s ease;
}

.contact-link-dk:hover {
    color: #F5AC3B; 
    transition: color 1s ease;
}

.case-studies-carousel h2 {
    text-align: center;
    color: #EDE8DF;
    font-size: 2.5rem;
    max-width: 880px; 
    margin: 0 auto 40px; 
    padding-bottom: 20px; 
    text-shadow: 0 5px 10px rgba(107, 33, 33, 0.14), 0 15px 40px rgba(70, 18, 18, 0.2);
}

.case-studies-dk h2 {
    color: #000;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    overflow-x: hidden;
    transition: transform 1s ease;
}

.carousel-slide {
    border-radius: 20px;
    position: relative; 
    display: none;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0; /* Start with all slides hidden */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 1s ease, display 1s ease;
    z-index: 1; 
    min-height: 250px;
}

.carousel-slide.has-video {
    height: 800px; /* Height for slides with videos */
}

.carousel-slide h3 {
    color: #EDE8DF;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.carousel-slide p {
    color: #EDE8DF;
    text-align: center;
    margin: 0px 40px 40px;
    padding: 0 30px;
}

.carousel-media-container {
    position: relative;
    width: 100%;
    height: 650px;
    padding-bottom: 30px;
}

.carousel-slide.active { 
    display: flex;
    opacity: 1;
    z-index: 2;
}

.carousel-slide-show .carousel-slide-image {
    position: absolute; 
    top: 50%;
    left: 55%;
    width: 90%; 
    height: auto; 
    max-height: 650px;
    object-fit: contain; 
    transform: translate(-50%, -50%); 
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide-show .carousel-slide-image:first-child {
    opacity: 1; 
}

.carousel-thumbnail, .carousel-video, .carousel-backup-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 30px;
    height: calc(100% - 30px); /* Height is 100% minus the bottom margin */
    object-fit: contain; /* Ensures that the content is scaled properly */
    z-index: 3;
}

.carousel-thumbnail {
    z-index: 4; /* Ensure the thumbnail is above the video initially */
    transition: opacity 1s ease; /* Smooth transition for fade-out */
}

.carousel-backup-thumbnail {
    z-index: 2;
}

.carousel-navigation {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-control-prev, .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-indicators {
    list-style: none; 
    display: flex; 
    justify-content: center; 
    padding: 10px 0; 
    margin-top: 20px; 
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0 5px;
    cursor: pointer;
}

.carousel-indicators li.active {
    background-color: rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 768px) {
    .case-studies-carousel {
        padding: 10px;
    }
    .carousel-slide p {
        margin: 20px 5px;
    }
    .carousel-slide h3 {
        margin: 20px 5px;
    }
    .carousel-control-prev, .carousel-control-next {
        opacity: 0.5;
        transition: opacity 0.3s ease;
    }
    .carousel-media-container {
        height: 550px; /* Responsive height */
    }
    .carousel-slide.has-video {
        height: auto; /* Allow height to adjust */
        max-height: 700px; /* Adjust max-height */
    }
}

.testimonials-carousel {
    position: relative;
    padding: 20px;
}

.testimonials-container {
    position: relative;
    min-height: 350px; /* Adjust based on the content size */
    margin: 60px;
}

.testimonial-slides {
    position: relative;
    height: 100%;
    text-align: center;
    padding: 60px 40px;
}

.testimonial-slide {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px; 
    opacity: 0;
    transition: opacity 1s ease;
}

.testimonials-container .testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0; /* All slides are initially invisible */
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-container .testimonial-slide:first-of-type {
    opacity: 1;
}

.testimonials-nav {
    display: none;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    justify-content: space-between;
}

.testimonials-carousel:hover .testimonials-nav {
    display: flex;
}

.testimonials-carousel h2 {
    color: #EDE8DF;
    text-align: center;
    margin-top: 60px;
}

.testimonials h2 {
    color: #EDE8DF;
    text-align: center;
}

.testimonials p {
    color: #EDE8DF;
    text-align: center;
}

.testimonial-content {
    width: 80%;
    position: relative;
    text-align: center;
    padding: 20px 40px;
    max-width: 800px;
    max-height: 300px; 
    margin: 0 auto;
    font-size: 1.1rem;
    color: #EDE8DF;
    text-shadow: 0 1px rgba(0,0,0,.2);
}

@media screen and (max-width: 768px) {
    .testimonial-slide {
        height: auto; 
        max-height: 800px; 
    }

    .testimonial-content {
        max-height: none; /* Remove max-height restriction on mobile */
        padding: 5px; /* Adjust padding for readability */
    }

    .testimonials-container {
        min-height: 720px;
    }

    .testimonials-carousel {
        padding: 30px 0;
    }
}

.testimonial-author {
    padding-top: 10px;
}

.testimonials-navigation {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -10px; /* Position at the top of the testimonial slides */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.testimonials-prev-btn, .testimonials-next-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 10px;
    margin: 0; 
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.5s ease;
}

.testimonials-prev-btn:hover, .testimonials-next-btn:hover {
    background-color: transparent;
}

.testimonials-indicators {
    display: inline-flex; /* Align indicators in a row */
    align-items: center;
    justify-content: center;
}

.testimonials-indicator {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.5s ease; /* Transition for background-color */
}

.testimonials-indicator.active {
    background-color: rgba(255, 255, 255, 0.5); /* Active indicator color */
}

.testimonials-container:hover .testimonials-prev-btn,
.testimonials-container:hover .testimonials-next-btn,
.testimonials-container:hover .testimonials-indicator {
    color: rgba(255, 255, 255, 0.5); 
    transition: color 0.5s ease;
}

@media screen and (max-width: 768px) {
    .testimonial-content {
        padding: 0;
    }
    .testimonials {
        padding: 2%;
    }
}

.quote-start, .quote-end {
    font-family: 'Playfair Display', serif;
    font-size: 10rem; /* Adjust size as needed */
    position: absolute;
    top: 0;
    color: #ddd;

}

.quote-start {
    left: 0; /* Position to the left of the text */
    transform: translateX(-100%); /* Move it to the left side of the container */
}

.quote-end {
    right: 0; /* Position to the right of the text */
    transform: translateX(100%); /* Move it to the right side of the container */
}

.author-name {
    font-weight: bold;
}

.author-title {
    font-style: italic;
}

@media screen and (max-width: 768px) {
    .quote-start, .quote-end {
        opacity: 0;
    }
    .testimonial-content {
        width: 90%; 
        margin: 0 auto;
        padding: 20px;
    }
    .testimonials-container {
        margin: 0;
    }
}

.faq-section {
    padding: 20px;
    text-align: center;
    margin: 0 auto 40px; 
    max-width: 1500px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    text-align: left;
    padding: 10px 20px;
    margin-bottom: 5px;
    background-color: #751007;
    border: none;
    cursor: pointer;
    transition: background-color 1s ease;
    position: relative;
}

.faq-question::after {
    content: '▼';
    font-size: 1.2em;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 1s ease;
}

.faq-answer {
    opacity: 0;
    max-height: 0; 
    transition: 
        opacity 1s ease-in-out, 
        max-height 1s cubic-bezier(0, 1, 0, 1), 
        padding-top 1s cubic-bezier(0, 1, 0, 1), 
        padding-bottom 1s cubic-bezier(0, 1, 0, 1);
    padding: 0 20px; 
    overflow: hidden; 
    padding-top: 0; 
    padding-bottom: 0; 
}

.faq-item.active .faq-question { /* Maybe Delete */
    background-color: #5a1005;
}

.faq-item.active .faq-question::after { /* Maybe Delete */
    transform: translateY(-50%) rotate(180deg);
}

.faq-item.active .faq-answer { /* Maybe Delete */
    opacity: 1;
    max-height: 250px; 
    padding-top: 15px;
    padding-bottom: 15px;
}

.cta-section {
    position: relative;
    overflow: hidden;
    min-height: 125vh;
    background-color: #EDE8DF;
    color: #EDE8DF;
    padding: 40px 20px;
    text-align: center;
    font-size: 1.2em;
    height: auto;
}

.cta-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    background: #751007;
}

.cta-content {
    margin: 10px;
    padding: 20px 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    z-index: 2;
    opacity: 0; 
    transition: opacity 1s ease;
    width: 100%;
}

.cta-content p {
    text-align: center;
    color: #FFFFFF;
}
 
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #F5AC3B; 
    color: #751007; 
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #E9991A;
}

@media screen and (max-width: 768px) {
    .cta-content {
        margin: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Page-specific Colors */

.ai-gradient {
    background: linear-gradient(135deg, #E34234, #F5AC3B); 
}

.ai-gradient-dk {
    background: linear-gradient(135deg, #F5AC3B, #ad670b, #E34234, #ad670b, #F5AC3B); 
}

.ft-gradient {
    background: linear-gradient(135deg, #F5AC3B, #2C1C14, #07584B); 
}

.et-gradient {
    background: linear-gradient(135deg, #07584B, #751007); 
}

.ie-gradient {
    background: linear-gradient(135deg,  #07584B, #b37d2c, #E34234, #751007); 
}

.dcs-gradient {
    background: linear-gradient(135deg, #07584B, #E34234); 
}

.ai-highlight h2:hover, 
.ai-highlight p:hover{
    color: #E34234; 
}

.ft-highlight h2:hover,
.ft-highlight h3:hover,
.ft-highlight p:hover {
    color: #F5AC3B; 
    transition: color 1s ease;
}

.et-highlight h2:hover,
.et-highlight p:hover {
    color: #751007; 
}

.ie-highlight h2:hover,
.ie-highlight p:hover {
    color: #E34234; 
}

.dcs-highlight h2:hover,
.dcs-highlight p:hover {
    color: #07584B;
}

.ai-ribs::before {
    background: linear-gradient(to bottom, #E34234, #F5AC3B);
}

.ai-ribs::after {
    background-color: #E34234;
}

.ft-ribs::before {
    background: linear-gradient(to bottom, #F5AC3B, #07584B);
}

.ft-ribs::after {
    background-color: #F5AC3B;
}

.et-ribs::before {
    background: linear-gradient(to bottom, #751007, #07584B);
}

.et-ribs::after {
    background-color: #751007;
}

.ie-ribs::before {
    background: linear-gradient(to bottom, #751007, #E34234, #F5AC3B, #07584B);
}

.ie-ribs::after {
    background-color: #751007;
}

.dcs-ribs::before {
    background: linear-gradient(to bottom, #07584B, #E34234);
}

.dcs-ribs::after {
    background-color: #07584B;
}

.ai-background {
    background-color: #E34234;
}

.ft-background {
    background: linear-gradient(135deg,  #07584B, #2C1C14);
}

.et-background {
    background: linear-gradient(135deg,  #751007, #2C1C14);
}

.cta-section.default {
    --gradient-color: #751007; 
}

.cta-section.ai-overlay {
    --gradient-color: #751007; 
}

.cta-section.et-overlay {
    --gradient-color: #751007; 
}

.cta-section.ft-overlay {
    --gradient-color: #07584B; 
}

.cta-section.dcs-overlay {
    --gradient-color: #07584B; 
}

.cta-section.ie-overlay {
    --gradient-color: #751007; 
}

.cta-section.main-overlay {
    --gradient-color: #F5AC3B; 
}

/* Navigation Styles */

.navbar {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    transition: top 0.3s;
    z-index: 1000; 
    background-color: rgba(0, 0, 0, 0.7); 
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    margin-left: auto; 
  }
  
  .nav-links li {
    padding: 0 20px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .nav-links a:hover {
    color: #F5AC3B; /* Accent color on hover */
  }
  
  .navbar img {
    padding: 5px;
  }

  .burger {
    display: none;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
}

.logo a {
    display: flex;
    align-items: center; /* This will vertically center the items */
    gap: 10px; /* Adjust the space between logo and text */
    text-decoration: none; /* Optional: Removes underline from text */
}

#ps-logo {
    width: 20px; /* Your existing style */
    /* Remove any margin or padding that might affect alignment */
    margin: 0;
    padding: 0;
    vertical-align: middle; /* Aligns the image baseline to the middle of the text */
}

.company-name {
    font-size: 1.5em; /* Adjust based on your preference */
    color: white; /* Your existing style */
    text-decoration: none;
    font-weight: bold;
    margin: 0;
    padding: 0;
    line-height: 1; /* Adjust line height to match the image height if needed */
}

  @media screen and (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      width: 100%;
      display: none;
      margin-left: 0; /* Reset margin-left for mobile view */
    }

    .nav-active {
        display: block;
    }

    .nav-links li {
        padding: 5px;
      }

    .burger {
      display: block;
    }
    .burger div {
      width: 25px;
      height: 3px;
      background-color: white;
      margin: 5px;
      transition: all 0.3s ease;
    }
  }
  
.services-dropdown:hover .dropdown-content {
    display: block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}


/* Main Page Styles */


#main-intro {
    display: flex;
    align-items: left;
    justify-content: center;
    position: relative;
    background-color: #000;  /* Adjusted to give it a feel similar to header/footer */
    padding: 50px;  
    flex-direction: column;
    overflow: hidden;
    min-height: 100vh;
}

#main-intro h1, #main-intro h2 {
    text-align: left;
    margin: 0;  
    margin-left: 10%; 
    padding: 0; 
    max-width: 80%;  
    z-index: 2;  
    position: relative;
}

#main-intro h1 {
    color: #F5AC3B;  /* Classic Saffron */
    font-size: 3.25rem;  
    font-weight: 700;  
}

#main-intro h2 {
    color: #E34234;
    font-size: 1.5rem;
}

#main-hero-image {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 2s ease-out;
    width: 75%;
    left: auto;
}

@media screen and (max-width: 768px) {
    #main-intro {
        padding: 2%;
    }
    #main-intro h1 {
        font-size: 2.5rem;
        margin-left: 2%;
    }
    #main-intro h2 {
        margin-left: 2%;
    }
    #main-hero-image {
        width: 90%;
    }
}

#main-about { 
    background: linear-gradient(135deg, #751007, #E34234, #F5AC3B, #07584B);
    color: #F0EEE3;
    padding: 40px;
}

#main-about h3, #main-about p {
    color: #F0EEE3;  
}

#main-about h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

#main-about p {
    line-height: 1.8;
}

.main-about-content {
    background-color: rgba(0, 0, 0, 0.7);  
    padding: 20px 40px;  
    border-radius: 10px; 
    max-width: 80%; 
    margin: 0 auto; 
}

#main-services {
    background-color: #E6E2CE; 
    padding: 40px 0; 
    gap: 20px;
    justify-content: center; 
}

#main-services h2 {
    margin: 20px 20px;
}

#main-services-grid {
    background-color: #E6E2CE ; 
    padding: 40px 0; 
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; 
}

.main-service-card {
    background-color: #FFFFFF; 
    position: relative;
    padding-bottom: 20px; 
    height: 520px; 
    color: #2C1C14; 
    padding: 20px;
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    width: 500px; 
    transition: transform 1s;
}

.main-service-card h4 {
    font-size: 1.5rem;
}

.main-service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); 
}

.main-service-image {
    display: block;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    height: 250px;
    width: 250px;
    margin-bottom: 20px;
}

.main-service-image img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px; 
}

.main-service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.main-read-more-link {
    position: absolute;
    bottom: 10px; 
    right: 10px; 
    color: #000; 
    text-decoration: none;
    transition: color 1s ease;
}

.main-service-card:hover .main-read-more-link {
    color: #F5AC3B;
    transition: color 1s ease
}

.main-gradient {
    background: linear-gradient(135deg, #751007, #E34234, #ad792a, #07584B); 
}

@media screen and (max-width: 768px) {
    .main-service-card {
        width: auto;
        height: auto;
    }
    #main-services {
        padding: 40px 10px;
    }
    #main-services h2 {
        margin: 20px 10px;
    }
}

#about-teaser {
    color: white;
    text-align: center;
    padding: 50px 0;
    overflow: hidden;
}
  
.teaser-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 5.5rem;
    font-weight: 800;
    margin-top: 50px;
    padding: 50px;
}

@media screen and (max-width: 768px) {
    .teaser-content h2 {
        font-size: 3.5rem;
        padding: 5%;
    }
}

.word {
    display: inline-block; 
    opacity: 0;
    transform: translateY(100%);
    transition: color 1s ease;
}
  
  /* Animate each word individually */
#about-teaser.start-animation .word:nth-child(1) { animation: slideIn 1.2s ease forwards 0.2s; }
#about-teaser.start-animation .word:nth-child(2) { animation: slideIn 1.2s ease forwards 0.4s; }
#about-teaser.start-animation .word:nth-child(3) { animation: slideIn 1.2s ease forwards 0.6s; }
#about-teaser.start-animation .word:nth-child(4) { animation: slideIn 1.2s ease forwards 0.8s; }
#about-teaser.start-animation .word:nth-child(5) { animation: slideIn 1.2s ease forwards 1s; }
#about-teaser.start-animation .word:nth-child(6) { animation: slideIn 1.2s ease forwards 1.2s; }
#about-teaser.start-animation .word:nth-child(7) { animation: slideIn 1.2s ease forwards 1.4s; }
#about-teaser.start-animation .word:nth-child(8) { animation: slideIn 1.2s ease forwards 1.6s; }
#about-teaser.start-animation .word:nth-child(9) { animation: slideIn 1.2s ease forwards 1.8s; }
  
@keyframes slideIn {
    0% { opacity: 0; transform: translateY(100%); }
    100% { opacity: 1; transform: translateY(0); }
}

.teaser-content h2:hover .word {
    color: #F5AC3B; 
    transform: translateY(-2px) scale(1.05); 
    transition: color 1s ease, transform 1s ease;
}
  
  /* Specific hover effect for the word "human" */
.teaser-content h2:hover .word.human {
    color: #F0EEE3; 
    transition: color 1s ease,
}

.wsua-main {
    background-color: #FFF;
}

.wsua-main h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
}

#wsua-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.wsua-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 50%;
    box-sizing: border-box;
    padding: 10px;
}

.wsua-item:hover img {
    transform: scale(1.1); /* Enlarge the image to 110% of original size */
}

.wsua-item img {
    width: 100px;
    height: auto;
    margin-right: 15px;
    transition: transform 1s ease; /* Add transition for smooth enlarging */
}

.wsua-item .wsua-text-content {
    flex-grow: 1; 
}

.wsua-title {
    margin: 0;
    font-size: 1.2em;
    margin-bottom: 5px;
    text-align: left;
}

.wsua-description {
    font-size: 1em;
    color: #666;
    text-align: left;
}

.wsua-link-container {
    text-align: center; 
    margin-top: 20px;
    width: 100%; 
}

.wsua-link {
    display: inline-block; 
    text-decoration: none;
    margin-top: 20px; 
    padding: 10px 20px; 
    color: black;
}

.wsua-link:hover {
    color: #F5AC3B; 
    transition: color 1s ease; 
}

@media screen and (max-width: 768px) {
    .wsua-item {
        display: block; 
        width: 100%; 
    }
}

/* Service Page Styles */

#service-page-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; 
    object-fit: cover;
}

#service-page-title h1 {
    margin-top: 400px;
    font-size: 3.25rem;  
    font-weight: 700;
    z-index: 2;
    position: relative;
    text-shadow: 2px 2px 2px rgba(0,0,0,.5);
    padding: 10px 20px; 
    display: inline-block;
    color: #F0EEE3;
}

#service-page-title {
    position: relative;
    min-height: 950px;
    height: auto;
    padding: 20px 0;
    text-align: center;
    color: #F0EEE3; 
}

.service-page-intro-content {
    max-width: 1500px;
    margin: 0 auto; 
    padding: 0 60px; 
}

#srv-services {
    background-color: #E6E2CE; 
    padding: 40px 0; 
    gap: 20px;
    justify-content: center; 
}

.services-tiles h2 {
    color: #E6E2CE;
    text-align: center; 
}

#srv-services-grid {
    padding: 40px 0; 
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; 
}

.srv-service-card {
    background-color: #FFFFFF;
    position: relative;
    height: auto;
    color: #2C1C14;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex; 
    align-items: center; 
    gap: 50px;
    transition: transform 0.3s;
    width: 80%; 
    margin: 0 auto;
}

.srv-service-card h4 {
    font-size: 1.5rem;
    text-align: left;
}

.srv-service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); 
}

.srv-service-image {
    width: 30%; 
    flex-shrink: 0;
}

.srv-service-image img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px; 
}

.srv-service-content {
    width: 70%; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

.srv-service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.srv-read-more-link {
    position: absolute;
    bottom: 10px; 
    right: 10px; 
    color: #000; 
    text-decoration: none;
    transition: color 1s ease;
}

.srv-service-card:hover .main-read-more-link {
    color: #F5AC3B;
    transition: color 1s ease
}

.srv-gradient {
    background: linear-gradient(135deg, #751007, #E34234, #ad792a, #07584B); 
}

@media (max-width: 768px) {
    .srv-service-card {
        flex-direction: column;
        text-align: center;
    }

    .srv-service-card h4 {
        text-align: center;
        margin-top: 0;
    }

    .srv-service-image {
        width: 100%; /* Full width for the image */
        margin-right: 0;
        margin-bottom: 10px; /* Spacing between image and text */
    }

    .srv-service-content {
        width: 100%; /* Full width for the text content */
    }

    /* Adjust image size if necessary */
    .srv-service-image img {
        max-width: 100%;
        height: auto;
    }

    .services-section {
        padding: 10px;
    }

    .services-tiles {
        padding: 10px;
    }

    #service-page-title h1 {
        padding: 0;
    }

}

/* AI Integration Styles */

#ai-services {
    color: #F0EEE3;
    background: linear-gradient(135deg, #F5AC3B,#751007, #2C1C14, #07584B);  
    padding: 40px auto;
    margin: 0 auto; 
    visibility: hidden;
}

#ai-services h2 {
    text-align: center; 
    max-width: 1500px;   
    margin: 0 auto 40px; 
    padding-bottom: 20px; 
    text-shadow: 0 5px 10px rgba(107, 33, 33, 0.14), 0 15px 40px rgba(70, 18, 18, 0.2);
    color: #F0EEE3;
}

.ai-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1500px;
    margin: 0 auto;
}

.ai-service-tile {
    background-color: rgba(227, 66, 52, 0.7); 
    color: #F0EEE3; 
    text-shadow: 0 5px 10px rgba(107, 33, 33, 0.14), 0 15px 40px rgba(70, 18, 18, 0.2);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    width: 400px;
    transition: transform 0.3s, opacity 0.3s;
    animation: fadeIn 1s forwards; 
}

.ai-service-tile h3 {
    color: #EDE8DF;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.ai-service-tile p {
    color: #EDE8DF;
    text-align: center;
    margin-bottom: 10px;
}

.ai-service-tile:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow effect */
    transform: translateY(-5px); /* Slight lift effect */
  }

@media only screen and (max-width: 1500px) {
    .ai-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 768px) {
    .ai-services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    #ai-services {
        padding: 30px 10px;
    }
}

.ai-case-content {
    display: flex;
    flex-direction: row;
    height: 100%;
}

/* For small screens */
@media (max-width: 768px) {
    .ai-case-content {
        flex-direction: column; /* Vertical layout */
    }
}

.ai-wow-content {
    flex: 1;  /* Take up half of the parent's space */
    z-index: 2;  /* Above the gradient */
    position: relative;
    padding: 20px;
}

.ai-wow-case-study:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg, 
        transparent 40%,
        rgba(7, 88, 75, 0.7) 60%,  
        rgba(7, 88, 75, 0.9) 70%, 
        rgba(7, 88, 75, 0.9) 100%  
    );
    pointer-events: none;
    z-index: 1;
}

.ai-wow-case-study {
    background-image: url('assets/ai-wow-women-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    display: flex;
    padding: 0;
}

.ai-case-content {
    flex: 1;
    display: flex;
    width: 100%;
    padding: 20px;
    z-index: 3;
}

.ai-challenge-impact {
    clear: both;
}

.ai-wow-intro-highlight {
    font-style: italic;
    margin: 20px 0;
}

.ai-wow-title {
    font-size: 2.5rem;
    margin: 20px 20px 20px 0;
    color: #F0EEE3;
    text-align: center;
    font-weight: bold;
}

.ai-wow-summary {
    font-size: 1.25rem;
    margin: 0;
    color: #F0EEE3;
}

.ai-wow-summary p {
    color: #F0EEE3;
    text-align: center;
}

.ai-wow-summary li {
    list-style-type: none;
    margin-top: 10px;
}

.ai-wow-summary li::before {
    content: '★';
    color: #F5AC3B;
    margin-right: 10px;
}

@media screen and (max-width: 1400px) {
    .ai-wow-case-study:before {
        background: linear-gradient(
            90deg, 
            transparent 30%, /* 100% - 66% to start the gradient earlier */
            rgba(7, 88, 75, 0.7) 44%,  
            rgba(7, 88, 75, 0.9) 54%, 
            rgba(7, 88, 75, 0.9) 100%  
        );
    }
    .spacer {
        flex: 0 0 34%; /* Adjust the spacer to take up the remaining space */
    }
}

@media screen and (max-width: 1080px) {
    .ai-wow-case-study {
        background-position: right; /* Align image to the right */
        justify-content: center; /* Center content */
    }

    .ai-wow-case-study:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(7, 88, 75, 0.7); /* 70% opacity black overlay */
        pointer-events: none;
        z-index: 1;
    }

    .ai-wow-content {
        z-index: 2;
        text-align: center; /* Center text */
        width: 100%; /* Take full width */
        padding: 0;
    }

    .ai-wow-title {
        margin: 0;
    }

    .spacer {
        display: none; /* Hide spacer */
    }
}


@media screen and (max-width: 768px) {
    .ai-wow-content {
      position: static;
      transform: none;
      right: auto;
      top: auto;
    }
}

/* Ethical Tech Styles */

#et-services {
    color: #F0EEE3;
    background: linear-gradient(135deg, #751007, #2C1C14, #07584B);  
    padding: 40px auto;
    margin: 0 auto; 
    visibility: hidden;
}

#et-services h2 {
    color: #F0EEE3;
    font-size: 2.5rem;
    text-align: center;
    max-width: 880px; 
    margin: 0 auto 40px; 
    padding-bottom: 20px; 
    text-shadow: 0 5px 10px rgba(107, 33, 33, 0.14), 0 15px 40px rgba(70, 18, 18, 0.2);
}

.et-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1500px;
    margin: 0 auto 50px;
    padding: 0 10px;
}

.et-service-tile {
    background-color: #751007; 
    color: #F0EEE3; /* Off-white color */
    text-shadow: 0 5px 10px rgba(107, 33, 33, 0.14), 0 15px 40px rgba(70, 18, 18, 0.2);
    padding: 40px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    width: 400px; /* Fixed width */
    transition: transform 0.3s, opacity 0.3s;
    animation: fadeIn 1s forwards; /* Fade-in animation */
    box-sizing: border-box; 
}

.et-service-tile h3 {
    color: #EDE8DF;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.et-service-tile p {
    text-align: center;
    color: #EDE8DF;
}

.et-service-tile:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

@media screen and (max-width: 768px) {
    .et-service-tile {
        width: 100%; /* Full width of the container */
        padding: 20px; /* Adjust padding as needed */
    }

    #et-services {
        padding: 50px 10px;
    }
}




/* Data-crafted Strategy Styles */

#dcs-services {
    background-color: #fff;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    padding: 20px 0 60px;
}

#dcs-services h2 {
    margin-bottom: 20px; 
    flex-shrink: 0;
    flex-grow: 0;  
    padding-left: 10%;
    padding-right: 10%;
}

#dcs-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 60px;
    padding: 100px;
    width: auto;
    max-width: 1250px;
    flex-grow: 1;  
    flex-shrink: 1; 
    overflow-y: auto;
}

.dcs-service-icon, .dcs-service-thumbnail {
    width: 160px; /* Adjust based on your design */
    height: 160px; /* Adjust based on your design */
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
}

.dcs-service-thumbnail {
    z-index: 1;
}

.dcs-service-title {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-bottom: 5px;
}

.dcs-service-description {
    max-height: 0;        
    overflow: hidden;     
    transition: max-height 1s ease-in-out; 
}

.dcs-service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 160px; /* Adjust this value to create space above the text */
}

.dcs-service-item .dcs-service-expand {
    transition: color 0.3s ease, transform 1s ease;
    cursor: pointer;
    display: inline-block;
}

.dcs-service-item.expanded .dcs-service-expand {
    transform: rotate(45deg);
}

.dcs-service-item:hover .dcs-service-expand {
    color: #07584B;
}

.dcs-service-item.expanded .dcs-service-description {
    max-height: 450px;
    margin-bottom: 10px;
}

.dcs-service-brief-description {
    margin-bottom: 10px; /* Adds a bit more space between the description and the lists below */
    font-size: 1em;
    text-align: center;
}

.dcs-service-points {
    font-size: 0.75em; /* Make the text slightly smaller than the list that follows */
    margin-bottom: 5px;
    color: #07584B;
    text-align: center;
}

@media (max-width: 1250px) {
    #dcs-services-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 10px;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    #dcs-services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Immerseive Edventure Styles */

#ie-services {
    color: #F0EEE3;
    background: linear-gradient(135deg, #07584B, #F5AC3B,#751007);  
    padding: 40px auto;
    margin: 50px auto 50px; /* centers the entire section */
    visibility: hidden; /* Initially hidden, will be shown using JS when scrolled into view */
}

#ie-services h2 {
    text-align: center; 
    max-width: 1500px;   
    margin: 0 auto 40px; 
    padding-bottom: 20px; 
    text-shadow: 0 5px 10px rgba(107, 33, 33, 0.14), 0 15px 40px rgba(70, 18, 18, 0.2);
    color: #F0EEE3;
}

.ie-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1500px;
    margin: 0 auto 50px; /* This will center the grid container if the parent is wider than 880px */
}

.ie-service-tile {
    background-color: rgba(227, 66, 52, 0.7); 
    color: #F0EEE3; /* Off-white color */
    text-shadow: 0 5px 10px rgba(107, 33, 33, 0.14), 0 15px 40px rgba(70, 18, 18, 0.2);
    padding: 40px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    width: 400px; /* Fixed width */
    transition: transform 0.3s, opacity 0.3s;
    animation: fadeIn 1s forwards; /* Fade-in animation */
}

.ie-service-tile h3 {
    color: #EDE8DF;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.ie-service-tile p {
    color: #EDE8DF;
    text-align: center;
    margin-bottom: 10px;
}

.ie-service-tile:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow effect */
    transform: translateY(-5px); /* Slight lift effect */
  }

/* About Us Styles */

#au-wsua {
    background-color: #fff;
    display: flex;
    flex-direction: column; 
    align-items: center; 
}

#au-wsua h2 {
    margin-bottom: 20px; 
    flex-shrink: 0; /* Ensures the title doesn't shrink */
    flex-grow: 0;   /* Ensures the title doesn't grow */
    padding-left: 10%;
    padding-right: 10%;
}

#au-wsua-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    padding: 80px 20px;
    width: auto;
    max-width: 1400px;
    flex-grow: 1;  
    flex-shrink: 1; 
    overflow-y: auto;
    justify-items: center;
}

.au-wsua-icon {
    width: 50px;
    height: 50px;
    display: inline-block;
    vertical-align: middle;
}

.au-wsua-title {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-bottom: 5px;
}

.au-wsua-title h3 {
    text-align: center;
}

.au-wsua-description {
    max-height: 0;        
    overflow: hidden;     
    transition: max-height 1s ease-in-out; 
}

.au-wsua-item .au-wsua-expand {
    transition: color 0.3s ease, transform 1s ease;
    cursor: pointer;
    display: inline-block;
}

.au-wsua-item.expanded .au-wsua-expand {
    transform: rotate(45deg);
}

.au-wsua-item:hover .au-wsua-expand {
    color: #07584B;
}

.au-wsua-item.expanded .au-wsua-description {
    max-height: 450px;
    margin-bottom: 10px;
}

.au-wsua-brief-description {
    margin-bottom: 10px; /* Adds a bit more space between the description and the lists below */
    font-size: 1em;
    text-align: center;
}

.au-wsua-points {
    font-size: 0.75em; /* Make the text slightly smaller than the list that follows */
    margin-bottom: 5px;
    color: #07584B;
    text-align: center;
}

.au-wsua-item img {
    display: block;
    margin: 0 auto;
    transition: transform 1s ease; /* Add transition for smooth enlarging */
    max-width: 300px; 
}

.au-wsua-item:hover img {
    transform: scale(1.1); /* Enlarge the image to 110% of original size */
}

@media (max-width: 1250px) {
    #au-wsua-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 10px; 
        gap: 15px;
    }
}

/* Media query for small screens: 8 rows of 1 item */
@media (max-width: 768px) {
    #au-wsua-grid {
        grid-template-columns: 1fr;
    }
}

.au-timeline-section {
    display: flex;
}

/* Timeline container */
.au-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 60px;
}

/* Timeline line */
.au-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #F5AC3B;
    z-index: -1;
}

/* Timeline entry */
.au-entry {
    display: flex;
    align-items: center;
    position: relative;
    margin: 30px 0;
}

.au-entry .au-entry-content {
    width: 40%;
    padding: 10px;
    border: 2px solid #751007;
    border-radius: 8px;
    background-color: #751007;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    color: #EDE8DF;
}

/* Position entries on the right */
.au-entry.right .au-entry-content {
    margin-left: 58%;
}

/* Position entries on the left */
.au-entry.left .au-entry-content {
    margin-right: 58%;
}

/* Dot */
.au-entry::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px; 
    background-color: #751007;
    border-radius: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
}

/* Connect dot to box */
.au-entry::after {
    content: '';
    position: absolute;
    top: 50%;
    background-color: #751007;
    width: 8%; /* Extended the line */
    height: 2px;
    z-index: 0;
    transform: translateY(-50%);
}

.au-entry.left::after {
    right: 50%;
}

.au-entry.right::after {
    left: 50%;
}

/* Date */
.au-entry .date {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 8%;
    text-align: center;
    z-index: 1;
}

.au-entry.right .date {
    right: 52%;
}

.au-entry.left .date {
    left: 52%;
}

/* For images */
.au-entry img {
    max-width: 100%;
    height: auto;
}

.au-entry-inner {
    display: flex;
    align-items: center;
}

/* For text inside each entry */
.au-entry-inner p {
    flex: 1;
    margin-right: 10px;
    margin-left: 10px; /* Add left margin for when the image is on the left */
}

/* For images inside each entry */
.au-entry-inner img {
    width: 150px;
    height: auto;
}

.au-timeline .au-entry:nth-of-type(n+4) {
    display: none;
}

#show-more-container {
    text-align: center;
    margin: 20px;
}

.show-more-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #F5AC3B; 
    color: #751007; 
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

@media screen and (max-width: 768px) {
    /* Timeline line on the far left */
    .au-timeline::before {
        left: 10px; /* or as needed */
    }

    /* Align all entries to the left and make them wider */
    .au-entry .au-entry-content {
        margin-left: 30px; /* Space from the timeline line */
        margin-right: 30px; /* Space from the right edge */
        width: calc(100% - 60px); /* Adjust width to take up available space */
    }

    /* Position the dates correctly */
    .au-entry .date {
        position: absolute;
        top: -25px; /* Adjust as needed to position above the box */
        left: 50%; /* Center relative to the entry */
        transform: translateX(-50%); /* Ensure it's centered */
        width: auto; /* Reset any specific width if necessary */
    }

    /* Adjust the dot and connecting line */
    .au-entry::before, .au-entry::after {
        left: 10px; /* Align with the timeline line */
    }

    .au-entry.right::after {
        left: 10px; /* Align the right connecting line with the timeline line */
        width: 20px; /* Adjust the width if needed to connect to the text box */
    }

    .au-entry.left::after {
        width: 20px; /* Adjust the width if needed to connect to the text box */
    }

    .au-entry.left .date {
        left: 50%;
    }

    .au-entry.right .date {
        right: 0;
    }

    /* Override left/right-specific styles */
    .au-entry.left .au-entry-content, .au-entry.right .au-entry-content {
        margin-left: 30px;
        margin-right: 30px;
    }

    #au-timeline-section {
        padding: 0;
    }
}



#press-features {
    text-align: center;
    padding: 20px;
    background-color: #fff;
}

#press-features h2 {
    margin: 80px 0 0;
}

.press-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.press-logos-container {
    max-width: 1200px; /* Or whatever maximum width you prefer */
    margin: 0 auto 80px;
    padding: 50px 80px; /* This adds some space on the sides */
    justify-content: center;
}

.press-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 25px; /* Adjust the space between logos */
}

.press-item {
    flex: 0 1 calc(16.66% - 20px); /* Adjusts size to split into six with gaps */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px; /* Adjust based on your design */
}

.press-logo {
    max-width: 100%;
    max-height: 100%;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: filter 1s ease, opacity 1s ease;
}

.press-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .press-row {
        flex-wrap: wrap;
    }
    .press-item {
        flex: 0 1 calc(50% - 20px); /* Adjusts size to 2 logos per row on smaller screens */
    }
    .press-logos-container {
        padding: 5%;
    }
}

@media (max-width: 1250px) {
    #au-wsuas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Contact Us Styles */
.contact-main {
    padding: 50px;
    background: linear-gradient(135deg, #751007, #E34234, #F5AC3B, #07584B);
    color: #F0EEE3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-columns {
    max-width: 1250px;
    align-items: center;
}

.contact-columns h1 {
    font-size: 3.25rem;
    color: #F5AC3B;
    margin-bottom: 20px;
    text-shadow: 0 1px rgba(0,0,0,.2);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    max-width: 1250px; 
    margin: 0 auto; 
}

.contact-info {
    font-size: 1.5rem;
    max-width: 33%;
    padding: 10px;
    margin-left: 20px;
    color: #000;
    text-align: left;
}

.contact-image-container {
    margin: 20px;
    width: 67%;
}

.contact-image-container img {
    max-width: 750px;
    height: auto;
    border: 8px solid #000; /* Dark border */
}

.contact-image-caption {
    text-align: center;
    margin-top: 10px; /* Adjust spacing as needed */
    color: #000;
}

@media (max-width: 1250px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
        padding: 10px
    }

    .contact-image-container, .contact-info {
        max-width: 100%; /* Full width for small screens */
        max-height: none; /* Remove max-height restriction for the image */
        margin-left: 0;
        text-align: center;
    }

    .contact-image-container img {
        max-width: 100%;
        height: auto;
        max-height: 300px; /* Adjust maximum height for smaller screens */
    }

    .contact-main {
        padding: 10px;
    }

    .contact-columns {
        padding: 0;
    }
}
button {
    display: block;
    background-color: #2C1C14;
    color: #F0EEE3;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #F5AC3B;
}

@media screen and (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

html {
    scroll-behavior: smooth;
}

.privacy-policy {
    text-align: left;
    margin: 0;
    padding: 0 40px;
}

.privacy-policy ul {
    text-align: left;
    margin: 0;
    padding: 0 40px;
}

.privacy-policy h1, 
.privacy-policy h2, 
.privacy-policy h3 {
    text-align: left;
    margin: 0;
    padding-top: 40px;
}

.terms-and-conditions {
    text-align: left;
    margin: 0;
    padding: 0 40px;
}
