/* Additional global styles */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
  }

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Updated font */
    background: #fff;
    color: #333;
}

/* ... other styles ... */

/* Primary Header */
header nav {
    background: #fff; /* White background */
    padding: 10px 20px; /* Padding on top/bottom and left/right */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Subtle shadow for depth */
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between logo and nav */
    align-items: center; /* Center items vertically */
}


.logo img {
    height: 50px; /* Or any other size that fits your design */
    width: auto; /* Maintain aspect ratio */
}

#check{
    display: none;
}

.icons{
    right: 5%;
    font-size: 2.3rem;
    color: #000000;
    cursor: pointer;
    display: none;
    position: absolute;
    margin-top: -40px;
    /* margin-left: -15px; */

}

/* Navigation styles */
.nav-links {
    display: flex; /* Use flexbox for the nav links */
    justify-content: flex-end; /* Align nav items to the right */
    align-items: center; /* Center links vertically */
    list-style: none; /* Remove list styles */
    margin-left: auto; /* Push the navigation to the end of the flex container */
    font-family: 'Montserrat', sans-serif; /* More appealing font */
}

.nav-links li {
    padding: 0 10px; /* Space between nav items */
}

.nav-links a {
    text-decoration: none;
    color: #12403c;
    font-weight: none;
    font-size: 16px;
    position: relative; /* For the pseudo-element positioning */
    padding-bottom: 5px; /* Space for the underline */
}

/* Animated underline styles */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: rgb(255, 68, 0); /* Blue line */
    transition: width 0.5s ease, left 0.5s ease; /* Animation for the line */
}

/* Hover effect */
.nav-links a:hover::after,
.nav-links a:focus::after { /* Focus added for accessibility */
    width: 100%;
    left: 0;
}

/* Styles for dropdown menu */
.services-dropdown {
    position: relative; /* Set the dropdown container to relative */
}

.dropdown-content {
    display: none; /* Hide the dropdown content by default */
    position: absolute; /* Position it absolutely within the .services-dropdown */
    background-color: #ffffff; /* White background for the dropdown, no transparency */
    min-width: 500px; /* Minimum width for the dropdown */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); /* Add some shadow */
    z-index: 1000; /* High z-index to ensure it's above other items */
}

/* Show the dropdown content on hover */
.services-dropdown:hover .dropdown-content {
    display: block; /* Show the dropdown */
}

/* Style the dropdown links */
.dropdown-content li {
    color: black; /* Make text color black or choose your preference */
    padding: 12px 16px; /* Add some padding */
    text-decoration: none; /* No underline on links */
    display: block; /* Dropdown items should be block to fill the container */
    background-color: #f9f9f9; /* Set a different background color if needed */
}

/* Change the color of dropdown links on hover */
.dropdown-content li:hover {
    background-color: #f2f2f2; /* Light grey background on hover */
}

/* Ensure the dropdown doesn't disappear when you hover over the submenu items */
.dropdown-content li:hover .dropdown-content {
    display: block;
}


/* Remove the secondary header curve and adjust padding */
.secondary-header {
    background: #12403c; /* Light blue background */
    padding: 10px 20px; /* Reduced padding for less height */
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between flags and contact info */
    align-items: center; /* Center items vertically */
    position: relative; /* Relative for positioning */
    z-index: 2; /* Keep on top */
}

/* Remove the pseudo-element for the curve */
.secondary-header::after {
    display: none; /* Hide the pseudo-element */
}

/* Flag image styles */
.flags img {
    width: 20px; /* Set the flag size */
    height: auto; /* Maintain aspect ratio */
    margin-right: 1px; /* Space between flags */
}

/* Contact info styles */
.contact-info {
    text-align: right;
    color: #fff;
    font-size: 15px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* Hero Section with Video and Gradient Overlay */
.hero-section {
    position: relative;
    height: 400px;
    overflow: hidden;
}

#heroVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Black Gradient Overlay */
.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 0; /* Above the video, below the text */
}

