/* General reset for consistent layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.whatsapp-btn {
    position: fixed;
    bottom: 70px;
    right: 40px;
    background-color: #25D366;
    color: white;
    border-radius: 50%; /* Ensures the button is round */
    width: 50px; /* Fixed width for round shape */
    height: 50px; /* Fixed height for round shape */
    display: flex; /* Flexbox for centering the icon */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    font-size: 25px;
    z-index: 1000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
  }
  
  .whatsapp-btn:hover {
    background-color: #20b458; /* Darker green on hover */
    text-decoration: none; /* Removes underline */
  }

hr {
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 1px;
  }

.not-bold {
    font-weight: normal; /* Makes the text not bold */
    font-size:large;
}

.bold {
    font-weight: bold; /* Makes the text bold */
}

/* Basic styles for body */
body, html {
    font-family: 'Trebuchet MS', sans-serif;
    color: black;
    height: 100%;
    scroll-behavior: smooth;
}

/* Header background with overlay effect */
header {
    background: linear-gradient(90deg, #e0c3fc 0%, #8ec5fc 100%);
    position: relative;
    height: 100vh;
    color: white;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay on background */
    z-index: 1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 3;
    position: relative;
    height: 100vh;
    padding-top: 100px;
    opacity: 0; /* Initially hidden */
    transform: translateY(-20px); /* Optional: shift it slightly upwards */
    animation: fadeIn 1s ease-in-out 0.2s forwards; /* 1s delay before animation starts */
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0); /* Bring it back to the original position */
    }
}

.logo img {
    height: 40px;
    border-radius: 7px;
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: font-weight 0.6s ease;
}

nav ul li a:hover{
    font-weight: bold;
    text-decoration: overline;
}

/* Dropdown container - hide by default */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 12px 16px;
}

