/* Custom CSS Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Variables */
        :root {
            --primary-color: #f6f1a0;
            --accent-color: #18bc9c;
            --text-light: #0d0d0d;
            --nav-height: 80px;
        }

        /* Base Styles */
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--primary-color);
            padding: 1rem 5rem;
            z-index: 1000; /* this z index basically decides the layer of the element or level of importance */
            transition: all 0.3s ease;
            height: 80px; /* Set a fixed height for the navbar */
            display: flex;
            align-items: center; /* Center items vertically */
            box-shadow: #89e9ee 0px 0px 20px;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center; /* Centerheight: 100%; /* Ensure it takes the full height of the navbar
        }
        .nav-logo-image {
            height: 20px; /* Set a fixed height for the logo */
            width: auto; /* Maintain aspect ratio */
            object-fit: scale-down; /* Ensure the image fits within the container */
            margin-left: -10px; /* Adjust as needed */
        }

        .nav-logo {
            color: var(--text-light);
            font-size: 1.5rem;
            font-weight: 700;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
            position: relative;
        }
        
        .nav-menu.active {
            right: 0;
        }

        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--accent-color);
        }

        /* Dropdown Menu for mobile or reponsiveness of the navbar */

        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Masthead/Hero Section */
        .masthead {
            width: 100%;
            height: auto;
            min-height: 70vh;
            background: linear-gradient(rgba(0,0,0,0.6), rgb(73, 100, 150)),
                        url('https://source.unsplash.com/random/1920x1080') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
            padding: 0 1rem;
            box-shadow: #103e51 0px 0px 20px;
            padding-top: 2rem; /* Adjust as needed */
            padding-bottom: 1rem; /* Adjust as needed */
        }

        .web_app_software .masthead {
            min-height: 70vh;
            padding-top: 6rem; /* Adjust as needed */
        }

        .oho_webpage_team .masthead {
            min-height: 40vh;
            padding-top: 2rem; /* Adjust as needed */
        }
        

        .hero-content {
            max-width: 800px;
            padding-bottom: 20px;
            color: black;   
        }
        

        .hero-subtitle {
            font-family: 'Roboto Slab', serif;
            font-size: 1.0rem;
            margin-bottom: 0.5rem;
            padding-top: 75px;
        }

        .about-page .hero-title p {
            font-size: 1.5rem;
            padding-top: 100px;
            

        }
        .about-page .hero-subtitle {
            font-size: 1.0rem;
            
        }

        .hero-title {
            font-size: 2.5rem;
            text-transform: uppercase;
            margin-bottom: 2rem;
            letter-spacing: 2px;
            
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: var(--accent-color);
            color: var(--text-light);
            text-decoration: none;
            text-transform: uppercase;
            border-radius: 5px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: var(--nav-height);
                right: -100%;
                flex-direction: column;
                background: var(--primary-color);
                width: 100%;
                text-align: center;
                padding: 3rem 4;
                transition: right 0.3s ease;
                margin-left: -10px;
            }

            .hero-title {
                font-size: 2.5rem;
            }
        }
        /* Dropdown Menu Styles */
.nav-item.dropdown {
    position: relative;
}
.nav-menu .nav-link {
    display: flex;
    align-items: flex-end; /* Align items to the bottom */
    height: 100%; /* Ensure it takes the full height of the navbar */
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -10;
    background: var(--primary-color);
    list-style: none;
    padding: 0.5rem 0.5rem;
    min-width: 150px;
    z-index: 1001;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-light);
    text-decoration: none;
}

.dropdown-item:hover {
    background: var(--accent-color);
}

/* Hide dropdown menu by default */
.nav-item.dropdown .dropdown-menu {
    display: none;
}

/* Display dropdown menu when the parent has the "open" class */
.nav-item.dropdown.open .dropdown-menu {
    display: block;
}
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 6rem;
    text-align: center;
    width: 100%;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.footer-container p {
    margin: 0;
}

.social-icons a {
    color: var(--text-light);
    margin: 0 0.5rem;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--accent-color);
}
.features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 5%;
}

.feature {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-bottom: 60px;
}

/* No automatic reversal—each feature manually structured in HTML */
/* adjustment and styles of the feature section and feture texts + page specific styling under*/
.feature-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgb(45, 74, 118);
    margin-bottom: 20px; /* adjust as needed */
    line-height: 1.6    /* adjust as needed */;
    
}

.feature-text {
    max-width: 500px;
    
}

.feature-text h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 1.1rem;
    color: #000; /* set to black */
}

.feature-image figure small {
    font-size: 32px; /* Adjust as needed */
    color: #333;   /* Dark color for contrast */
    font-family: 'Montserrat', sans-serif; /* Change font style as desired */
    font-weight: 600;
    line-height: 1.4;
}

body.about-page .feature-image figure small {
    font-size: 18px; /* Adjust as needed */
    color: #333;  /* Use a contrasting color */
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.4;
}