/* Hero Text */
.hero-text {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    z-index: 1; /* Above the gradient */
    color: white;
}

/* Stylish Parallelogram Button */
.hero-text button {
    text-decoration: none;
    background-color: transparent; /* Transparent background */
    color: white;
    border: 2px solid white; /* Solid white border */
    padding: 10px 30px; /* Padding inside the button */
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.5s ease; /* Smoother transition for the hover effect */
    /* Create parallelogram shape */
    transform: skew(-20deg);
    display: inline-block; /* Allows transform to be applied */
    margin-top: 20px; /* Adjust as necessary for positioning */
    outline: none; /* Remove outline on focus for aesthetics */
    position: relative; /* Position relative for pseudo-elements */
    overflow: hidden; /* Hide overflow for pseudo-elements */
    padding: 15px 40px; /* Increase padding for larger text */
    font-size: 1.2rem; /* Larger font size for the button */
}

/* Button pseudo-element for hover effect */
.hero-text button::before {
    text-decoration: none;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0; /* Start with no width */
    height: 100%;
    background-color: #12403c; /* The fill color on hover */
    transition: width 0.5s ease; /* Smooth transition for hover effect */
    z-index: -1;
    transform: skew(20deg); /* Reverse the skew effect */
}

/* Button Hover Effect */
.hero-text button:hover::before {
    width: 100%; /* Full width on hover */
}

/* Ensure the button text is legible over the pseudo-element */
.hero-text button span {
    text-decoration: none;
    position: relative;
    z-index: 2; /* Above the pseudo-element */
    display: block; /* Corrects the skew transform */
    transform: skew(20deg); /* Reverse the skew effect */
}

.hero-text button span a {
    text-decoration: none;
    color: #fff;
}

/* Adjust the button text alignment */
.hero-text button:hover span {
    text-decoration: none;
    color: white; /* Change text color if needed on hover */
}


.hero-text {
    text-decoration: none;
    position: absolute;
    top: 50%;
    left: 10%; /* Shift to the right from the left edge */
    transform: translateY(-50%);
    z-index: 1; /* Above the video */
    color: white;
    font-family: 'Montserrat', sans-serif; /* An appealing font */
    text-align: left;
}

/* Typography within the hero section */
.hero-text h1 {
    font-size: 3rem; /* Increase size and adjust as needed */
    margin: 0 0 10px;
    font-weight: 700; /* Bold font weight */
}

.hero-text p {
    font-size: 1.5rem; /* Increase size and adjust as needed */
    margin-bottom: 20px;
    font-weight: 400; /* Normal font weight */
}



/* services */
/* Demarcation Block */
.demarcation-block {
    height: 10px; /* Short height for a thin line */
    background-color: #12403c; /* Red color */
    width: 100%; /* Full width */
    margin: 50px 0; /* Space above and below the block */
}


#about-us {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background: #f8f8f8; /* Light background color for the section */
}

.container {
    max-width: 1200px; /* Or the max width you prefer */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space between image and text */
}

.about-image img {
    max-width: 100%; /* Half the container width */
    height: 550px; /* Maintain aspect ratio */
    border-radius: 100px;
    /* border: solid #12403c; */
    margin-left: -40px;
}

.about-content {
    max-width: 50%; /* Half the container width */
    text-align: left; /* Align the text to the left */
}

.about-content h2 {
    font-size: 2.5rem; /* Larger font size for the heading */
    color: #333; /* Dark color for the text */
    margin-bottom: 20px; /* Spacing below the heading */
}

.about-content p {
    font-size: 1rem; /* Appropriate font size for the paragraph */
    color: #666; /* Slightly lighter color for the paragraph */
    line-height: 1.6; /* Line height for better readability */
    margin-bottom: 20px; /* Spacing between paragraphs */
}

