body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    position: relative;
}

header img {
    width: calc(100% - 50px);
    height: auto;
}

.header-text {
      position: absolute;
      top: 50%;
      left: 5%; /* Align to the left side of the screen */
      transform: translateY(-50%);
      font-size: 6vw; /* Use viewport width units */
      font-weight: bold;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
    }

    .sub-text {
      font-size: 3vw; /* Half the size of the main text */
      font-weight: normal;
      margin-top: 10px;
    }

    /* Media queries for responsive text size */
    @media (max-width: 768px) {
      .header-text {
        font-size: 4vw;
      }

      .sub-text {
        font-size: 2vw;
      }
    }

    @media (max-width: 480px) {
      .header-text {
        font-size: 3vw;
        padding: 10px;
      }

      .sub-text {
        font-size: 2vw;
      }
    }
    

.video-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.video-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 140px; /* Adjust size as needed */
}

.video-container video {
    width: calc(100% - 50px); /* Adjust width to account for the side menu bar */
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Media query for mobile view */
@media (max-width: 768px) {
    .video-container {
        width: calc(100% - 50px); /* Adjust width to account for the side menu bar */
        height: auto; /* Allow height to adjust automatically */
        margin-right: 0; /* Remove margin for mobile view */
        padding-left: 0; /* Remove padding to align video to the left border */
    }
    
    .video-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 50px; /* Adjust size as needed */
}

    .video-container video {
        width: 100%;
        height: auto; /* Adjust height according to width */
        object-fit: contain; /* Ensure the video fits within the container without cropping */
    }
}

.navbar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    background: rgba(0, 0, 0, 0.7);
    transition: width 0.3s, background 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1001; /* Ensure the navbar is above other content */
}

.navbar.expanded {
    width: 200px;
    background: rgba(0, 0, 0, 1); /* Make the menu non-transparent when expanded */
}
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 30px;
    cursor: pointer;
    margin-top: 10px;
}

.hamburger .line {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.expanded .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 9px);
}

.hamburger.expanded .line:nth-child(2) {
    opacity: 0;
}

.hamburger.expanded .line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -9px);
}

.company-name {
    transform: rotate(90deg);
    color: white;
    margin-top: 100px; /* Adjust margin to avoid overlap */
    font-size: 14px;
    font-weight: bold; /* Make the company name bold */
    transition: transform 0.3s;
    white-space: nowrap;
}

.navbar.expanded .company-name {
    transform: rotate(0deg);
    margin-top: 20px; /* Adjust margin for expanded state */
    border-bottom: 1px solid white; /* Add a thin line between company name and menu items */
    padding-bottom: 10px; /* Add some padding for better spacing */
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align menu items */
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s;
}

.navbar.expanded ul {
    opacity: 1;
}

.navbar ul li {
    margin: 10px 0;
    width: 100%;
    text-align: center; /* Center align menu items */
}

.navbar ul li a {
    color: white; /* Ensure all menu items have white color */
    text-decoration: none;
    padding: 10px;
    display: block;
    width: 100%;
}

.navbar ul li a:hover {
    color: #ddd; /* Add hover effect for better visibility */
}

.company-brochure {
  color: white;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap; /* Prevent text wrapping */
  position: absolute;
  bottom: 100px; /* Proper vertical alignment for collapsed mode */
  left: 50%; /* Center horizontally relative to the navbar */
  transform: translate(-50%, 0) rotate(90deg); /* Rotate vertically and center */
  transform-origin: center; /* Rotate from the center */
  width: 150px; /* Ensure enough space to fit text in collapsed mode */
  text-align: center; /* Center-align text */
  transition: transform 0.3s, width 0.3s, left 0.3s; /* Smooth transitions */
  overflow: hidden; /* Prevent text overflow */
}

.company-brochure a {
  color: white; /* Make the link text white */
  text-decoration: none; /* Remove underline for a clean look */
}

.company-brochure a:hover {
  color: #ddd; /* Change the color on hover for a nice effect */
}

.navbar.expanded .company-brochure {
  transform: rotate(0deg); /* Rotate back to horizontal in expanded mode */
  bottom: 20px; /* Proper vertical position for expanded state */
  left: 50%; /* Keep centered horizontally */
  transform: translateX(-50%); /* Proper centering for expanded state */
  width: calc(100% - 20px); /* Dynamically adjust width to fit expanded navbar, leaving some margin */
  text-align: center; /* Keep text horizontally centered */
  padding-top: 10px; /* Add some spacing for better alignment */
  border-top: 1px solid white; /* Optional border for styling */
}