/* Target the specific ul within that div */
.features > div[style*="text-align: center"][style*="margin-bottom: 20px"] > ul {
    display: flex; /* Arrange list items horizontally */
    flex-wrap: wrap; /* Allow items to wrap to the next line if needed */
    justify-content: flex-start; /* Align items to the left */
    padding-left: 0; /* Remove default padding */
    list-style: none; /* Remove default bullets */
}

/* Add spacing between list items */
.features > div[style*="text-align: center"][style*="margin-bottom: 20px"] > ul > li {
    margin-right: 15px; /* Adjust spacing as needed */
    margin-bottom: 5px; /* Add some bottom margin for wrapped items */
}

/* Style the links within that specific list */
.features > div[style*="text-align: center"][style*="margin-bottom: 20px"] > ul > li > a {
    color: #0056b3; /* Change link color (e.g., a shade of blue) */
    font-size: 1rem; /* Change font size (e.g., 1 rem) */
    text-decoration: none; /* Optional: remove underline */
}

.features > div[style*="text-align: center"][style*="margin-bottom: 20px"] > ul > li > a:hover {
    color: #003d80; /* Optional: darker color on hover */
    text-decoration: underline; /* Optional: add underline on hover */
}

/*custom boxes for text to be nore */ 
.colored-box-1 {
    background-color: #7ad3f6;  /* Choose your desired background color */
    padding: 15px;
    border-radius: 10px;
    margin: 10px 0;
}
.colored-box-2 {
    background-color: #f0f8ff;  /* Choose your desired background color */
    padding: 15px;
    border-radius: 10px;
    margin: 10px 0;
}
.colored-box-3 {
    background-color: #f6f1a0;  /* Choose your desired background color */
    padding: 15px;
    border-radius: 10px;
    margin: 10px 0;
}
.colored-box-4 {
    background-color: #f6a0db;  /* Choose your desired background color */
    padding: 15px;
    border-radius: 10px;
    margin: 10px 0;
}


.custom-feature-text {
    text-align: center;
    background-color: #7ad3f6; /* Change this to your desired background color */
    padding: 20px; /* Optional: Add some padding for better spacing */
    border-radius: 10px; /* Optional: Add rounded corners */
}
.custom-feature-description {
    text-align: center;
    background-color: #f6f1a0; /* Change this to your desired background color */
    padding: 20px; /* Optional: Add some padding for better spacing */
    border-radius: 10px; /* Optional: Add rounded corners */
    box-shadow: 0px 4px 6px rgb(45, 74, 118); /* Optional: Add shadow for depth */
}      

/* Mobile Responsiveness: Stack on small screens */
@media screen and (max-width: 768px) {
    .feature {
        flex-direction: column;
        text-align: center;
    }
}

.quote-section {
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
    text-align: center;
    word-break: break-word;
  }
  
  .quote-section p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .quote-section a {
    word-break: break-all;
}