.about-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #007bff; /* Button background color */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.about-btn:hover {
    background-color: #0056b3; /* Darker shade for hover effect */
}




#services {
    padding: 50px 20px;
    background-color: #fff; /* Change this as necessary to match your design */
}

.services-header h2 {
    text-align: left;
    color: #12403c; /* Red color for the main title */
    font-size: 1.8rem; /* Adjust size as needed */
    margin-left: 25px;
    font-family: Arial, Helvetica, sans-serif;
}

.services-header h3 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: left;
    color: #333; /* Darker color for the subtitle */
    font-size: 3.0rem; /* Larger size for subtitle */
    margin-bottom: 50px; /* Space before the service items */
    margin-left: 25px;
}

.service-cards {
    margin-left: 100px;
    margin-right: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: -100px;
    margin-top: 30px;
}



.service-card {
    position: relative;
    width: 350px; /* Adjust the width to be more narrow for a vertical look */
    min-height: 400px; /* Add a minimum height to make cards taller */
    background-color: rgb(247, 245, 245);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: space-between; /* Distribute space around items */
}

.service-card:hover {
    transform: translateY(-5px); /* Lift card up on hover */
}

.service-card-content {
    padding: 25px; /* More padding for a spacious look */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center items for a neat layout */
    text-align: center;
    height: 100%; /* Full height of card */
    z-index: 1;
}

.service-card-hover {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: bottom 0.3s ease;
    display: flex;
    align-items: flex-end; /* Aligns the button to the bottom */
    justify-content: center;
}

.service-card-content h4 {
    font-family: 'Montserrat', sans-serif; /* Consistent font */
    font-size: 1.5rem; /* Larger size for titles */
    color: #12403c; /* Red color for titles */
    margin: 15px 0; /* More vertical space around the title */
    margin-bottom: 20px;
}

.service-card-content p {
    margin-top: 65px;
    font-family: 'Open Sans', sans-serif; /* A pleasant, readable font */
    font-size: 1rem; /* Standard size for body text */
    color: #666; /* Lighter text for the body */
    line-height: 2.0; /* Line height for better readability */
    margin-bottom: 15px; /* Space at the end of the paragraph */
}

.service-card:hover .service-card-hover {
    bottom: 0;
}

.service-icon {
    max-width: 60px; /* Adjust as needed */
    margin-bottom: 20px;
}

.sericon {
    color: #12403c;
    margin-left: 150px;
    margin-top: 30px;
    font-size: 50px;
}


.service-divider {
    width: 100px;
    height: 2px;
    background-color: #12403c;
    margin-bottom: 20px;
}

.service-card-hover img {
    transition: opacity 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Low opacity */
    background: linear-gradient(to top, #12403c, transparent); /* Red gradient */
}

.service-card-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #12403c;
    border-radius: 3px;
    color: #12403c;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card-btn:hover,
.service-card-btn:focus {
    background-color: #12403c;
    color: white;
}

.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card-btn:hover .arrow,
.service-card-btn:focus .arrow {
    transform: translateX(5px); /* Arrow moves right on hover/focus */
}

.why-us-section {
    background-color: #f4f0f0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 50px 20px;
}

.why-us-image img {
    max-width: 100%; /* Adjust the size as needed */
    border-radius: 30px; /* Rounded corners for the image */
    margin-left: 120px;
}

.why-us-content {
    width: 50%;
    margin-top: 60px;
    margin-left: 250px;
}

.why-us-content h2{
    margin-bottom: 40px;
    font-size: 3rem;
}

.why-us-block {
    margin-bottom: 20px; /* Space between blocks */
}

.why-us-button {
    background-color: #12403c;
    color: white;
    border: none;
    border-radius: 20px; /* Rounded corners for the button */
    padding: 20px;
    font-size: 1.2rem;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 30px;
    margin-left: -30px;
}

.why-us-button:hover {
    background-color: #b1aaa9; /* Slightly darker on hover */
}

.why-us-button.active {
    background-color: #C23B2D; /* Slightly darker to indicate active state */
}

.why-us-detail {
    font-size: 1rem; /* Appropriate font size for the paragraph */
    color: #666; /* Slightly lighter color for the paragraph */
    /* font-family: 'Courier New', Courier, monospace; */
    /* font-weight: bold; */
    display: none;
    line-height: 1.9;
    background-color: #f7f7f7; /* Light background for detail */
    border-radius: 15px; /* Rounded corners for the detail block */
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}


/* Add styles for your services list items here */

.standards-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #ffffff; /* Adjust the background color as needed */
    gap: 20px; /* Reduced gap between elements */
}