section {
    padding: 20px;
    margin-right: 50px; /* Adjust margin to prevent overlap */
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade-in.visible {
    opacity: 1;
}

#about {
    width: 50%; /* Occupy 50% of the screen width */
    margin-left: 25%; /* Leave 1/4 of the screen width on the left */
    margin-right: 25%; /* Leave 1/4 of the screen width on the right */
    margin-bottom: 50px;
    padding: 20px; /* Add some padding for better spacing */
    box-sizing: border-box; /* Ensure padding and border are included in the width and height */
}

/* Media query for mobile view */
@media (max-width: 768px) {
    #about {
        width: calc(100% - 50px); /* Occupy full width minus the navbar width */
        margin-left: 0; /* Remove left margin */
        margin-right: 0; /* Remove right margin */
        padding-right: 50px; /* Add padding to the right to prevent overlap */
    }
}

#image-full {
    position: relative; /* Ensures the text overlay is positioned relative to this section */
    width: calc(100% - 50px); /* Adjust width to account for the right menu bar */
    margin: 0;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 0;
}

#image-full img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.text-overlay {
    position: absolute; /* Positions the text overlay absolutely within the section */
    top: 50%; /* Vertically centers the text */
    left: 50%; /* Horizontally centers the text */
    transform: translate(-50%, -50%); /* Centers the text both vertically and horizontally */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for better readability */
    color: white; /* Text color */
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
    width: 100%; /* Ensure the text overlay spans the full width */
    z-index: 1; /* Ensure the text overlay is above the image */
}

/* Media query for mobile view */
@media (max-width: 768px) {
    #image-full {
        display: flex;
        flex-direction: column;
        width: calc(100% - 50px); /* Adjust width to account for the right menu bar */
    }

    #image-full img {
        order: 1; /* Order the image first */
        margin-bottom: 20px; /* Add margin below the image */
    }

    .text-overlay {
        position: static; /* Change to static positioning on mobile view */
        transform: none; /* Remove transform */
        background: none; /* Remove background */
        color: black; /* Change text color to black */
        padding: 20px;
        margin-top: 20px; /* Add margin above the text to separate it from the image */
        order: 2; /* Order the text second */
    }
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 50px;
    margin-bottom: 100px;
}

.service {
    width: 22%;
    text-align: center;
    transition: transform 0.3s;
}

.service img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.service:hover img {
    transform: translateY(-10px);
}

/* Media query for mobile view */
@media (max-width: 768px) {
    .service-container {
        flex-direction: column; /* Stack service divs vertically */
        align-items: center; /* Center align service content */
    }

    .service {
        width: 100%; /* Make each service div full width */
        margin-bottom: 20px; /* Add margin between service divs */
    }
}

/* Contact Section Styles */

.contact-us {
    text-align: center;
    width: 50%;
    margin: 0 auto;
}