.custom-button {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 25px; /* Adjust as needed */
    border: none;
    background-color: #0078D4;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Employee Section Styles */
        .employee-section {
            padding: 50px 20px;
            background-color: #f8f8f8;
            text-align: center;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .section-title {
            font-size: 2rem;
            margin-bottom: 30px;
            color: #333;
        }
        .employee-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            justify-content: center;
        }
        .employee-card {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .employee-card:hover {
            transform: translateY(-5px);
        }
        .employee-photo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
        }
        .employee-name {
            font-size: 1.2rem;
            font-weight: bold;
            color: #222;
        }
        .employee-role {
            font-size: 1rem;
            color: #666;
        }
        /* Add to your CSS file */
        .fade-in {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.show {
        opacity: 1;
        transform: translateY(0);
        }

        body {
            /* Add the background image */
            background-image: url('../mew_brando.png'); /* Relative path to the image */
            background-size: cover; /* Make the image stretch to cover the entire body */
            background-position: center center; /* Center the image */
            background-repeat: no-repeat; /* Prevent tiling */
            background-attachment: fixed; /* Keep the background fixed while scrolling */
            margin: 0; /* Remove default margin */
            min-height: 100vh; /* Ensure the body spans the full viewport height */
        }

        /* Styles specific to resources_page.html */

        /* -------------  SERVICE BUTTON LAYOUT ------------- */
.service-list{
    display:flex;            /* makes stacking easy            */
    flex-direction:column;   /* one on top of the other         */
    gap:1rem;                /* space between buttons           */
    width:100%;              /* stretch to container width      */
    max-width:420px;         /* optional – caps width on desktop*/
    margin:0 auto;           /* centers block on larger screens */
}

.service-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;              /* full width of .service-list     */
    padding:1.2rem 0;
    font-size:1rem;
    font-weight:600;
    background:#ffffff;
    border:2px solid #222;   /* tweak to match your palette     */
    border-radius:.6rem;
    text-align:center;
    text-decoration:none;
    transition:background .2s ease, transform .2s ease;
}
.service-btn:hover{
    background:#f2f2f2;
    transform:translateY(-2px);
}

/* -------------  RESPONSIVE ADJUSTMENTS ------------- */
/* ≥768 px: show two buttons per row, still fluid       */
@media (min-width:768px){
  .service-list{
      flex-direction:row;
      flex-wrap:wrap;
  }
  .service-btn{
      flex:1 1 calc(50% - 1rem);   /* two per row, keeps gap */
  }
}

/* ≥1200 px: optional three-across layout               */
@media (min-width:1200px){
  .service-btn{
      flex:1 1 calc(33.333% - 1rem);
  }
}

/* this is the section that start eerything past the base site */
.four-box-section {
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  
  .four-box-section .box {
    flex: 1;
    background: #e3f2fd; /* Light blue */
    padding: 40px 20px;
    text-align: center;
    font-size: 1.3rem;
    border-right: 1px solid #b3d1f7;
    box-sizing: border-box;
  }
  
  .four-box-section .box:last-child {
    border-right: none;
  }
  
  /* Responsive for mobile */
  @media (max-width: 800px) {
    .four-box-section {
      flex-direction: column;
    }
    .four-box-section .box {
      border-right: none;
      border-bottom: 1px solid #b3d1f7;
    }
    .four-box-section .box:last-child {
      border-bottom: none;
    }
}

/* Enhanced main content container */
.main-content {
    width: 100%;
    max-width: 1200px;  /* Matches your nav-container max-width */
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    margin-top: 100px; /* Accounts for fixed navbar */
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  /* Enhanced quote section */
  .quote-section {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(to right, #0d47a1, #1976d2);
    color: white;
    border-radius: 0; /* Remove border radius to match screenshot */
    max-width: 100%;
    box-sizing: border-box;
    word-break: break-word;
  }
  
  .quote-section h2 {
    margin-top: 0;
    font-size: 1.8rem;
    color: white;
  }
  
  .quote-section p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  
  .quote-section a {
    color: #f6f1a0; /* Your primary color for contrast */
    text-decoration: underline;
    font-weight: bold;
  }
  
  /* Content sections */
  .content-section {
    width: 100%;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-bottom: 1px solid #eaeaea;
  }
  
  .content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  
  /* Modified image layout */
  .image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  
  .image-item {
    flex: 1 1 300px;
    max-width: 100%;
    margin-bottom: 1rem;
  }
  
  /* Make mobile responsive */
  @media (max-width: 768px) {
    .main-content {
      margin-top: 80px;
    }
    
    .quote-section {
      padding: 1.5rem 1rem;
    }
    
    .quote-section h2 {
      font-size: 1.5rem;
    }
  }

  /* Support Form Styling */
.support-section {
    padding: 3rem 1.5rem;
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.85));
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 1000px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }
  
  .support-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 1.5rem;
    text-align: left;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .support-section .section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 60px;
    background: var(--primary-color);
  }
  
  .support-section .container {
    max-width: 900px;
  }
  
  #support-form .form-group {
    margin-bottom: 1.5rem;
  }
  
  #support-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #333;
    text-align: left;
  }
  
  #support-form input,
  #support-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fff;
  }
  
  #support-form input:focus,
  #support-form textarea:focus {
    border-color: #89e9ee;
    box-shadow: 0 0 0 3px rgba(137, 233, 238, 0.25);
    outline: none;
  }
  
  #support-form .btn {
    background-color: #18bc9c;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-block;
    min-width: 150px;
  }
  
  #support-form .btn:hover {
    background-color: #15a589;
    transform: translateY(-2px);
  }
  
  /* Responsive adjustments */
  @media (min-width: 768px) {
    .support-section {
      padding: 4rem 3rem;
    }
    
    .support-section .section-title {
      font-size: 3rem;
    }
    
    #support-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-gap: 1.5rem;
    }
    
    #support-form .form-group:nth-child(3),
    #support-form .form-group:nth-child(4) {
      grid-column: span 2;
    }
  }

  /* Video styling to match feature images */
.feature-image video {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgb(45, 74, 118);
    margin-bottom: 20px;
    display: block;
}

#ai-video {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* — Blog Section Styles — */
.blog-section {
    padding: 4rem 5%;
    background-color: rgba(255,255,255,0.9);
  }
  .blog-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
  }
  .blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .blog-post {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
  }
  .post-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
  }
  .post-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
  }
  .post-excerpt {
    flex: 1;
    color: #333;
    margin-bottom: 1.5rem;
  }
  .read-more-btn {
    align-self: flex-start;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  .read-more-btn:hover {
    background: #149b85;
  }

  .blog-post .full-content {
    margin-top: 1rem;
  }
  .toggle-content-btn,
  .apply-btn,
  .read-more-btn {
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
  }
  .apply-btn { background: #28a745; } /* green */
  .comments-section {
    margin-top: 1.5rem;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 5px;
  }
  .comments-list {
    list-style: none;
    padding: 0;
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: 0.5rem;
  }
  .comment-form textarea {
    width: 100%;
    height: 4rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
  }
  .login-section {
    padding: 2rem 5%;
    text-align: center;
    background: #fff;
    margin: 2rem 0;
  }
  .login-section input {
    margin: 0.5rem;
    padding: 0.5rem;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }







        
    