.standards-image img {
    width: 70%;
    border-radius: 10px; /* Adjust the border radius as needed */
    margin-left: 90px;
}

.standards-content {
    width: 50%;
    padding-left: 20px;
    margin-left: 90px;
}

.standards-content h2 {
    font-size: 2.8rem; /* Adjust the font size as needed */
    margin-bottom: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.standards-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: #666; /* Adjust the text color as needed */
    margin-bottom: 20px;
    /* font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; */
}

.standards-button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff; /* Text color for the button */
    background-color: #12403c; /* Background color for the button */
    border-radius: 5px; /* Adjust the border radius as needed */
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid #12403c; /* Border color same as background */
    background-color: transparent; /* Transparent background initially */
    color: #12403c; /* Text color same as background */
    transition: all 0.3s ease; /* Smooth transition for all properties */
    transform: translateY(0); /* Start at normal position */
    overflow: hidden; /* Ensures that background reveal does not overflow */
    position: relative;
}

.standards-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #12403c; /* Background color for the hover effect */
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.standards-button:hover::before {
    transform: scaleY(1); /* Scale the pseudo-element to full height on hover */
}

.standards-button:hover {
    color: #fff; /* Change text color on hover */
    transform: translateY(-3px); /* Move up slightly on hover */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
}

.terminals-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #f4f0f0; /* Adjust the background color as needed */
}

.terminals-image {
    width: 70%; /* Adjusted width for the image */
    margin-left: 60px;
}

.terminals-image img {
    margin-left: 90px;
    width: 80%;
    border-radius: 10px; /* Rounded corners for the image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: add shadow for depth */
}

.terminals-content {
    margin-left: 10px;
    width: 45%; /* Adjusted width for the text content */
    padding-left: 20px;
    margin-right: 40px;
}

.terminals-content h2 {
    font-size: 3.5rem; /* Adjust the font size as needed */
    margin-bottom: 20px;
}

.terminals-content p {

    font-size: 1rem;
    line-height: 1.9;
    color: #666; /* Adjust the text color as needed */
    margin-bottom: 20px;
    /* font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; */
}

.terminals-button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff; /* Text color for the button */
    background-color: #12403c; /* Background color for the button */
    border-radius: 5px; /* Adjust the border radius as needed */
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid #12403c; /* Border color same as background */
    background-color: transparent; /* Transparent background initially */
    color: #12403c; /* Text color same as background */
    transition: all 0.3s ease; /* Smooth transition for all properties */
    transform: translateY(0); /* Start at normal position */
    overflow: hidden; /* Ensures that background reveal does not overflow */
    position: relative;
}

.terminals-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #12403c; /* Background color for the hover effect */
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.terminals-button:hover::before {
    transform: scaleY(1); /* Scale the pseudo-element to full height on hover */
}

.terminals-button:hover {
    color: #fff; /* Change text color on hover */
    transform: translateY(-3px); /* Move up slightly on hover */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
}


.site-footer {
    background: url('img/terminal.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    color: #fff;
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
}

/* Red overlay */
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 106, 0.714); /* Adjust opacity as needed */
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-around; /* Change from space-between to space-around for even spacing */
    max-width: 1500px;
    width: 100%;
    margin: auto;
    padding: 0 20px;
}