.dropdown-content a {
    color: black;
    text-decoration: none;
    display: block;
    padding: 8px 0;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show the dropdown content on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.hero-section {
    z-index: 2;
}

.hero-text {
    max-width: 600px; /* Limit width for text */
}

.hero-image {
    max-width: 100%; /* Ensure the image is responsive */
    height: auto; /* Maintain aspect ratio */
}

.hero-navigation {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    height: 15px;
    width: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 1.5s ease;
}

.dot.active {
    background-color: #3498db;
}

.cta-button {
    margin-top: 20px; /* Added margin for spacing */
}

/* Industry Section */
.industry-section {
    padding: 50px 0;
}

.industry-section h2 {
    color: black;
    font-size: 2.5rem;
}

.industry-item img {
    border-radius: 8px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.industry-item p {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 10px;
}

/* Hover effect */
.industry-item:hover img {
    transform: translateY(-10px);
}

  
/*-----Technology------*/  
.technology {
    padding: 50px 0;
    text-align: center;
}

.technology h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.technology p {
    font-size: 14px;
    margin-bottom: 40px;
}

.technology-item {
    min-height: 300px; /* Set a minimum height for uniformity */
    max-height: 300px; /* Set a minimum height for uniformity */
    transition: transform 1s ease; /* Add transition for the scale effect */
}

.technology-item:hover {
    transform: scale(1.05); /* Scale up the service item on hover */
    opacity: 0.5; /* Reduce opacity by half on hover */
}

.technology-item .image-container {
    height: 200px; /* Set a fixed height for the image container */
    overflow: hidden; /* Hide any overflow */
}

.image-container img {
    height: 100%; /* Make the image take the full height of the container */
    width: 100%; /* Make the image take the full width of the container */
    object-fit: cover; /* Ensure the image covers the container without distortion */
}

.technology-item h3 {
    font-size: 16px; /* Adjust this value as needed */
    color: #333;
    margin-bottom: 10px; /* You can adjust this margin if necessary */
}

/* Industry Section swipes in from the left */
.industry-section {
    opacity: 0; /* Initially hidden */
    transform: translateX(-100%); /* Start off to the left */
    transition: opacity 2s ease, transform 2s ease; /* Smooth transition */
}

.industry-section.visible {
    opacity: 1; /* Fully visible */
    transform: translateX(0); /* Move to original position */
}

/* Partners & Clients */
.partners-clients {
    padding: 50px 0;
    background-color: white; /* Or use a background color/image */
}

.partners-clients h2 {
    font-size: 3em;
    color: black; /* Gradient color */
}

.partners-clients p {
    font-size: 1em;
    margin: 20px 0;
    color: #333;
}

.view-more-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #5b67ff; /* Gradient border */
    color: #5b67ff;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.view-more-btn:hover {
    background-color: #5b67ff;
    color: white;
}

.partners-clients .logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.partners-clients .logos img {
    width: 100%; /* Responsive width */
    max-width: 500px; /* Limit max width */
    height: auto;
    object-fit: contain;
}


/*-------------------*/  
@media (max-width: 1024px) {
    .header-content {
        flex-direction: row;
        justify-content: space-around; /* Ensure space around items */
    }

    .hero-section {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px; /* Reduce hero heading size */
    }

    .hero-text p {
        font-size: 16px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Industry Section */
    .industry-section h2 {
        font-size: 2em;
    }

    .industry-item {
        max-width: 45%; /* Make industry items bigger */
    }

    .scroll-container {
        gap: 15px; /* Reduce the gap */
    }

    /* Technology Section */
    .technology-item {
        width: 45%; /* Two columns for tablets */
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }

    .social-icons {
        margin-bottom: 20px;
    }
}

/* Responsive design for mobile devices */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: center;
    }

    .scroll-navbar {
        display: none; /* Keep hidden for smaller screens, or adjust as needed */
    }

    /* Hero Section */
    .hero-section {
        width: 90%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .hero-text h1 {
        font-size: 24px; /* Smaller heading */
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-image {
        max-width: 250px; /* Smaller image */
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Industry Section */
    .industry-section h2 {
        font-size: 1.5em; /* Smaller font size */
    }

    .industry-item {
        max-width: 80%; /* Full-width items on mobile */
        margin: 0 auto; /* Center the items */
    }

    .scroll-container {
        gap: 10px;
    }

    /* Technology Section */
    .technology-item {
        width: 100%; /* Single column for mobile */
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        text-align: center;
    }

    .footer-logo h1 {
        font-size: 24px; /* Adjust logo text size */
    }

    .footer-logo p {
        font-size: 12px; /* Adjust text size */
    }

    .social-icons {
        margin-bottom: 10px;
    }

    /* Make the social icons bigger for mobile */
    .social-icons img {
        width: 30px;
        height: 30px;
    }

    .partners-clients {
        flex-direction: column;
        text-align: center;
    }

    .partners-clients .content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .partners-clients .logos img {
        width: 100px; /* Smaller logos on mobile */
    }
}

.quality-title {
    cursor: pointer;
    color: black;
    font-size: 15px;
    transition: color 0.3s, font-size 0.3s; /* Added font size transition */
    font-weight: bold;
}

.quality-title:hover {
    color: brown;
    font-size: 20px; /* Font size transition on hover */
}

.quality img {
    height: 50px;
}

.quality img:hover {
    height: 60px; /* Image size transition on hover */
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    background-color: #007bff; /* Bootstrap primary color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #717171;
}

.background-information h1 {
    font-size: 50px; /* Slightly smaller heading */
    color: #333; /* Dark gray for text */
    margin-bottom: 10px; /* Reduce bottom margin */
}

.background-information p {
    font-size: 18px; /* Maintain readable text size */
    letter-spacing: 0.01cm;
    margin-bottom: 20px; /* Less space below paragraphs */
    text-align: justify; /* Justify the text */
}

.background-information li {
    margin-bottom: 10px; /* Space between list items */
    font-size: 14px; /* Consistent text size */
    color: #555; /* Lighter gray for less emphasis */
}

.orionplex-image {
    max-width: 100%; /* Ensure images are responsive */
    height: auto; /* Maintain aspect ratio */
}

/* Stats Banner */
.stats-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), #a2b9c5;
    color: white;
    text-align: center;
}

.stats-item h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.stats-item p {
    font-size: 18px;
}

/* CSS to add the plus sign */
.counter::after {
    content: '+';
    font-size: 48px;
    margin-left: 5px;
    vertical-align: middle;
}

/* Style for carousel control buttons */
.carousel-control-prev,
.carousel-control-next {
    position: absolute; /* Ensure absolute positioning */
    top: 50%; /* Center them vertically */
    transform: translateY(-50%); /* Adjust position to center */
    width: 50px; /* Adjust the width if necessary */
    height: 50px; /* Adjust the height if necessary */
}

.carousel-control-prev {
    left: -60px; /* Adjust the distance from the left edge */
}

.carousel-control-next {
    right: -50px; /* Adjust the distance from the right edge */
}