.contact-details {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.column {
    flex: 1;
    margin: 0 20px;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
}

.map-container {
    width: calc(100% - 50px); /* Adjust width to account for the right menu bar */
    height: 100vh;
    position: relative;
  }
  iframe {
    width: 100%;
    height: 100%;
    border: 0;
    position: absolute;
  }
@media (max-width: 768px) {
    .contact-us {
        width: calc(100% - 50px);
        margin: 0 50px 0 0;
    }

    .contact-us .contact-details {
        flex-direction: column;
        align-items: center;
    }

    .contact-us .contact-details .column {
        margin-bottom: 20px;
    }

    .contact-us h2 {
    font-size: 18px;
    margin-right: 50px;
    }

    .contact-us .contact-details .column h3 {
    font-size: 14px;
    margin-bottom: 10px;
    margin-right: 50px;
    }

    .contact-us .contact-details .column p {
    font-size: 12px;
    margin-right: 50px;
  }

}

.contact-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: left;
    background-image: url('path-to-your-image.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px;
}

.contact-form-container {
    background: white;
    padding: 20px;
    margin: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

.contact-form-container h2 {
    margin-bottom: 10px;
}

.contact-form-container p {
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 10px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #000;
    padding: 5px;
    font-size: 16px;
}

input:focus,
textarea:focus {
    outline: none;
    border-bottom: 1px solid #007BFF; /* Change to your desired focus color */
}

button[type="submit"] {
    background-color: #000;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #007BFF; /* Change to your desired hover color */
}

.who-we-are {
    margin-right: 50px; /* Space for the vertical bar */
    padding: 0px;
}
.who-we-are h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center; /* Center align the heading */
}
.row {
    display: flex;
    margin-bottom: 30px; /* Added more space between rows */
    box-sizing: border-box;
}
.row .photo, .row .text {
    padding: 20px; /* Small gap on all sides */
    box-sizing: border-box;
}
.row .photo {
    flex: 20%;
    transition: transform 0.3s;
}

.row .photo  img {
    transition: transform 0.3s;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.row .photo:hover img {
    transform: translateY(-10px);
}

.row .text {
    flex: 80%;
}

.row .text h3 {
    font-size: 20px; /* Subheading size */
    margin-bottom: 10px; /* Space below subheading */
}

.second-row {
    background-color: rgba(0, 0, 0, 0.1); /* Black with 50% transparency */
    color: black;
}

.second-row .text h3 {
    color: black; /* Subheading color for second row */
}
.second-row .text p {
    color: black; /* Paragraph color for second row */
}

/* Media query for mobile view */
@media (max-width: 600px) {
    .who-we-are {
        margin-right: 0; /* Remove right margin for mobile view */
        padding: 20px;
    }
    .row {
        flex-direction: column; /* Stack items vertically */
        width: calc(100% - 50px); /* Full width minus the space for the menu */

    }
    .row .photo, .row .text {
        flex: 100%;
    }
    .row .photo img {
        width: 100%;
        height: auto; /* Maintain aspect ratio */
    }
    /* Change order for second row */
    .second-row .photo {
        order: -1;
    }
}

/* Parallax Section */
.parallax1 {
    height: 100vh; /* Full viewport height */
    width: calc(100% - 50px); /* Adjust width to account for the side menu bar */
    background: url('../img/websitesp.jpg') center center no-repeat; /* Parallax background image */
    background-size: cover; /* Ensure it covers the section */
    background-attachment: fixed; /* Key for the parallax effect */
}

.parallax2 {
    height: 100vh; /* Full viewport height */
    width: calc(100% - 50px); /* Adjust width to account for the side menu bar */
    background: url('../img/cloudp.jpg') center center no-repeat; /* Parallax background image */
    background-size: cover; /* Ensure it covers the section */
    background-attachment: fixed; /* Key for the parallax effect */
}

.parallax3 {
    height: 100vh; /* Full viewport height */
    width: calc(100% - 50px); /* Adjust width to account for the side menu bar */
    background: url('../img/automationp.jpg') center center no-repeat; /* Parallax background image */
    background-size: cover; /* Ensure it covers the section */
    background-attachment: fixed; /* Key for the parallax effect */
}

.parallax4 {
    height: 100vh; /* Full viewport height */
    width: calc(100% - 50px); /* Adjust width to account for the side menu bar */
    background: url('../img/forensicsp.jpg') center center no-repeat; /* Parallax background image */
    background-size: cover; /* Ensure it covers the section */
    background-attachment: fixed; /* Key for the parallax effect */
}

/* Content Sections */
.content {
    padding: 50px;
    background-color: #f4f4f4;
    text-align: center;
    width: calc(100% - 100px); /* Adjust width to account for the side menu bar */

}

.content h1, .content h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.content p {
    font-size: 1.0rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Add some spacing between sections */
section + section {
    margin-top: 50px;
}

.footer-section {
    position: relative;
    background: #1c1c1c;
    color: white;
    padding: 20px;
    margin-right: 50px; /* Adjust margin to prevent overlap */
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.footer-container div {
    width: 30%;
    text-align: center;
}

.social-media a img {
    width: 30px;
    margin: 0 10px;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu ul li {
    margin: 0px 0;
}

.footer-menu ul li a {
    color: white;
    text-decoration: none;
}

.company-address p {
    list-style: none;
    padding: 0;
    margin: 5px 0;
    color: white;
    text-decoration: none;
}

/* Media query for mobile view */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack footer divs vertically */
        align-items: center; /* Center align footer content */
    }

    .footer-container div {
        width: 100%; /* Make each footer div full width */
        margin-bottom: 20px; /* Add margin between footer divs */
        
    }
}

footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    background: #000; /* Ensure background color is set */
    color: white;
    padding: 20px;
    margin-right: 50px; /* Adjust margin to prevent overlap */
}

.footer-column {
    width: 30%;
    text-align: center;
}

/* Media query for mobile view */
@media (max-width: 768px) {
    footer {
        flex-direction: column; /* Stack footer columns vertically */
        align-items: center; /* Center align footer content */
        margin-right: 50px; /* Add margin to the right to account for the menu bar */
    }

    .footer-column {
        width: 100%; /* Make footer columns full width */
        margin-bottom: 20px; /* Add margin between footer columns */
    }
}

.indicator {
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.indicator-arrow {
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid red; /* Set arrow color to red */
    margin: 5px 0;
}

.indicator-arrow-one {
    border-bottom: 10px solid red; /* Ensure the arrow color is red */
}

.indicator:hover .indicator-arrow {
    border-bottom-color: #fff; /* Add hover effect for better visibility */
}
.indicator:hover .indicator-arrow {
    border-bottom-color: #fff; /* Add hover effect for better visibility */
}