.footer-column {
    flex: 1; /* Allows the columns to grow and shrink as needed */
    padding: 0 15px; /* Adds padding to create space between columns */
    max-width: 200px; /* Set a max-width for each column */
}

.footer-column h4 {
    margin-bottom: 20px;
}

.footer-column p {
    line-height: 1.5;
    width: 150%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-weight: none;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s;
}

.footer-link::before {
    font-size: 20px;
    content: '+';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    transition: transform 0.3s;
}

.footer-link:hover::before {
    font-size: 30px;
    transform: translateY(-50%) rotate(45deg); /* Rotate on hover */
}

.logo2 {
    height: 50px; /* Or any other size that fits your design */
    width: auto; /* Maintain aspect ratio */
    margin-right: 150px;
    margin-left: -100px;
}

.logo2 img {
    height: 50px; 
    width: auto; 
    margin-right: 150px;
}

.footer-bottom {
    background-color: #12403c; /* Choose a color that matches your footer */
    color: #ffffff;
    padding: 10px 0;
    display: flex;
    justify-content: space-around; /* This will space out your items evenly */
    align-items: center;
    font-size: 0.85rem;
}

.footer-address,
.footer-social-icons,
.footer-trademark {
    padding: 0 15px; /* Adds padding to create space within each section */
    font-weight: bold;
}

.footer-social-icons i {
    color: #ffffff;
    margin: 0 10px;
    font-size: 1.2rem; /* Adjust the size of your icons */
    transition: color 0.3s;
}

.footer-social-icons i:hover {
    color: #000000; /* Change the icon color on hover */
}

@media (max-width: 768px) {
    html, body {
        max-width: 100%;
        overflow-x: hidden;
      }
      

    .header{
        padding: 1.3rem 5%;
    }
    .logo img {
        height: 40px; /* Or any other size that fits your design */
        width: auto; /* Maintain aspect ratio */
    }

}

@media (max-width: 768px) {

    .icons{
        display: inline-flex;
        top: 8%;
    }
    

    #check:checked~.icons #menu-icon {
        display: none;
    }

    .icons #close-icon{
        display: none;
    }

    #check:checked~.icons #close-icon {
        display: block;
    }

    /* .nav-links{
        position: absolute;
        top: 15%;
        left: 0;
        height: 17rem;
        width: 100%;
        background: rgba(0, 0, 0, .1);
        backdrop-filter: blur(20px);
        z-index: 10;
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
        overflow: hidden;
        transition: .3s ease;
    } */

    .nav-links{
        max-height: 0; /* Start with max-height 0 */
        opacity: 0; /* Start fully transparent */
        visibility: hidden; /* Start hidden */
        overflow: hidden; /* Prevents content from overflowing during transition */
        transition: opacity .1s ease, visibility 3s ease, max-height 3s ease; /* Smooth transition */
        position: absolute;
        top: 16%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.934);
        backdrop-filter: blur(20px);
        z-index: 1000;
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.463);
    }
    
    

    #check:checked~.nav-links{
        height: 17rem;
    }

    .nav-links {
        display: block;
        font-size: 1.1rem;
        line-height: 2.0;
        margin-top: 2.0rem 0;
    }

    .nav-links a{
        color: #000000;
    }

    .nav-links .dropdown-content a{
        color: #000000;
    }

    .nav-links .dropdown-content{
        margin-left: -70px;
        margin-right: 20px;
    }

    .secondary-header {
        background: #12403c; /* Light blue background */
        padding: 10px 20px; /* Reduced padding for less height */
        display: flex; /* Use flexbox for layout */
        justify-content: space-between; /* Space between flags and contact info */
        align-items: center; /* Center items vertically */
        position: relative; /* Relative for positioning */
        z-index: 2; /* Keep on top */
    }

    .flags img {
        display: none;
        width: 11px; /* Set the flag size */
        height: auto; /* Maintain aspect ratio */
        margin-left: -15px; /* Space between flags */
    }
    
    /* Contact info styles */
    .contact-info {
        text-align: center;
        color: #fff;
        font-size: 12px;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }

    .hero-section {
        position: relative;
        height: 400px;
        overflow: hidden;
    }
    
    #heroVideo {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }
    
    /* Black Gradient Overlay */
    .hero-gradient {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
        z-index: 0; /* Above the video, below the text */
    }
    
    /* Hero Text */
    .hero-text {
        position: absolute;
        top: 50%;
        left: 30px;
        transform: translateY(-50%);
        z-index: 1; /* Above the gradient */
        color: white;
    }
    
    /* Stylish Parallelogram Button */
    .hero-text button {
        text-decoration: none;
        background-color: transparent; /* Transparent background */
        color: white;
        border: 2px solid white; /* Solid white border */
        padding: 10px 30px; /* Padding inside the button */
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.5s ease; /* Smoother transition for the hover effect */
        /* Create parallelogram shape */
        transform: skew(-20deg);
        display: inline-block; /* Allows transform to be applied */
        margin-top: 20px; /* Adjust as necessary for positioning */
        outline: none; /* Remove outline on focus for aesthetics */
        position: relative; /* Position relative for pseudo-elements */
        overflow: hidden; /* Hide overflow for pseudo-elements */
        padding: 7.5px 20px; /* Increase padding for larger text */
        font-size: 1.2rem; /* Larger font size for the button */
    }
    
    /* Button pseudo-element for hover effect */
    .hero-text button::before {
        text-decoration: none;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0; /* Start with no width */
        height: 100%;
        background-color: #12403c; /* The fill color on hover */
        transition: width 0.5s ease; /* Smooth transition for hover effect */
        z-index: -1;
        transform: skew(20deg); /* Reverse the skew effect */
    }
    
    /* Button Hover Effect */
    .hero-text button:hover::before {
        width: 100%; /* Full width on hover */
    }
    
    /* Ensure the button text is legible over the pseudo-element */
    .hero-text button span {
        text-decoration: none;
        position: relative;
        z-index: 2; /* Above the pseudo-element */
        display: block; /* Corrects the skew transform */
        transform: skew(20deg); /* Reverse the skew effect */
    }
    
    .hero-text button span a {
        text-decoration: none;
        color: #f2f2f2;
    }
    
    /* Adjust the button text alignment */
    .hero-text button:hover span {
        text-decoration: none;
        color: white; /* Change text color if needed on hover */
    }
    
    
    .hero-text {
        text-decoration: none;
        position: absolute;
        top: 50%;
        left: 10%; /* Shift to the right from the left edge */
        transform: translateY(-50%);
        z-index: 1; /* Above the video */
        color: white;
        font-family: 'Montserrat', sans-serif; /* An appealing font */
        text-align: left;
    }
    
    /* Typography within the hero section */
    .hero-text h1 {
        margin-left: -20px;
        font-size: 1.5rem; /* Increase size and adjust as needed */
        /* margin: 0 0 10px; */
        font-weight: 700; /* Bold font weight */
    }
    
    .hero-text p {
        font-size: 0.7rem; /* Increase size and adjust as needed */
        margin-bottom: 20px;
        font-weight: 400; /* Normal font weight */
    }

    #about-us {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 50px 20px;
        background: #f8f8f8; /* Light background color for the section */
    }
    
    .container {
        margin-top: -50px;
        width: auto;
        /* margin: 0 auto; */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .about-image img {
        width: 100%; /* Half the container width */
        height: 300px; /* Maintain aspect ratio */
        border-radius: 100px;
        /* border: solid #a34841; */
        margin-left: 2px;
    }
    
    .about-content {
        max-width: 100%; /* Half the container width */
        text-align: justify; /* Align the text to the left */
    }
    
    .about-content h2 {
        margin-top: 20px;
        font-size: 2.5rem; /* Larger font size for the heading */
        color: #333; /* Dark color for the text */
        margin-bottom: 10px; /* Spacing below the heading */
        text-align: center;
    }
    
    .about-content p {
        font-size: 1rem; /* Appropriate font size for the paragraph */
        color: #666; /* Slightly lighter color for the paragraph */
        line-height: 1.6; /* Line height for better readability */
        margin-bottom: 20px; /* Spacing between paragraphs */
    }
    
    .about-btn {
        display: inline-block;
        padding: 10px 25px;
        background-color: #007bff; /* Button background color */
        color: white;
        text-decoration: none;
        font-weight: bold;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        margin-left: 60px;
    }
    
    .about-btn:hover {
        background-color: #0056b3; /* Darker shade for hover effect */
    }


    #services {
        padding: 50px 20px;
        background-color: #fff; /* Change this as necessary to match your design */
    }
    
    .services-header h2 {
        text-align: left;
        color: #12403c; /* Red color for the main title */
        font-size: 1.2rem; /* Adjust size as needed */
        margin-left: 25px;
        font-family: Arial, Helvetica, sans-serif;
    }
    
    .services-header h3 {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        text-align: left;
        color: #333; /* Darker color for the subtitle */
        font-size: 2.5rem; /* Larger size for subtitle */
        margin-bottom: 40px; /* Space before the service items */
        margin-left: 25px;
    }
    
    .service-cards {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        /* flex-wrap: wrap;  */
        /* gap: -100px; */
        margin-top: 30px;
        margin-bottom: 20px;
        width: 450px;
    }
    
    
    .service-card {
        align-items: center;
        /* margin-right: 150px; */
        margin-left: -280px;
        position: relative;
        width: 300px; /* Adjust the width to be more narrow for a vertical look */
        min-height: 300px; /* Add a minimum height to make cards taller */
        background-color: rgb(247, 245, 245);
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column; /* Stack content vertically */
        justify-content: space-between; /* Distribute space around items */
    }


}


@media (max-width: 768px) {
    .why-us-section {
        flex-direction: column;
        align-items: center;
        margin-top: -25px;
    }

    .why-us-image img {
        max-width: 100%;
        margin-left: 1px;
    }

    .why-us-content {
        width: 80%;
        margin-left: 20px;
    }

    .why-us-content h2{
        margin-bottom: 20px;
        font-size: 2rem;
        margin-top: -20px;
    }

    .why-us-block {
        margin-bottom: 20px; /* Space between blocks */
        width: 100%;
    }

    .why-us-button {
        background-color: #12403c;
        color: white;
        border: none;
        border-radius: 20px; /* Rounded corners for the button */
        padding: 20px;
        font-size: 0.9rem;
        width: 350px;
        text-align: left;
        cursor: pointer;
        transition: background-color 0.3s ease;
        margin-right: 30px;
        margin-left: -40px;
    }

    .why-us-detail {
        width: 350px;
        margin-left: -42px;
        font-size: 1rem;
        color: #666;
        display: none;
        line-height: 1.9;
        background-color: #f7f7f7; /* Light background for detail */
        border-radius: 15px; /* Rounded corners for the detail block */
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    }

        /* Styles for dropdown menu */
.services-dropdown {
    position: relative; /* Set the dropdown container to relative */
}

.dropdown-content {
    display: none; /* Hide the dropdown content by default */
    position: absolute; /* Position it absolutely within the .services-dropdown */
    background-color: #ffffff; /* White background for the dropdown, no transparency */
    width: 50%; /* Minimum width for the dropdown */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); /* Add some shadow */
    z-index: 1000; /* High z-index to ensure it's above other items */
}

/* Style the dropdown links */
.dropdown-content li {
    margin-top: -10px;
    font-size: 5px;
    color: black; /* Make text color black or choose your preference */
    padding: 12px 16px; /* Add some padding */
    text-decoration: none; /* No underline on links */
    display: block; /* Dropdown items should be block to fill the container */
    background-color: #f9f9f9; /* Set a different background color if needed */
}


}



/* Responsive adjustments for smaller screens */
@media (max-width: 1024px) {
    .service-card {
        width: 45%; /* Larger width on medium screens */
    }
}

@media (max-width: 768px) {
    .service-cards {
        justify-content: center; /* Center cards on smaller screens */
    }

    .service-card {
        width: 80%; /* Full width on smaller screens for a stacked layout */
        min-height: 350px; /* Slightly shorter height on smaller screens */
    }
}




@media (max-width: 768px) {
    .terminals-section {
        flex-direction: column;
        text-align: center;
    }

    .terminals-image,
    .terminals-content {
        width: 100%;
    }

    .terminals-image {
        margin-left: 30px;
    }

    .terminals-content {
        padding-left: 0;
        padding-top: 20px;
    }

    .terminals-image img {
        margin-left: -15px;
        margin-right: 20px;
        width: 100%;
        border-radius: 10px; /* Rounded corners for the image */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: add shadow for depth */
    }

    .terminals-content h2 {
        margin-top: 10px;
        font-size: 2.0rem; /* Adjust the font size as needed */
        margin-bottom: 10px;
        text-align: center;
    }
    
    .terminals-content p {
        margin-left: 15px;
        text-align: justify;
        font-size: 1rem;
        line-height: 1.9;
        color: #666; /* Adjust the text color as needed */
        margin-bottom: 20px;
        /* font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; */
    }
    
}


@media (max-width: 768px) {
    .standards-section {
        flex-direction: column;
        margin-left: -42px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 50px 20px;
        background-color: #ffffff; /* Adjust the background color as needed */
        gap: 20px; /* Reduced gap between elements */
        width: 100%;
    }

    .standards-image img,
    .standards-content {
        width: 100%;
    }

    .standards-content {
        padding-left: 0;
    }

    .standards-image img {
        width: 100%;
        border-radius: 10px; /* Adjust the border radius as needed */
        margin-left: 43px;
    }

    .standards-content h2 {
        font-size: 1.8rem; /* Adjust the font size as needed */
        margin-bottom: 20px;
        text-align: center;
        font-family: Arial, Helvetica, sans-serif;
    }
}



/* Ensures the video covers the area, may need adjustment based on your video's aspect ratio */
@media (min-aspect-ratio: 16/9) {
    #heroVideo {
        width: 100%;
        height: auto;
    }
}

/* ... existing responsive adjustments ... */



/* Additional responsive adjustments */
@media (max-width: 768px) {
    .nav-links, .logo {
        float: none;
        text-align: center;
    }

    .nav-links li {
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-address,
    .footer-social-icons,
    .footer-trademark {
        padding: 5px 0; /* Reduce padding for mobile view */
    }

    .footer-social-icons i {
        margin: 0 5px; /* Reduce margin between icons for mobile view */
    }
}



/* Responsive adjustments */
@media (max-width: 1024px) {
    .footer-container {
        flex-wrap: wrap;
    }
    .footer-column {
        width: 50%;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-column {
        width: 110%;
        text-align: left;
    }
    .footer-column li {
        padding-left: 0;
        width: 100%;
    }

    .footer-column p {
        margin-left: -90px;
        margin-right: 100px;
        text-align: left;
        line-height: 1.5;
        width: 200%;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

    .footer-link::before {
        position: static;
        margin-right: 10px;
        transform: none;
    }

    .footer-column ul {
        width: 200%;
        margin-right: 60px;
        margin-left: -60px;
        list-style: none;
        padding: 0;
    }

    .footer-column h4 {
        margin-bottom: 20px;
        text-align: left;
        margin-left: -30px;
    }
}


/* ... existing styles ... */